public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Wengang Wang <wen.gang.wang-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
To: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Cc: haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH] rds: rds_ib_device.refcount overflow
Date: Thu, 30 Jul 2015 13:35:09 +0800	[thread overview]
Message-ID: <55B9B78D.5000807@oracle.com> (raw)
In-Reply-To: <55B8E4F2.2060700-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>

Doug,

No problem. I found the patch picked up.

thanks,
wengang

在 2015年07月29日 22:36, Doug Ledford 写道:
> On 07/12/2015 09:18 PM, Wengang Wang wrote:
>> Hi Doug,
>>
>> How do you think about this patch?
> Sorry, I picked this up already.  I must have missed sending out the
> acknowledgment on this one.
>
>> thanks,
>> wengang
>>
>> 在 2015年07月06日 14:35, Wengang Wang 写道:
>>> Fixes: 3e0249f9c05c ("RDS/IB: add refcount tracking to struct
>>> rds_ib_device")
>>>
>>> There lacks a dropping on rds_ib_device.refcount in case rds_ib_alloc_fmr
>>> failed(mr pool running out). this lead to the refcount overflow.
>>>
>>> A complain in line 117(see following) is seen. From vmcore:
>>> s_ib_rdma_mr_pool_depleted is 2147485544 and rds_ibdev->refcount is
>>> -2147475448.
>>> That is the evidence the mr pool is used up. so rds_ib_alloc_fmr is
>>> very likely
>>> to return ERR_PTR(-EAGAIN).
>>>
>>> 115 void rds_ib_dev_put(struct rds_ib_device *rds_ibdev)
>>> 116 {
>>> 117         BUG_ON(atomic_read(&rds_ibdev->refcount) <= 0);
>>> 118         if (atomic_dec_and_test(&rds_ibdev->refcount))
>>> 119                 queue_work(rds_wq, &rds_ibdev->free_work);
>>> 120 }
>>>
>>> fix is to drop refcount when rds_ib_alloc_fmr failed.
>>>
>>> Signed-off-by: Wengang Wang <wen.gang.wang-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
>>> Reviewed-by: Haggai Eran <haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>>> ---
>>>    net/rds/ib_rdma.c | 4 +++-
>>>    1 file changed, 3 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/net/rds/ib_rdma.c b/net/rds/ib_rdma.c
>>> index 273b8bf..657ba9f 100644
>>> --- a/net/rds/ib_rdma.c
>>> +++ b/net/rds/ib_rdma.c
>>> @@ -759,8 +759,10 @@ void *rds_ib_get_mr(struct scatterlist *sg,
>>> unsigned long nents,
>>>        }
>>>          ibmr = rds_ib_alloc_fmr(rds_ibdev);
>>> -    if (IS_ERR(ibmr))
>>> +    if (IS_ERR(ibmr)) {
>>> +        rds_ib_dev_put(rds_ibdev);
>>>            return ibmr;
>>> +    }
>>>          ret = rds_ib_map_fmr(rds_ibdev, ibmr, sg, nents);
>>>        if (ret == 0)
>> -- 
>> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2015-07-30  5:35 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-06  6:35 [PATCH] rds: rds_ib_device.refcount overflow Wengang Wang
     [not found] ` <1436164511-2411-1-git-send-email-wen.gang.wang-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2015-07-13  1:18   ` Wengang Wang
     [not found]     ` <55A31202.1030408-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2015-07-29 14:36       ` Doug Ledford
     [not found]         ` <55B8E4F2.2060700-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-07-30  5:35           ` Wengang Wang [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-06-24  4:54 Wengang Wang
     [not found] ` <1435121680-11491-1-git-send-email-wen.gang.wang-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2015-07-06  3:01   ` Wengang Wang
2015-07-06  6:18   ` Haggai Eran
     [not found]     ` <559A1DB0.5010003-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-07-06  6:27       ` Wengang Wang

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=55B9B78D.5000807@oracle.com \
    --to=wen.gang.wang-qhclzuegtsvqt0dzr+alfa@public.gmane.org \
    --cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=haggaie-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    /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