From e2512dff3e6b6f073758b6a5872f46261c09094c Mon Sep 17 00:00:00 2001 From: phk Date: Fri, 26 Nov 2004 07:39:20 +0000 Subject: Ignore MNT_NODEV option, it is implicit in choice of filesystem. --- sys/compat/linux/linux_file.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'sys/compat/linux/linux_file.c') diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c index 8102b18..bf13cfd 100644 --- a/sys/compat/linux/linux_file.c +++ b/sys/compat/linux/linux_file.c @@ -786,8 +786,6 @@ linux_mount(struct thread *td, struct linux_mount_args *args) fsflags |= MNT_RDONLY; if (args->rwflag & LINUX_MS_NOSUID) fsflags |= MNT_NOSUID; - if (args->rwflag & LINUX_MS_NODEV) - fsflags |= MNT_NODEV; if (args->rwflag & LINUX_MS_NOEXEC) fsflags |= MNT_NOEXEC; if (args->rwflag & LINUX_MS_REMOUNT) -- cgit v1.1