summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/cam/scsi/scsi_xpt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/cam/scsi/scsi_xpt.c b/sys/cam/scsi/scsi_xpt.c
index 526aa41..df82871 100644
--- a/sys/cam/scsi/scsi_xpt.c
+++ b/sys/cam/scsi/scsi_xpt.c
@@ -758,7 +758,8 @@ again:
* serial number check finish, we attempt to figure out
* whether we still have the same device.
*/
- if ((periph->path->device->flags & CAM_DEV_UNCONFIGURED) == 0) {
+ if (((periph->path->device->flags & CAM_DEV_UNCONFIGURED) == 0)
+ && ((softc->flags & PROBE_INQUIRY_CKSUM) == 0)) {
MD5Init(&softc->context);
MD5Update(&softc->context, (unsigned char *)inq_buf,
OpenPOWER on IntegriCloud