Index: /trunk/src/VBox/VMM/VMMR3/HM.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/HM.cpp	(revision 43669)
+++ /trunk/src/VBox/VMM/VMMR3/HM.cpp	(revision 43670)
@@ -1324,5 +1324,6 @@
             {
                 LogRel(("HM: VMX setup failed with rc=%Rrc!\n", rc));
-                LogRel(("HM: Last instruction error %x\n", pVM->aCpus[0].hm.s.vmx.lasterror.ulInstrError));
+                for (VMCPUID i = 0; i < pVM->cCpus; i++)
+                    LogRel(("HM: CPU[%ld] Last instruction error %x\n", i, pVM->aCpus[0].hm.s.vmx.lasterror.ulInstrError));
                 pVM->fHMEnabled = false;
             }
Index: /trunk/src/VBox/VMM/include/HMInternal.h
===================================================================
--- /trunk/src/VBox/VMM/include/HMInternal.h	(revision 43669)
+++ /trunk/src/VBox/VMM/include/HMInternal.h	(revision 43670)
@@ -568,4 +568,7 @@
         /** Current CR4 mask. */
         uint64_t                    cr4_mask;
+        /** Current exception bitmap. */
+        uint32_t                    u32XcptBitmap;
+        uint32_t                    uAlignment0;
         /** Current EPTP. */
         RTHCPHYS                    GCPhysEPTP;
