diff options
-rw-r--r-- | sys/vm/vm_radix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/vm_radix.c b/sys/vm/vm_radix.c index d61f885..6ebc26f 100644 --- a/sys/vm/vm_radix.c +++ b/sys/vm/vm_radix.c @@ -375,7 +375,8 @@ vm_radix_insert(struct vm_radix *rtree, vm_pindex_t index, vm_page_t page) int slot; uint16_t clev; - KASSERT(index == page->index, ("%s: index != page->index", __func__)); + KASSERT(index == page->pindex, ("%s: index != page->pindex", + __func__)); /* * The owner of record for root is not really important because it |