From: Mike Day <ncmike@ncultra.org>
To: qemu-devel@nongnu.org
Cc: Mike Day <ncmike@ncultra.org>
Subject: [Qemu-devel] [RFC PATCH 00/14] RCU Implementation for Qemu
Date: Wed, 14 Aug 2013 11:50:36 -0400 [thread overview]
Message-ID: <1376495450-5133-1-git-send-email-ncmike@ncultra.org> (raw)
This is a rebase of Paolo's May patchset on v1.6.0-rc3
The tree is availavle on github:
https://github.com/ncultra/qemu/tree/rcu-for-1.7
Mike Day (3):
fix #include directive for rcu header
include osdep.h for definition of glue(a,b)
fix pointer reference to rcu_assign_pointer
Paolo Bonzini (11):
qemu-thread: add QemuEvent
rcu: add rcu library
qemu-thread: register threads with RCU
rcu: add call_rcu
rcu: add rcutorture
rcu: allow nested calls to rcu_thread_offline/rcu_thread_online
qemu-thread: report RCU quiescent states
event loop: report RCU quiescent states
cpus: report RCU quiescent states
block: report RCU quiescent states
migration: report RCU quiescent states
aio-posix.c | 9 +-
aio-win32.c | 7 +
block/raw-posix.c | 3 +
block/raw-win32.c | 3 +
cpus.c | 3 +
docs/rcu.txt | 434 +++++++++++++++++++++++++++++++++++++++++++
hw/9pfs/virtio-9p-synth.c | 1 +
include/qemu/queue.h | 13 ++
include/qemu/rcu-pointer.h | 110 +++++++++++
include/qemu/rcu.h | 208 +++++++++++++++++++++
include/qemu/thread-posix.h | 8 +
include/qemu/thread-win32.h | 4 +
include/qemu/thread.h | 10 +-
kvm-all.c | 3 +
libcacard/Makefile | 3 +-
main-loop.c | 7 +-
migration.c | 2 +
tests/Makefile | 4 +-
tests/rcutorture.c | 439 ++++++++++++++++++++++++++++++++++++++++++++
util/Makefile.objs | 1 +
util/qemu-thread-posix.c | 173 ++++++++++++++++-
util/qemu-thread-win32.c | 44 ++++-
util/rcu.c | 320 ++++++++++++++++++++++++++++++++
23 files changed, 1796 insertions(+), 13 deletions(-)
create mode 100644 docs/rcu.txt
create mode 100644 include/qemu/rcu-pointer.h
create mode 100644 include/qemu/rcu.h
create mode 100644 tests/rcutorture.c
create mode 100644 util/rcu.c
--
1.8.3.1
next reply other threads:[~2013-08-14 15:51 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-14 15:50 Mike Day [this message]
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 01/14] qemu-thread: add QemuEvent Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 02/14] rcu: add rcu library Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 03/14] fix #include directive for rcu header Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 04/14] qemu-thread: register threads with RCU Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 05/14] rcu: add call_rcu Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 06/14] rcu: add rcutorture Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 07/14] rcu: allow nested calls to rcu_thread_offline/rcu_thread_online Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 08/14] qemu-thread: report RCU quiescent states Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 09/14] event loop: " Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 10/14] cpus: " Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 11/14] block: " Mike Day
2013-08-14 15:50 ` [Qemu-devel] [RFC PATCH 12/14] migration: " Mike Day
2013-08-14 15:50 ` [Qemu-devel] [PATCH 13/14] include osdep.h for definition of glue(a, b) Mike Day
2013-08-14 15:50 ` [Qemu-devel] [PATCH 14/14] fix pointer reference to rcu_assign_pointer Mike Day
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=1376495450-5133-1-git-send-email-ncmike@ncultra.org \
--to=ncmike@ncultra.org \
--cc=qemu-devel@nongnu.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;
as well as URLs for NNTP newsgroup(s).