aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2009-06-02 16:51:55 -0400
committerSteven Rostedt <rostedt@goodmis.org>2009-06-02 16:51:55 -0400
commit84047e360af0394ac5861d433f26bbcf30f77dd1 (patch)
tree55848e2ca4856a64b348a57ecca495c2f065aa0f
parentf7e8b616ed1cc6f790b82324bce8a2a60295e5c2 (diff)
function-graph: always initialize task ret_stack
On creating a new task while running the function graph tracer, if we fail to allocate the ret_stack, and then fail the fork, the code will free the parent ret_stack. This is because the child duplicated the parent and currently points to the parent's ret_stack. This patch always initializes the task's ret_stack to NULL. [ Impact: prevent crash of parent on low memory during fork ] Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--kernel/trace/ftrace.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 1664d3f33d38..bb081f37cac7 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -2738,6 +2738,9 @@ void unregister_ftrace_graph(void)
2738/* Allocate a return stack for newly created task */ 2738/* Allocate a return stack for newly created task */
2739void ftrace_graph_init_task(struct task_struct *t) 2739void ftrace_graph_init_task(struct task_struct *t)
2740{ 2740{
2741 /* Make sure we do not use the parent ret_stack */
2742 t->ret_stack = NULL;
2743
2741 if (atomic_read(&ftrace_graph_active)) { 2744 if (atomic_read(&ftrace_graph_active)) {
2742 struct ftrace_ret_stack *ret_stack; 2745 struct ftrace_ret_stack *ret_stack;
2743 2746
@@ -2753,8 +2756,7 @@ void ftrace_graph_init_task(struct task_struct *t)
2753 /* make curr_ret_stack visable before we add the ret_stack */ 2756 /* make curr_ret_stack visable before we add the ret_stack */
2754 smp_wmb(); 2757 smp_wmb();
2755 t->ret_stack = ret_stack; 2758 t->ret_stack = ret_stack;
2756 } else 2759 }
2757 t->ret_stack = NULL;
2758} 2760}
2759 2761
2760void ftrace_graph_exit_task(struct task_struct *t) 2762void ftrace_graph_exit_task(struct task_struct *t)