diff options
author | jeff <jeff@FreeBSD.org> | 2002-09-25 01:24:58 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2002-09-25 01:24:58 +0000 |
commit | 56df6932b30f263937fcd3205c0e3567bfe11583 (patch) | |
tree | a99871936ab4c310e86178955836e9602b13ff8d /sys/vm/vm_pageout.c | |
parent | 4792c0673b67b3904b0ac1a7a51391babcc8023d (diff) | |
download | FreeBSD-src-56df6932b30f263937fcd3205c0e3567bfe11583.zip FreeBSD-src-56df6932b30f263937fcd3205c0e3567bfe11583.tar.gz |
- Get rid of the unused LK_NOOBJ.
Diffstat (limited to 'sys/vm/vm_pageout.c')
-rw-r--r-- | sys/vm/vm_pageout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index 87a61cc..ee40de4 100644 --- a/sys/vm/vm_pageout.c +++ b/sys/vm/vm_pageout.c @@ -878,7 +878,7 @@ rescan0: mp = NULL; if (vp->v_type == VREG) vn_start_write(vp, &mp, V_NOWAIT); - if (vget(vp, LK_EXCLUSIVE|LK_NOOBJ|LK_TIMELOCK, curthread)) { + if (vget(vp, LK_EXCLUSIVE|LK_TIMELOCK, curthread)) { ++pageout_lock_miss; vn_finished_write(mp); if (object->flags & OBJ_MIGHTBEDIRTY) |