public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Tomas Henzl <thenzl@redhat.com>
To: Maurizio Lombardi <mlombard@redhat.com>, jayamohan.kallickal@emulex.com
Cc: linux-scsi@vger.kernel.org, michaelc@cs.wisc.edu,
	hch@infradead.org, JBottomley@parallels.com
Subject: Re: [PATCH] b2iscsi: Fix memory leak in mgmt_set_ip()
Date: Sun, 29 Jun 2014 20:28:34 +0200	[thread overview]
Message-ID: <53B05AD2.7050200@redhat.com> (raw)
In-Reply-To: <53ADC822.1040508@redhat.com>

On 06/27/2014 09:38 PM, Maurizio Lombardi wrote:
>
>>> diff --git a/drivers/scsi/be2iscsi/be_mgmt.c b/drivers/scsi/be2iscsi/be_mgmt.c
>>> index 07934b0..a3e5648 100644
>>> --- a/drivers/scsi/be2iscsi/be_mgmt.c
>>> +++ b/drivers/scsi/be2iscsi/be_mgmt.c
>>> @@ -1015,7 +1015,7 @@ int mgmt_set_ip(struct beiscsi_hba *phba,
>>>  		if (if_info->dhcp_state) {
>>>  			beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
>>>  				    "BG_%d : DHCP Already Enabled\n");
>>> -			return 0;
>>> +			goto exit;
>> rc should be initialised - so this needs to be added to your patch
> It is initialized at the beginning of the function, and it must contain zero when the "goto exit" is executed.

Correct, I haven't noticed the initialisation, sorry for the confusion.
--tm

>
> int mgmt_set_ip(struct beiscsi_hba *phba,
>                 struct iscsi_iface_param_info *ip_param,
>                 struct iscsi_iface_param_info *subnet_param,
>                 uint32_t boot_proto)
> {
>         struct be_cmd_get_def_gateway_resp gtway_addr_set;
>         struct be_cmd_get_if_info_resp *if_info;
>         struct be_cmd_set_dhcp_req *dhcpreq;
>         struct be_cmd_rel_dhcp_req *reldhcp;
>         struct be_dma_mem nonemb_cmd;
>         uint8_t *gtway_addr;
>         uint32_t ip_type;
>         int rc;
>
>         if (mgmt_get_all_if_id(phba))
>                 return -EIO;
>
>         ip_type = (ip_param->param == ISCSI_NET_PARAM_IPV6_ADDR) ?
>                 BE2_IPV6 : BE2_IPV4 ;
>
>         rc = mgmt_get_if_info(phba, ip_type, &if_info); <-------------- here
>         if (rc)
>                 return rc;
>
>         if (boot_proto == ISCSI_BOOTPROTO_DHCP) {
>                 if (if_info->dhcp_state) {
>                         beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
>                                     "BG_%d : DHCP Already Enabled\n");
>                         goto exit;
>                 }
>
> Regards,
> Maurizio Lombardi
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


  reply	other threads:[~2014-06-29 18:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-27 12:55 [PATCH] b2iscsi: Fix memory leak in mgmt_set_ip() Maurizio Lombardi
2014-06-27 16:32 ` Tomas Henzl
2014-06-27 19:38   ` Maurizio Lombardi
2014-06-29 18:28     ` Tomas Henzl [this message]
2014-07-01 18:53       ` Christoph Hellwig
2014-07-07 11:29         ` Tomas Henzl

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=53B05AD2.7050200@redhat.com \
    --to=thenzl@redhat.com \
    --cc=JBottomley@parallels.com \
    --cc=hch@infradead.org \
    --cc=jayamohan.kallickal@emulex.com \
    --cc=linux-scsi@vger.kernel.org \
    --cc=michaelc@cs.wisc.edu \
    --cc=mlombard@redhat.com \
    /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