From: paulmck@kernel.org (Paul E. McKenney)
Subject: [lttng-dev] RCU consistency guarantees
Date: Fri, 6 Dec 2019 08:30:52 -0800 [thread overview]
Message-ID: <20191206163052.GG2889@paulmck-ThinkPad-P72> (raw)
In-Reply-To: <512711764.1078.1575647945136.JavaMail.zimbra@efficios.com>
On Fri, Dec 06, 2019 at 10:59:05AM -0500, Mathieu Desnoyers wrote:
> ----- On Dec 6, 2019, at 3:51 PM, Yuxin Ren <ryx at gwmail.gwu.edu> wrote:
>
> > On Fri, Dec 6, 2019 at 5:49 AM Mathieu Desnoyers < [
> > mailto:mathieu.desnoyers at efficios.com | mathieu.desnoyers at efficios.com ] >
> > wrote:
>
> >> ----- On Dec 5, 2019, at 8:17 PM, Yuxin Ren < [ mailto:ryx at gwmail.gwu.edu |
> >> ryx at gwmail.gwu.edu ] > wrote:
>
> >>> Hi,
> >>> I am a student, and learning RCU now, but still know very little about it.
> >>> Are there any documents/papers/materials which (in)formally define and explain
> >>> RCU consistency guarantees?
>
> >> You may want to have a look at
>
> >> User-Level Implementations of Read-Copy Update
> >> Article in IEEE Transactions on Parallel and Distributed Systems 23(2):375 - 382
> >> ? March 2012
>
> > Thanks for your info.
> > However, I do not think URCU talks about any consistency model formally.
>
> > From previous communication with Paul, he said RCU is not designed for
> > linearizability, and it is totally acceptable that RCU is not linearizable.
> > However, I am curious how to accurately/formally Characterize RCU consistency
> > model/guarantees
>
> Adding Paul E. McKenney in CC.
>
> I am referring to the section "Overview of RCU semantics" in the paper. Not sure it has the level of
> formality you are looking for though. Paul, do you have pointers to additional material ?
Indeed I do! The Linux kernel memory model (LKMM) includes RCU. It is
in tools/memory-model in recent kernel source trees, which includes
documentation. This is an executable model, which means that you
can create litmus tests and have the model formally and automatically
evaluate them.
There are also a number of publications covering LKMM:
o A formal kernel memory-ordering model
https://lwn.net/Articles/718628/
https://lwn.net/Articles/720550/
These cover the release stores and dependency ordering that
provide RCU's publish-subscribe guarantees.
Backup material here:
https://mirrors.edge.kernel.org/pub/linux/kernel/people/paulmck/LWNLinuxMM/
With these two likely being of particular interest:
https://mirrors.edge.kernel.org/pub/linux/kernel/people/paulmck/LWNLinuxMM/RCUguarantees.html
https://mirrors.edge.kernel.org/pub/linux/kernel/people/paulmck/LWNLinuxMM/srcu.html
o Frightening Small Children and Disconcerting Grown-ups: Concurrency in the Linux Kernel
https://dl.acm.org/citation.cfm?id=3177156
http://www0.cs.ucl.ac.uk/staff/j.alglave/papers/asplos18.pdf
Backup material:
http://diy.inria.fr/linux/
o Who's afraid of a big bad optimizing compiler?
https://lwn.net/Articles/793253/
o Calibrating your fear of big bad optimizing compilers
https://lwn.net/Articles/799218/
These last two justify use of normal C-language assignment
statements to initialize and access data referenced by
RCU-protected pointers.
There is a large body of litmus tests (thousands of them) here:
https://github.com/paulmckrcu/litmus
Many of these litmus tests involve RCU, and these can be located by
search for files containing rcu_read_lock(), rcu_read_unlock(),
synchronize_rcu(), and so on.
Or were you looking for something else?
Thanx, Paul
> Thanks,
>
> Mathieu
>
> >> as a starting point.
>
> >> Thanks,
>
> >> Mathieu
>
> >>> I know there are some consistency models in the database area (such as PRAM,
> >>> Read Uncommitted, etc) from [ https://jepsen.io/consistency |
> >>> https://jepsen.io/consistency ] and [1].
> >>> How does RCU related to those consistency models?
>
> >>> I also found some comments online (One key distinction is that both MVCC and RLU
> >>> provide much stronger consistency guarantees to readers than does RCU ...) ( [
> >>> https://lwn.net/Articles/777036/ | https://lwn.net/Articles/777036/ ] ).
> >>> I do not understand how we reason/dresibe/compare the consistency guarantees. (
> >>> I even do not know what consistency guarantees provided by RCU formally)
> >>> Could someone explain this to me?
>
> >>> [1] Bailis, P., Davidson, A., Fekete, A., Ghodsi, A., Hellerstein, J. M., &
> >>> Stoica, I. (2013). Highly available transactions: Virtues and limitations.
> >>> Proceedings of the VLDB Endowment, 7(3), 181-192.
>
> >>> Thanks
> >>> Yuxin
>
> >>> _______________________________________________
> >>> lttng-dev mailing list
> >>> [ mailto:lttng-dev at lists.lttng.org | lttng-dev at lists.lttng.org ]
> >>> [ https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev |
> >>> https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev ]
>
> >> --
> >> Mathieu Desnoyers
> >> EfficiOS Inc.
> >> [ http://www.efficios.com/ | http://www.efficios.com ]
>
> --
> Mathieu Desnoyers
> EfficiOS Inc.
> http://www.efficios.com
next prev parent reply other threads:[~2019-12-06 16:30 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-06 1:17 Yuxin Ren
2019-12-06 10:49 ` Mathieu Desnoyers
2019-12-06 14:51 ` Yuxin Ren
2019-12-06 15:59 ` Mathieu Desnoyers
2019-12-06 16:30 ` Paul E. McKenney [this message]
2019-12-07 0:00 ` Yuxin Ren
2019-12-07 6:37 ` Paul E. McKenney
2019-12-07 20:04 ` Yuxin Ren
2019-12-07 22:42 ` Paul E. McKenney
2019-12-14 6:31 ` Yuxin Ren
2019-12-15 20:30 ` Paul E. McKenney
2019-12-15 22:10 ` Yuxin Ren
2019-12-16 0:57 ` Paul E. McKenney
-- strict thread matches above, loose matches on Subject: below --
2019-12-06 1:15 Yuxin Ren
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=20191206163052.GG2889@paulmck-ThinkPad-P72 \
--to=paulmck@kernel.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