Module Name: src
Committed By: reinoud
Date: Thu Aug 25 10:46:59 UTC 2011
Modified Files:
src/sys/arch/usermode/usermode: pmap.c
Log Message:
Indent debug aprint_debug()'s
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 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.32 src/sys/arch/usermode/usermode/pmap.c:1.33
--- src/sys/arch/usermode/usermode/pmap.c:1.32 Wed Aug 24 20:13:56 2011
+++ src/sys/arch/usermode/usermode/pmap.c Thu Aug 25 10:46:59 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.32 2011/08/24 20:13:56 reinoud Exp $ */
+/* $NetBSD: pmap.c,v 1.33 2011/08/25 10:46:59 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.32 2011/08/24 20:13:56 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.33 2011/08/25 10:46:59 reinoud Exp $");
#include "opt_memsize.h"
#include "opt_kmempages.h"
@@ -551,7 +551,7 @@
{
struct pv_entry *pv, *npv;
-aprint_debug("pv_release ppn %"PRIdPTR", lpn %"PRIdPTR"\n", ppn, lpn);
+ aprint_debug("pv_release ppn %"PRIdPTR", lpn %"PRIdPTR"\n", ppn, lpn);
pv = &pv_table[ppn];
/*
* If it is the first entry on the list, it is actually
@@ -590,7 +590,7 @@
struct pv_entry *pv;
int s;
-aprint_debug("pmap_remove() called\n");
+ aprint_debug("pmap_remove() called\n");
slpn = atop(sva); elpn = atop(eva);
s = splvm();