diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-30 16:16:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-30 16:16:38 -0400 |
commit | 5aa1c98862d3f365d9cf6d0833d5dc127d2a76e7 (patch) | |
tree | 89cbf0b67634ecc43a863a6ca058ff749df3cce7 /drivers/scsi/csiostor | |
parent | 6da6dc2380c3cfe8d6b59d7c3c55fdd7a521fe6c (diff) | |
parent | 9e45dd73234af9a59613dc2989dcc2df2dab847f (diff) |
Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Pull first round of SCSI updates from James "Jej B" Bottomley:
"The patch set is mostly driver updates (qla4, qla2 [ISF support
updates], lpfc, aacraid [dual firmware image support]) and a few bug
fixes"
* tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (47 commits)
[SCSI] iscsi_tcp: support PF_MEMALLOC/__GFP_MEMALLOC
[SCSI] libiscsi: avoid unnecessary multiple NULL assignments
[SCSI] qla4xxx: Update driver version to 5.03.00-k8
[SCSI] qla4xxx: Added print statements to display AENs
[SCSI] qla4xxx: Use correct value for max flash node entries
[SCSI] qla4xxx: Restrict logout from boot target session using session id
[SCSI] qla4xxx: Use correct flash ddb offset for ISP40XX
[SCSI] isci: add CONFIG_PM_SLEEP to suspend/resume functions
[SCSI] scsi_dh_alua: Add module parameter to allow failover to non preferred path without STPG
[SCSI] qla2xxx: Update the driver version to 8.05.00.03-k.
[SCSI] qla2xxx: Obtain loopback iteration count from bsg request.
[SCSI] qla2xxx: Add clarifying printk to thermal access fail cases.
[SCSI] qla2xxx: Remove duplicated include form qla_isr.c
[SCSI] qla2xxx: Enhancements to support ISPFx00.
[SCSI] qla4xxx: Update driver version to 5.03.00-k7
[SCSI] qla4xxx: Replace dev type macros with generic portal type macros
[SCSI] scsi_transport_iscsi: Declare portal type string macros for generic use
[SCSI] qla4xxx: Add flash node mgmt support
[SCSI] libiscsi: export function iscsi_switch_str_param
[SCSI] scsi_transport_iscsi: Add flash node mgmt support
...
Diffstat (limited to 'drivers/scsi/csiostor')
-rw-r--r-- | drivers/scsi/csiostor/csio_hw.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/scsi/csiostor/csio_hw.c b/drivers/scsi/csiostor/csio_hw.c index bdd78fb4fc70..7dbaf58fab9f 100644 --- a/drivers/scsi/csiostor/csio_hw.c +++ b/drivers/scsi/csiostor/csio_hw.c | |||
@@ -3892,7 +3892,6 @@ csio_process_fwevtq_entry(struct csio_hw *hw, void *wr, uint32_t len, | |||
3892 | struct csio_fl_dma_buf *flb, void *priv) | 3892 | struct csio_fl_dma_buf *flb, void *priv) |
3893 | { | 3893 | { |
3894 | __u8 op; | 3894 | __u8 op; |
3895 | __be64 *data; | ||
3896 | void *msg = NULL; | 3895 | void *msg = NULL; |
3897 | uint32_t msg_len = 0; | 3896 | uint32_t msg_len = 0; |
3898 | bool msg_sg = 0; | 3897 | bool msg_sg = 0; |
@@ -3908,8 +3907,6 @@ csio_process_fwevtq_entry(struct csio_hw *hw, void *wr, uint32_t len, | |||
3908 | msg = (void *) flb; | 3907 | msg = (void *) flb; |
3909 | msg_len = flb->totlen; | 3908 | msg_len = flb->totlen; |
3910 | msg_sg = 1; | 3909 | msg_sg = 1; |
3911 | |||
3912 | data = (__be64 *) msg; | ||
3913 | } else if (op == CPL_FW6_MSG || op == CPL_FW4_MSG) { | 3910 | } else if (op == CPL_FW6_MSG || op == CPL_FW4_MSG) { |
3914 | 3911 | ||
3915 | CSIO_INC_STATS(hw, n_cpl_fw6_msg); | 3912 | CSIO_INC_STATS(hw, n_cpl_fw6_msg); |
@@ -3917,8 +3914,6 @@ csio_process_fwevtq_entry(struct csio_hw *hw, void *wr, uint32_t len, | |||
3917 | msg = (void *)((uintptr_t)wr + sizeof(__be64)); | 3914 | msg = (void *)((uintptr_t)wr + sizeof(__be64)); |
3918 | msg_len = (op == CPL_FW6_MSG) ? sizeof(struct cpl_fw6_msg) : | 3915 | msg_len = (op == CPL_FW6_MSG) ? sizeof(struct cpl_fw6_msg) : |
3919 | sizeof(struct cpl_fw4_msg); | 3916 | sizeof(struct cpl_fw4_msg); |
3920 | |||
3921 | data = (__be64 *) msg; | ||
3922 | } else { | 3917 | } else { |
3923 | csio_warn(hw, "unexpected CPL %#x on FW event queue\n", op); | 3918 | csio_warn(hw, "unexpected CPL %#x on FW event queue\n", op); |
3924 | CSIO_INC_STATS(hw, n_cpl_unexp); | 3919 | CSIO_INC_STATS(hw, n_cpl_unexp); |