[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <a489b206-e781-c7cb-0164-c29ca0295b39@infradead.org>
Date: Sun, 19 Apr 2020 23:31:35 -0700
From: Randy Dunlap <rdunlap@...radead.org>
To: Zhiyun Qian <zhiyunq@...ucr.edu>,
易林 <yilin@....ac.cn>
Cc: vishal@...lsio.com, "csong@...ucr.edu" <csong@...ucr.edu>,
"yiqiuping@...il.com" <yiqiuping@...il.com>,
jian liu <liujian6@....ac.cn>, netdev@...r.kernel.org
Subject: Re: drivers: target: iscsi: cxgbit: is there exist a memleak in cxgbit_create_server4?
On 4/19/20 11:23 PM, Zhiyun Qian wrote:
> -Zhiyun
>
> On Mon, Apr 20, 2020 at 2:48 AM 易林 <yilin@....ac.cn> wrote:
>>
>> static int
>> cxgbit_create_server4(struct cxgbit_device *cdev, unsigned int stid,
>> struct cxgbit_np *cnp)
>> {
>> struct sockaddr_in *sin = (struct sockaddr_in *)
>> &cnp->com.local_addr;
>> int ret;
>>
>> pr_debug("%s: dev = %s; stid = %u; sin_port = %u\n",
>> __func__, cdev->lldi.ports[0]->name, stid, sin->sin_port);
>>
>> cxgbit_get_cnp(cnp);
>> cxgbit_init_wr_wait(&cnp->com.wr_wait);
>>
>> ret = cxgb4_create_server(cdev->lldi.ports[0],
>> stid, sin->sin_addr.s_addr,
>> sin->sin_port, 0,
>> cdev->lldi.rxq_ids[0]);
>> if (!ret)
>> ret = cxgbit_wait_for_reply(cdev,
>> &cnp->com.wr_wait,
>> 0, 10, __func__);
>> else if (ret > 0)
>> ret = net_xmit_errno(ret);
>> else
>> cxgbit_put_cnp(cnp);
>>
>> if (ret)
>> pr_err("create server failed err %d stid %d laddr %pI4 lport %d\n",
>> ret, stid, &sin->sin_addr, ntohs(sin->sin_port));
>> return ret;
>> }
>> what if cxgb4_create_server return a >0 value, the cnp reference wouldn't be released. Or, when cxgb4_create_server return >0 value, cnp has been released somewhere.
>
> ">:0"? typo?
>
Lots of html conversions of > < etc. Makes it difficult to read.
Convert > to >
Convert < to <
Preferably repost as readable C source code.
--
~Randy
Powered by blists - more mailing lists