From: James Smart <james.smart@broadcom.com>
To: Johannes Thumshirn <jthumshirn@suse.de>,
"Martin K . Petersen" <martin.petersen@oracle.com>
Cc: Linux SCSI Mailinglist <linux-scsi@vger.kernel.org>,
Linux Kernel Mailinglist <linux-kernel@vger.kernel.org>,
Dick Kennedy <dick.kennedy@broadcom.com>,
Roberto Sassu <rsassu@suse.de>
Subject: Re: [PATCH] lpfc: avoid double free of resource identifiers
Date: Wed, 11 Jan 2017 11:47:49 -0800 [thread overview]
Message-ID: <43af5f62-2e79-62c6-c045-5da0cff18e10@broadcom.com> (raw)
In-Reply-To: <20170111100642.18573-1-jthumshirn@suse.de>
looks good. Thanks
Signed-off-by: James Smart <james.smart@broadcom.com>
-- james
On 1/11/2017 2:06 AM, Johannes Thumshirn wrote:
> From: Roberto Sassu <rsassu@suse.de>
>
> Set variables initialized in lpfc_sli4_alloc_resource_identifiers() to NULL
> if an error occurred. Otherwise, lpfc_sli4_driver_resource_unset() attempts
> to free the memory again.
>
> Signed-off-by: Roberto Sassu <rsassu@suse.de>
> Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
> ---
> drivers/scsi/lpfc/lpfc_sli.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c
> index 4faa767..a78a3df 100644
> --- a/drivers/scsi/lpfc/lpfc_sli.c
> +++ b/drivers/scsi/lpfc/lpfc_sli.c
> @@ -5954,18 +5954,25 @@ lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
>
> free_vfi_bmask:
> kfree(phba->sli4_hba.vfi_bmask);
> + phba->sli4_hba.vfi_bmask = NULL;
> free_xri_ids:
> kfree(phba->sli4_hba.xri_ids);
> + phba->sli4_hba.xri_ids = NULL;
> free_xri_bmask:
> kfree(phba->sli4_hba.xri_bmask);
> + phba->sli4_hba.xri_bmask = NULL;
> free_vpi_ids:
> kfree(phba->vpi_ids);
> + phba->vpi_ids = NULL;
> free_vpi_bmask:
> kfree(phba->vpi_bmask);
> + phba->vpi_bmask = NULL;
> free_rpi_ids:
> kfree(phba->sli4_hba.rpi_ids);
> + phba->sli4_hba.rpi_ids = NULL;
> free_rpi_bmask:
> kfree(phba->sli4_hba.rpi_bmask);
> + phba->sli4_hba.rpi_bmask = NULL;
> err_exit:
> return rc;
> }
next prev parent reply other threads:[~2017-01-11 19:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-11 10:06 Johannes Thumshirn
2017-01-11 19:47 ` James Smart [this message]
2017-01-12 3:57 ` Martin K. Petersen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=43af5f62-2e79-62c6-c045-5da0cff18e10@broadcom.com \
--to=james.smart@broadcom.com \
--cc=dick.kennedy@broadcom.com \
--cc=jthumshirn@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=rsassu@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®