Index: /trunk/src/VBox/VMM/PGM.cpp
===================================================================
--- /trunk/src/VBox/VMM/PGM.cpp	(revision 30839)
+++ /trunk/src/VBox/VMM/PGM.cpp	(revision 30840)
@@ -1585,6 +1585,6 @@
     STAM_REL_REG(pVM, &pPGM->ChunkR3Map.c,                       STAMTYPE_U32,     "/PGM/ChunkR3Map/c",                  STAMUNIT_COUNT,     "Number of mapped chunks.");
     STAM_REL_REG(pVM, &pPGM->ChunkR3Map.cMax,                    STAMTYPE_U32,     "/PGM/ChunkR3Map/cMax",               STAMUNIT_COUNT,     "Maximum number of mapped chunks.");
-    STAM_REL_REG(pVM, &pPGM->cMappedChunks,                      STAMTYPE_U32,     "/PGM/Chunk/Map",                     STAMUNIT_COUNT,     "Number of times we mapped a chunk.");
-    STAM_REL_REG(pVM, &pPGM->cUnmappedChunks,                    STAMTYPE_U32,     "/PGM/Chunk/Unmap",                   STAMUNIT_COUNT,     "Number of times we unmapped a chunk.");
+    STAM_REL_REG(pVM, &pPGM->cMappedChunks,                      STAMTYPE_U32,     "/PGM/ChunkR3Map/Mapped",             STAMUNIT_COUNT,     "Number of times we mapped a chunk.");
+    STAM_REL_REG(pVM, &pPGM->cUnmappedChunks,                    STAMTYPE_U32,     "/PGM/ChunkR3Map/Unmapped",           STAMUNIT_COUNT,     "Number of times we unmapped a chunk.");
 
     STAM_REL_REG(pVM, &pPGM->StatLargePageAlloc,                 STAMTYPE_COUNTER, "/PGM/LargePage/Alloc",               STAMUNIT_OCCURENCES, "The number of large pages we've used.");
Index: /trunk/src/VBox/VMM/PGMInternal.h
===================================================================
--- /trunk/src/VBox/VMM/PGMInternal.h	(revision 30839)
+++ /trunk/src/VBox/VMM/PGMInternal.h	(revision 30840)
@@ -2667,4 +2667,7 @@
         R3R0PTRTYPE(PAVLU32NODECORE) pTree;
 #endif
+#if HC_ARCH_BITS == 32
+        uint32_t                    u32Alignment;
+#endif
         /** The chunk mapping TLB. */
         PGMCHUNKR3MAPTLB            Tlb;
@@ -2678,5 +2681,5 @@
         /** Number of pgmR3PhysChunkFindUnmapCandidate calls left to the next ageing. */
         uint32_t                    AgeingCountdown;
-    }                               ChunkR3Map;
+    } ChunkR3Map;
 
     /**
