mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	tracing: Check return value of tracing_init_dentry()
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>
This commit is contained in:
		
							parent
							
								
									f1943977e6
								
							
						
					
					
						commit
						ed6f1c996b
					
				
					 3 changed files with 6 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -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);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue