]> git.baikalelectronics.ru Git - kernel.git/commit
rcu: Export debug_init_rcu_head() and and debug_init_rcu_head()
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Thu, 19 Jun 2014 21:57:10 +0000 (14:57 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Mon, 23 Jun 2014 18:19:29 +0000 (11:19 -0700)
commit8bb12b112830d24b1f3772688d3da7f0e7aa046d
tree1f4c679c28b2980e08bc1d0bb8c0b01dc6d98247
parent081ef54181a1ff0d2c7e189052277797ff8dd0dd
rcu: Export debug_init_rcu_head() and and debug_init_rcu_head()

Currently, call_rcu() relies on implicit allocation and initialization
for the debug-objects handling of RCU callbacks.  If you hammer the
kernel hard enough with Sasha's modified version of trinity, you can end
up with the sl*b allocators recursing into themselves via this implicit
call_rcu() allocation.

This commit therefore exports the debug_init_rcu_head() and
debug_rcu_head_free() functions, which permits the allocators to allocated
and pre-initialize the debug-objects information, so that there no longer
any need for call_rcu() to do that initialization, which in turn prevents
the recursion into the memory allocators.

Reported-by: Sasha Levin <sasha.levin@oracle.com>
Suggested-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Looks-good-to: Christoph Lameter <cl@linux.com>
include/linux/rcupdate.h
kernel/rcu/update.c