[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20210706181618.27960-9-don.brace@microchip.com>
Date: Tue, 6 Jul 2021 13:16:17 -0500
From: Don Brace <don.brace@...rochip.com>
To: <hch@...radead.org>, <martin.peterson@...cle.com>,
<jejb@...ux.vnet.ibm.com>, <linux-scsi@...r.kernel.org>
CC: <Kevin.Barnett@...rochip.com>, <scott.teel@...rochip.com>,
<Justin.Lindley@...rochip.com>, <scott.benesh@...rochip.com>,
<gerry.morong@...rochip.com>, <mahesh.rajashekhara@...rochip.com>,
<mike.mcgowen@...rochip.com>, <murthy.bhat@...rochip.com>,
<balsundar.p@...rochip.com>, <joseph.szczypek@....com>,
<jeff@...onical.com>, <POSWALD@...e.com>,
<john.p.donnelly@...cle.com>, <mwilck@...e.com>,
<pmenzel@...gen.mpg.de>, <linux-kernel@...r.kernel.org>
Subject: [smartpqi updates PATCH 8/9] smartpqi: fix isr accessing null structure member
From: Mike McGowen <mike.mcgowen@...rochip.com>
Correct driver's ISR accessing a data structure member
that has not been fully initialized during driver init.
- The pqi queue groups can be null when an interrupt fires.
Reviewed-by: Kevin Barnett <kevin.barnett@...rochip.com>
Reviewed-by: Scott Benesh <scott.benesh@...rochip.com>
Reviewed-by: Scott Teel <scott.teel@...rochip.com>
Signed-off-by: Mike McGowen <mike.mcgowen@...rochip.com>
Signed-off-by: Don Brace <don.brace@...rochip.com>
---
drivers/scsi/smartpqi/smartpqi_init.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/smartpqi/smartpqi_init.c b/drivers/scsi/smartpqi/smartpqi_init.c
index 6f2263abaa8c..eeaf0568b5e3 100644
--- a/drivers/scsi/smartpqi/smartpqi_init.c
+++ b/drivers/scsi/smartpqi/smartpqi_init.c
@@ -7757,11 +7757,11 @@ static int pqi_ctrl_init(struct pqi_ctrl_info *ctrl_info)
pqi_init_operational_queues(ctrl_info);
- rc = pqi_request_irqs(ctrl_info);
+ rc = pqi_create_queues(ctrl_info);
if (rc)
return rc;
- rc = pqi_create_queues(ctrl_info);
+ rc = pqi_request_irqs(ctrl_info);
if (rc)
return rc;
--
2.28.0.rc1.9.ge7ae437ac1
Powered by blists - more mailing lists