Changeset 82812 in vbox for trunk/src/VBox
- Timestamp:
- Jan 21, 2020 11:49:05 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r82607 r82812 5628 5628 Assert(pPciDev == pDevIns->apPciDevs[0]); 5629 5629 5630 int rc = PDMDevHlpCritSectEnter(pDevIns, &pThis->CritSect, VERR_SEM_BUSY); 5631 AssertRC(rc); 5632 5630 /* Note! We cannot take the device lock here as that would create a lock order 5631 problem as the caller has taken the PDM lock prior to calling us. If 5632 we did, we will get trouble later when raising interrupts while owning 5633 the device lock (e.g. vmsvgaR3FifoLoop). */ 5634 5635 int rc; 5633 5636 if (GCPhysAddress != NIL_RTGCPHYS) 5634 5637 { … … 5678 5681 /* NB: VBE_DISPI_INDEX_FB_BASE_HI is left unchanged here. */ 5679 5682 } 5680 PDMDevHlpCritSectLeave(pDevIns, &pThis->CritSect);5681 5683 return rc; 5682 5684 }
Note:
See TracChangeset
for help on using the changeset viewer.