Module Name: src
Committed By: pooka
Date: Wed May 26 21:48:20 UTC 2010
Modified Files:
src/sys/rump/librump/rumpkern: vm.c
Log Message:
print vm object refcount
To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 src/sys/rump/librump/rumpkern/vm.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/librump/rumpkern/vm.c
diff -u src/sys/rump/librump/rumpkern/vm.c:1.74 src/sys/rump/librump/rumpkern/vm.c:1.75
--- src/sys/rump/librump/rumpkern/vm.c:1.74 Fri May 14 13:04:14 2010
+++ src/sys/rump/librump/rumpkern/vm.c Wed May 26 21:48:20 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: vm.c,v 1.74 2010/05/14 13:04:14 pooka Exp $ */
+/* $NetBSD: vm.c,v 1.75 2010/05/26 21:48:20 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.74 2010/05/14 13:04:14 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.75 2010/05/26 21:48:20 pooka Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -517,7 +517,7 @@
void (*pr)(const char *, ...))
{
- /* nada for now */
+ pr("VM OBJECT at %p, refs %d", uobj, uobj->uo_refs);
}
#endif