Changeset 86926 in vbox
- Timestamp:
- Nov 20, 2020 8:35:32 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuAmd.cpp
r86920 r86926 3316 3316 if (Irte.n.u3IntrType <= VBOX_MSI_DELIVERY_MODE_LOWEST_PRIO) 3317 3317 { 3318 /* Preserve all bits from the source MSI address that don't map 1:1 from the IRTE. */ 3319 pMsiOut->Addr.u64 = pMsiIn->Addr.u64; 3318 /* Preserve all bits from the source MSI address and data that don't map 1:1 from the IRTE. */ 3319 *pMsiOut = *pMsiIn; 3320 3320 3321 pMsiOut->Addr.n.u1DestMode = Irte.n.u1DestMode; 3321 3322 pMsiOut->Addr.n.u8DestId = Irte.n.u8Dest; 3322 3323 3323 /* Preserve all bits from the source MSI data that don't map 1:1 from the IRTE. */3324 pMsiOut->Data.u32 = pMsiIn->Data.u32;3325 3324 pMsiOut->Data.n.u8Vector = Irte.n.u8Vector; 3326 3325 pMsiOut->Data.n.u3DeliveryMode = Irte.n.u3IntrType;
Note:
See TracChangeset
for help on using the changeset viewer.