Changeset 84666 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Jun 3, 2020 1:43:15 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevIoApic.cpp
r84665 r84666 432 432 * See Intel spec. 10.11.2 "Message Data Register Format". 433 433 */ 434 memset(pIntr, 0, sizeof(*pIntr));435 434 pIntr->u8Dest = pMsi->MsiAddr.n.u8DestId; 436 435 pIntr->u8DestMode = pMsi->MsiAddr.n.u1DestMode; … … 451 450 DECLINLINE(void) ioapicGetMsiFromApicIntr(PCXAPICINTR pIntr, PMSIMSG pMsi) 452 451 { 453 memset(pMsi, 0, sizeof(*pMsi));454 452 pMsi->MsiAddr.n.u12Addr = VBOX_MSI_ADDR_BASE >> VBOX_MSI_ADDR_SHIFT; 455 453 pMsi->MsiAddr.n.u8DestId = pIntr->u8Dest; … … 862 860 863 861 XAPICINTR ApicIntr; 862 RT_ZERO(ApicIntr); 864 863 ioapicGetApicIntrFromMsi(&MsiMsg, &ApicIntr); 865 864
Note:
See TracChangeset
for help on using the changeset viewer.