Changeset 79929 in vbox
- Timestamp:
- Jul 23, 2019 12:03:59 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132347
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevVirtioSCSI.cpp
r79928 r79929 713 713 * @param GCPhysAddr Guest driver physical address to write 714 714 * @param pvBuf Buffer in which to save read data 715 * @param cb ReadNumber of bytes to write715 * @param cbWrite Number of bytes to write 716 716 */ 717 717 static DECLCALLBACK(int) virtioScsiR3DevCapWrite(PPDMDEVINS pDevIns, RTGCPHYS GCPhysAddr, const void *pvBuf, size_t cbWrite) -
trunk/src/VBox/Devices/VirtIO/Virtio_1_0.cpp
r79928 r79929 700 700 * Setup PCI device controller and Virtio state 701 701 * 702 * @param pDevIns Device instance data 703 * @param pState Device state 704 * @param iInstance Instance number 705 * @param pPciParams Values to populate industry standard PCI Configuration Space data structure 706 * @param pcszNameFmt Device instance name (format-specifier) 707 * @param uVirtioRegion Region number to map for PCi Capabilities structs 708 * @param nQueues Number of Virtio Queues created by consumer (driver) 709 */ 710 702 * @param pDevIns Device instance data 703 * @param pVirtio Device State 704 * @param iInstance Instance number 705 * @param pPciParams Values to populate industry standard PCI Configuration Space data structure 706 * @param pcszNameFmt Device instance name (format-specifier) 707 * @param nQueues Number of Virtio Queues created by consumer (driver) 708 * @param uVirtioRegion Region number to map for PCi Capabilities structs 709 * @param devCapReadCallback Client function to call back to handle device specific capabilities 710 * @param devCapWriteCallback Client function to call back to handle device specific capabilities 711 * @param cbDevSpecificCap Size of device specific struct 712 */ 711 713 int virtioConstruct(PPDMDEVINS pDevIns, PVIRTIOSTATE pVirtio, int iInstance, 712 714 PVIRTIOPCIPARAMS pPciParams, const char *pcszNameFmt,
Note:
See TracChangeset
for help on using the changeset viewer.