Changeset 93007 in vbox for trunk/src/VBox/Devices/VirtIO/VirtioCore.h
- Timestamp:
- Dec 17, 2021 9:25:53 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VirtIO/VirtioCore.h
r92951 r93007 390 390 * @{ */ 391 391 /** 392 * Implementation-specific client callback to report VirtIO when feature 393 * negotiation is complete, optional. 394 * 395 * It should be invoked by the VirtIO core only once. 392 * Implementation-specific client callback to report VirtIO when feature negotiation is 393 * complete. It should be invoked by the VirtIO core only once. 396 394 * 397 395 * @param pVirtio Pointer to the shared virtio state. … … 414 412 415 413 /** 416 * Implementation-specific client callback to access VirtIO Device-specific 417 * capabilities (other VirtIO capabilities and features are handled in VirtIO 418 * implementation). 414 * Implementation-specific client callback to access VirtIO Device-specific capabilities 415 * (other VirtIO capabilities and features are handled in VirtIO implementation) 419 416 * 420 417 * @param pDevIns The device instance. … … 426 423 427 424 /** 428 * Implementation-specific client callback to access VirtIO Device-specific 429 * capabilities (other VirtIO capabilities and features are handled in VirtIO 430 * implementation). 425 * Implementation-specific client callback to access VirtIO Device-specific capabilities 426 * (other VirtIO capabilities and features are handled in VirtIO implementation) 431 427 * 432 428 * @param pDevIns The device instance. … … 438 434 439 435 /** 440 * When guest-to-host queue notifications are enabled, the guest driver notifies 441 * the host that the avail queue has buffers, and this callback informs the 442 * client. 436 * When guest-to-host queue notifications are enabled, the guest driver notifies the host 437 * that the avail queue has buffers, and this callback informs the client. 443 438 * 444 439 * @param pVirtio Pointer to the shared virtio state. … … 460 455 R3PTRTYPE(uint8_t *) pbPrevDevSpecificCfg; /**< Previous read dev-specific cfg of client */ 461 456 bool fGenUpdatePending; /**< If set, update cfg gen after driver reads */ 462 char szMmioName[MAX_NAME];/**< MMIO mapping name */463 char szPortIoName[MAX_NAME];/**< PORT mapping name */457 char pcszMmioName[MAX_NAME]; /**< MMIO mapping name */ 458 char pcszPortIoName[MAX_NAME]; /**< PORT mapping name */ 464 459 } VIRTIOCORER3; 465 460 … … 806 801 */ 807 802 int virtioCoreR3VirtqUsedBufPut(PPDMDEVINS pDevIns, PVIRTIOCORE pVirtio, uint16_t uVirtq, size_t cb, const void *pv, 808 PVIRTQBUF pVirtqBuf, uint32_t cbEnqueue, bool fFence = true);803 PVIRTQBUF pVirtqBuf, size_t cbEnqueue, bool fFence = true); 809 804 810 805
Note:
See TracChangeset
for help on using the changeset viewer.