mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-03-03 18:28:01 +01:00
Remove the "nullfs_rootfs" boot parameter and simply always use nullfs. The mutable rootfs will be mounted on top of it. Systems that don't use pivot_root() to pivot away from the real rootfs will have an additional mount stick around but that shouldn't be a problem at all. If it is we'll rever this commit. This also simplifies the boot process and removes the need for the traditional switch_root workarounds. Suggested-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
43 lines
1.0 KiB
C
43 lines
1.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <linux/kernel.h>
|
|
#include <linux/blkdev.h>
|
|
#include <linux/init.h>
|
|
#include <linux/syscalls.h>
|
|
#include <linux/unistd.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/mount.h>
|
|
#include <linux/major.h>
|
|
#include <linux/root_dev.h>
|
|
#include <linux/init_syscalls.h>
|
|
#include <linux/task_work.h>
|
|
#include <linux/file.h>
|
|
|
|
void mount_root_generic(char *name, char *pretty_name, int flags);
|
|
void mount_root(char *root_device_name);
|
|
extern int root_mountflags;
|
|
|
|
static inline __init int create_dev(char *name, dev_t dev)
|
|
{
|
|
init_unlink(name);
|
|
return init_mknod(name, S_IFBLK | 0600, new_encode_dev(dev));
|
|
}
|
|
|
|
#ifdef CONFIG_BLK_DEV_RAM
|
|
int __init rd_load_image(void);
|
|
#else
|
|
static inline int rd_load_image(void) { return 0; }
|
|
#endif
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
|
void __init initrd_load(void);
|
|
#else
|
|
static inline void initrd_load(void) { }
|
|
#endif
|
|
|
|
/* Ensure that async file closing finished to prevent spurious errors. */
|
|
static inline void init_flush_fput(void)
|
|
{
|
|
flush_delayed_fput();
|
|
task_work_run();
|
|
}
|