summaryrefslogtreecommitdiffstats
path: root/sys/fs/nullfs/null_subr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/fs/nullfs/null_subr.c')
-rw-r--r--sys/fs/nullfs/null_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/nullfs/null_subr.c b/sys/fs/nullfs/null_subr.c
index ac54c21..f6543b2 100644
--- a/sys/fs/nullfs/null_subr.c
+++ b/sys/fs/nullfs/null_subr.c
@@ -128,7 +128,7 @@ loop:
* recycling the nullfs vnode or another thread
* in vrele() waiting for the vnode lock.
*/
- if ((vp->v_iflag & VI_XLOCK) != 0) {
+ if ((vp->v_iflag & VI_DOOMED) != 0) {
VI_UNLOCK(vp);
continue;
}
@@ -177,7 +177,7 @@ loop:
* recycling the nullfs vnode or another thread
* in vrele() waiting for the vnode lock.
*/
- if ((ovp->v_iflag & VI_XLOCK) != 0) {
+ if ((ovp->v_iflag & VI_DOOMED) != 0) {
VI_UNLOCK(ovp);
continue;
}
OpenPOWER on IntegriCloud