]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[SCSI] lpfc: Fix typo on NULL assignment
authorFelipe Pena <felipensp@gmail.com>
Wed, 16 Oct 2013 00:29:50 +0000 (21:29 -0300)
committerJames Bottomley <JBottomley@Parallels.com>
Fri, 25 Oct 2013 10:25:54 +0000 (11:25 +0100)
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>
drivers/scsi/lpfc/lpfc_ct.c

index 02e8cd923d0a8a875ff54d962872a0556de85283..da61d8dc044976d87d45f57cd31f97ea3a77b28d 100644 (file)
@@ -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;