[PATCH RESEND 50/62] init: rename ramdisk_command_access to initramfs_command_access
Askar Safin <[email protected]>
| Newsgroups | gmane.linux.ports.parisc,gmane.linux.file-systems,gmane.linux.kernel,gmane.linux.kernel.cross-arch,gmane.linux.ports.alpha,gmane.linux.kernel.arc,gmane.linux.ports.arm.kernel,gmane.linux.ports.hexagon,gmane.linux.ports.mips,gmane.linux.ports.ppc64.devel,gmane.linux.ports.riscv,gmane.linux.ports.sh.devel,gmane.linux.ports.sparc,gmane.linux.uml.devel,gmane.linux.block,gmane.linux.kernel.initramfs,gmane.linux.kernel.api,gmane.linux.documentation,gmane.linux.kernel.efi,gmane.comp.file-systems.ext4,gmane.linux.acpi.devel,gmane.linux.drivers.devicetree |
|---|---|
| Message-ID | <[email protected]> |
This is cleanup after initrd removal Signed-off-by: Askar Safin <[email protected]> --- init/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init/main.c b/init/main.c index cbebd64f523c..a42f1f0fce84 100644 --- a/init/main.c +++ b/init/main.c @@ -1587,11 +1587,11 @@ static noinline void __init kernel_init_freeable(void) * check if there is an early userspace init. If yes, let it do all * the work */ - int ramdisk_command_access; - ramdisk_command_access = init_eaccess(initramfs_execute_command); - if (ramdisk_command_access != 0) { + int initramfs_command_access; + initramfs_command_access = init_eaccess(initramfs_execute_command); + if (initramfs_command_access != 0) { pr_warn("check access for rdinit=%s failed: %i, ignoring\n", - initramfs_execute_command, ramdisk_command_access); + initramfs_execute_command, initramfs_command_access); initramfs_execute_command = NULL; prepare_namespace(); } -- 2.47.2