From b77a98bb0bb774837efbd1e011d9215776cb0e90 Mon Sep 17 00:00:00 2001 From: kib Date: Thu, 30 May 2013 19:53:31 +0000 Subject: Remove the capitalization in the assertion message. Print the address of the object to get useful information from optimizated kernels dump. --- sys/vm/vm_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.1