diff options
author | James Bottomley <James.Bottomley@steeleye.com> | 2005-08-05 17:24:54 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-08-05 17:49:15 -0400 |
commit | fc789a93994858b5e5a46afb96d0dcf6cc1b6f08 (patch) | |
tree | f83fa07a0dc721a41a7e5d984284b823aa39b261 /drivers/scsi/aic7xxx/aic79xx_osm.c | |
parent | 79778a27be4c704552a18cf2a3e8b9e30623acd1 (diff) |
[SCSI] aic7xxx/79xx: fix another potential panic due to a non existent target
I ran into this one sending bus resets across the hardware.
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/aic7xxx/aic79xx_osm.c')
-rw-r--r-- | drivers/scsi/aic7xxx/aic79xx_osm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/aic7xxx/aic79xx_osm.c b/drivers/scsi/aic7xxx/aic79xx_osm.c index 40f32bb23972..acaeebd50465 100644 --- a/drivers/scsi/aic7xxx/aic79xx_osm.c +++ b/drivers/scsi/aic7xxx/aic79xx_osm.c | |||
@@ -1617,9 +1617,9 @@ ahd_send_async(struct ahd_softc *ahd, char channel, | |||
1617 | * are identical to those last reported. | 1617 | * are identical to those last reported. |
1618 | */ | 1618 | */ |
1619 | starget = ahd->platform_data->starget[target]; | 1619 | starget = ahd->platform_data->starget[target]; |
1620 | targ = scsi_transport_target_data(starget); | 1620 | if (starget == NULL) |
1621 | if (targ == NULL) | ||
1622 | break; | 1621 | break; |
1622 | targ = scsi_transport_target_data(starget); | ||
1623 | 1623 | ||
1624 | target_ppr_options = | 1624 | target_ppr_options = |
1625 | (spi_dt(starget) ? MSG_EXT_PPR_DT_REQ : 0) | 1625 | (spi_dt(starget) ? MSG_EXT_PPR_DT_REQ : 0) |