From: Bart Van Assche <bvanassche-HInyCGIudOg@public.gmane.org>
To: "Hefty, Sean" <sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: "linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
<linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
yangfanlinux
<yangfanlinux-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Subject: Re: ib_destroy_cm_id() versus cm callback race ?
Date: Mon, 30 Apr 2012 19:04:10 +0000 [thread overview]
Message-ID: <4F9EE22A.4020000@acm.org> (raw)
In-Reply-To: <1828884A29C6694DAF28B7E6B8A82373469FED01-P5GAC/sN6hmkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
On 04/30/12 18:29, Hefty, Sean wrote:
>> That makes me wonder how it is prevented that two CM callbacks for the
>> same CM ID run concurrently on different CPUs ?
>
> The callback code ends up looking like this:
>
> ret = atomic_inc_and_test(&cm_id_priv->work_count);
> if (!ret)
> list_add_tail(&work->list, &cm_id_priv->work_list);
> spin_unlock_irq(&cm_id_priv->lock);
>
> if (ret)
> cm_process_work(cm_id_priv, work);
>
> Only 1 thread will end up invoking callbacks to the user. Other events
> end up being queued on the work_list for a given id.
Are you sure that only one thread at a time will invoke a CM callback ? As
far as I can see cm_recv_handler() queues work without checking whether
any other work is ongoing. From drivers/infiniband/core/cm.c:
static void cm_recv_handler(...)
{
[ ... ]
work = kmalloc(sizeof *work + sizeof(struct ib_sa_path_rec) * paths,
GFP_KERNEL);
if (!work) {
ib_free_recv_mad(mad_recv_wc);
return;
}
INIT_DELAYED_WORK(&work->work, cm_work_handler);
work->cm_event.event = event;
work->mad_recv_wc = mad_recv_wc;
work->port = port;
queue_delayed_work(cm.wq, &work->work, 0);
}
What I have noticed could be explained by the following sequence of events:
* IB CM core receives a connection request and invokes the callback for event
IB_CM_REQ_RECEIVED.
* That callback adds connection information to a global list (and keeps running).
* User requests shutdown and hence from another thread ib_send_cm_dreq() is invoked.
* IB CM core receives a DREP message and invokes the callback for event
IB_CM_DREP_RECEIVED. That callback function gets confused because of the
concurrent connection state manipulations by the IB_CM_REQ_RECEIVED handler
(which is still running).
Bart.
--
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:[~2012-04-30 19:04 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-27 15:57 ib_destroy_cm_id() versus cm callback race ? Bart Van Assche
[not found] ` <4F9AC1F2.5070007-HInyCGIudOg@public.gmane.org>
2012-04-27 17:18 ` Hefty, Sean
[not found] ` <1828884A29C6694DAF28B7E6B8A82373469D891F-P5GAC/sN6hmkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2012-04-28 9:56 ` Bart Van Assche
[not found] ` <4F9BBEEB.40806-HInyCGIudOg@public.gmane.org>
2012-04-30 18:29 ` Hefty, Sean
[not found] ` <1828884A29C6694DAF28B7E6B8A82373469FED01-P5GAC/sN6hmkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2012-04-30 19:04 ` Bart Van Assche [this message]
[not found] ` <4F9EE22A.4020000-HInyCGIudOg@public.gmane.org>
2012-04-30 19:27 ` Hefty, Sean
[not found] ` <1828884A29C6694DAF28B7E6B8A8237346A00D4A-P5GAC/sN6hmkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2012-05-01 7:19 ` Bart Van Assche
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=4F9EE22A.4020000@acm.org \
--to=bvanassche-hinycgiudog@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
--cc=yangfanlinux-Re5JQEeQqe8AvxtiuMwx3w@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