mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-04 09:09:56 +00:00
Detect that a vnode has been reclaimed while vflush() was waiting to lock
the vnode and restart the loop. Vflush() is vulnerable since it does not hold a reference to the vnode and it holds no other locks while waiting for the vnode lock. The vnode will no longer be on the list when the loop is restarted. Approved by: re (rwatson)
This commit is contained in:
parent
5f616912b4
commit
1e9bc9f889
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115076
@ -2397,6 +2397,17 @@ vflush(mp, rootrefs, flags)
|
||||
VI_LOCK(vp);
|
||||
mtx_unlock(&mntvnode_mtx);
|
||||
vn_lock(vp, LK_INTERLOCK | LK_EXCLUSIVE | LK_RETRY, td);
|
||||
/*
|
||||
* This vnode could have been reclaimed while we were
|
||||
* waiting for the lock since we are not holding a
|
||||
* reference.
|
||||
* Start over if the vnode was reclaimed.
|
||||
*/
|
||||
if (vp->v_mount != mp) {
|
||||
VOP_UNLOCK(vp, 0, td);
|
||||
mtx_lock(&mntvnode_mtx);
|
||||
goto loop;
|
||||
}
|
||||
/*
|
||||
* Skip over a vnodes marked VV_SYSTEM.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user