> -----Original Message----- > From: Hannes Reinecke [mailto:hare@xxxxxxx] > Sent: Friday, November 18, 2016 1:33 AM > To: Martin K. Petersen > Cc: Christoph Hellwig; James Bottomley; Don Brace; Martin Wilck; linux- > scsi@xxxxxxxxxxxxxxx; Hannes Reinecke; Hannes Reinecke > Subject: [PATCH 1/3] hpsa: use correct DID_NO_CONNECT hostbyte > > EXTERNAL EMAIL > > > NOT_READY is a sense key, not a legit scsi hostbyte value. > Use DID_NO_CONNECT instead. > > Signed-off-by: Hannes Reinecke <hare@xxxxxxxx> > --- > drivers/scsi/hpsa.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c > index ea64c01..488e17c 100644 > --- a/drivers/scsi/hpsa.c > +++ b/drivers/scsi/hpsa.c > @@ -5493,7 +5493,7 @@ static int hpsa_scsi_queue_command(struct > Scsi_Host *sh, struct scsi_cmnd *cmd) > > dev = cmd->device->hostdata; > if (!dev) { > - cmd->result = NOT_READY << 16; /* host byte */ > + cmd->result = DID_NO_CONNECT << 16; > cmd->scsi_done(cmd); > return 0; > } > -- > 1.8.5.6 Acked-by: Don Brace <don.brace@xxxxxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html