Changeset 12518 in vbox
- Timestamp:
- Sep 16, 2008 9:47:36 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36667
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmifs.h
r12508 r12518 2499 2499 PDMSCSIREQUESTTXDIR_TO_DEVICE, 2500 2500 PDMSCSIREQUESTTXDIR_NONE 2501 /** @todo r=bird: 32-bit type size blowup? */ 2501 2502 } PDMSCSIREQUESTTXDIR; 2502 2503 … … 2509 2510 uint32_t uLogicalUnit; 2510 2511 /** Direction of the data flow. */ 2511 uint32_t uDataDirection; 2512 uint32_t uDataDirection; /**< @todo r=bird: why isn't this PDMSCSIREQUESTTXDIR? */ 2512 2513 /** Size of the SCSI CDB. */ 2513 2514 uint32_t cbCDB; 2514 2515 /** Pointer to the SCSI CDB. */ 2515 uint8_t *paCDB; 2516 uint8_t *paCDB; /**< @todo r=bird: array what? pbCDB perhaps? */ 2516 2517 /** Overall size of all scatter gather list elements 2517 2518 * for data transfer if any. */ … … 2525 2526 /** Pointer to the sense buffer. * 2526 2527 * Current assumption that the sense buffer is not scattered. */ 2527 uint8_t *pu8SenseBuffer; 2528 uint8_t *pu8SenseBuffer; /**< @todo r=bird: pbSenseBuffer is simpler */ 2528 2529 /** Opaque user data for use by the device. Left untouched by everything else! */ 2529 2530 void *pvUser;
Note:
See TracChangeset
for help on using the changeset viewer.