The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=7b2ac8eb9be76c96356b6e9a7c06a8080ea841ae
commit 7b2ac8eb9be76c96356b6e9a7c06a8080ea841ae Author: Mateusz Guzik <[email protected]> AuthorDate: 2021-09-18 08:13:33 +0000 Commit: Mateusz Guzik <[email protected]> CommitDate: 2021-09-18 19:13:51 +0000 vfs: add missing VIRF_MOUNTPOINT in vfs_mountroot_shuffle Reported by: mav --- sys/kern/vfs_mountroot.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/kern/vfs_mountroot.c b/sys/kern/vfs_mountroot.c index 5cf222901420..54d5a442c9ee 100644 --- a/sys/kern/vfs_mountroot.c +++ b/sys/kern/vfs_mountroot.c @@ -369,6 +369,7 @@ vfs_mountroot_shuffle(struct thread *td, struct mount *mpdevfs) cache_purge(vp); VI_LOCK(vp); mporoot->mnt_vnodecovered = vp; + vn_irflag_set_locked(vp, VIRF_MOUNTPOINT); vp->v_mountedhere = mporoot; strlcpy(mporoot->mnt_stat.f_mntonname, fspath, MNAMELEN); _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
