From: Yishai Hadas <yishaih-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
To: Jason Gunthorpe
<jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
Cc: Yishai Hadas <yishaih-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
raindel-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org,
jackm-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org
Subject: Re: [PATCH for-next V5 1/5] IB/uverbs: Fix reference counting usage of event files
Date: Tue, 30 Jun 2015 00:22:02 +0300 [thread overview]
Message-ID: <5591B6FA.4000400@dev.mellanox.co.il> (raw)
In-Reply-To: <20150629174038.GB2755-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
On 6/29/2015 8:40 PM, Jason Gunthorpe wrote:
> On Sun, Jun 28, 2015 at 05:33:04PM +0300, Yishai Hadas wrote:
>
>> You are wrong here, we have here balanced put, the first is done as
>> part of fput(filp) -> ib_uverbs_event_close_file ->
>> kref_put(&file->ref, ib_uverbs_release_event_file) and the second at
>> the end of this function as part of the err: label
>> kref_put(&ev_file->ref, ib_uverbs_release_event_file);
>
> Ugh, that is so gross, seriously? Sure, the counts work out, but that
> is *totally unreadable*.
>
> Sigh, just use this:
>
> struct file *ib_uverbs_alloc_event_file(struct ib_uverbs_file *uverbs_file,
> int is_async)
> {
> struct ib_uverbs_event_file *ev_file;
> struct file *filp;
> + int ret;
>
> - ev_file = kmalloc(sizeof *ev_file, GFP_KERNEL);
> + ev_file = kzalloc(sizeof(*ev_file), GFP_KERNEL);
> if (!ev_file)
> return ERR_PTR(-ENOMEM);
>
> @@ -555,15 +561,41 @@ struct file *ib_uverbs_alloc_event_file(struct ib_uverbs_file *uverbs_file,
> INIT_LIST_HEAD(&ev_file->event_list);
> init_waitqueue_head(&ev_file->poll_wait);
> ev_file->uverbs_file = uverbs_file;
> + kref_get(&ev_file->uverbs_file->ref);
> ev_file->async_queue = NULL;
> - ev_file->is_async = is_async;
> ev_file->is_closed = 0;
>
> filp = anon_inode_getfile("[infinibandevent]", &uverbs_event_fops,
> ev_file, O_RDONLY);
> if (IS_ERR(filp))
> - kfree(ev_file);
> + goto err_put_refs;
> +
> + if (is_async) {
> + WARN_ON(uverbs_file->async_file);
> + uverbs_file->async_file = ev_file;
> + kref_get(&uverbs_file->async_file->ref);
> + INIT_IB_EVENT_HANDLER(&uverbs_file->event_handler,
> + uverbs_file->device->ib_dev,
> + ib_uverbs_event_handler);
> + ret = ib_register_event_handler(&uverbs_file->event_handler);
> + if (ret)
> + goto err_put_file;
> +
> + /* At that point async file stuff was fully set */
> + ev_file->is_async = 1;
> + }
> +
> + return filp;
> +
> +err_put_file:
> + fput(filp);
> + kref_put(&uverbs_file->async_file->ref, ib_uverbs_release_file);
It should be:
kref_put(&uverbs_file->async_file->ref, ib_uverbs_release_event_file)
instead of:
kref_put(&uverbs_file->async_file->ref, ib_uverbs_release_file);
Please note that in that approach we duplicate above line as it appears
here and in below err_put_refs label as uverbs_file->async_file is
really ev_file.
In my patch we used one line instead of those duplicated lines, however
as you think that it clarifies things will go with your suggestion after
fixing above note, thanks.
> + uverbs_file->async_file = NULL;
> + return ERR_PTR(ret);
>
> +err_put_refs:
> + kref_put(&ev_file->uverbs_file->ref, ib_uverbs_release_file);
> + kref_put(&ev_file->ref, ib_uverbs_release_event_file);
> return filp;
> }
>
> Jason
>
--
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
next prev parent reply other threads:[~2015-06-29 21:22 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-22 14:47 [PATCH for-next V5 0/5] HW Device hot-removal support Yishai Hadas
[not found] ` <1434984438-21733-1-git-send-email-yishaih-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-06-22 14:47 ` [PATCH for-next V5 1/5] IB/uverbs: Fix reference counting usage of event files Yishai Hadas
[not found] ` <1434984438-21733-2-git-send-email-yishaih-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-06-24 17:57 ` Jason Gunthorpe
[not found] ` <20150624175738.GC21033-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2015-06-25 11:46 ` Yishai Hadas
[not found] ` <558BE9FA.9060402-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-06-25 17:52 ` Jason Gunthorpe
[not found] ` <20150625175228.GF21033-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2015-06-28 14:33 ` Yishai Hadas
[not found] ` <559005A0.4070800-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-06-29 17:40 ` Jason Gunthorpe
[not found] ` <20150629174038.GB2755-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2015-06-29 21:22 ` Yishai Hadas [this message]
[not found] ` <5591B6FA.4000400-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-06-29 21:48 ` Jason Gunthorpe
2015-06-22 14:47 ` [PATCH for-next V5 2/5] IB/uverbs: Explicitly pass ib_dev to uverbs commands Yishai Hadas
2015-06-22 14:47 ` [PATCH for-next V5 3/5] IB/uverbs: Enable device removal when there are active user space applications Yishai Hadas
[not found] ` <1434984438-21733-4-git-send-email-yishaih-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2015-06-24 18:25 ` Jason Gunthorpe
[not found] ` <20150624182519.GD21033-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2015-06-25 13:51 ` Yishai Hadas
[not found] ` <558C0775.4000104-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-06-25 17:09 ` Jason Gunthorpe
[not found] ` <20150625170937.GE21033-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2015-06-29 21:33 ` Yishai Hadas
2015-06-22 14:47 ` [PATCH for-next V5 4/5] IB/mlx4_ib: Disassociate support Yishai Hadas
2015-06-22 14:47 ` [PATCH for-next V5 5/5] IB/ucma: HW Device hot-removal support Yishai Hadas
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=5591B6FA.4000400@dev.mellanox.co.il \
--to=yishaih-ldsdmyg8hgv8yrgs2mwiifqbs+8scbdb@public.gmane.org \
--cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=jackm-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
--cc=jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=raindel-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
--cc=yishaih-VPRAkNaXOzVWk0Htik3J/w@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