All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH tip/core/rcu 0/28] patches queued for 3.1, first installment
@ 2011-06-08 19:29 Paul E. McKenney
  2011-06-08 19:29 ` [PATCH tip/core/rcu 01/28] rcu: Simplify curing of load woes Paul E. McKenney
                   ` (27 more replies)
  0 siblings, 28 replies; 54+ messages in thread
From: Paul E. McKenney @ 2011-06-08 19:29 UTC (permalink / raw)
  To: linux-kernel
  Cc: mingo, laijs, dipankar, akpm, mathieu.desnoyers, josh, niv, tglx,
	peterz, rostedt, Valdis.Kletnieks, dhowells, eric.dumazet, darren,
	viro, eparis, axboe, Trond.Myklebust, jmorris, robert.w.love,
	James.Bottomley, jes, tony.luck, fenghua.yu, jack, neilb, sds,
	manfred, namhyung, rientjes, kaber, patches

Hello!

This patchset contains some simplifications, bug fixes, documentation
updates, and a bunch of leftover conversions to kfree_rcu().  Almost
all of the latter need either an Acked-by or to be taken into the
appropriate maintainer tree.  The patches are as follows:

1.	Simplify RCU kthread creation.
2.	Convert from kthread_create() to kthread_create_on_node()
	(courtesy of Eric Dumazet).
3.	Improve rcu_read_lock() code generation.
4.	Restore checks for blocking within RCU read-side critical
	sections under CONFIG_PROVE_RCU.
5.	Move struct rcu_head into types.h as a first step towards
	untangling header files.
6.	Update rcutorture documentation to account for boosting,
	memory-barrier testing, and (not so) new flavors of RCU.
7.	Fix type mismatch (courtesy of Andi Kleen).
8.	Combine common grace-period-wait code.
9.	Eliminate rcutorture workarounds for previously missing
	RCU API members, and add testing of synchronize_rcu_bh_expedited().
10.	Update RCU's NMI documentation.
11-27.	Conversions to kfree_rcu() (courtesy of Lai Jiangshan,
	in need of either Acked-by or adoption).
28.	Convert call_rcu(sk_filter_release_rcu) to kfree_rcu
	(courtesy of Lai Jiangshan, already acked).

For a testing-only version of this patchset from git, please see the
following subject-to-rebase branch:

git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git rcu/testing

							Thanx, Paul

------------------------------------------------------------------------

 b/Documentation/RCU/NMI-RCU.txt |    2 
 b/Documentation/RCU/torture.txt |  134 ++++++++++++++++++++++++++++----------
 b/arch/ia64/sn/kernel/irq.c     |   14 ----
 b/block/cfq-iosched.c           |    7 --
 b/block/genhd.c                 |   10 --
 b/drivers/md/linear.c           |    8 --
 b/drivers/scsi/libfc/fc_rport.c |   14 ----
 b/fs/jbd2/journal.c             |    7 --
 b/fs/nfs/delegation.c           |   14 ----
 b/include/linux/lockdep.h       |    2 
 b/include/linux/rcupdate.h      |   28 ++++++--
 b/include/linux/rcutiny.h       |   16 ++++
 b/include/linux/rcutree.h       |    2 
 b/include/linux/types.h         |   10 ++
 b/include/net/sock.h            |    4 -
 b/ipc/sem.c                     |   10 --
 b/ipc/util.c                    |   16 ----
 b/kernel/audit_tree.c           |    8 --
 b/kernel/lockdep.c              |   84 +++++++++++++-----------
 b/kernel/pid.c                  |    4 -
 b/kernel/rcupdate.c             |   21 +++++-
 b/kernel/rcutiny.c              |   28 --------
 b/kernel/rcutiny_plugin.h       |   14 ----
 b/kernel/rcutorture.c           |    3 
 b/kernel/rcutree.c              |   65 ++++++------------
 b/kernel/rcutree_plugin.h       |   11 ---
 b/kernel/rcutree_trace.c        |    2 
 b/kernel/sched.c                |    2 
 b/kernel/sysctl.c               |   11 ---
 b/mm/vmalloc.c                  |    9 --
 b/net/core/filter.c             |   12 ---
 b/net/netfilter/xt_RATEEST.c    |    8 --
 b/security/device_cgroup.c      |   10 --
 b/security/selinux/netnode.c    |   20 -----
 b/security/selinux/netport.c    |   20 -----
 include/linux/rcupdate.h        |  140 +++++++++++++++++++++-------------------
 kernel/rcutorture.c             |   55 ++++++---------
 kernel/rcutree.c                |   27 +------
 kernel/rcutree_plugin.h         |   23 ++----
 mm/vmalloc.c                    |    9 --
 40 files changed, 379 insertions(+), 505 deletions(-)

^ permalink raw reply	[flat|nested] 54+ messages in thread

end of thread, other threads:[~2011-06-10 19:53 UTC | newest]

Thread overview: 54+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-08 19:29 [PATCH tip/core/rcu 0/28] patches queued for 3.1, first installment Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 01/28] rcu: Simplify curing of load woes Paul E. McKenney
2011-06-10 14:18   ` Peter Zijlstra
2011-06-10 19:53     ` Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 02/28] rcu: Use kthread_create_on_node() Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 03/28] rcu: Streamline code produced by __rcu_read_unlock() Paul E. McKenney
2011-06-08 23:17   ` Mathieu Desnoyers
     [not found]   ` <BLU0-SMTP16E45D0FAD13ACF913B28B96620@phx.gbl>
2011-06-08 23:58     ` Paul E. McKenney
2011-06-09  3:45   ` Josh Triplett
2011-06-09 14:17     ` Paul E. McKenney
2011-06-10  7:14   ` Lai Jiangshan
2011-06-10 19:35     ` Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 04/28] rcu: Restore checks for blocking in RCU read-side critical sections Paul E. McKenney
2011-06-08 23:28   ` Frederic Weisbecker
2011-06-08 23:46     ` Paul E. McKenney
2011-06-08 23:48       ` Frederic Weisbecker
2011-06-08 19:29 ` [PATCH tip/core/rcu 05/28] rcu: Move rcu_head definition to types.h Paul E. McKenney
2011-06-08 23:26   ` Mathieu Desnoyers
     [not found]   ` <BLU0-SMTP635E2E394E1488A2717A5B96620@phx.gbl>
2011-06-09  0:02     ` Paul E. McKenney
2011-06-09  0:11       ` Mathieu Desnoyers
     [not found]       ` <BLU0-SMTP796363CC311D3AB84B196996650@phx.gbl>
2011-06-09 18:38         ` Paul E. McKenney
2011-06-09 20:12           ` Mathieu Desnoyers
2011-06-08 19:29 ` [PATCH tip/core/rcu 06/28] rcu: Update rcutorture documentation Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 07/28] Fix mismatched variable in rcutree_trace.c Paul E. McKenney
2011-06-08 23:23   ` Mathieu Desnoyers
     [not found]   ` <BLU0-SMTP181D8DEE03E1353C8A106396620@phx.gbl>
2011-06-09  0:03     ` Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 08/28] rcu: Abstract common code for RCU grace-period-wait primitives Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 09/28] rcu: Catch rcutorture up to new RCU API additions Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 10/28] rcu: Fix RCU's NMI documentation Paul E. McKenney
2011-06-08 23:19   ` Mathieu Desnoyers
2011-06-08 19:29 ` [PATCH tip/core/rcu 11/28] audit_tree,rcu: Convert call_rcu(__put_tree) to kfree_rcu() Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 12/28] block,rcu: Convert call_rcu(cfq_cfqd_free) " Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 13/28] nfs,rcu: Convert call_rcu(nfs_free_delegation_callback) " Paul E. McKenney
2011-06-09 17:12   ` Trond Myklebust
2011-06-08 19:29 ` [PATCH tip/core/rcu 14/28] security,rcu: Convert call_rcu(whitelist_item_free) " Paul E. McKenney
2011-06-09  0:39   ` James Morris
2011-06-09 18:45     ` Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 15/28] scsi,rcu: Convert call_rcu(fc_rport_free_rcu) " Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 16/28] block,rcu: Convert call_rcu(disk_free_ptbl_rcu_cb) " Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 17/28] ia64,rcu: Convert call_rcu(sn_irq_info_free) " Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 18/28] jbd2,rcu: Convert call_rcu(free_devcache) " Paul E. McKenney
2011-06-08 19:34   ` Jan Kara
2011-06-08 19:47     ` Paul E. McKenney
2011-06-08 19:29 ` [PATCH tip/core/rcu 19/28] md,rcu: Convert call_rcu(free_conf) " Paul E. McKenney
2011-06-09  2:03   ` NeilBrown
2011-06-08 19:29 ` [PATCH tip/core/rcu 20/28] security,rcu: Convert call_rcu(sel_netnode_free) " Paul E. McKenney
2011-06-08 19:30 ` [PATCH tip/core/rcu 21/28] security,rcu: Convert call_rcu(sel_netport_free) " Paul E. McKenney
2011-06-08 19:30 ` [PATCH tip/core/rcu 22/28] ipc,rcu: Convert call_rcu(free_un) " Paul E. McKenney
2011-06-08 19:30 ` [PATCH tip/core/rcu 23/28] ipc,rcu: Convert call_rcu(ipc_immediate_free) " Paul E. McKenney
2011-06-08 19:30 ` [PATCH tip/core/rcu 24/28] vmalloc,rcu: Convert call_rcu(rcu_free_va) " Paul E. McKenney
2011-06-08 19:30 ` [PATCH tip/core/rcu 25/28] vmalloc,rcu: Convert call_rcu(rcu_free_vb) " Paul E. McKenney
2011-06-08 19:30 ` [PATCH tip/core/rcu 26/28] sysctl,rcu: Convert call_rcu(free_head) to kfree Paul E. McKenney
2011-06-08 19:30 ` [PATCH tip/core/rcu 27/28] net,rcu: Convert call_rcu(xt_rateest_free_rcu) to kfree_rcu() Paul E. McKenney
2011-06-08 19:30 ` [PATCH tip/core/rcu 28/28] net,rcu: Convert call_rcu(sk_filter_release_rcu) to kfree_rcu Paul E. McKenney

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.