Skip to content

Commit

Permalink
tracing: Check return value of tracing_init_dentry()
Browse files Browse the repository at this point in the history
Check return value and bail out if it's NULL.

Link: http://lkml.kernel.org/r/1365553093-10180-2-git-send-email-namhyung@kernel.org

Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Namhyung Kim <namhyung.kim@lge.com>
Cc: stable@vger.kernel.org
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
  • Loading branch information
Namhyung Kim authored and Steven Rostedt committed Apr 13, 2013
1 parent f194397 commit ed6f1c9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kernel/trace/trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -5953,6 +5953,8 @@ static __init int tracer_init_debugfs(void)
trace_access_lock_init();

d_tracer = tracing_init_dentry();
if (!d_tracer)
return 0;

init_tracer_debugfs(&global_trace, d_tracer);

Expand Down
2 changes: 2 additions & 0 deletions kernel/trace/trace_stack.c
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,8 @@ static __init int stack_trace_init(void)
struct dentry *d_tracer;

d_tracer = tracing_init_dentry();
if (!d_tracer)
return 0;

trace_create_file("stack_max_size", 0644, d_tracer,
&max_stack_size, &stack_max_size_fops);
Expand Down
2 changes: 2 additions & 0 deletions kernel/trace/trace_stat.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,8 @@ static int tracing_stat_init(void)
struct dentry *d_tracing;

d_tracing = tracing_init_dentry();
if (!d_tracing)
return 0;

stat_dir = debugfs_create_dir("trace_stat", d_tracing);
if (!stat_dir)
Expand Down

0 comments on commit ed6f1c9

Please sign in to comment.