Changeset 42671 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Aug 8, 2012 6:01:09 AM (12 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWACCMR0A.asm
r37955 r42671 855 855 and edi, 0ffffffffh 856 856 xor rax, rax 857 ;invvpid rdi, qword [rsi]857 ; invvpid rdi, qword [rsi] 858 858 DB 0x66, 0x0F, 0x38, 0x81, 0x3E 859 859 %else -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r42648 r42671 5023 5023 { 5024 5024 AssertPtr(pVCpu); 5025 Assert (pVCpu->hwaccm.s.uCurrentASID != 0);5026 Assert (pVCpu->hwaccm.s.uCurrentASID <= UINT16_MAX);5025 AssertMsg(pVCpu->hwaccm.s.uCurrentASID != 0, ("VMXR0InvVPID invalid ASID %lu\n", pVCpu->hwaccm.s.uCurrentASID)); 5026 AssertMsg(pVCpu->hwaccm.s.uCurrentASID <= UINT16_MAX, ("VMXR0InvVPID invalid ASID %lu\n", pVCpu->hwaccm.s.uCurrentASID)); 5027 5027 descriptor[0] = pVCpu->hwaccm.s.uCurrentASID; 5028 5028 descriptor[1] = GCPtr;
Note:
See TracChangeset
for help on using the changeset viewer.