 1355915ac6
			
		
	
	
	1355915ac6
	
	
	
		
			
			Move them to util.c and simplify code a bit. Signed-off-by: Borislav Petkov <bp@suse.de> Cc: Ingo Molnar <mingo@kernel.org> Cc: Steven Rostedt <rostedt@goodmis.org> Link: http://lkml.kernel.org/r/1361374353-30385-6-git-send-email-bp@alien8.de Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			619 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			619 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __LK_DEBUGFS_H__
 | |
| #define __LK_DEBUGFS_H__
 | |
| 
 | |
| #define _STR(x) #x
 | |
| #define STR(x) _STR(x)
 | |
| 
 | |
| /*
 | |
|  * On most systems <limits.h> would have given us this, but  not on some systems
 | |
|  * (e.g. GNU/Hurd).
 | |
|  */
 | |
| #ifndef PATH_MAX
 | |
| #define PATH_MAX 4096
 | |
| #endif
 | |
| 
 | |
| #ifndef DEBUGFS_MAGIC
 | |
| #define DEBUGFS_MAGIC          0x64626720
 | |
| #endif
 | |
| 
 | |
| #ifndef PERF_DEBUGFS_ENVIRONMENT
 | |
| #define PERF_DEBUGFS_ENVIRONMENT "PERF_DEBUGFS_DIR"
 | |
| #endif
 | |
| 
 | |
| const char *debugfs_find_mountpoint(void);
 | |
| int debugfs_valid_mountpoint(const char *debugfs);
 | |
| char *debugfs_mount(const char *mountpoint);
 | |
| 
 | |
| extern char debugfs_mountpoint[];
 | |
| 
 | |
| #endif /* __LK_DEBUGFS_H__ */
 |