ring-buffer: use generic version of in_nmi
Impact: clean up Now that a generic in_nmi is available, this patch removes the special code in the ring_buffer and implements the in_nmi generic version instead. With this change, I was also able to rename the "arch_ftrace_nmi_enter" back to "ftrace_nmi_enter" and remove the code from the ring buffer. Signed-off-by: Steven Rostedt <srostedt@redhat.com>
This commit is contained in:
@@ -113,7 +113,7 @@ static void ftrace_mod_code(void)
|
||||
MCOUNT_INSN_SIZE);
|
||||
}
|
||||
|
||||
void arch_ftrace_nmi_enter(void)
|
||||
void ftrace_nmi_enter(void)
|
||||
{
|
||||
atomic_inc(&nmi_running);
|
||||
/* Must have nmi_running seen before reading write flag */
|
||||
@@ -124,7 +124,7 @@ void arch_ftrace_nmi_enter(void)
|
||||
}
|
||||
}
|
||||
|
||||
void arch_ftrace_nmi_exit(void)
|
||||
void ftrace_nmi_exit(void)
|
||||
{
|
||||
/* Finish all executions before clearing nmi_running */
|
||||
smp_wmb();
|
||||
|
Reference in New Issue
Block a user