linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH for-2.6.39] [SCSI] scsi_dh_emc: fix panic when handling multiple path failures
@ 2011-03-21 19:57 Mike Snitzer
  2011-03-21 20:02 ` James Bottomley
  0 siblings, 1 reply; 9+ messages in thread
From: Mike Snitzer @ 2011-03-21 19:57 UTC (permalink / raw)
  To: James Bottomley; +Cc: linux-scsi, Eddie Williams, Mike Snitzer

From: Eddie Williams <eddie.williams@steeleye.com>

Do not sdev_printk() a scsi_device that was, or is being, deleted.

If multiple failures occur (e.g. FC switch with multiple paths fails),
and both the active path and next path is failed in the process, the
scsi_device associated with the next path can be accessed after it was
deleted.

Signed-off-by: Eddie Williams <eddie.williams@steeleye.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
---
 drivers/scsi/device_handler/scsi_dh_emc.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/drivers/scsi/device_handler/scsi_dh_emc.c b/drivers/scsi/device_handler/scsi_dh_emc.c
index 48441f6..670f059 100644
--- a/drivers/scsi/device_handler/scsi_dh_emc.c
+++ b/drivers/scsi/device_handler/scsi_dh_emc.c
@@ -537,14 +537,14 @@ static int clariion_activate(struct scsi_device *sdev,
 
 	result = clariion_send_inquiry(sdev, csdev);
 	if (result != SCSI_DH_OK)
-		goto done;
+		goto out;
 
 	if (csdev->lun_state == CLARIION_LUN_OWNED)
 		goto done;
 
 	result = send_trespass_cmd(sdev, csdev);
 	if (result != SCSI_DH_OK)
-		goto done;
+		goto out;
 	sdev_printk(KERN_INFO, sdev,"%s: %s trespass command sent\n",
 		    CLARIION_NAME,
 		    csdev->flags&CLARIION_SHORT_TRESPASS?"short":"long" );
@@ -552,7 +552,7 @@ static int clariion_activate(struct scsi_device *sdev,
 	/* Update status */
 	result = clariion_send_inquiry(sdev, csdev);
 	if (result != SCSI_DH_OK)
-		goto done;
+		goto out;
 
 done:
 	sdev_printk(KERN_INFO, sdev,
@@ -561,10 +561,12 @@ done:
 		    csdev->port, lun_state[csdev->lun_state],
 		    csdev->default_sp + 'A');
 
+out:
 	if (fn)
 		fn(data, result);
 	return 0;
 }
+
 /*
  * params - parameters in the following format
  *      "no_of_params\0param1\0param2\0param3\0...\0"
-- 
1.7.3.4


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

end of thread, other threads:[~2011-03-23 23:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-21 19:57 [PATCH for-2.6.39] [SCSI] scsi_dh_emc: fix panic when handling multiple path failures Mike Snitzer
2011-03-21 20:02 ` James Bottomley
2011-03-21 20:38   ` Mike Snitzer
2011-03-21 20:44     ` James Bottomley
2011-03-21 23:16       ` Mike Snitzer
     [not found]         ` <AANLkTimknz6=6CeURQD_ZB+9DD9W20-rfktjp75nsZrW@mail.gmail.com>
2011-03-22  2:36           ` Eddie Williams
2011-03-23 21:58         ` Mike Snitzer
2011-03-23 22:03           ` James Bottomley
2011-03-23 23:02             ` Mike Snitzer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).