vfs_busy(): fix wording in comment

Reviewed by:	kib
Differential Revision:	https://reviews.freebsd.org/D35054
This commit is contained in:
Jason A. Harmening 2022-10-19 22:31:44 -05:00
parent 706f15c5fa
commit 4390622c8d

View File

@ -819,8 +819,7 @@ vfs_busy(struct mount *mp, int flags)
* flag in addition to MNTK_UNMOUNT, indicating that mount point is
* about to be really destroyed. vfs_busy needs to release its
* reference on the mount point in this case and return with ENOENT,
* telling the caller that mount mount it tried to busy is no longer
* valid.
* telling the caller the mount it tried to busy is no longer valid.
*/
while (mp->mnt_kern_flag & MNTK_UNMOUNT) {
KASSERT(TAILQ_EMPTY(&mp->mnt_uppers),