Changeset 33171 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Oct 15, 2010 11:10:10 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 66707
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA_VDMA.cpp
r33146 r33171 247 247 if (pVGAState->pDrv->pfnCrHgsmiCommandProcess) 248 248 { 249 VBoxSHGSMICommandMarkAsynchCompletion(pCmd); 249 250 pVGAState->pDrv->pfnCrHgsmiCommandProcess(pVGAState->pDrv, pCrCmd); 250 251 return true; … … 276 277 VBOXVDMACMD *pDmaHdr = VBOXVDMACMD_FROM_BODY(pCmd); 277 278 VBOXVDMACBUF_DR *pDr = VBOXVDMACBUF_DR_FROM_TAIL(pDmaHdr); 279 AssertRC(rc); 278 280 pDr->rc = rc; 279 281 280 282 Assert(pVGAState->fGuestCaps & VBVACAPS_COMPLETEGCMD_BY_IOREAD); 281 rc = HGSMICompleteGuestCommand(pIns, pDr, true /* do Irq */);283 rc = VBoxSHGSMICommandComplete(pIns, pDr); 282 284 AssertRC(rc); 283 285 return rc; … … 289 291 PVBOXVDMACMD_CHROMIUM_CTL_PRIVATE pCmdPrivate = VBOXVDMACMD_CHROMIUM_CTL_PRIVATE_FROM_CTL(pCmd); 290 292 pCmdPrivate->rc = rc; 293 AssertRC(rc); 291 294 if (pCmdPrivate->pfnCompletion) 292 295 { … … 1076 1079 #endif 1077 1080 1081 #ifdef DEBUG_misha 1082 Assert(0); 1083 #endif 1084 1078 1085 VBOXVDMACMD_SUBMIT_CONTEXT Context; 1079 1086 Context.pVdma = pVdma;
Note:
See TracChangeset
for help on using the changeset viewer.