Orabug:
27072286
During a scan for new LUNs, if an array misconfiguration results in
an error (non-configured LUNs exist in the middle), this terminates the
scsi scan:
sd 12:0:0:0: Unexpected response from lun 1 while scanning, scan aborted
This patch allows the scsi scan to continue, and prints this warning:
sd 12:0:0:0: Unexpected response from lun 1 while scanning,
ignoring device
Related bugs:
18271070,
17500570
Signed-off-by: John Sobecki <john.sobecki@oracle.com>
Reviewed-by: Srinivas Eeda <srinivas.eeda@oracle.com>
Signed-off-by: Dhaval Giani <dhaval.giani@oracle.com>
*/
sdev_printk(KERN_ERR, sdev,
"Unexpected response"
- " from lun %llu while scanning, scan"
- " aborted\n", (unsigned long long)lun);
- break;
+ " from lun %d while scanning,"
+ " ignoring device\n", lun);
}
}
}