Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935456Ab3JPSRL (ORCPT ); Wed, 16 Oct 2013 14:17:11 -0400 Received: from cmexedge1.ext.emulex.com ([138.239.224.99]:8675 "EHLO CMEXEDGE1.ext.emulex.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934836Ab3JPSRI (ORCPT ); Wed, 16 Oct 2013 14:17:08 -0400 Message-ID: <525ED821.80909@emulex.com> Date: Wed, 16 Oct 2013 14:17:05 -0400 From: James Smart Reply-To: User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121026 Thunderbird/16.0.2 MIME-Version: 1.0 To: Felipe Pena CC: "James E.J. Bottomley" , , Subject: Re: [PATCH] drivers: scsi: lpfc: Fix typo on NULL assignment References: <1381883390-4200-1-git-send-email-felipensp@gmail.com> In-Reply-To: <1381883390-4200-1-git-send-email-felipensp@gmail.com> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1203 Lines: 37 Acked-by: James Smart -- james s On 10/15/2013 8:29 PM, Felipe Pena wrote: > 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 > --- > drivers/scsi/lpfc/lpfc_ct.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/scsi/lpfc/lpfc_ct.c b/drivers/scsi/lpfc/lpfc_ct.c > index 02e8cd9..da61d8d 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; > -- > 1.7.10.4 > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/