diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2010-02-04 08:43:21 -0600 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-02-17 13:22:29 -0600 |
commit | d416b0c75fc52e1ac840e6c8c1857ac52d1d7132 (patch) | |
tree | 3f6336cd0480dd6b76f52e6c167d0dd94dfc6d07 /drivers | |
parent | a08a8471b7aed3d50df8e9c852dc2baa08ec8b01 (diff) | |
download | linux-3.10-d416b0c75fc52e1ac840e6c8c1857ac52d1d7132.tar.gz linux-3.10-d416b0c75fc52e1ac840e6c8c1857ac52d1d7132.tar.bz2 linux-3.10-d416b0c75fc52e1ac840e6c8c1857ac52d1d7132.zip |
[SCSI] hpsa: when resetting devices, print out which device
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/hpsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index f889ec8cc48..db12bc2d7d7 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c @@ -2141,14 +2141,14 @@ static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd) h = sdev_to_hba(scsicmd->device); if (h == NULL) /* paranoia */ return FAILED; - dev_warn(&h->pdev->dev, "resetting drive\n"); - dev = scsicmd->device->hostdata; if (!dev) { dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: " "device lookup failed.\n"); return FAILED; } + dev_warn(&h->pdev->dev, "resetting device %d:%d:%d:%d\n", + h->scsi_host->host_no, dev->bus, dev->target, dev->lun); /* send a reset to the SCSI LUN which the command was sent to */ rc = hpsa_send_reset(h, dev->scsi3addr); if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0) |