]> git.karo-electronics.de Git - linux-beck.git/commit
powerpc: Tell RCU about idle after hcall tracing
authorPaul E. McKenney <paul.mckenney@linaro.org>
Fri, 14 Oct 2011 02:05:12 +0000 (19:05 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Sun, 11 Dec 2011 18:31:39 +0000 (10:31 -0800)
commita7b152d5342c06e81ab0cf7d18345f69fa7e56b5
tree255a017e47aff33b910160161a55e7abd9d2cd5f
parent416eb33cd60ef405e2860a186364e57bcb2d89f6
powerpc: Tell RCU about idle after hcall tracing

The PowerPC pSeries platform (CONFIG_PPC_PSERIES=y) enables
hypervisor-call tracing for CONFIG_TRACEPOINTS=y kernels.  One of the
hypervisor calls that is traced is the H_CEDE call in the idle loop
that tells the hypervisor that this OS instance no longer needs the
current CPU.  However, tracing uses RCU, so this combination of kernel
configuration variables needs to avoid telling RCU about the current CPU's
idleness until after the H_CEDE-entry tracing completes on the one hand,
and must tell RCU that the the current CPU is no longer idle before the
H_CEDE-exit tracing starts.

In all other cases, it suffices to inform RCU of CPU idleness upon
idle-loop entry and exit.

This commit makes the required adjustments.

Signed-off-by: Paul E. McKenney <paul.mckenney@linaro.org>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
arch/powerpc/kernel/idle.c
arch/powerpc/platforms/pseries/lpar.c