Module Name: src
Committed By: jmcneill
Date: Fri Aug 26 11:16:50 UTC 2011
Modified Files:
src/sys/arch/usermode/usermode: pmap.c
Log Message:
pmap_remove_all: change panic to warning
To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/usermode/usermode/pmap.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/arch/usermode/usermode/pmap.c
diff -u src/sys/arch/usermode/usermode/pmap.c:1.36 src/sys/arch/usermode/usermode/pmap.c:1.37
--- src/sys/arch/usermode/usermode/pmap.c:1.36 Thu Aug 25 19:06:58 2011
+++ src/sys/arch/usermode/usermode/pmap.c Fri Aug 26 11:16:50 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.36 2011/08/25 19:06:58 reinoud Exp $ */
+/* $NetBSD: pmap.c,v 1.37 2011/08/26 11:16:50 jmcneill Exp $ */
/*-
* Copyright (c) 2011 Reinoud Zandijk <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.36 2011/08/25 19:06:58 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.37 2011/08/26 11:16:50 jmcneill Exp $");
#include "opt_memsize.h"
#include "opt_kmempages.h"
@@ -638,7 +638,7 @@
void
pmap_remove_all(pmap_t pmap)
{
-panic("pmap_remove_all() called\n");
+aprint_debug("pmap_remove_all not implemented\n");
}
void