summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_radix.c
diff options
context:
space:
mode:
authorattilio <attilio@FreeBSD.org>2013-03-13 01:38:32 +0000
committerattilio <attilio@FreeBSD.org>2013-03-13 01:38:32 +0000
commit07b5846fc9cc30d0615008183c36634d0693dc30 (patch)
treeb76ef2e77413655cf483222731c828cb10de29cf /sys/vm/vm_radix.c
parentb9af291b5ce66ff296a1ac1592c757decb342f28 (diff)
downloadFreeBSD-src-07b5846fc9cc30d0615008183c36634d0693dc30.zip
FreeBSD-src-07b5846fc9cc30d0615008183c36634d0693dc30.tar.gz
Fix compilation.
Sponsored by: EMC / Isilon storage division
Diffstat (limited to 'sys/vm/vm_radix.c')
-rw-r--r--sys/vm/vm_radix.c3
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
OpenPOWER on IntegriCloud