summaryrefslogtreecommitdiffstats
path: root/sys/vm
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_object.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index 94c3d30..40fcad6 100644
--- a/sys/vm/vm_object.c
+++ b/sys/vm/vm_object.c
@@ -468,7 +468,12 @@ vm_object_vndeallocate(vm_object_t object)
}
#endif
- if (object->ref_count > 1) {
+ /*
+ * The test for text of vp vnode does not need a bypass to
+ * reach right VV_TEXT there, since it is obtained from
+ * object->handle.
+ */
+ if (object->ref_count > 1 || (vp->v_vflag & VV_TEXT) == 0) {
object->ref_count--;
VM_OBJECT_WUNLOCK(object);
/* vrele may need the vnode lock. */
OpenPOWER on IntegriCloud