-----Original Message-----
From: linux-scsi-ow...@vger.kernel.org 
[mailto:linux-scsi-ow...@vger.kernel.org] On Behalf Of Erwan Velu
Sent: Friday, March 1, 2019 10:08 AM
Cc: Erwan Velu <e.v...@criteo.com>; Don Brace <don.br...@microsemi.com>; James 
E.J. Bottomley <j...@linux.ibm.com>; Martin K. Petersen 
<martin.peter...@oracle.com>; open list:MICROSEMI SMART ARRAY SMARTPQI DRIVER 
(smartpqi) <esc.storage...@microsemi.com>; open list:MICROSEMI SMART ARRAY 
SMARTPQI DRIVER (smartpqi) <linux-scsi@vger.kernel.org>; open list 
<linux-ker...@vger.kernel.org>
Subject: [PATCH v3] scsi: smartpqi_init: Reporting 'logical unit failure'

When the HARDWARE_ERROR/0x3e/0x1 case is triggered, the logical volume is 
offlined.
When reading the kernel log, the reason why the device got offlined isn't 
reported to the user.
This situation makes difficult for admins to estimate the root cause of the 
issue they analize.

Reading this part of the code makes clear this is because driver received a 
HARDWARE_ERROR/0x3e/0x1 which is a 'logical unit failure'.
This patch is just about reporting the reason behind the offlining to ease the 
analyse.

Signed-off-by: Erwan Velu <e.v...@criteo.com>

Acked-by: Don Brace <don.br...@microsemi.com>

---
 drivers/scsi/smartpqi/smartpqi_init.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/scsi/smartpqi/smartpqi_init.c 
b/drivers/scsi/smartpqi/smartpqi_init.c
index f564af8949e8..adebafe56b5b 100644
--- a/drivers/scsi/smartpqi/smartpqi_init.c
+++ b/drivers/scsi/smartpqi/smartpqi_init.c
@@ -2764,6 +2764,12 @@ static void pqi_process_raid_io_error(struct 
pqi_io_request *io_request)
                                sshdr.sense_key == HARDWARE_ERROR &&
                                sshdr.asc == 0x3e &&
                                sshdr.ascq == 0x1) {
+                       struct pqi_ctrl_info *ctrl_info = 
shost_to_hba(scmd->device->host);
+                       struct pqi_scsi_dev *device = scmd->device->hostdata;
+
+                       if (printk_ratelimit())
+                               scmd_printk(KERN_ERR, scmd, "received 'logical 
unit failure' from controller for scsi %d:%d:%d:%d\n",
+                                       ctrl_info->scsi_host->host_no, 
device->bus, device->target, device->lun);
                        pqi_take_device_offline(scmd->device, "RAID");
                        host_byte = DID_NO_CONNECT;
                }
-- 
2.20.1

Reply via email to