A small patch to fix command "Send cue sheet" transfer length.

In mmc5, it is from cdb 6-8.

Signed-Off-By Ming Zhang


git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@35 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Vladislav Bolkhovitin
2006-11-15 12:13:57 +00:00
parent 58a08724ca
commit 7e8e976d2b

View File

@@ -1438,8 +1438,7 @@ int scst_get_cdb_info(const uint8_t *cdb_p, int dev_type,
info_p->transfer_len = (*(cdb_p + 8));
/* opcode = READ-WRITE UPDATED BLOCK */
if ((ptr->ops == 0x5d) ||
(ptr->ops == UPDATE_BLOCK) ||
if ((ptr->ops == UPDATE_BLOCK) ||
(ptr->ops == WRITE_SAME)) {
/* the opcode always returns 1 block */
info_p->flags |= SCST_TRANSFER_LEN_TYPE_FIXED;