From: "Aneesh Kumar K. V" <aneesh.kumar@linux.vnet.ibm.com>
To: dave@gnu.org, ericvh@gmail.com, rminnich@sandia.gov, lucho@ionkov.net
Cc: v9fs-developer@lists.sourceforge.net,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [V9fs-developer] [PATCH] net/9p: fix memory handling/allocation in rdma_request()
Date: Tue, 14 Sep 2010 23:32:55 +0530 [thread overview]
Message-ID: <m3d3sg5hkg.fsf@linux.vnet.ibm.com> (raw)
In-Reply-To: <1284393198.2055.1.camel@cowboy>
On Mon, 13 Sep 2010 11:53:18 -0400, Davidlohr Bueso <dave@gnu.org> wrote:
> [PATCH] net/9p: fix memory handling/allocation in rdma_request()
>
> Return -ENOMEM when erroring on kmalloc and fix memory leaks when returning on error.
>
> Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Looks good.
Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
> ---
> net/9p/trans_rdma.c | 29 ++++++++++++++++++-----------
> 1 files changed, 18 insertions(+), 11 deletions(-)
>
> diff --git a/net/9p/trans_rdma.c b/net/9p/trans_rdma.c
> index 0ea20c3..17c5ba7 100644
> --- a/net/9p/trans_rdma.c
> +++ b/net/9p/trans_rdma.c
> @@ -426,8 +426,10 @@ static int rdma_request(struct p9_client *client, struct p9_req_t *req)
>
> /* Allocate an fcall for the reply */
> rpl_context = kmalloc(sizeof *rpl_context, GFP_KERNEL);
> - if (!rpl_context)
> + if (!rpl_context) {
> + err = -ENOMEM;
> goto err_close;
> + }
>
> /*
> * If the request has a buffer, steal it, otherwise
> @@ -445,8 +447,8 @@ static int rdma_request(struct p9_client *client, struct p9_req_t *req)
> }
> rpl_context->rc = req->rc;
> if (!rpl_context->rc) {
> - kfree(rpl_context);
> - goto err_close;
> + err = -ENOMEM;
> + goto err_free2;
> }
>
> /*
> @@ -458,11 +460,8 @@ static int rdma_request(struct p9_client *client, struct p9_req_t *req)
> */
> if (atomic_inc_return(&rdma->rq_count) <= rdma->rq_depth) {
> err = post_recv(client, rpl_context);
> - if (err) {
> - kfree(rpl_context->rc);
> - kfree(rpl_context);
> - goto err_close;
> - }
> + if (err)
> + goto err_free1;
> } else
> atomic_dec(&rdma->rq_count);
>
> @@ -471,8 +470,10 @@ static int rdma_request(struct p9_client *client, struct p9_req_t *req)
>
> /* Post the request */
> c = kmalloc(sizeof *c, GFP_KERNEL);
> - if (!c)
> - goto err_close;
> + if (!c) {
> + err = -ENOMEM;
> + goto err_free1;
> + }
> c->req = req;
>
> c->busa = ib_dma_map_single(rdma->cm_id->device,
> @@ -499,9 +500,15 @@ static int rdma_request(struct p9_client *client, struct p9_req_t *req)
> return ib_post_send(rdma->qp, &wr, &bad_wr);
>
> error:
> + kfree(c);
> + kfree(rpl_context->rc);
> + kfree(rpl_context);
> P9_DPRINTK(P9_DEBUG_ERROR, "EIO\n");
> return -EIO;
> -
> + err_free1:
> + kfree(rpl_context->rc);
> + err_free2:
> + kfree(rpl_context);
> err_close:
> spin_lock_irqsave(&rdma->req_lock, flags);
> if (rdma->state < P9_RDMA_CLOSING) {
> --
> 1.7.0.4
>
>
>
>
> ------------------------------------------------------------------------------
> Start uncovering the many advantages of virtual appliances
> and start using them to simplify application deployment and
> accelerate your shift to cloud computing
> http://p.sf.net/sfu/novell-sfdev2dev
> _______________________________________________
> V9fs-developer mailing list
> V9fs-developer@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/v9fs-developer
prev parent reply other threads:[~2010-09-14 18:03 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-13 15:53 [PATCH] net/9p: fix memory handling/allocation in rdma_request() Davidlohr Bueso
2010-09-14 18:02 ` Aneesh Kumar K. V [this message]
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=m3d3sg5hkg.fsf@linux.vnet.ibm.com \
--to=aneesh.kumar@linux.vnet.ibm.com \
--cc=dave@gnu.org \
--cc=ericvh@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lucho@ionkov.net \
--cc=rminnich@sandia.gov \
--cc=v9fs-developer@lists.sourceforge.net \
/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