Module Name: src
Committed By: reinoud
Date: Tue Aug 30 10:29:34 UTC 2011
Modified Files:
src/sys/arch/usermode/usermode: pmap.c
Log Message:
Remove panic that prevented multiple mappings of a pv entry
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 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.39 src/sys/arch/usermode/usermode/pmap.c:1.40
--- src/sys/arch/usermode/usermode/pmap.c:1.39 Mon Aug 29 14:59:09 2011
+++ src/sys/arch/usermode/usermode/pmap.c Tue Aug 30 10:29:34 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.39 2011/08/29 14:59:09 reinoud Exp $ */
+/* $NetBSD: pmap.c,v 1.40 2011/08/30 10:29:34 reinoud Exp $ */
/*-
* Copyright (c) 2011 Reinoud Zandijk <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.39 2011/08/29 14:59:09 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.40 2011/08/30 10:29:34 reinoud Exp $");
#include "opt_memsize.h"
#include "opt_kmempages.h"
@@ -411,7 +411,6 @@
ppn, lpn);
assert(ppn < phys_npages);
assert(ppn >= 0);
-panic("pv_get: multiple\n");
pv = pv_alloc();
if (pv == NULL)
return NULL;