Changeset 90429 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Jul 30, 2021 1:58:59 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuIntel.cpp
r90213 r90429 59 59 #define DMAR_LOCK_RET(a_pDevIns, a_pThisCC, a_rcBusy) \ 60 60 do { \ 61 if ((a_pThisCC)->CTX_SUFF(pIommuHlp)->pfnLock((a_pDevIns), (a_rcBusy)) == VINF_SUCCESS) \ 61 int const rcLock = (a_pThisCC)->CTX_SUFF(pIommuHlp)->pfnLock((a_pDevIns), (a_rcBusy)); \ 62 if (RT_LIKELY(rcLock == VINF_SUCCESS)) \ 62 63 { /* likely */ } \ 63 64 else \ 64 return (a_rcBusy); \65 return rcLock; \ 65 66 } while (0) 66 67
Note:
See TracChangeset
for help on using the changeset viewer.