Refine r195509, instead of checking that vnode type is VBAD, that is

set quite late in the revocation path, properly verify that vnode is
not doomed before calling VOP.

Reported and tested by:	Harald Schmalzbauer <h.schmalzbauer omnilan de>
MFC after:	3 days
This commit is contained in:
kib 2009-10-10 21:17:30 +00:00
parent edf781a815
commit 31d083f28a

View File

@ -340,10 +340,10 @@ exit1(struct thread *td, int rv)
if (ttyvp != NULL) {
sx_xunlock(&proctree_lock);
vn_lock(ttyvp, LK_EXCLUSIVE | LK_RETRY);
if (ttyvp->v_type != VBAD)
if (vn_lock(ttyvp, LK_EXCLUSIVE) == 0) {
VOP_REVOKE(ttyvp, REVOKEALL);
VOP_UNLOCK(ttyvp, 0);
VOP_UNLOCK(ttyvp, 0);
}
sx_xlock(&proctree_lock);
}
}