Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1516549

[PATCH 1/2] qla2xxx: do not queue commands when unloading

From Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com>
Newsgroups linux.kernel
Subject [PATCH 1/2] qla2xxx: do not queue commands when unloading
Date 2016-11-07 21:00 +0100
Message-ID <sAYff-7Eq-27@gated-at.bofh.it> (permalink)
References <sAYff-7Eq-21@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


When the driver is unloading, in qla2x00_remove_one(), there is a single
call/point in time to abort ongoing commands, qla2x00_abort_all_cmds(),
which is still several steps away from the call to scsi_remove_host().

If more commands continue to arrive and be processed during that interval,
when the driver is tearing down and releasing its structures, it might
potentially hit an oops due to invalid memory access:

    Unable to handle kernel paging request for data at address 0x00000138
    <...>
    NIP [d000000004700a40] qla2xxx_queuecommand+0x80/0x3f0 [qla2xxx]
    LR [d000000004700a10] qla2xxx_queuecommand+0x50/0x3f0 [qla2xxx]

So, fail commands in qla2xxx_queuecommand() if the UNLOADING bit is set.

Signed-off-by: Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com>
---
 drivers/scsi/qla2xxx/qla_os.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c
index ace65db..fdb135b 100644
--- a/drivers/scsi/qla2xxx/qla_os.c
+++ b/drivers/scsi/qla2xxx/qla_os.c
@@ -707,6 +707,11 @@ static int qla25xx_setup_mode(struct scsi_qla_host *vha)
 	srb_t *sp;
 	int rval;
 
+	if (unlikely(test_bit(UNLOADING, &base_vha->dpc_flags))) {
+		cmd->result = DID_NO_CONNECT << 16;
+		goto qc24_fail_command;
+	}
+
 	if (ha->flags.eeh_busy) {
 		if (ha->flags.pci_channel_io_perm_failure) {
 			ql_dbg(ql_dbg_aer, vha, 0x9010,
-- 
1.8.3.1

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/2] qla2xxx: fix errors in PCI device remove with ongoing I/O Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com> - 2016-11-07 21:00 +0100
  [PATCH 1/2] qla2xxx: do not queue commands when unloading Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com> - 2016-11-07 21:00 +0100
  [PATCH 2/2] qla2xxx: fix invalid DMA access after command aborts in PCI device remove Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com> - 2016-11-07 21:00 +0100
  Re: [PATCH 0/2] qla2xxx: fix errors in PCI device remove with ongoing  I/O "Madhani, Himanshu" <Himanshu.Madhani@cavium.com> - 2016-11-08 21:30 +0100
  Re: [PATCH 0/2] qla2xxx: fix errors in PCI device remove with ongoing I/O "Martin K. Petersen" <martin.petersen@oracle.com> - 2016-11-09 01:20 +0100

csiph-web