Module Name: src
Committed By: matt
Date: Tue May 4 17:15:53 UTC 2010
Modified Files:
src/sys/arch/mips/include [matt-nb5-mips64]: pmap.h
Log Message:
Add pm_flags and PMAP_DEFERRED_ACTIVATE
To generate a diff of this commit:
cvs rdiff -u -r1.54.26.12 -r1.54.26.13 src/sys/arch/mips/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/mips/include/pmap.h
diff -u src/sys/arch/mips/include/pmap.h:1.54.26.12 src/sys/arch/mips/include/pmap.h:1.54.26.13
--- src/sys/arch/mips/include/pmap.h:1.54.26.12 Thu Mar 11 08:19:01 2010
+++ src/sys/arch/mips/include/pmap.h Tue May 4 17:15:53 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.h,v 1.54.26.12 2010/03/11 08:19:01 matt Exp $ */
+/* $NetBSD: pmap.h,v 1.54.26.13 2010/05/04 17:15:53 matt Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -166,6 +166,8 @@
#endif
struct segtab *pm_segtab; /* pointers to pages of PTEs */
u_int pm_count; /* pmap reference count */
+ u_int pm_flags;
+#define PMAP_DEFERRED_ACTIVATE 0x0001
struct pmap_statistics pm_stats; /* pmap statistics */
struct pmap_asid_info pm_pai[1];
} *pmap_t;