Changeset 20001 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- May 25, 2009 1:59:29 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r19992 r20001 947 947 948 948 /* TPR caching in CR8 */ 949 int rc = PDMApicGetTPR(pV M, &u8LastVTPR, &fPending);949 int rc = PDMApicGetTPR(pVCpu, &u8LastVTPR, &fPending); 950 950 AssertRC(rc); 951 951 pVMCB->ctrl.IntCtrl.n.u8VTPR = u8LastVTPR; … … 1340 1340 if (fSyncTPR) 1341 1341 { 1342 rc = PDMApicSetTPR(pV M, pVMCB->ctrl.IntCtrl.n.u8VTPR);1342 rc = PDMApicSetTPR(pVCpu, pVMCB->ctrl.IntCtrl.n.u8VTPR); 1343 1343 AssertRC(rc); 1344 1344 } -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r20000 r20001 2181 2181 bool fPending; 2182 2182 2183 int rc = PDMApicGetTPR(pV M, &u8TPR, &fPending);2183 int rc = PDMApicGetTPR(pVCpu, &u8TPR, &fPending); 2184 2184 AssertRC(rc); 2185 2185 /* The TPR can be found at offset 0x80 in the APIC mmio page. */ … … 2384 2384 if (fSyncTPR) 2385 2385 { 2386 rc = PDMApicSetTPR(pV M, pVCpu->hwaccm.s.vmx.pVAPIC[0x80] >> 4);2386 rc = PDMApicSetTPR(pVCpu, pVCpu->hwaccm.s.vmx.pVAPIC[0x80] >> 4); 2387 2387 AssertRC(rc); 2388 2388 }
Note:
See TracChangeset
for help on using the changeset viewer.