Changeset 103066 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jan 25, 2024 3:03:18 PM (10 months ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r101362 r103066 549 549 uint16_t const iGroup = RT_HI_U16(fFlagsAndGroup); 550 550 if ( iGroup != UINT16_MAX 551 && ( ( pLoggerInt->afGroups[iGroup < pLoggerInt->cGroups ? iGroup : 0]& (fFlags | RTLOGGRPFLAGS_ENABLED))551 && ( (*(pLoggerInt->afGroups + (iGroup < pLoggerInt->cGroups ? iGroup : 0)) & (fFlags | RTLOGGRPFLAGS_ENABLED)) 552 552 != (fFlags | RTLOGGRPFLAGS_ENABLED))) 553 553 pLoggerInt = NULL; … … 1556 1556 iGroup = pLoggerInt->cGroups; 1557 1557 while (iGroup-- > 0) 1558 pLoggerInt->afGroups[iGroup]= 0;1558 *(pLoggerInt->afGroups + iGroup) = 0; 1559 1559 1560 1560 /* … … 1789 1789 { 1790 1790 if (fEnabled) 1791 pLoggerInt->afGroups[i]|= fFlags;1791 *(pLoggerInt->afGroups + i) |= fFlags; 1792 1792 else 1793 pLoggerInt->afGroups[i]&= ~fFlags;1793 *(pLoggerInt->afGroups + i) &= ~fFlags; 1794 1794 } 1795 1795 } … … 4159 4159 return VINF_LOG_DISABLED; 4160 4160 if ( iGroup != ~0U 4161 && ( pLoggerInt->afGroups[iGroup]& (fFlags | RTLOGGRPFLAGS_ENABLED)) != (fFlags | RTLOGGRPFLAGS_ENABLED))4161 && (*(pLoggerInt->afGroups + iGroup) & (fFlags | RTLOGGRPFLAGS_ENABLED)) != (fFlags | RTLOGGRPFLAGS_ENABLED)) 4162 4162 return VINF_LOG_DISABLED; 4163 4163 -
trunk/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
r102874 r103066 426 426 fContiguous = true; 427 427 for (iPage = 0; iPage < cPages; iPage++) 428 pMemLnx->apPages[iPage]= &paPages[iPage];428 *(pMemLnx->apPages + iPage) = &paPages[iPage]; 429 429 } 430 430 else if (fContiguous) … … 442 442 for (iPage = 0; iPage < cPages; iPage++) 443 443 { 444 pMemLnx->apPages[iPage]= alloc_page(fFlagsLnx | __GFP_NOWARN);445 if (RT_UNLIKELY(! pMemLnx->apPages[iPage]))444 *(pMemLnx->apPages + iPage) = alloc_page(fFlagsLnx | __GFP_NOWARN); 445 if (RT_UNLIKELY(!*(pMemLnx->apPages + iPage))) 446 446 { 447 447 while (iPage-- > 0) 448 __free_page( pMemLnx->apPages[iPage]);448 __free_page(*(pMemLnx->apPages + iPage)); 449 449 rtR0MemObjDelete(&pMemLnx->Core); 450 450 return rcNoMem; … … 623 623 size_t iPage = pMemLnx->cPages; 624 624 while (iPage-- > 0) 625 if (PageHighMem( pMemLnx->apPages[iPage]))625 if (PageHighMem(*(pMemLnx->apPages + iPage))) 626 626 { 627 627 fMustMap = true;
Note:
See TracChangeset
for help on using the changeset viewer.