From 7e8e976d2bb4442987158354f77949173491e855 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Wed, 15 Nov 2006 12:13:57 +0000 Subject: [PATCH] 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 --- scst/src/scst_lib.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scst/src/scst_lib.c b/scst/src/scst_lib.c index a926e640c..54115518c 100644 --- a/scst/src/scst_lib.c +++ b/scst/src/scst_lib.c @@ -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;