summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Pena2013-10-16 02:29:50 +0200
committerJames Bottomley2013-10-25 12:25:54 +0200
commit1109c94444504bff8b7463879e598fb320bf77c0 (patch)
tree2969e2f6a014dae8a34dec1e0fd1857ec220f29c
parent[SCSI] scsi_dh_alua: ALUA handler attach should succeed while TPG is transiti... (diff)
downloadkernel-qcow2-linux-1109c94444504bff8b7463879e598fb320bf77c0.tar.gz
kernel-qcow2-linux-1109c94444504bff8b7463879e598fb320bf77c0.tar.xz
kernel-qcow2-linux-1109c94444504bff8b7463879e598fb320bf77c0.zip
[SCSI] lpfc: Fix typo on NULL assignment
In the lpfc_ct_free_iocb function after freeing associated memory to the ctiocb->context3, the ctiocb->context1 is set to NULL instead of context3. Signed-off-by: Felipe Pena <felipensp@gmail.com> Acked-by: James Smart <james.smart@emulex.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
-rw-r--r--drivers/scsi/lpfc/lpfc_ct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_ct.c b/drivers/scsi/lpfc/lpfc_ct.c
index 02e8cd923d0a..da61d8dc0449 100644
--- a/drivers/scsi/lpfc/lpfc_ct.c
+++ b/drivers/scsi/lpfc/lpfc_ct.c
@@ -280,7 +280,7 @@ lpfc_ct_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *ctiocb)
buf_ptr = (struct lpfc_dmabuf *) ctiocb->context3;
lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
kfree(buf_ptr);
- ctiocb->context1 = NULL;
+ ctiocb->context3 = NULL;
}
lpfc_sli_release_iocbq(phba, ctiocb);
return 0;