mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 07:37:25 -04:00
Ignore MNT_NODEV, it is implicit in choice of filesystem these days.
This commit is contained in:
parent
c96c1bebe3
commit
ce59d2149d
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ devfs_mount(struct mount *mp, struct thread *td)
|
|||
|
||||
error = 0;
|
||||
|
||||
if (mp->mnt_flag & (MNT_UPDATE | MNT_NODEV | MNT_ROOTFS))
|
||||
if (mp->mnt_flag & (MNT_UPDATE | MNT_ROOTFS))
|
||||
return (EOPNOTSUPP);
|
||||
|
||||
MALLOC(fmp, struct devfs_mount *, sizeof(struct devfs_mount),
|
||||
|
|
|
|||
Loading…
Reference in a new issue