taglinefilesource code
root_mountflags75arch/i386/kernel/setup.cextern int root_mountflags;
root_mountflags141arch/i386/kernel/setup.croot_mountflags &= ~MS_RDONLY;
root_mountflags198arch/mips/kernel/setup.cextern int root_mountflags;
root_mountflags306arch/mips/kernel/setup.croot_mountflags |= MS_RDONLY;
root_mountflags50fs/super.cextern int root_mountflags;
root_mountflags936fs/super.csb->s_flags = root_mountflags & ~MS_RDONLY;
root_mountflags975fs/super.cif ( root_mountflags & MS_RDONLY)
root_mountflags981fs/super.croot_mountflags |= MS_RDONLY;
root_mountflags995fs/super.csb = read_super(ROOT_DEV,fs_type->name,root_mountflags,NULL,1);
root_mountflags1000fs/super.csb->s_flags = root_mountflags;
root_mountflags1010fs/super.cvfsmnt->mnt_flags = root_mountflags;
root_mountflags165init/main.cint root_mountflags = MS_RDONLY;
root_mountflags543init/main.croot_mountflags |= MS_RDONLY;
root_mountflags547init/main.croot_mountflags &= ~MS_RDONLY;
root_mountflags825init/main.creal_root_mountflags = root_mountflags;
root_mountflags826init/main.cif (initrd_start && mount_initrd) root_mountflags &= ~MS_RDONLY;
root_mountflags856init/main.croot_mountflags = real_root_mountflags;