ftrace: use dynamic patching for updating mcount calls
This patch replaces the indirect call to the mcount function pointer with a direct call that will be patched by the dynamic ftrace routines. On boot up, the mcount function calls the ftace_stub function. When the dynamic ftrace code is initialized, the ftrace_stub is replaced with a call to the ftrace_record_ip, which records the instruction pointers of the locations that call it. Later, the ftraced daemon will call kstop_machine and patch all the locations to nops. When a ftrace is enabled, the original calls to mcount will now be set top call ftrace_caller, which will do a direct call to the registered ftrace function. This direct call is also patched when the function that should be called is updated. All patching is performed by a kstop_machine routine to prevent any type of race conditions that is associated with modifying code on the fly. Signed-off-by:Steven Rostedt <srostedt@redhat.com> Signed-off-by:
Ingo Molnar <mingo@elte.hu> Signed-off-by:
Thomas Gleixner <tglx@linutronix.de>
Showing
- arch/x86/kernel/entry_32.S 44 additions, 3 deletionsarch/x86/kernel/entry_32.S
- arch/x86/kernel/entry_64.S 66 additions, 1 deletionarch/x86/kernel/entry_64.S
- arch/x86/kernel/ftrace.c 40 additions, 1 deletionarch/x86/kernel/ftrace.c
- include/linux/ftrace.h 6 additions, 1 deletioninclude/linux/ftrace.h
- kernel/trace/ftrace.c 105 additions, 78 deletionskernel/trace/ftrace.c
Loading
Please register or sign in to comment