From: Frederic Weisbecker <[email protected]> Add syscall hooks to notify syscall entry and exit on CPUs running in adative nohz mode.
Signed-off-by: Frederic Weisbecker <[email protected]> Cc: Alessio Igor Bogani <[email protected]> Cc: Andrew Morton <[email protected]> Cc: Avi Kivity <[email protected]> Cc: Chris Metcalf <[email protected]> Cc: Christoph Lameter <[email protected]> Cc: Daniel Lezcano <[email protected]> Cc: Geoff Levand <[email protected]> Cc: Gilad Ben Yossef <[email protected]> Cc: Hakan Akkan <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Kevin Hilman <[email protected]> Cc: Max Krasnyansky <[email protected]> Cc: Paul E. McKenney <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Stephen Hemminger <[email protected]> Cc: Steven Rostedt <[email protected]> Cc: Sven-Thorsten Dietrich <[email protected]> Cc: Thomas Gleixner <[email protected]> Signed-off-by: Steven Rostedt <[email protected]> --- arch/x86/kernel/ptrace.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/arch/x86/kernel/ptrace.c b/arch/x86/kernel/ptrace.c index b00b33a..9c18e1e 100644 --- a/arch/x86/kernel/ptrace.c +++ b/arch/x86/kernel/ptrace.c @@ -22,6 +22,7 @@ #include <linux/perf_event.h> #include <linux/hw_breakpoint.h> #include <linux/rcupdate.h> +#include <linux/tick.h> #include <asm/uaccess.h> #include <asm/pgtable.h> @@ -1461,6 +1462,10 @@ long syscall_trace_enter(struct pt_regs *regs) { long ret = 0; + /* Notify nohz task syscall early so the rest can use rcu */ + /* (SDR: Does the rcu_user_exit() make this obsolete?) */ + tick_nohz_enter_kernel(); + rcu_user_exit(); /* @@ -1528,4 +1533,10 @@ void syscall_trace_leave(struct pt_regs *regs) tracehook_report_syscall_exit(regs, step); rcu_user_enter(); + /* + * Notify nohz task exit syscall at last so the rest can + * use rcu. + * (SDR: does the above make this obsolete?) + */ + tick_nohz_exit_kernel(); } -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

