diff options
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 38ee1c7..797e27b 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1743,7 +1743,7 @@ sched_sync(void) VOP_UNLOCK(vp, 0, td); vn_finished_write(mp); VI_LOCK(vp); - if ((vp->v_iflag | VI_ONWORKLST) != 0) { + if ((vp->v_iflag & VI_ONWORKLST) != 0) { /* * Put us back on the worklist. The worklist * routine will remove us from our current |