VirtualBox

Changeset 53513 in vbox for trunk/src/VBox/Devices/Graphics


Ignore:
Timestamp:
Dec 11, 2014 4:21:20 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
97253
Message:

Devices/Graphics: safety checks when setting IRQs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.cpp

    r50550 r53513  
    495495    VM_ASSERT_EMT(pIns->pVM);
    496496
     497    AssertPtrReturn(pIns->pHGFlags, VERR_WRONG_ORDER);
    497498    int rc = hgsmiFIFOLock(pIns);
    498499    AssertRC(rc);
     
    546547void HGSMISetHostGuestFlags(HGSMIINSTANCE *pIns, uint32_t flags)
    547548{
     549    AssertPtrReturnVoid(pIns->pHGFlags);
    548550    ASMAtomicOrU32(&pIns->pHGFlags->u32HostFlags, flags);
    549551}
     
    551553void HGSMIClearHostGuestFlags(HGSMIINSTANCE *pIns, uint32_t flags)
    552554{
     555    AssertPtrReturnVoid(pIns->pHGFlags);
    553556    ASMAtomicAndU32(&pIns->pHGFlags->u32HostFlags, (~flags));
    554557}
     
    852855    HGSMIHOSTFIFOENTRY *pEntry;
    853856
     857    AssertPtrReturn(pIns->pHGFlags, VERR_WRONG_ORDER);
    854858    int rc = hgsmiHostFIFOAlloc (pIns, &pEntry);
    855859
     
    18911895    HGSMIGUESTCOMPLENTRY *pEntry = NULL;
    18921896
     1897    AssertPtrReturn(pIns->pHGFlags, VERR_WRONG_ORDER);
    18931898    int rc = hgsmiGuestCompletionFIFOAlloc (pIns, &pEntry);
    18941899    AssertRC(rc);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette