taglinefilesource code
root_mountflags74arch/i386/kernel/setup.cextern int root_mountflags;
root_mountflags140arch/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_mountflags47fs/super.cextern int root_mountflags;
root_mountflags844fs/super.csb->s_flags = root_mountflags & ~MS_RDONLY;
root_mountflags878fs/super.cif ( root_mountflags & MS_RDONLY)
root_mountflags884fs/super.croot_mountflags |= MS_RDONLY;
root_mountflags898fs/super.csb = read_super(ROOT_DEV,fs_type->name,root_mountflags,NULL,1);
root_mountflags903fs/super.csb->s_flags = root_mountflags;
root_mountflags913fs/super.cvfsmnt->mnt_flags = root_mountflags;
root_mountflags163init/main.cint root_mountflags = MS_RDONLY;
root_mountflags507init/main.croot_mountflags |= MS_RDONLY;
root_mountflags511init/main.croot_mountflags &= ~MS_RDONLY;
root_mountflags795init/main.creal_root_mountflags = root_mountflags;
root_mountflags796init/main.cif (initrd_start && mount_initrd) root_mountflags &= ~MS_RDONLY;
root_mountflags825init/main.croot_mountflags = real_root_mountflags;