Index: /trunk/.scm-settings
===================================================================
--- /trunk/.scm-settings	(revision 33675)
+++ /trunk/.scm-settings	(revision 33676)
@@ -63,6 +63,8 @@
 --filter-out-dirs  "*/src/VBox/Devices/PC/Etherboot-src/*/."
 --filter-out-dirs  "*/src/VBox/Devices/EFI/Firmware2/VBoxPkg/Include/*/."
+--filter-out-dirs  "*/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/."
+--filter-out-dirs  "*/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeControllerDxe/."
 --filter-out-dirs  "*/src/VBox/Devices/Network/lwip/."
---filter-out-dirs  "*/src/VBox/Devices/Storage/VBoxHDDFormats/StorageCraft/*/."
+--filter-out-dirs  "*/src/VBox/Storage/VDFormats/StorageCraft/*/."
 --filter-out-dirs  "*/src/VBox/RDP/client/."
 --filter-out-dirs  "*/src/recompiler/tests/."
Index: /trunk/include/VBox/ExtPack/ExtPack.h
===================================================================
--- /trunk/include/VBox/ExtPack/ExtPack.h	(revision 33675)
+++ /trunk/include/VBox/ExtPack/ExtPack.h	(revision 33676)
@@ -196,3 +196,2 @@
 #endif
 
-
Index: /trunk/include/VBox/VMMDev.h
===================================================================
--- /trunk/include/VBox/VMMDev.h	(revision 33675)
+++ /trunk/include/VBox/VMMDev.h	(revision 33676)
@@ -347,5 +347,5 @@
  * size of cursor, including the trailing cursor image and mask data.
  * @note an "empty" request still has the four preallocated bytes of data
- * 
+ *
  * @returns the size
  * @param  width   the cursor width
Index: /trunk/include/VBox/com/defs.h
===================================================================
--- /trunk/include/VBox/com/defs.h	(revision 33675)
+++ /trunk/include/VBox/com/defs.h	(revision 33676)
@@ -41,5 +41,5 @@
 #  undef RT_MAX
 #  define REDEFINE_RT_MAX
-# endif   
+# endif
 # undef RT_MAX
 
@@ -55,5 +55,5 @@
 
 /* */
-# undef RT_MAX 
+# undef RT_MAX
 # ifdef REDEFINE_RT_MAX
 #  define RT_MAX(Value1, Value2)                  ( (Value1) >= (Value2) ? (Value1) : (Value2) )
Index: /trunk/include/iprt/symlink.h
===================================================================
--- /trunk/include/iprt/symlink.h	(revision 33675)
+++ /trunk/include/iprt/symlink.h	(revision 33676)
@@ -150,3 +150,2 @@
 #endif
 
-
Index: /trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispD3D.cpp
===================================================================
--- /trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispD3D.cpp	(revision 33675)
+++ /trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispD3D.cpp	(revision 33676)
@@ -3476,5 +3476,5 @@
         pDevice->aStreamSource[pData->Stream] = NULL;
     }
-    
+
     vboxVDbgPrintF(("<== "__FUNCTION__", hDevice(0x%p), hr(0x%x)\n", hDevice, hr));
     return hr;
Index: /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Makefile.kmk
===================================================================
--- /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Makefile.kmk	(revision 33675)
+++ /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Makefile.kmk	(revision 33676)
@@ -78,14 +78,14 @@
   VBoxVideoWddm_DEFS      += VBOXWDDM_RENDER_FROM_SHADOW
   ifdef VBOXVDMA_WITH_VBVA
-   VBoxVideoWddm_DEFS     += VBOXVDMA_WITH_VBVA 
+   VBoxVideoWddm_DEFS     += VBOXVDMA_WITH_VBVA
   endif
  endif
  ifdef VBOX_WITH_VDMA
-  VBoxVideoWddm_DEFS     += VBOX_WITH_VDMA 
+  VBoxVideoWddm_DEFS     += VBOX_WITH_VDMA
  endif
  ifdef VBOX_WITH_CRHGSMI
   VBoxVideoWddm_DEFS     += VBOX_WITH_CRHGSMI
  endif
- 
+
  ifdef DEBUG_misha
   VBoxVideoWddm_DEFS       += LOG_ENABLED
Index: /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
===================================================================
--- /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp	(revision 33675)
+++ /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp	(revision 33676)
@@ -1917,5 +1917,5 @@
     else
         pDevExt->fAnyX = FALSE;
-    
+
     vboxVideoInitCustomVideoModes(pDevExt);
 
Index: /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.h
===================================================================
--- /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.h	(revision 33675)
+++ /trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.h	(revision 33676)
@@ -237,5 +237,5 @@
 
     /* The IO Port Number for guest commands. */
-    RTIOPORT IOPortGuest;    
+    RTIOPORT IOPortGuest;
 } VBOXVIDEO_COMMON, *PVBOXVIDEO_COMMON;
 
Index: /trunk/src/VBox/Additions/common/VBoxGuest/Makefile.kmk
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxGuest/Makefile.kmk	(revision 33675)
+++ /trunk/src/VBox/Additions/common/VBoxGuest/Makefile.kmk	(revision 33676)
@@ -115,5 +115,5 @@
   	VBoxGuest2.cpp
  endif # OS/2
- 
+
  VBoxGuest2.cpp_DEFS    = VBOX_SVN_REV=$(VBOX_SVN_REV)
  VBoxGuest.cpp_DEFS     = VBOX_SVN_REV=$(VBOX_SVN_REV)
Index: /trunk/src/VBox/Devices/Audio/DevCodec.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/DevCodec.cpp	(revision 33675)
+++ /trunk/src/VBox/Devices/Audio/DevCodec.cpp	(revision 33676)
@@ -432,9 +432,9 @@
             pNode->node.au32F00_param[4] = (1 << 16)|0x1; /* start node 1, total 1*/
             pNode->node.au32F00_param[0xA] = pState->pNodes[1].node.au32F00_param[0xA];
-            
+
             break;
         case 0x1: /* AFG */
             pNode->node.au32F00_param[4] = (2 << 16)|0x25; /* start node 1, total 1*/
-            pNode->node.au32F00_param[5] = RT_BIT(8) | 0x1; /* UnSol: enabled, function group type: AFG */ 
+            pNode->node.au32F00_param[5] = RT_BIT(8) | 0x1; /* UnSol: enabled, function group type: AFG */
             pNode->afg.u32F20_param = pState->u16VendorId << 16 | pState->u16DeviceId;
             pNode->node.au32F00_param[0xB] = 0x1;
@@ -601,5 +601,5 @@
             pNode->port.u32F1c_param = 0x400000f0;
             pNode->node.au32F00_param[0xC] = RT_BIT(13)|RT_BIT(12)|RT_BIT(11)|RT_BIT(10)|RT_BIT(9)|RT_BIT(8)|RT_BIT(5)|RT_BIT(4)|RT_BIT(3)|RT_BIT(2);
-        port_init:    
+        port_init:
             pNode->node.au32F00_param[0x9] = 0x40018f;
             pNode->node.au32F00_param[0xD] = 0x270300;
@@ -1910,5 +1910,5 @@
 
     /* 44.1 kHz */
-    as.freq = 44100; 
+    as.freq = 44100;
     as.nchannels = 2;
     as.fmt = AUD_FMT_S16;
@@ -1927,5 +1927,5 @@
     #define IS_FORMAT_SUPPORTED_BY_HOST(pState, base, mult, div) (AUDIO_FORMAT_SELECTOR((pState), Out, (base), (mult), (div)) \
         && AUDIO_FORMAT_SELECTOR((pState), In, (base), (mult), (div)))
-    
+
     pState->pNodes[1].node.au32F00_param[0xA] = RT_BIT(17); /* 16-bit samples */
     SETUP_AUDIO_FORMAT(pState, AFMT_HZ_44_1K, AFMT_MULT_X1, AFMT_DIV_X1, "hda44_1", as, pi_callback, po_callback);
@@ -1941,5 +1941,5 @@
     pState->pNodes[1].node.au32F00_param[0xA] |= IS_FORMAT_SUPPORTED_BY_HOST(pState, AFMT_HZ_44_1K, AFMT_MULT_X4, AFMT_DIV_X1) ? RT_BIT(9) : 0;
 
-    as.freq = 48000; 
+    as.freq = 48000;
     SETUP_AUDIO_FORMAT(pState, AFMT_HZ_48K, AFMT_MULT_X1, AFMT_DIV_X1, "hda48", as, pi_callback, po_callback);
     pState->pNodes[1].node.au32F00_param[0xA] |= IS_FORMAT_SUPPORTED_BY_HOST(pState, AFMT_HZ_48K, AFMT_MULT_X1, AFMT_DIV_X1) ? RT_BIT(6) : 0;
Index: /trunk/src/VBox/Devices/Audio/DevCodec.h
===================================================================
--- /trunk/src/VBox/Devices/Audio/DevCodec.h	(revision 33675)
+++ /trunk/src/VBox/Devices/Audio/DevCodec.h	(revision 33676)
@@ -241,5 +241,5 @@
 
 #ifdef VBOX_WITH_AUDIO_FLEXIBLE_FORMAT
-# define MAX_AUDIO_FORMAT 64 
+# define MAX_AUDIO_FORMAT 64
 typedef SWVoiceIn *CODECAUDIOINFORMAT[MAX_AUDIO_FORMAT];
 typedef SWVoiceOut *CODECAUDIOOUTFORMAT[MAX_AUDIO_FORMAT];
Index: /trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/DevIchAc97.cpp	(revision 33675)
+++ /trunk/src/VBox/Devices/Audio/DevIchAc97.cpp	(revision 33676)
@@ -1579,5 +1579,5 @@
     PCIDevSetDeviceId           (&pThis->dev, 0x2415); /* 02 ro - 82801 / 82801aa(?). */Assert (pThis->dev.config[0x02] == 0x15); Assert (pThis->dev.config[0x03] == 0x24);
     PCIDevSetCommand            (&pThis->dev, 0x0000); /* 04 rw,ro - pcicmd. */         Assert (pThis->dev.config[0x04] == 0x00); Assert (pThis->dev.config[0x05] == 0x00);
-    PCIDevSetStatus             (&pThis->dev, 
+    PCIDevSetStatus             (&pThis->dev,
            VBOX_PCI_STATUS_DEVSEL_MEDIUM |  VBOX_PCI_STATUS_FAST_BACK); /* 06 rwc?,ro? - pcists. */      Assert (pThis->dev.config[0x06] == 0x80); Assert (pThis->dev.config[0x07] == 0x02);
     PCIDevSetRevisionId         (&pThis->dev, 0x01);   /* 08 ro - rid. */               Assert (pThis->dev.config[0x08] == 0x01);
Index: /trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/Library/VBoxGenericBdsLib/BdsMisc.c
===================================================================
--- /trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/Library/VBoxGenericBdsLib/BdsMisc.c	(revision 33675)
+++ /trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/Library/VBoxGenericBdsLib/BdsMisc.c	(revision 33676)
@@ -598,6 +598,6 @@
     if (!Option)
     {
-	DEBUG((DEBUG_INFO, "%a:%d Option %s wasn't found \n", __FILE__, __LINE__, Option));
-	continue;
+        DEBUG((DEBUG_INFO, "%a:%d Option %s wasn't found \n", __FILE__, __LINE__, Option));
+        continue;
     }
     Option->BootCurrent = OptionOrder[Index];
Index: /trunk/src/VBox/Devices/Graphics/DevVGA.cpp
===================================================================
--- /trunk/src/VBox/Devices/Graphics/DevVGA.cpp	(revision 33675)
+++ /trunk/src/VBox/Devices/Graphics/DevVGA.cpp	(revision 33676)
@@ -3986,5 +3986,5 @@
     pHlp->pfnPrintf(pHlp, "start : %#x\n", val);
     if (!is_graph)
-    {   
+    {
         val = (s->cr[9] & 0x1f) + 1;
         char_height = val;
@@ -4213,5 +4213,5 @@
         return;
     }
-    
+
     pHlp->pfnPrintf(pHlp, "VBE state (chip ID 0x%04x):\n", s->vbe_regs[VBE_DISPI_INDEX_ID]);
     pHlp->pfnPrintf(pHlp, " Display resolution: %d x %d @ %dbpp\n",
@@ -5440,5 +5440,5 @@
     int         maxPage;
     int         bpl;
-    
+
 
     /* For 4bpp modes, the planes are "stacked" on top of each other. */
Index: /trunk/src/VBox/Devices/Network/slirp/bootp.c
===================================================================
--- /trunk/src/VBox/Devices/Network/slirp/bootp.c	(revision 33675)
+++ /trunk/src/VBox/Devices/Network/slirp/bootp.c	(revision 33676)
@@ -247,5 +247,5 @@
 
     /*DHCP Offer specific*/
-    /* 
+    /*
      * we're care in built-in tftp server about existence/validness of the boot file.
      */
Index: /trunk/src/VBox/Devices/Storage/DevBusLogic.cpp
===================================================================
--- /trunk/src/VBox/Devices/Storage/DevBusLogic.cpp	(revision 33675)
+++ /trunk/src/VBox/Devices/Storage/DevBusLogic.cpp	(revision 33676)
@@ -2342,5 +2342,5 @@
         if (pThis->VBoxSCSI.fBusy)
         {
-            
+
             /* The BIOS had a request active when we got suspended. Resume it. */
             int rc = buslogicPrepareBIOSSCSIRequest(pThis);
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineMenuBar.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineMenuBar.cpp	(revision 33675)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineMenuBar.cpp	(revision 33676)
@@ -115,5 +115,5 @@
     if (fOptions & UIMainMenuType_Debug)
     {
-        CMachine machine; /** @todo we should try get the machine here. But we'll 
+        CMachine machine; /** @todo we should try get the machine here. But we'll
                            *        probably be fine with the cached values. */
         if (vboxGlobal().isDebuggerEnabled(machine))
Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UINewVMWzd.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UINewVMWzd.cpp	(revision 33675)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UINewVMWzd.cpp	(revision 33676)
@@ -774,5 +774,5 @@
     m_Machine.SetVRAMSize (qMax (type.GetRecommendedVRAM(),
                                 (ULONG) (VBoxGlobal::requiredVideoMemory(&m_Machine) / _1M)));
-    
+
     /* Selecting recommended chipset type */
     m_Machine.SetChipsetType(type.GetRecommendedChipset());
Index: /trunk/src/VBox/GuestHost/OpenGL/Makefile.kmk
===================================================================
--- /trunk/src/VBox/GuestHost/OpenGL/Makefile.kmk	(revision 33675)
+++ /trunk/src/VBox/GuestHost/OpenGL/Makefile.kmk	(revision 33676)
@@ -89,5 +89,5 @@
 	$(VBOX_LIB_IPRT_GUEST_R3_SHARED)
 ifdef VBOX_WITH_CRHGSMI
-VBoxOGLcrutil_DEFS.win.x86    += VBOX_WITH_CRHGSMI 
+VBoxOGLcrutil_DEFS.win.x86    += VBOX_WITH_CRHGSMI
 VBoxOGLcrutil_LIBS.win.x86    += $(VBOX_PATH_ADDITIONS_LIB)/VBoxCrHgsmi$(VBOX_SUFF_LIB)
 endif
@@ -117,5 +117,5 @@
 VBoxOGLhostcrutil_LIBS     = $(LIB_RUNTIME)
 ifdef VBOX_WITH_CRHGSMI
-VBoxOGLhostcrutil_DEFS.win.x86 = $(subst VBOX_WITH_CRHGSMI,,$(VBoxOGLcrutil_DEFS.win.x86)) 
+VBoxOGLhostcrutil_DEFS.win.x86 = $(subst VBOX_WITH_CRHGSMI,,$(VBoxOGLcrutil_DEFS.win.x86))
 VBoxOGLhostcrutil_LIBS.win.x86 = $(subst $(VBOX_PATH_ADDITIONS_LIB)/VBoxCrHgsmi$(VBOX_SUFF_LIB),,$(VBoxOGLcrutil_LIBS.win.x86))
 endif
Index: /trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp
===================================================================
--- /trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp	(revision 33675)
+++ /trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp	(revision 33676)
@@ -352,7 +352,7 @@
      * 100%, even if it involves some extra work (alloc + copy) we really wished
      * to avoid.
-     * 
-     * Note. We can't make use of the physical addresses on darwin because the 
-     *       way the mbuf / cluster stuff works (see mbuf_data_to_physical and 
+     *
+     * Note. We can't make use of the physical addresses on darwin because the
+     *       way the mbuf / cluster stuff works (see mbuf_data_to_physical and
      *       mcl_to_paddr).
      */
Index: /trunk/src/VBox/Main/ConsoleVRDPServer.cpp
===================================================================
--- /trunk/src/VBox/Main/ConsoleVRDPServer.cpp	(revision 33675)
+++ /trunk/src/VBox/Main/ConsoleVRDPServer.cpp	(revision 33676)
@@ -1270,5 +1270,5 @@
     int rc = VINF_SUCCESS;
 
-    /* 
+    /*
      * Check that a VRDE library name is set.
      */
Index: /trunk/src/VBox/Runtime/generic/RTMpGetArraySize-generic.cpp
===================================================================
--- /trunk/src/VBox/Runtime/generic/RTMpGetArraySize-generic.cpp	(revision 33675)
+++ /trunk/src/VBox/Runtime/generic/RTMpGetArraySize-generic.cpp	(revision 33676)
@@ -41,3 +41,2 @@
 RT_EXPORT_SYMBOL(RTMpGetArraySize);
 
-
Index: /trunk/src/VBox/Runtime/generic/RTSemEventWait-2-ex-generic.cpp
===================================================================
--- /trunk/src/VBox/Runtime/generic/RTSemEventWait-2-ex-generic.cpp	(revision 33675)
+++ /trunk/src/VBox/Runtime/generic/RTSemEventWait-2-ex-generic.cpp	(revision 33676)
@@ -52,3 +52,2 @@
 RT_EXPORT_SYMBOL(RTSemEventWait);
 
-
Index: /trunk/src/VBox/Runtime/include/internal/mem.h
===================================================================
--- /trunk/src/VBox/Runtime/include/internal/mem.h	(revision 33675)
+++ /trunk/src/VBox/Runtime/include/internal/mem.h	(revision 33676)
@@ -57,3 +57,2 @@
 #endif
 
-
Index: /trunk/src/VBox/Runtime/r0drv/solaris/semevent-r0drv-solaris.c
===================================================================
--- /trunk/src/VBox/Runtime/r0drv/solaris/semevent-r0drv-solaris.c	(revision 33675)
+++ /trunk/src/VBox/Runtime/r0drv/solaris/semevent-r0drv-solaris.c	(revision 33676)
@@ -341,3 +341,2 @@
 }
 
-
Index: /trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-posix.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-posix.cpp	(revision 33675)
+++ /trunk/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-posix.cpp	(revision 33676)
@@ -144,3 +144,2 @@
 }
 
-
Index: /trunk/src/VBox/VMM/EMHwaccm.cpp
===================================================================
--- /trunk/src/VBox/VMM/EMHwaccm.cpp	(revision 33675)
+++ /trunk/src/VBox/VMM/EMHwaccm.cpp	(revision 33676)
@@ -560,5 +560,5 @@
             rc = VINF_SUCCESS;
         }
-        
+
 
         /*
Index: /trunk/src/VBox/VMM/PGMPool.cpp
===================================================================
--- /trunk/src/VBox/VMM/PGMPool.cpp	(revision 33675)
+++ /trunk/src/VBox/VMM/PGMPool.cpp	(revision 33676)
@@ -175,5 +175,5 @@
     cMaxPages = RT_ALIGN(cMaxPages, 16);
 
-    /** todo: 
+    /** todo:
      * We need to be much more careful with our allocation strategy here.
      * For nested paging we don't need pool user info nor extents at all, but we can't check for nested paging here (too early during init to get a confirmation it can be used)
Index: /trunk/src/VBox/VMM/VMM.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMM.cpp	(revision 33675)
+++ /trunk/src/VBox/VMM/VMM.cpp	(revision 33676)
@@ -415,6 +415,6 @@
     STAM_REG(pVM, &pVM->vmm.s.StatRZRetToR3Rendezvous,      STAMTYPE_COUNTER, "/VMM/RZRet/ToR3/Rendezvous",     STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_TO_R3 returns.");
     STAM_REG(pVM, &pVM->vmm.s.StatRZRetToR3Timer,           STAMTYPE_COUNTER, "/VMM/RZRet/ToR3/Timer",          STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_TO_R3 returns.");
-    STAM_REG(pVM, &pVM->vmm.s.StatRZRetToR3DMA,             STAMTYPE_COUNTER, "/VMM/RZRet/ToR3/DMA",            STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_TO_R3 returns.");    
-    STAM_REG(pVM, &pVM->vmm.s.StatRZRetToR3CritSect,        STAMTYPE_COUNTER, "/VMM/RZRet/ToR3/CritSect",       STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_TO_R3 returns.");        
+    STAM_REG(pVM, &pVM->vmm.s.StatRZRetToR3DMA,             STAMTYPE_COUNTER, "/VMM/RZRet/ToR3/DMA",            STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_TO_R3 returns.");
+    STAM_REG(pVM, &pVM->vmm.s.StatRZRetToR3CritSect,        STAMTYPE_COUNTER, "/VMM/RZRet/ToR3/CritSect",       STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_TO_R3 returns.");
     STAM_REG(pVM, &pVM->vmm.s.StatRZRetTimerPending,        STAMTYPE_COUNTER, "/VMM/RZRet/TimerPending",        STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_TIMER_PENDING returns.");
     STAM_REG(pVM, &pVM->vmm.s.StatRZRetInterruptPending,    STAMTYPE_COUNTER, "/VMM/RZRet/InterruptPending",    STAMUNIT_OCCURENCES, "Number of VINF_EM_RAW_INTERRUPT_PENDING returns.");
Index: /trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/PGMAllBth.h	(revision 33675)
+++ /trunk/src/VBox/VMM/VMMAll/PGMAllBth.h	(revision 33676)
@@ -1416,5 +1416,5 @@
         AssertRelease(pPhysPage);
         pgmTrackDerefGCPhys(pPool, pShwPage, pPhysPage, iPte);
-        return;    
+        return;
     }
 # endif
@@ -2235,5 +2235,5 @@
                 PGM_BTH_NAME(SyncPageWorker)(pVCpu, &pPTDst->a[iPTDst], GCPtrCurPage, pShwPage, iPTDst);
                 Log2(("SyncPage: 4K+ %RGv PteSrc:{P=1 RW=1 U=1} PteDst=%08llx%s\n",
-                      GCPtrCurPage, 
+                      GCPtrCurPage,
                       SHW_PTE_LOG64(pPTDst->a[iPTDst]),
                       SHW_PTE_IS_TRACK_DIRTY(pPTDst->a[iPTDst]) ? " Track-Dirty" : ""));
@@ -2255,5 +2255,5 @@
 
         Log2(("SyncPage: 4K  %RGv PteSrc:{P=1 RW=1 U=1}PteDst=%08llx%s\n",
-              GCPtrPage, 
+              GCPtrPage,
               SHW_PTE_LOG64(pPTDst->a[iPTDst]),
               SHW_PTE_IS_TRACK_DIRTY(pPTDst->a[iPTDst]) ? " Track-Dirty" : ""));
