diff options
author | kib <kib@FreeBSD.org> | 2013-05-30 19:53:31 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2013-05-30 19:53:31 +0000 |
commit | b77a98bb0bb774837efbd1e011d9215776cb0e90 (patch) | |
tree | d1e4a1726c6f93eb1f430914622147c5bd0a55b8 | |
parent | b94a58f986e2b9d65813231bfb1bed398f4d3f6a (diff) | |
download | FreeBSD-src-b77a98bb0bb774837efbd1e011d9215776cb0e90.zip FreeBSD-src-b77a98bb0bb774837efbd1e011d9215776cb0e90.tar.gz |
Remove the capitalization in the assertion message. Print the address
of the object to get useful information from optimizated kernels dump.
-rw-r--r-- | sys/vm/vm_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c index ce81ad5..258a8da 100644 --- a/sys/vm/vm_object.c +++ b/sys/vm/vm_object.c @@ -557,7 +557,7 @@ vm_object_deallocate(vm_object_t object) (object->type == OBJT_DEFAULT || object->type == OBJT_SWAP)) { KASSERT((object->flags & OBJ_TMPFS) == 0, - ("Shadowed tmpfs v_object")); + ("shadowed tmpfs v_object %p", object)); vm_object_t robject; robject = LIST_FIRST(&object->shadow_head); |