All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] scsi_dh_hp_sw.c: return DEV_OFFLINED when blk_get_request fails
@ 2013-03-28 19:32 Jeff Moyer
  2013-03-28 19:49 ` Mike Christie
  2013-03-28 21:52 ` Joe Lawrence
  0 siblings, 2 replies; 3+ messages in thread
From: Jeff Moyer @ 2013-03-28 19:32 UTC (permalink / raw)
  To: linux-scsi; +Cc: Joe Lawrence

Hi,

If blk_get_requet fails here, it means that the queue is dead.  It seems
better to return a DEV_OFFLINED error code than the misleading
TEMP_UNAVAIL.  Comments?

Signed-off-by: Jeff Moyer <jmoyer@redhat.com>

diff --git a/drivers/scsi/device_handler/scsi_dh_hp_sw.c b/drivers/scsi/device_handler/scsi_dh_hp_sw.c
index 084062b..eec24d3 100644
--- a/drivers/scsi/device_handler/scsi_dh_hp_sw.c
+++ b/drivers/scsi/device_handler/scsi_dh_hp_sw.c
@@ -118,7 +118,7 @@ static int hp_sw_tur(struct scsi_device *sdev, struct hp_sw_dh_data *h)
 retry:
 	req = blk_get_request(sdev->request_queue, WRITE, GFP_NOIO);
 	if (!req)
-		return SCSI_DH_RES_TEMP_UNAVAIL;
+		return SCSI_DH_DEV_OFFLINED;
 
 	req->cmd_type = REQ_TYPE_BLOCK_PC;
 	req->cmd_flags |= REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-03-28 21:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-28 19:32 [patch] scsi_dh_hp_sw.c: return DEV_OFFLINED when blk_get_request fails Jeff Moyer
2013-03-28 19:49 ` Mike Christie
2013-03-28 21:52 ` Joe Lawrence

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.