Module Name: src
Committed By: yamt
Date: Wed Jan 4 16:29:41 UTC 2012
Modified Files:
src/sys/uvm [yamt-pagecache]: uvm_page.c
Log Message:
remove a debug printf
To generate a diff of this commit:
cvs rdiff -u -r1.178.2.9 -r1.178.2.10 src/sys/uvm/uvm_page.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/uvm/uvm_page.c
diff -u src/sys/uvm/uvm_page.c:1.178.2.9 src/sys/uvm/uvm_page.c:1.178.2.10
--- src/sys/uvm/uvm_page.c:1.178.2.9 Mon Dec 26 16:03:11 2011
+++ src/sys/uvm/uvm_page.c Wed Jan 4 16:29:29 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_page.c,v 1.178.2.9 2011/12/26 16:03:11 yamt Exp $ */
+/* $NetBSD: uvm_page.c,v 1.178.2.10 2012/01/04 16:29:29 yamt Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -66,7 +66,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.178.2.9 2011/12/26 16:03:11 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.178.2.10 2012/01/04 16:29:29 yamt Exp $");
#include "opt_ddb.h"
#include "opt_uvmhist.h"
@@ -1341,9 +1341,6 @@ uvm_pagealloc_strat(struct uvm_object *o
}
error = uvm_pageinsert(obj, pg);
if (error != 0) {
-#if 1
- printf("page insertion failed %p\n", pg);
-#endif
pg->uobject = NULL;
uvm_pagefree(pg);
return NULL;