Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/common/pmap/tlb Move pai to end of struct pmap.



details:   https://anonhg.NetBSD.org/src/rev/701ad25fa86a
branches:  trunk
changeset: 770347:701ad25fa86a
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Oct 13 19:50:39 2011 +0000

description:
Move pai to end of struct pmap.

diffstat:

 sys/common/pmap/tlb/pmap.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r e51f4ea9e340 -r 701ad25fa86a sys/common/pmap/tlb/pmap.h
--- a/sys/common/pmap/tlb/pmap.h        Thu Oct 13 19:49:50 2011 +0000
+++ b/sys/common/pmap/tlb/pmap.h        Thu Oct 13 19:50:39 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.h,v 1.10 2011/06/23 07:58:19 matt Exp $   */
+/*     $NetBSD: pmap.h,v 1.11 2011/10/13 19:50:39 matt Exp $   */
 
 /*
  * Copyright (c) 1992, 1993
@@ -141,9 +141,9 @@
        u_int                   pm_flags;
 #define        PMAP_DEFERRED_ACTIVATE  0x0001
        struct pmap_statistics  pm_stats;       /* pmap statistics */
-       struct pmap_asid_info   pm_pai[1];
        vaddr_t                 pm_minaddr;
        vaddr_t                 pm_maxaddr;
+       struct pmap_asid_info   pm_pai[1];
 };
 
 enum tlb_invalidate_op {



Home | Main Index | Thread Index | Old Index