summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/vm/vm_radix.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/vm/vm_radix.c b/sys/vm/vm_radix.c
index 0bf06f0..c8b8d58 100644
--- a/sys/vm/vm_radix.c
+++ b/sys/vm/vm_radix.c
@@ -251,9 +251,7 @@ vm_radix_keybarr(struct vm_radix_node *rnode, vm_pindex_t idx)
if (rnode->rn_clev > 0) {
idx = vm_radix_trimkey(idx, rnode->rn_clev - 1);
- idx -= rnode->rn_owner;
- if (idx != 0)
- return (TRUE);
+ return (idx != rnode->rn_owner);
}
return (FALSE);
}
OpenPOWER on IntegriCloud