svn commit: r228087 - user/attilio/vmcontention/sys/vm

Attilio Rao attilio at FreeBSD.org
Mon Nov 28 19:14:39 UTC 2011


Author: attilio
Date: Mon Nov 28 19:14:38 2011
New Revision: 228087
URL: http://svn.freebsd.org/changeset/base/228087

Log:
  Fix compile.
  
  Submitted by:	flo

Modified:
  user/attilio/vmcontention/sys/vm/vm_radix.c

Modified: user/attilio/vmcontention/sys/vm/vm_radix.c
==============================================================================
--- user/attilio/vmcontention/sys/vm/vm_radix.c	Mon Nov 28 19:03:59 2011	(r228086)
+++ user/attilio/vmcontention/sys/vm/vm_radix.c	Mon Nov 28 19:14:38 2011	(r228087)
@@ -667,8 +667,8 @@ vm_radix_remove(struct vm_radix *rtree, 
 "remove: resetting tree %p, index %p, level %d, slot %d, rnode %p, child %p",
 		    rtree, (void *)index, level, slot, rnode,
 		    (rnode != NULL) ? rnode->rn_child[slot] : NULL);
-		CTR3(KTR_VM, "remove: rnode %p, count %p, color %d",
-		    rnode, (rnode != NULL) ? rnode->rn_count : NULL, color);
+		CTR3(KTR_VM, "remove: rnode %p, count %d, color %d",
+		    rnode, (rnode != NULL) ? rnode->rn_count : -1, color);
 		rnode->rn_child[slot] = NULL;
 		/*
 		 * Use atomics for the last level since red and black


More information about the svn-src-user mailing list