Module Name: src
Committed By: mrg
Date: Thu Oct 6 06:55:35 UTC 2011
Modified Files:
src/sys/arch/sparc64/include: pmap.h
Log Message:
make struct page_size_map consistent across DEBUG/!DEBUG kernels.
To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/arch/sparc64/include/pmap.h
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/sparc64/include/pmap.h
diff -u src/sys/arch/sparc64/include/pmap.h:1.54 src/sys/arch/sparc64/include/pmap.h:1.55
--- src/sys/arch/sparc64/include/pmap.h:1.54 Sun Jun 12 03:35:47 2011
+++ src/sys/arch/sparc64/include/pmap.h Thu Oct 6 06:55:34 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.h,v 1.54 2011/06/12 03:35:47 rmind Exp $ */
+/* $NetBSD: pmap.h,v 1.55 2011/10/06 06:55:34 mrg Exp $ */
/*-
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -97,7 +97,7 @@
struct page_size_map {
uint64_t mask;
uint64_t code;
-#ifdef DEBUG
+#if defined(DEBUG) || 1
uint64_t use;
#endif
};