* [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch
@ 2013-03-22 11:08 vikas.chaudhary
2013-03-22 11:08 ` [PATCH 1/4] qla4xxx: Added missing check for ISP83XX in CHAP related functions vikas.chaudhary
` (3 more replies)
0 siblings, 4 replies; 13+ messages in thread
From: vikas.chaudhary @ 2013-03-22 11:08 UTC (permalink / raw)
To: jbottomley, michaelc
Cc: linux-scsi, vikas.chaudhary, lalit.chandivade, ravi.anand
From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
James,
Please apply the following patches to the scsi tree at your earliest
convenience.
Nilesh Javali (1):
qla4xxx: Skip retry of initialize_adapter only for ISP8XXX
Vikas Chaudhary (3):
qla4xxx: Added missing check for ISP83XX in CHAP related functions
qla4xxx: Assign correct CHAP table address to FLT
qla4xxx: Update driver version to 5.03.00-k6
Thanks,
Vikas.
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 1/4] qla4xxx: Added missing check for ISP83XX in CHAP related functions
2013-03-22 11:08 [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch vikas.chaudhary
@ 2013-03-22 11:08 ` vikas.chaudhary
2013-03-22 11:08 ` [PATCH 2/4] qla4xxx: Assign correct CHAP table address to FLT vikas.chaudhary
` (2 subsequent siblings)
3 siblings, 0 replies; 13+ messages in thread
From: vikas.chaudhary @ 2013-03-22 11:08 UTC (permalink / raw)
To: jbottomley, michaelc
Cc: linux-scsi, vikas.chaudhary, lalit.chandivade, ravi.anand
From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
---
drivers/scsi/qla4xxx/ql4_mbx.c | 2 +-
drivers/scsi/qla4xxx/ql4_os.c | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/scsi/qla4xxx/ql4_mbx.c b/drivers/scsi/qla4xxx/ql4_mbx.c
index 446511d..ce46545 100644
--- a/drivers/scsi/qla4xxx/ql4_mbx.c
+++ b/drivers/scsi/qla4xxx/ql4_mbx.c
@@ -1531,7 +1531,7 @@ int qla4xxx_get_chap_index(struct scsi_qla_host *ha, char *username,
int max_chap_entries = 0;
struct ql4_chap_table *chap_table;
- if (is_qla8022(ha))
+ if (is_qla80XX(ha))
max_chap_entries = (ha->hw.flt_chap_size / 2) /
sizeof(struct ql4_chap_table);
else
diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c
index a6ce04d..18f857a 100644
--- a/drivers/scsi/qla4xxx/ql4_os.c
+++ b/drivers/scsi/qla4xxx/ql4_os.c
@@ -391,7 +391,7 @@ static int qla4xxx_get_chap_list(struct Scsi_Host *shost, uint16_t chap_tbl_idx,
int valid_chap_entries = 0;
int ret = 0, i;
- if (is_qla8022(ha))
+ if (is_qla80XX(ha))
max_chap_entries = (ha->hw.flt_chap_size / 2) /
sizeof(struct ql4_chap_table);
else
@@ -495,7 +495,7 @@ static int qla4xxx_delete_chap(struct Scsi_Host *shost, uint16_t chap_tbl_idx)
memset(chap_table, 0, sizeof(struct ql4_chap_table));
- if (is_qla8022(ha))
+ if (is_qla80XX(ha))
max_chap_entries = (ha->hw.flt_chap_size / 2) /
sizeof(struct ql4_chap_table);
else
@@ -4087,7 +4087,7 @@ static int qla4xxx_get_bidi_chap(struct scsi_qla_host *ha, char *username,
int max_chap_entries = 0;
struct ql4_chap_table *chap_table;
- if (is_qla8022(ha))
+ if (is_qla80XX(ha))
max_chap_entries = (ha->hw.flt_chap_size / 2) /
sizeof(struct ql4_chap_table);
else
--
1.8.2.GIT
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 2/4] qla4xxx: Assign correct CHAP table address to FLT
2013-03-22 11:08 [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch vikas.chaudhary
2013-03-22 11:08 ` [PATCH 1/4] qla4xxx: Added missing check for ISP83XX in CHAP related functions vikas.chaudhary
@ 2013-03-22 11:08 ` vikas.chaudhary
2013-03-22 11:08 ` [PATCH 4/4] qla4xxx: Update driver version to 5.03.00-k6 vikas.chaudhary
2013-03-23 6:21 ` [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch Mike Christie
3 siblings, 0 replies; 13+ messages in thread
From: vikas.chaudhary @ 2013-03-22 11:08 UTC (permalink / raw)
To: jbottomley, michaelc
Cc: linux-scsi, vikas.chaudhary, lalit.chandivade, ravi.anand
From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
Issue:
If flash read for FLT fails, we are assigning wrong default
address for CHAP table in FLT, which will cause CHAP table
read/write to wrong address.
Fix:
Assign correct default CHAP table address to FLT.
Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
---
drivers/scsi/qla4xxx/ql4_nx.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/drivers/scsi/qla4xxx/ql4_nx.c b/drivers/scsi/qla4xxx/ql4_nx.c
index 71d3d23..31fac90 100644
--- a/drivers/scsi/qla4xxx/ql4_nx.c
+++ b/drivers/scsi/qla4xxx/ql4_nx.c
@@ -3166,14 +3166,15 @@ no_flash_data:
hw->flt_region_boot = FA_BOOT_CODE_ADDR_82;
hw->flt_region_bootload = FA_BOOT_LOAD_ADDR_82;
hw->flt_region_fw = FA_RISC_CODE_ADDR_82;
- hw->flt_region_chap = FA_FLASH_ISCSI_CHAP;
+ hw->flt_region_chap = FA_FLASH_ISCSI_CHAP >> 2;
hw->flt_chap_size = FA_FLASH_CHAP_SIZE;
done:
- DEBUG2(ql4_printk(KERN_INFO, ha, "FLT[%s]: flt=0x%x fdt=0x%x "
- "boot=0x%x bootload=0x%x fw=0x%x\n", loc, hw->flt_region_flt,
- hw->flt_region_fdt, hw->flt_region_boot, hw->flt_region_bootload,
- hw->flt_region_fw));
+ DEBUG2(ql4_printk(KERN_INFO, ha,
+ "FLT[%s]: flt=0x%x fdt=0x%x boot=0x%x bootload=0x%x fw=0x%x chap=0x%x\n",
+ loc, hw->flt_region_flt, hw->flt_region_fdt,
+ hw->flt_region_boot, hw->flt_region_bootload,
+ hw->flt_region_fw, hw->flt_region_chap));
}
static void
--
1.8.2.GIT
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 4/4] qla4xxx: Update driver version to 5.03.00-k6
2013-03-22 11:08 [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch vikas.chaudhary
2013-03-22 11:08 ` [PATCH 1/4] qla4xxx: Added missing check for ISP83XX in CHAP related functions vikas.chaudhary
2013-03-22 11:08 ` [PATCH 2/4] qla4xxx: Assign correct CHAP table address to FLT vikas.chaudhary
@ 2013-03-22 11:08 ` vikas.chaudhary
2013-03-23 6:21 ` [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch Mike Christie
3 siblings, 0 replies; 13+ messages in thread
From: vikas.chaudhary @ 2013-03-22 11:08 UTC (permalink / raw)
To: jbottomley, michaelc
Cc: linux-scsi, vikas.chaudhary, lalit.chandivade, ravi.anand
From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
---
drivers/scsi/qla4xxx/ql4_version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/scsi/qla4xxx/ql4_version.h b/drivers/scsi/qla4xxx/ql4_version.h
index 4540028..0cd824f 100644
--- a/drivers/scsi/qla4xxx/ql4_version.h
+++ b/drivers/scsi/qla4xxx/ql4_version.h
@@ -5,4 +5,4 @@
* See LICENSE.qla4xxx for copyright and licensing details.
*/
-#define QLA4XXX_DRIVER_VERSION "5.03.00-k5"
+#define QLA4XXX_DRIVER_VERSION "5.03.00-k6"
--
1.8.2.GIT
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch
2013-03-22 11:08 [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch vikas.chaudhary
` (2 preceding siblings ...)
2013-03-22 11:08 ` [PATCH 4/4] qla4xxx: Update driver version to 5.03.00-k6 vikas.chaudhary
@ 2013-03-23 6:21 ` Mike Christie
3 siblings, 0 replies; 13+ messages in thread
From: Mike Christie @ 2013-03-23 6:21 UTC (permalink / raw)
To: vikas.chaudhary; +Cc: jbottomley, linux-scsi, lalit.chandivade, ravi.anand
On 03/22/2013 06:08 AM, vikas.chaudhary@qlogic.com wrote:
> From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
>
> James,
>
> Please apply the following patches to the scsi tree at your earliest
> convenience.
>
> Nilesh Javali (1):
> qla4xxx: Skip retry of initialize_adapter only for ISP8XXX
>
> Vikas Chaudhary (3):
> qla4xxx: Added missing check for ISP83XX in CHAP related functions
> qla4xxx: Assign correct CHAP table address to FLT
> qla4xxx: Update driver version to 5.03.00-k6
>
Looks ok to me.
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch
@ 2013-06-26 12:11 vikas.chaudhary
2013-06-26 15:37 ` Mike Christie
0 siblings, 1 reply; 13+ messages in thread
From: vikas.chaudhary @ 2013-06-26 12:11 UTC (permalink / raw)
To: jbottomley, michaelc; +Cc: linux-scsi, vikas.chaudhary, lalit.chandivade
From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
James,
Following patches are to display additional iSCSI connection and session
parameters in sysfs.
Please apply these patches to the scsi tree "misc" branch at your
earliest convenience.
Adheer Chandravanshi (3):
scsi_transport_iscsi: Exporting new attrs for iscsi session and connection in sysfs
libiscsi: Exporting new attrs for iscsi session and connection in sysfs
qla4xxx: Exporting new attrs for iscsi session and connection in sysfs
Vikas Chaudhary (1):
qla4xxx: Update driver version to 5.03.00-k10
Thanks,
Vikas.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch
2013-06-26 12:11 vikas.chaudhary
@ 2013-06-26 15:37 ` Mike Christie
0 siblings, 0 replies; 13+ messages in thread
From: Mike Christie @ 2013-06-26 15:37 UTC (permalink / raw)
To: vikas.chaudhary; +Cc: jbottomley, linux-scsi, lalit.chandivade
On 06/26/2013 07:11 AM, vikas.chaudhary@qlogic.com wrote:
> From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
>
> James,
>
> Following patches are to display additional iSCSI connection and session
> parameters in sysfs.
>
> Please apply these patches to the scsi tree "misc" branch at your
> earliest convenience.
>
> Adheer Chandravanshi (3):
> scsi_transport_iscsi: Exporting new attrs for iscsi session and connection in sysfs
> libiscsi: Exporting new attrs for iscsi session and connection in sysfs
> qla4xxx: Exporting new attrs for iscsi session and connection in sysfs
>
> Vikas Chaudhary (1):
> qla4xxx: Update driver version to 5.03.00-k10
>
Looks ok.
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch.
@ 2012-08-22 11:45 vikas.chaudhary
2012-09-06 5:36 ` Mike Christie
0 siblings, 1 reply; 13+ messages in thread
From: vikas.chaudhary @ 2012-08-22 11:45 UTC (permalink / raw)
To: jbottomley, michaelc
Cc: linux-scsi, vikas.chaudhary, lalit.chandivade, ravi.anand
From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
James,
Please apply the following patches to the scsi tree at your earliest
convenience.
Thanks,
Vikas.
Vikas Chaudhary (4):
qla4xxx: Fix lockdep warning in qla4xxx_post_work()
qla4xxx: Clear interrupt while unloading driver.
qla4xxx: Wait for cmd to complete before chip reset for ISP40XX
qla4xxx: Update driver version to 5.02.00-k20
drivers/scsi/qla4xxx/ql4_os.c | 14 ++++++++++++--
drivers/scsi/qla4xxx/ql4_version.h | 2 +-
2 files changed, 13 insertions(+), 3 deletions(-)
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch.
2012-08-22 11:45 vikas.chaudhary
@ 2012-09-06 5:36 ` Mike Christie
0 siblings, 0 replies; 13+ messages in thread
From: Mike Christie @ 2012-09-06 5:36 UTC (permalink / raw)
To: vikas.chaudhary; +Cc: jbottomley, linux-scsi, lalit.chandivade, ravi.anand
On 08/22/2012 06:45 AM, vikas.chaudhary@qlogic.com wrote:
> From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
>
> James,
>
> Please apply the following patches to the scsi tree at your earliest
> convenience.
>
> Thanks,
> Vikas.
>
> Vikas Chaudhary (4):
> qla4xxx: Fix lockdep warning in qla4xxx_post_work()
> qla4xxx: Clear interrupt while unloading driver.
> qla4xxx: Wait for cmd to complete before chip reset for ISP40XX
> qla4xxx: Update driver version to 5.02.00-k20
>
Looks ok to me.
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch.
@ 2012-06-14 10:35 vikas.chaudhary
2012-06-14 12:25 ` James Bottomley
2012-06-15 4:32 ` Mike Christie
0 siblings, 2 replies; 13+ messages in thread
From: vikas.chaudhary @ 2012-06-14 10:35 UTC (permalink / raw)
To: jbottomley, michaelc
Cc: linux-scsi, vikas.chaudhary, lalit.chandivade, ravi.anand
From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
James,
Please apply the following patches to the scsi tree at your earliest
convenience for inclusion in mainline.
Vikas Chaudhary (4):
qla4xxx: multi-session fix for flash ddbs
qla4xxx: Fix a Sparse warning message
qla4xxx: Fix Spell check.
qla4xxx: Update driver version to 5.02.00-k18
drivers/scsi/qla4xxx/ql4_def.h | 1 +
drivers/scsi/qla4xxx/ql4_glbl.h | 3 +-
drivers/scsi/qla4xxx/ql4_init.c | 2 +-
drivers/scsi/qla4xxx/ql4_os.c | 156 +++++++++++++++++++++++++++++++++---
drivers/scsi/qla4xxx/ql4_version.h | 2 +-
Thanks,
Vikas.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch.
2012-06-14 10:35 vikas.chaudhary
@ 2012-06-14 12:25 ` James Bottomley
2012-06-14 14:37 ` Vikas Chaudhary
2012-06-15 4:32 ` Mike Christie
1 sibling, 1 reply; 13+ messages in thread
From: James Bottomley @ 2012-06-14 12:25 UTC (permalink / raw)
To: vikas.chaudhary; +Cc: michaelc, linux-scsi, lalit.chandivade, ravi.anand
On Thu, 2012-06-14 at 06:35 -0400, vikas.chaudhary@qlogic.com wrote:
> From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
>
> James,
>
> Please apply the following patches to the scsi tree at your earliest
> convenience for inclusion in mainline.
>
> Vikas Chaudhary (4):
> qla4xxx: multi-session fix for flash ddbs
> qla4xxx: Fix a Sparse warning message
> qla4xxx: Fix Spell check.
> qla4xxx: Update driver version to 5.02.00-k18
Patch 3/4 seems to be missing.
James
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch.
2012-06-14 12:25 ` James Bottomley
@ 2012-06-14 14:37 ` Vikas Chaudhary
0 siblings, 0 replies; 13+ messages in thread
From: Vikas Chaudhary @ 2012-06-14 14:37 UTC (permalink / raw)
To: James Bottomley
Cc: michaelc@cs.wisc.edu, linux-scsi@vger.kernel.org,
Lalit Chandivade, Ravi Anand
-----Original Message-----
From: James Bottomley <James.Bottomley@HansenPartnership.com>
To: Vikas <vikas.chaudhary@qlogic.com>
Cc: Mike Christie <michaelc@cs.wisc.edu>, scsi
<linux-scsi@vger.kernel.org>, Lalit Chandivade
<lalit.chandivade@qlogic.com>, Ravi Anand <ravi.anand@qlogic.com>
Subject: Re: [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch.
>On Thu, 2012-06-14 at 06:35 -0400, vikas.chaudhary@qlogic.com wrote:
>> From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
>>
>> James,
>>
>> Please apply the following patches to the scsi tree at your earliest
>> convenience for inclusion in mainline.
>>
>> Vikas Chaudhary (4):
>> qla4xxx: multi-session fix for flash ddbs
>> qla4xxx: Fix a Sparse warning message
>> qla4xxx: Fix Spell check.
>> qla4xxx: Update driver version to 5.02.00-k18
>
>Patch 3/4 seems to be missing.
Looks like Patch 3/4 fails to go on list in my 1st try.
I just send this again to list here:-
http://marc.info/?l=linux-scsi&m=133968439904414&w=2
Thanks,
Vikas
This message and any attached documents contain information from QLogic Corporation or its wholly-owned subsidiaries that may be confidential. If you are not the intended recipient, you may not read, copy, distribute, or use this information. If you have received this transmission in error, please notify the sender immediately by reply e-mail and then delete this message.
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch.
2012-06-14 10:35 vikas.chaudhary
2012-06-14 12:25 ` James Bottomley
@ 2012-06-15 4:32 ` Mike Christie
1 sibling, 0 replies; 13+ messages in thread
From: Mike Christie @ 2012-06-15 4:32 UTC (permalink / raw)
To: vikas.chaudhary; +Cc: jbottomley, linux-scsi, lalit.chandivade, ravi.anand
On 06/14/2012 05:35 AM, vikas.chaudhary@qlogic.com wrote:
> From: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
>
> James,
>
> Please apply the following patches to the scsi tree at your earliest
> convenience for inclusion in mainline.
>
> Vikas Chaudhary (4):
> qla4xxx: multi-session fix for flash ddbs
> qla4xxx: Fix a Sparse warning message
> qla4xxx: Fix Spell check.
> qla4xxx: Update driver version to 5.02.00-k18
>
> drivers/scsi/qla4xxx/ql4_def.h | 1 +
> drivers/scsi/qla4xxx/ql4_glbl.h | 3 +-
> drivers/scsi/qla4xxx/ql4_init.c | 2 +-
> drivers/scsi/qla4xxx/ql4_os.c | 156 +++++++++++++++++++++++++++++++++---
> drivers/scsi/qla4xxx/ql4_version.h | 2 +-
>
> Thanks,
> Vikas.
Looks ok.
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2013-06-26 15:37 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-22 11:08 [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch vikas.chaudhary
2013-03-22 11:08 ` [PATCH 1/4] qla4xxx: Added missing check for ISP83XX in CHAP related functions vikas.chaudhary
2013-03-22 11:08 ` [PATCH 2/4] qla4xxx: Assign correct CHAP table address to FLT vikas.chaudhary
2013-03-22 11:08 ` [PATCH 4/4] qla4xxx: Update driver version to 5.03.00-k6 vikas.chaudhary
2013-03-23 6:21 ` [PATCH 0/4] qla4xxx: Updates for scsi "misc" branch Mike Christie
-- strict thread matches above, loose matches on Subject: below --
2013-06-26 12:11 vikas.chaudhary
2013-06-26 15:37 ` Mike Christie
2012-08-22 11:45 vikas.chaudhary
2012-09-06 5:36 ` Mike Christie
2012-06-14 10:35 vikas.chaudhary
2012-06-14 12:25 ` James Bottomley
2012-06-14 14:37 ` Vikas Chaudhary
2012-06-15 4:32 ` Mike Christie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).