Index: /trunk/include/VBox/pgm.h
===================================================================
--- /trunk/include/VBox/pgm.h	(revision 22763)
+++ /trunk/include/VBox/pgm.h	(revision 22764)
@@ -349,5 +349,4 @@
 VMMDECL(bool)       PGMHandlerPhysicalIsRegistered(PVM pVM, RTGCPHYS GCPhys);
 VMMDECL(bool)       PGMHandlerVirtualIsRegistered(PVM pVM, RTGCPTR GCPtr);
-VMMDECL(void)       PGMPoolFlushPage(PVM pVM, RTGCPHYS GCPhys);
 VMMDECL(bool)       PGMPhysIsA20Enabled(PVMCPU pVCpu);
 VMMDECL(bool)       PGMPhysIsGCPhysValid(PVM pVM, RTGCPHYS GCPhys);
Index: /trunk/src/VBox/VMM/PGMInternal.h
===================================================================
--- /trunk/src/VBox/VMM/PGMInternal.h	(revision 22763)
+++ /trunk/src/VBox/VMM/PGMInternal.h	(revision 22764)
@@ -3047,4 +3047,5 @@
 void            pgmPoolFreeByPage(PPGMPOOL pPool, PPGMPOOLPAGE pPage, uint16_t iUser, uint32_t iUserTable);
 int             pgmPoolFlushPage(PPGMPOOL pPool, PPGMPOOLPAGE pPage);
+void            pgmPoolFlushPageByGCPhys(PVM pVM, RTGCPHYS GCPhys);
 void            pgmPoolClearAll(PVM pVM);
 PPGMPOOLPAGE    pgmPoolGetPage(PPGMPOOL pPool, RTHCPHYS HCPhys);
Index: /trunk/src/VBox/VMM/PGMPhys.cpp
===================================================================
--- /trunk/src/VBox/VMM/PGMPhys.cpp	(revision 22763)
+++ /trunk/src/VBox/VMM/PGMPhys.cpp	(revision 22764)
@@ -384,5 +384,5 @@
              * not be informed about writes and keep bogus gst->shw mappings around.
              */
-            PGMPoolFlushPage(pVM, *pGCPhys);
+            pgmPoolFlushPageByGCPhys(pVM, *pGCPhys);
             Assert(!PGM_PAGE_HAS_ACTIVE_HANDLERS(pPage));
             /** @todo r=bird: return VERR_PGM_PHYS_PAGE_RESERVED here if it still has
Index: /trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp	(revision 22763)
+++ /trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp	(revision 22764)
@@ -4725,5 +4725,5 @@
  * @param   GCPhys  Guest physical address of the page to flush
  */
-VMMDECL(void) PGMPoolFlushPage(PVM pVM, RTGCPHYS GCPhys)
+void pgmPoolFlushPageByGCPhys(PVM pVM, RTGCPHYS GCPhys)
 {
 #ifdef PGMPOOL_WITH_CACHE
