Skip to content

Commit 80bf3b2

Browse files
foxdroddmartinkpetersen
authored andcommitted
scsi: devinfo: Add BLIST_SKIP_IO_HINTS for Iomega ZIP
The Iomega ZIP 100 (Z100P2) can't process IO Advice Hints Grouping mode page query. It immediately switches to the status phase 0xb8 after receiving the subpage code 0x05 of MODE_SENSE_10 command, which fails imm_out() and turns into DID_ERROR of this command, which leads to unusable device. This was tested with an Iomega ZIP 100 (Z100P2) connected with a StarTech PEX1P2 AX99100 PCIe parallel port card. Prior to this fix, Test Unit Ready fails and the drive can't be used: IMM: returned SCSI status b8 sd 7:0:6:0: [sdh] Test Unit Ready failed: Result: hostbyte=0x01 driverbyte=DRIVER_OK Signed-off-by: Florian Fuchs <fuchsfl@gmail.com> Link: https://patch.msgid.link/20260227181823.892932-1-fuchsfl@gmail.com Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
1 parent dbd5397 commit 80bf3b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/scsi/scsi_devinfo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ static struct {
190190
{"IBM", "2076", NULL, BLIST_NO_VPD_SIZE},
191191
{"IBM", "2105", NULL, BLIST_RETRY_HWERROR},
192192
{"iomega", "jaz 1GB", "J.86", BLIST_NOTQ | BLIST_NOLUN},
193-
{"IOMEGA", "ZIP", NULL, BLIST_NOTQ | BLIST_NOLUN},
193+
{"IOMEGA", "ZIP", NULL, BLIST_NOTQ | BLIST_NOLUN | BLIST_SKIP_IO_HINTS},
194194
{"IOMEGA", "Io20S *F", NULL, BLIST_KEY},
195195
{"INSITE", "Floptical F*8I", NULL, BLIST_KEY},
196196
{"INSITE", "I325VM", NULL, BLIST_KEY},

0 commit comments

Comments
 (0)