Commit 784e2d76 authored by Rusty Russell's avatar Rusty Russell

stop_machine: fix up ftrace.c

Simple conversion.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
Cc: Abhishek Sagar <sagar.abhishek@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Steven Rostedt <rostedt@goodmis.org>
parent 9b1a4d38
...@@ -587,7 +587,7 @@ static int __ftrace_modify_code(void *data) ...@@ -587,7 +587,7 @@ static int __ftrace_modify_code(void *data)
static void ftrace_run_update_code(int command) static void ftrace_run_update_code(int command)
{ {
stop_machine_run(__ftrace_modify_code, &command, NR_CPUS); stop_machine(__ftrace_modify_code, &command, NULL);
} }
void ftrace_disable_daemon(void) void ftrace_disable_daemon(void)
...@@ -787,7 +787,7 @@ static int ftrace_update_code(void) ...@@ -787,7 +787,7 @@ static int ftrace_update_code(void)
!ftrace_enabled || !ftraced_trigger) !ftrace_enabled || !ftraced_trigger)
return 0; return 0;
stop_machine_run(__ftrace_update_code, NULL, NR_CPUS); stop_machine(__ftrace_update_code, NULL, NULL);
return 1; return 1;
} }
...@@ -1564,7 +1564,7 @@ static int __init ftrace_dynamic_init(void) ...@@ -1564,7 +1564,7 @@ static int __init ftrace_dynamic_init(void)
addr = (unsigned long)ftrace_record_ip; addr = (unsigned long)ftrace_record_ip;
stop_machine_run(ftrace_dyn_arch_init, &addr, NR_CPUS); stop_machine(ftrace_dyn_arch_init, &addr, NULL);
/* ftrace_dyn_arch_init places the return code in addr */ /* ftrace_dyn_arch_init places the return code in addr */
if (addr) { if (addr) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment