mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
devfs: use MNTK_NOMSYNC
Reviewed by: kib Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D22009
This commit is contained in:
parent
8fd727827c
commit
4c9ba39aea
1 changed files with 2 additions and 1 deletions
|
|
@ -130,7 +130,8 @@ devfs_mount(struct mount *mp)
|
|||
|
||||
MNT_ILOCK(mp);
|
||||
mp->mnt_flag |= MNT_LOCAL;
|
||||
mp->mnt_kern_flag |= MNTK_LOOKUP_SHARED | MNTK_EXTENDED_SHARED;
|
||||
mp->mnt_kern_flag |= MNTK_LOOKUP_SHARED | MNTK_EXTENDED_SHARED |
|
||||
MNTK_NOMSYNC;
|
||||
#ifdef MAC
|
||||
mp->mnt_flag |= MNT_MULTILABEL;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue