mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-20 04:01:26 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user