Page MenuHomeFreeBSD

vfs_domount_update(): postpone setting MNT_UNION until VFS_MOUNT() is done
ClosedPublic

Authored by kib on Wed, May 15, 10:01 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, May 21, 9:59 AM
Unknown Object (File)
Sun, May 19, 5:06 PM
Unknown Object (File)
Sun, May 19, 5:04 PM
Unknown Object (File)
Sat, May 18, 8:22 PM
Unknown Object (File)
Fri, May 17, 8:08 PM
Unknown Object (File)
Fri, May 17, 3:58 PM
Unknown Object (File)
Thu, May 16, 4:45 PM
Unknown Object (File)
Thu, May 16, 3:12 AM
Subscribers

Details

Summary
The file system that handles updating the mount point might do lookups
during the update, in which case it could find the flag MNT_UNION set on
the mp while mount point is still not updated.  In particular, the
rootvp->v_mount->mnt_vnodecovered is not yet set.

Delay setting MNT_UNION until the mount is performed.

PR:     265311
Reported by:    Robert Morris <rtm@lcs.mit.edu>

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kib requested review of this revision.Wed, May 15, 10:01 AM

This looks like the correct fix. One other unrelated nit.

sys/kern/vfs_mount.c
1526

Incorrect <tab> rather than <space> between &= and ~(MNT_UPDATE.

This revision is now accepted and ready to land.Wed, May 15, 7:47 PM