Re: [PATCH 3/3] tcm_qla2xxx: Expose per endpoint dynamic_sessions attribute

2015-03-09 Thread Saurav Kashyap
Acked-by: Saurav Kashyap saurav.kash...@qlogic.com Thanks, ~Saurav From: Nicholas Bellinger n...@linux-iscsi.org This patch exposes a new ../qla2xxx*/$WWPN/$TPGT/dynamic_sessions attribute to dump the currently active sessions by FC initiator WWPN that have been created with dynamically

Re: [PATCH] qla2xxx: Fix trivial typos in ql_log message

2015-02-26 Thread Saurav Kashyap
Acked-by: Saurav Kashyap saurav.kash...@qlogic.com Change 'Fimware' to 'Firmware' Change 'enalbled' to 'enabled' Signed-off-by: Yannick Guerrini yguerr...@tomshardware.fr --- drivers/scsi/qla2xxx/qla_init.c | 4 ++-- drivers/scsi/qla2xxx/qla_mid.c | 2 +- 2 files changed, 3 insertions(+), 3

Re: [PATCH] qla2xxx: Remove use of 'struct timeval'

2015-02-25 Thread Saurav Kashyap
Acked-by: Saurav Kashyap saurav.kash...@qlogic.com struct register_host_info stores a 64-bit UTC system time timestamp. This patch removes the use of 'struct timeval' to obtain that timestamp as its tv_sec value will overflow on 32-bit systems in year 2038 beyond. The patch uses

Re: [PATCH 0/10] qla2xxx: Fix various warnings reported by static source code analysis tools

2015-02-24 Thread Saurav Kashyap
Hi Bart, Changes are going through our 12 week regression cycle and we will update the status. Thanks, ~Saurav On 02/02/15 05:52, Saurav Kashyap wrote: Thanks for the patches. We will run regression with these changes and ack if everything goes through fine. Hello Saurav, That sounds great

Re: [PATCH 0/10] qla2xxx: Fix various warnings reported by static source code analysis tools

2015-02-01 Thread Saurav Kashyap
Hi Bart, Thanks for the patches. We will run regression with these changes and ack if everything goes through fine. Thanks, ~Saurav This patch series addresses several warnings reported by static source code analysis tools for the qla2xxx driver (gcc (W=1), sparse (C=2) and smatch (C=2

Re: [PATCH] drivers: scsi: qla2xxx: Remove redundant declaration in 'qla_gbl.h'

2014-11-02 Thread Saurav Kashyap
Acked-by: Saurav Kashyap saurav.kash...@qlogic.com Remove 2 redundant extern inline functions: qla8044_set_qsnt_ready() and qla8044_need_reset_handler(). At present, within upstream next kernel source code, they are only used within drivers/scsi/qla2xxx/qla_nx2.c. The related error and warnings

[PATCH 00/19] qla2xxx/target: Target bug fixes and enchancements.

2014-09-25 Thread Saurav Kashyap
to cmd_kref not decrementing Target/transport: SCSI Status Respond being sent to Initiator twice. Saurav Kashyap (4): qla2xxx: Add counter for message qla2xxx: Increase the request queue size to 8K for ISP2031 qla2xxx: Add flags for tracing the target commands. target: Implement report lun data

[PATCH 01/19] qla2xxx: Fix sparse warnings in tcm_qla2xxx.c

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/tcm_qla2xxx.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git

[PATCH 03/19] qla2xxx: Use correct offset to req-q-out for reserve calculation

2014-09-25 Thread Saurav Kashyap
From: Arun Easi arun.e...@qlogic.com Cc: sta...@vger.kernel.org Signed-off-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/scsi

[PATCH 17/19] qla2xxx: Add memory barrier before ringing doorbell.

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git

[PATCH 08/19] qla2xxx: fix crash due to task mgmt cmd type

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com tcm_qla2xxx_get_task_tag incorrectly assume command is qla_tgt_cmd. Add check to see if it's a scsi cmd or task mgmt command. Signed-off-by: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers

[PATCH 09/19] qla2xxx: Add Host reset handling in target mode.

2014-09-25 Thread Saurav Kashyap
From: Arun Easi arun.e...@qlogic.com Signed-off-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c|2 +- drivers/scsi/qla2xxx/qla_gbl.h|1 + drivers/scsi/qla2xxx/qla_os.c |2 + drivers/scsi/qla2xxx

[PATCH 06/19] qla2xxx: Enable SLER conditionally in target mode.

2014-09-25 Thread Saurav Kashyap
-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 18 ++ 1 files changed, 14 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_target.c b/drivers/scsi/qla2xxx/qla_target.c index

[PATCH 18/19] Target/transport: SCSI Status Respond being sent to Initiator twice.

2014-09-25 Thread Saurav Kashyap
cause Null pointer access. Signed-off-by: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/target/target_core_transport.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/target/target_core_transport.c b/drivers

[PATCH 14/19] qla2xxx: Do not send SS_RESIDUAL_UNDER with SAM_STAT_BUSY

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/drivers/scsi

[PATCH 10/19] qla2xxx: Handle chip reset in target mode.

2014-09-25 Thread Saurav Kashyap
From: Arun Easi arun.e...@qlogic.com A chip reset can occur after driver submits command to the stack. Abort command processing if a chip reset has occurred or in progress when you get a follow up for a command. Signed-off-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap

[PATCH 19/19] target: Implement report lun data change unit attention.

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com --- drivers/target/target_core_fabric_configfs.c | 28 ++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/drivers/target

[PATCH 15/19] qla2xxx: Fix hang due to cmd_kref not decrementing

2014-09-25 Thread Saurav Kashyap
From: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 18 ++ drivers/scsi/qla2xxx/qla_target.h |1 + 2 files changed, 7 insertions(+), 12

[PATCH 12/19] qla2xxx: Increase the request queue size to 8K for ISP2031

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com --- drivers/scsi/qla2xxx/qla_def.h |1 + drivers/scsi/qla2xxx/qla_os.c |2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx

[PATCH 13/19] qla2xxx: Add support for QFull throttling and Term Exchange retry

2014-09-25 Thread Saurav Kashyap
the cmd. Cc: sta...@vger.kernel.org Signed-off-by: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c|4 +- drivers/scsi/qla2xxx/qla_def.h| 17 ++ drivers/scsi/qla2xxx/qla_os.c |2 + drivers/scsi/qla2xxx

[PATCH 07/19] qla2xxx: Add counter for message

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_target.c b/drivers/scsi/qla2xxx

[PATCH 05/19] qla2xxx: Remove verbose messages in target mode.

2014-09-25 Thread Saurav Kashyap
From: Arun Easi arun.e...@qlogic.com Turning logging bits for target mode ON dumps quite a lot verbose messages, remove those and change some of the IO path logging to use IO bits. Signed-off-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers

[PATCH 04/19] qla2xxx: Increase room in request queue for sending priority packets

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_iocb.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi

[PATCH 16/19] qla2xxx: Add flags for tracing the target commands.

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 30 ++ drivers/scsi/qla2xxx/qla_target.h | 24 drivers/scsi/qla2xxx

[PATCH 02/19] qla2xxx: fix kernel NULL pointer access

2014-09-25 Thread Saurav Kashyap
(). Cc: sta...@vger.kernel.org Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_target.c b

[PATCH 11/19] qla2xxx: Host reset handling in ABTS path.

2014-09-25 Thread Saurav Kashyap
...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_target.c b/drivers/scsi/qla2xxx/qla_target.c index 25af5b7..2c36b6c 100644 --- a/drivers/scsi

Re: [PATCH 20/35] qla2xxx: Unload of qla2xxx driver crashes the machine.

2014-09-25 Thread Saurav Kashyap
Hi Christoph, I will rebase and send an updated patch set soon. Thanks, ~Saurav On Wed, Sep 24, 2014 at 09:41:25AM -0400, Joe Lawrence wrote: Hi Saurav, Will these changes conflict with those submitted in August [1] to Christoph's drivers-for-3.18 branch? It does cause conflicts when

Re: [PATCH 20/35] qla2xxx: Unload of qla2xxx driver crashes the machine.

2014-09-25 Thread Saurav Kashyap
On Thu, Sep 25, 2014 at 08:57:18AM +, Saurav Kashyap wrote: Hi Christoph, I will rebase and send an updated patch set soon. Thanks. Did you verify the target side series sits nicely on top of this one as well? I'd like to slurp in the qla2xxx patches as well if Nick is fine with them

[PATCH RESEND 11/35] qla2xxx: ISPFX00 avoid writing semaphore register in request_irqs().

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Semaphore register does not exist for ISPFx00. Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_isr.c |5 +++-- 1 files changed, 3 insertions(+), 2

[PATCH RESEND 04/35] qla2xxx: ISP27xx fwdump template fix insertbuf() routine.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_tmpl.c | 12 ++-- 1 files changed, 2 insertions(+), 10 deletions(-) diff --git a/drivers/scsi/qla2xxx

[PATCH RESEND 22/35] qla2xxx: Declaration error cause stack corruption.

2014-09-25 Thread Saurav Kashyap
From: Quinn Tran quinn.t...@qlogic.com Declaration error of mb array in qla2x00_iidma_fcport cause data to be written beyond the array. This ends up causing stack corruption. Signed-off-by: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi

[PATCH RESEND 28/35] qla2xxx: Honor FCP_RSP retry delay timer field.

2014-09-25 Thread Saurav Kashyap
Dupuis chad.dup...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_def.h|2 ++ drivers/scsi/qla2xxx/qla_fw.h |2 +- drivers/scsi/qla2xxx/qla_inline.h |8 drivers/scsi/qla2xxx/qla_isr.c| 12 drivers/scsi

[PATCH RESEND 08/35] qla2xxx: ISP25xx multiqueue shadow register crash fix.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com When creating request/response queues from qla25xx_setup_mode(), the shadow index register pointers were not being initialized to point at the registers. Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash

[PATCH RESEND 07/35] qla2xxx: Add endianizer to max_payload_size modifier.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_fw.h |2 +- drivers/scsi/qla2xxx/qla_init.c | 12 ++-- 2 files changed, 7 insertions(+), 7

[PATCH RESEND 31/35] qla2xxx: Disable PCI device in shutdown handler.

2014-09-25 Thread Saurav Kashyap
From: Chad Dupuis chad.dup...@qlogic.com Disable the PCI device during shutdown to prevent any races with other PCI code such as the AER handling code. Signed-off-by: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_os.c

[PATCH RESEND 23/35] qla2xxx: Enable diagnostic port using NVRAM parameters.

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_def.h |1 + drivers/scsi/qla2xxx/qla_init.c |4 2 files changed, 5 insertions(+), 0

[PATCH RESEND 20/35] qla2xxx: Unload of qla2xxx driver crashes the machine.

2014-09-25 Thread Saurav Kashyap
From: Arun Easi arun.e...@qlogic.com Signed-off-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_os.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi

[PATCH RESEND 02/35] qla2xxx: ISP27xx optimize fwdump entry table lookup.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Since the entry call array is sorted in order of entry type opcode, the search can be terminated as soon as the search key is exceeded. Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com

[PATCH RESEND 27/35] qla2xxx: Add missing ISP27xx checks to optrom code.

2014-09-25 Thread Saurav Kashyap
From: Alex Vechersky alex.vecher...@qlogic.com Signed-off-by: Alex Vechersky alex.vecher...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_attr.c |3 ++- drivers/scsi/qla2xxx/qla_bsg.c |2 +- 2 files changed, 3 insertions(+), 2 deletions

[PATCH RESEND 05/35] qla2xxx: Add ISP27xx fwdump template entry T275 (insert buffer).

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c |7 +++ drivers/scsi/qla2xxx/qla_tmpl.c | 27 +++ drivers/scsi/qla2xxx

[PATCH RESEND 06/35] qla2xxx: Enable fast flash access for ISP83xx.

2014-09-25 Thread Saurav Kashyap
From: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_sup.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_sup.c b

[PATCH RESEND 09/35] qla2xxx: ISP27xx fwdump template error print simplification.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c |3 +++ drivers/scsi/qla2xxx/qla_tmpl.c | 31 --- drivers/scsi/qla2xxx

[PATCH RESEND 18/35] qla2xxx: Fix driver version string message.

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_sup.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx

[PATCH RESEND 13/35] qla2xxx: Incorrect linked list semantic in qlafx00_get_fcport().

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_mr.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_mr.c

[PATCH RESEND 30/35] qla2xxx: Mark port lost when we receive an RSCN for it.

2014-09-25 Thread Saurav Kashyap
From: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_isr.c | 17 - 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx

[PATCH RESEND 16/35] qla2xxx: Add FA-WWN functionality.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Add support for the FA-WWN (fabric assigned wwn) fabric switch feature. (Fabric Assigned World Wide Port Name) Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx

[PATCH RESEND 03/35] qla2xxx: ISP27xx fwdump template remove high frequency debug logs.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c |2 +- drivers/scsi/qla2xxx/qla_tmpl.c | 17 - 2 files changed, 1 insertions(+), 18

[PATCH RESEND 29/35] qla2xxx: Restore WWPN in case of Loop Dead.

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com For FA-WWPN capable device, ISP2031 and ISP27XX, when loop dead is detected by a driver, restore WWPN from NVRAM. Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers

[PATCH RESEND 12/35] qla2xxx: Incorrect debug level on mailbox command print 0x1111.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_mbx.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_mbx.c b

[PATCH RESEND 10/35] qla2xxx: Fix potential return count bug in qla2xxx_get_vpd_field().

2014-09-25 Thread Saurav Kashyap
written. Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_sup.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_sup.c b/drivers/scsi/qla2xxx/qla_sup.c index

[PATCH RESEND 14/35] qla2xxx: ISPFx00 unexpected resets during adapter boot sequence.

2014-09-25 Thread Saurav Kashyap
From: Jan Kulich jan.kul...@qlogic.com Signed-off-by: Jan Kulich jan.kul...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_mr.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_mr.c b/drivers

[PATCH RESEND 26/35] qla2xxx: Force use of mailbox interface for flash access commands for ISP27xx.

2014-09-25 Thread Saurav Kashyap
From: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_init.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_init.c b

[PATCH RESEND 00/35] qla2xxx: Patches for 3.18 scsi misc branch.

2014-09-25 Thread Saurav Kashyap
): qla2xxx: Free sysfs attributes for ISP27xx. Quinn Tran (1): qla2xxx: Declaration error cause stack corruption. Saurav Kashyap (1): qla2xxx: Update the driver version to 8.07.00.16-k. Sawan Chandak (2): qla2xxx: Add fix in driver unload for pending activity. qla2xxx: Move warning

[PATCH RESEND 32/35] qla2xxx: Fail adapter initialization on load ram failure.

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_init.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 23f12dd..1d66f2f 100644 --- a/drivers/scsi/qla2xxx

[PATCH RESEND 01/35] qla2xxx: ISP27xx add tests for incomplete template.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c |2 +- drivers/scsi/qla2xxx/qla_tmpl.c |9 + 2 files changed, 10 insertions(+), 1

[PATCH RESEND 17/35] qla2xxx: Add diagnostic port functionality.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Add support for the D-port (diagnostic port) fabric switch feature. (Fabric Switch initiates loopback style port testing) Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi

[PATCH RESEND 19/35] qla2xxx: Allow user to change ql2xfdmienable value.

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_os.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx

[PATCH RESEND 24/35] qla2xxx: Disable laser for ISP2031 while unloading driver.

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c |2 +- drivers/scsi/qla2xxx/qla_def.h |5 + drivers/scsi/qla2xxx/qla_os.c | 31 +++ 3 files changed, 37 insertions(+), 1 deletions(-) diff --git a/drivers/scsi

[PATCH RESEND 21/35] qla2xxx: Add fix in driver unload for pending activity.

2014-09-25 Thread Saurav Kashyap
From: Sawan Chandak sawan.chan...@qlogic.com Signed-off-by: Sawan Chandak sawan.chan...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_os.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_os.c

[PATCH RESEND 35/35] qla2xxx: Update the driver version to 8.07.00.16-k.

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_version.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_version.h b/drivers/scsi/qla2xxx

[PATCH RESEND 33/35] qla2xxx: Move warning message to debug level.

2014-09-25 Thread Saurav Kashyap
From: Sawan Chandak sawan.chan...@qlogic.com Signed-off-by: Sawan Chandak sawan.chan...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_nx.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_nx.c b

[PATCH RESEND 34/35] qla2xxx: Fix sparse warning in qla_iocb.c file.

2014-09-25 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_iocb.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_iocb.c

[PATCH RESEND 15/35] qla2xxx: Add FDMI-2 functionality.

2014-09-25 Thread Saurav Kashyap
-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_attr.c |5 +- drivers/scsi/qla2xxx/qla_dbg.c |4 +- drivers/scsi/qla2xxx/qla_def.h | 154 ++-- drivers/scsi/qla2xxx/qla_gbl.h |4 +- drivers/scsi/qla2xxx/qla_gs.c | 943

[PATCH RESEND 25/35] qla2xxx: Free sysfs attributes for ISP27xx.

2014-09-25 Thread Saurav Kashyap
From: Nigel Kirkland nigel.kirkl...@qlogic.com Signed-off-by: Nigel Kirkland nigel.kirkl...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_attr.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/scsi/qla2xxx

Re: [PATCH 06/19] qla2xxx: Enable SLER conditionally in target mode.

2014-09-25 Thread Saurav Kashyap
Hi Christoph, Thanks for the feedback. Let me make necessary changes and resubmit the patch set. As suggested by you, I will also do the separate submission for qla2xxx and tcm-lio. Thanks, ~Saurav On Thu, Sep 25, 2014 at 04:09:59AM -0400, Saurav Kashyap wrote: From: Arun Easi arun.e

[PATCH RESEND 02/17] qla2xxx: fix kernel NULL pointer access

2014-09-25 Thread Saurav Kashyap
(). Cc: sta...@vger.kernel.org Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_target.c b

[PATCH RESEND 01/17] qla2xxx: Fix sparse warnings in tcm_qla2xxx.c

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/tcm_qla2xxx.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git

[PATCH RESEND 04/17] qla2xxx: Increase room in request queue for sending priority packets

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_iocb.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi

[PATCH RESEND 13/17] qla2xxx: Add support for QFull throttling and Term Exchange retry

2014-09-25 Thread Saurav Kashyap
the cmd. Cc: sta...@vger.kernel.org Signed-off-by: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c|4 +- drivers/scsi/qla2xxx/qla_def.h| 17 ++ drivers/scsi/qla2xxx/qla_os.c |2 + drivers/scsi/qla2xxx

[PATCH RESEND 06/17] qla2xxx: Enable SLER conditionally in target mode.

2014-09-25 Thread Saurav Kashyap
-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 23 +++ 1 files changed, 19 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_target.c b/drivers/scsi/qla2xxx/qla_target.c index

[PATCH RESEND 15/17] qla2xxx: Fix hang due to cmd_kref not decrementing

2014-09-25 Thread Saurav Kashyap
From: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 18 ++ drivers/scsi/qla2xxx/qla_target.h |1 + 2 files changed, 7 insertions(+), 12

[PATCH RESEND 12/17] qla2xxx: Increase the request queue size to 8K for ISP2031

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com --- drivers/scsi/qla2xxx/qla_def.h |1 + drivers/scsi/qla2xxx/qla_os.c |2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx

[PATCH RESEND 10/17] qla2xxx: Handle chip reset in target mode.

2014-09-25 Thread Saurav Kashyap
From: Arun Easi arun.e...@qlogic.com A chip reset can occur after driver submits command to the stack. Abort command processing if a chip reset has occurred or in progress when you get a follow up for a command. Signed-off-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap

[PATCH RESEND 17/17] qla2xxx: Add memory barrier before ringing doorbell.

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git

[PATCH RESEND 09/17] qla2xxx: Add Host reset handling in target mode.

2014-09-25 Thread Saurav Kashyap
From: Arun Easi arun.e...@qlogic.com Signed-off-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c|2 +- drivers/scsi/qla2xxx/qla_gbl.h|1 + drivers/scsi/qla2xxx/qla_os.c |2 + drivers/scsi/qla2xxx

[PATCH RESEND 11/17] qla2xxx: Host reset handling in ABTS path.

2014-09-25 Thread Saurav Kashyap
...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_target.c b/drivers/scsi/qla2xxx/qla_target.c index 38f3f1f..ccd0ca2 100644 --- a/drivers/scsi

[PATCH RESEND 07/17] qla2xxx: Add counter for message

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_target.c b/drivers/scsi/qla2xxx

[PATCH RESEND 14/17] qla2xxx: Do not send SS_RESIDUAL_UNDER with SAM_STAT_BUSY

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/drivers/scsi

[PATCH RESEND 16/17] qla2xxx: Add flags for tracing the target commands.

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c | 30 ++ drivers/scsi/qla2xxx/qla_target.h | 24 drivers/scsi/qla2xxx

[PATCH RESEND 08/17] qla2xxx: fix crash due to task mgmt cmd type

2014-09-25 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com tcm_qla2xxx_get_task_tag incorrectly assume command is qla_tgt_cmd. Add check to see if it's a scsi cmd or task mgmt command. Signed-off-by: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers

[PATCH RESEND 00/17] qla2xxx: Target bug fixes and enchancements.

2014-09-25 Thread Saurav Kashyap
doorbell. Quinn Tran (2): qla2xxx: Add support for QFull throttling and Term Exchange retry qla2xxx: Fix hang due to cmd_kref not decrementing Saurav Kashyap (3): qla2xxx: Add counter for message qla2xxx: Increase the request queue size to 8K for ISP2031 qla2xxx: Add flags for tracing

[PATCH RESEND 05/17] qla2xxx: Remove verbose messages in target mode.

2014-09-25 Thread Saurav Kashyap
From: Arun Easi arun.e...@qlogic.com Turning logging bits for target mode ON dumps quite a lot verbose messages, remove those and change some of the IO path logging to use IO bits. Signed-off-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers

[PATCH RESEND 03/17] qla2xxx: Use correct offset to req-q-out for reserve calculation

2014-09-25 Thread Saurav Kashyap
From: Arun Easi arun.e...@qlogic.com Cc: sta...@vger.kernel.org Signed-off-by: Arun Easi arun.e...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_target.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/scsi

[PATCH RESEND 0/2] target: target bug fix and enchancement.

2014-09-25 Thread Saurav Kashyap
Hi Nicholas/Christoph, Please apply the following patches at your earliest convenience. Thanks, ~Saurav Quinn Tran (1): Target/transport: SCSI Status Respond being sent to Initiator twice. Saurav Kashyap (1): target: Implement report lun data change unit attention. drivers/target

[PATCH RESEND 2/2] target: Implement report lun data change unit attention.

2014-09-25 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com --- drivers/target/target_core_fabric_configfs.c | 28 ++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/drivers/target

[PATCH RESEND 1/2] Target/transport: SCSI Status Respond being sent to Initiator twice.

2014-09-25 Thread Saurav Kashyap
cause Null pointer access. Signed-off-by: Quinn Tran quinn.t...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/target/target_core_transport.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/target/target_core_transport.c b/drivers

[PATCH 08/35] qla2xxx: ISP25xx multiqueue shadow register crash fix.

2014-09-24 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com When creating request/response queues from qla25xx_setup_mode(), the shadow index register pointers were not being initialized to point at the registers. Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash

[PATCH 00/35] qla2xxx: Patches for 3.18 scsi misc branch.

2014-09-24 Thread Saurav Kashyap
stack corruption. Saurav Kashyap (1): qla2xxx: Update the driver version to 8.07.00.16-k. Sawan Chandak (2): qla2xxx: Add fix in driver unload for pending activity. qla2xxx: Move warning message to debug level. drivers/scsi/qla2xxx/qla_attr.c| 16 +- drivers/scsi/qla2xxx/qla_bsg.c

[PATCH 13/35] qla2xxx: Incorrect linked list semantic in qlafx00_get_fcport().

2014-09-24 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_mr.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_mr.c

[PATCH 35/35] qla2xxx: Update the driver version to 8.07.00.16-k.

2014-09-24 Thread Saurav Kashyap
Signed-off-by: Giridhar Malavali giridhar.malav...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_version.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_version.h b/drivers/scsi/qla2xxx

[PATCH 10/35] qla2xxx: Fix potential return count bug in qla2xxx_get_vpd_field().

2014-09-24 Thread Saurav Kashyap
written. Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_sup.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_sup.c b/drivers/scsi/qla2xxx/qla_sup.c index

[PATCH 09/35] qla2xxx: ISP27xx fwdump template error print simplification.

2014-09-24 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c |3 +++ drivers/scsi/qla2xxx/qla_tmpl.c | 31 --- drivers/scsi/qla2xxx

[PATCH 14/35] qla2xxx: ISPFx00 unexpected resets during adapter boot sequence.

2014-09-24 Thread Saurav Kashyap
From: Jan Kulich jan.kul...@qlogic.com Signed-off-by: Jan Kulich jan.kul...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_mr.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_mr.c b/drivers

[PATCH 27/35] qla2xxx: Add missing ISP27xx checks to optrom code.

2014-09-24 Thread Saurav Kashyap
From: Alex Vechersky alex.vecher...@qlogic.com Signed-off-by: Alex Vechersky alex.vecher...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_attr.c |3 ++- drivers/scsi/qla2xxx/qla_bsg.c |2 +- 2 files changed, 3 insertions(+), 2 deletions

[PATCH 18/35] qla2xxx: Fix driver version string message.

2014-09-24 Thread Saurav Kashyap
From: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Himanshu Madhani himanshu.madh...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_sup.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx

[PATCH 32/35] qla2xxx: Fail adapter initialization on load ram failure.

2014-09-24 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_init.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 23f12dd..1d66f2f 100644 --- a/drivers/scsi/qla2xxx

[PATCH 25/35] qla2xxx: Free sysfs attributes for ISP27xx.

2014-09-24 Thread Saurav Kashyap
From: Nigel Kirkland nigel.kirkl...@qlogic.com Signed-off-by: Nigel Kirkland nigel.kirkl...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_attr.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/scsi/qla2xxx

[PATCH 24/35] qla2xxx: Disable laser for ISP2031 while unloading driver.

2014-09-24 Thread Saurav Kashyap
Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c |2 +- drivers/scsi/qla2xxx/qla_def.h |5 + drivers/scsi/qla2xxx/qla_os.c | 31 +++ 3 files changed, 37 insertions(+), 1 deletions(-) diff --git a/drivers/scsi

[PATCH 01/35] qla2xxx: ISP27xx add tests for incomplete template.

2014-09-24 Thread Saurav Kashyap
From: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Joe Carnuccio joe.carnuc...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_dbg.c |2 +- drivers/scsi/qla2xxx/qla_tmpl.c |9 + 2 files changed, 10 insertions(+), 1

[PATCH 06/35] qla2xxx: Enable fast flash access for ISP83xx.

2014-09-24 Thread Saurav Kashyap
From: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Chad Dupuis chad.dup...@qlogic.com Signed-off-by: Saurav Kashyap saurav.kash...@qlogic.com --- drivers/scsi/qla2xxx/qla_sup.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/qla2xxx/qla_sup.c b

  1   2   3   4   5   >