|
|
@@ -815,6 +815,19 @@ static int scsi_add_lun(struct scsi_device *sdev, unsigned char *inq_result,
|
|
|
} else {
|
|
|
sdev->type = (inq_result[0] & 0x1f);
|
|
|
sdev->removable = (inq_result[1] & 0x80) >> 7;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * some devices may respond with wrong type for
|
|
|
+ * well-known logical units. Force well-known type
|
|
|
+ * to enumerate them correctly.
|
|
|
+ */
|
|
|
+ if (scsi_is_wlun(sdev->lun) && sdev->type != TYPE_WLUN) {
|
|
|
+ sdev_printk(KERN_WARNING, sdev,
|
|
|
+ "%s: correcting incorrect peripheral device type 0x%x for W-LUN 0x%16xhN\n",
|
|
|
+ __func__, sdev->type, (unsigned int)sdev->lun);
|
|
|
+ sdev->type = TYPE_WLUN;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
if (sdev->type == TYPE_RBC || sdev->type == TYPE_ROM) {
|