Changeset 60476 in vbox
- Timestamp:
- Apr 13, 2016 2:42:43 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/VMM/VMMAll/APICAll.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/APICAll.cpp
r60475 r60476 618 618 && apicIsEnabled(&pVM->aCpus[idCpu])) 619 619 APICPostInterrupt(&pVM->aCpus[idCpu], uVector, enmTriggerMode); 620 else 621 Log4(("APIC: apicSendIntr: No CPU found for lowest-priority delivery mode!\n")); 620 622 break; 621 623 } … … 813 815 uint8_t const u8Tpr = pXApicPage->tpr.u8Tpr; /* PAV */ 814 816 815 /* If there is a tie for lowest priority, the local APIC with the highest ID is chosen. 816 See AMD spec. 16.6.2 "Lowest Priority Messages and Arbitration". */ 817 if (u8LowestTpr <= u8Tpr) 817 /* 818 * If there is a tie for lowest priority, the local APIC with the highest ID is chosen. 819 * Hence the use of "<=" in the check below. 820 * See AMD spec. 16.6.2 "Lowest Priority Messages and Arbitration". 821 */ 822 if (u8Tpr <= u8LowestTpr) 818 823 { 819 824 u8LowestTpr = u8Tpr;
Note:
See TracChangeset
for help on using the changeset viewer.

