Module Name:    src
Committed By:   jmcneill
Date:           Fri Dec 30 19:30:59 UTC 2011

Modified Files:
        src/sys/arch/usermode/usermode: pmap.c

Log Message:
provide pmap_phys_address


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 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.84 src/sys/arch/usermode/usermode/pmap.c:1.85
--- src/sys/arch/usermode/usermode/pmap.c:1.84	Fri Dec 30 06:59:54 2011
+++ src/sys/arch/usermode/usermode/pmap.c	Fri Dec 30 19:30:59 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.84 2011/12/30 06:59:54 reinoud Exp $ */
+/* $NetBSD: pmap.c,v 1.85 2011/12/30 19:30:59 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2011 Reinoud Zandijk <rein...@netbsd.org>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.84 2011/12/30 06:59:54 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.85 2011/12/30 19:30:59 jmcneill Exp $");
 
 #include "opt_memsize.h"
 #include "opt_kmempages.h"
@@ -1219,7 +1219,6 @@ pmap_is_referenced(struct vm_page *page)
 paddr_t
 pmap_phys_address(paddr_t cookie)
 {
-	panic("pmap_phys_address not implemented\n");
 	return ptoa(cookie);
 }
 

Reply via email to