diff options
author | phk <phk@FreeBSD.org> | 2004-11-26 07:39:20 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-11-26 07:39:20 +0000 |
commit | e2512dff3e6b6f073758b6a5872f46261c09094c (patch) | |
tree | 1fb0731651889dbfd721803301ec2afe6551ed85 /sys/compat | |
parent | 820a982ffa570af42522a9e9ee489a5f7f5e9d36 (diff) | |
download | FreeBSD-src-e2512dff3e6b6f073758b6a5872f46261c09094c.zip FreeBSD-src-e2512dff3e6b6f073758b6a5872f46261c09094c.tar.gz |
Ignore MNT_NODEV option, it is implicit in choice of filesystem.
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/linux_file.c | 2 |
1 files changed, 0 insertions, 2 deletions
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) |