Changeset 21144 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jul 2, 2009 8:07:39 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49421
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r21001 r21144 429 429 if (!TRPMHasTrap(pVCpu)) 430 430 { 431 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI _BIT))431 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI)) 432 432 { 433 433 SVM_EVENT Event; … … 1069 1069 1070 1070 /* Check for tlb shootdown flushes. */ 1071 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH _BIT))1071 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH)) 1072 1072 pVCpu->hwaccm.s.fForceTLBFlush = true; 1073 1073 -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r21001 r21144 757 757 if (!TRPMHasTrap(pVCpu)) 758 758 { 759 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI _BIT))759 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI)) 760 760 { 761 761 RTGCUINTPTR intInfo; … … 1871 1871 1872 1872 /* Check for tlb shootdown flushes. */ 1873 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH _BIT))1873 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH)) 1874 1874 pVCpu->hwaccm.s.fForceTLBFlush = true; 1875 1875 … … 1936 1936 1937 1937 /* Check for tlb shootdown flushes. */ 1938 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH _BIT))1938 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH)) 1939 1939 pVCpu->hwaccm.s.fForceTLBFlush = true; 1940 1940
Note:
See TracChangeset
for help on using the changeset viewer.