From: Paolo Bonzini <pbonzini@redhat.com>
To: Wen Congyang <ghostwcy@gmail.com>,
Wen Congyang <wency@cn.fujitsu.com>,
qemu-devl <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2 for-2.5] rcu: Allow calling rcu_(un)register_thread() during synchronize_rcu()
Date: Tue, 28 Jul 2015 18:14:30 +0200 [thread overview]
Message-ID: <55B7AA66.1070209@redhat.com> (raw)
In-Reply-To: <55B783D6.3020102@gmail.com>
On 28/07/2015 15:29, Wen Congyang wrote:
>>>
>>
>> If you call it just once, you have the same problem as before. In fact,
>> it's worse because instead of having an overflow every 2^31 periods, you
>> have one every 2 periods. Instead, by checking that rcu_reader went
>> through 1 _and_ 3 (or that it was at least once 0, i.e. the thread was
>> quiescent), you are sure that the thread went through _at least one_
>> grace period.
>
> The overflow is acceptable. We only compare if rcu_reader.ctr is equal than
> rcu_gp_ctr. If not, we should wait that thread to call rcu_read_unlock().
> We don't care which is bigger. If no threads calls sync_rcu(), all threads
> rcu_read.ctr is 0 or rcu_gp_ctr. If one thread calls sync_rcu(), all
> threads rcu_read.ctr is 0, old_rcu_gp_ctr, or new_rcu_gp_ctr. We only wait the
> thread that's rcu_read.ctr is old_rcu_gp_ctr.
Suppose you have
reader writer
---------------------------------------------------------------
rcu_read_lock()
ctr = atomic_read(&rcu_gp_ctr);
ctr = 1
synchronize_rcu()
rcu_gp_ctr = 3
atomic_xchg(&p_rcu_reader->ctr, ctr);
rcu_reader.ctr = 1
We're in the critical section.
synchronize_rcu()
rcu_gp_ctr = 1
rcu_gp_ongoing(&p_rcu_reader->ctr) returns false, so synchronize_rcu()
exits. But we're still in the critical section.
p = atomic_rcu_read(&foo);
g_free(p);
Boom. :) For more information see
http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.220.8810
Paolo
next prev parent reply other threads:[~2015-07-28 16:14 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-28 2:26 [Qemu-devel] [PATCH v2 for-2.5] rcu: Allow calling rcu_(un)register_thread() during synchronize_rcu() Wen Congyang
2015-07-28 9:59 ` Paolo Bonzini
2015-07-28 10:02 ` Wen Congyang
2015-07-28 10:18 ` Paolo Bonzini
2015-07-28 10:33 ` Wen Congyang
2015-07-28 11:46 ` Paolo Bonzini
2015-07-28 13:29 ` Wen Congyang
2015-07-28 16:14 ` Paolo Bonzini [this message]
2015-07-29 1:11 ` Wen Congyang
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=55B7AA66.1070209@redhat.com \
--to=pbonzini@redhat.com \
--cc=ghostwcy@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=wency@cn.fujitsu.com \
/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;
as well as URLs for NNTP newsgroup(s).