Changeset 69304 in vbox for trunk/src/VBox/Devices/Storage/VSCSI
- Timestamp:
- Oct 25, 2017 1:41:16 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118625
- Location:
- trunk/src/VBox/Devices/Storage/VSCSI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/VSCSI/VSCSILunMmc.cpp
r69046 r69304 31 31 32 32 #include "VSCSIInternal.h" 33 33 34 34 35 /********************************************************************************************************************************* … … 937 938 } 938 939 else 939 rc = VERR_NOT_FOUND; /** @todo :Return lead-in information. */940 rc = VERR_NOT_FOUND; /** @todo Return lead-in information. */ 940 941 break; 941 942 } -
trunk/src/VBox/Devices/Storage/VSCSI/VSCSILunSsc.cpp
r67962 r69304 16 16 */ 17 17 18 /******************************************************************************* 19 * Header Files * 20 *******************************************************************************/ 18 19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 21 22 #define LOG_GROUP LOG_GROUP_VSCSI 22 23 #include <VBox/log.h> … … 182 183 *pu8ReplyPos++ = 0x45; /* Travan TR-4 density. */ 183 184 *pu8ReplyPos++ = 0; /* All blocks are the same. */ 184 *pu8ReplyPos++ = 0; // @todo:this calls for some macros!185 *pu8ReplyPos++ = 0; /// @todo this calls for some macros! 185 186 *pu8ReplyPos++ = 0; 186 187 *pu8ReplyPos++ = 0; /* Reserved. */ … … 196 197 case SCSI_MODE_SELECT_6: 197 198 { 198 /* @todo:implement!! */199 /** @todo implement!! */ 199 200 rcReq = vscsiLunReqSenseOkSet(pVScsiLun, pVScsiReq); 200 201 break; … … 256 257 case SCSI_LOAD_UNLOAD: 257 258 { 258 // @todo:should load/unload do anyhting? is verify even supported?259 /// @todo should load/unload do anyhting? is verify even supported? 259 260 rcReq = vscsiLunReqSenseOkSet(pVScsiLun, pVScsiReq); 260 261 break; … … 305 306 } 306 307 case SCSI_REWIND: 307 // @todo:flush data + write EOD? immed bit? partitions?308 /// @todo flush data + write EOD? immed bit? partitions? 308 309 pVScsiLUNSSC->uCurPos = 0; 309 310 rcReq = vscsiLunReqSenseOkSet(pVScsiLun, pVScsiReq); 310 311 break; 311 312 case SCSI_RESERVE_6: 312 // @todo:perform actual reservation313 /// @todo perform actual reservation 313 314 rcReq = vscsiLunReqSenseOkSet(pVScsiLun, pVScsiReq); 314 315 break; 315 316 case SCSI_RELEASE_6: 316 // @todo:perform actual release317 /// @todo perform actual release 317 318 rcReq = vscsiLunReqSenseOkSet(pVScsiLun, pVScsiReq); 318 319 break; … … 323 324 /* Report unrestricted block sizes (1-FFFFFFh). */ 324 325 memset(aReply, 0, sizeof(aReply)); 325 // @todo:Helpers for big-endian 16-bit/24-bit/32-bit constants?326 /// @todo Helpers for big-endian 16-bit/24-bit/32-bit constants? 326 327 aReply[1] = aReply[2] = aReply[3] = 0xff; 327 328 aReply[5] = 0x01;
Note:
See TracChangeset
for help on using the changeset viewer.