Following debugfs object functions are not referenced within the code: int debugfs_valid_entry(const char *path); int debugfs_umount(void); int debugfs_write(const char *entry, const char *value); int debugfs_read(const char *entry, char *buffer, size_t size); void debugfs_force_cleanup(void); int debugfs_make_path(const char *element, char *buffer, int size); Removing them. Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1327674868-10486-3-git-send-email-jolsa@redhat.com Signed-off-by: Jiri Olsa <jolsa@redhat.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			329 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			329 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef __DEBUGFS_H__
 | 
						|
#define __DEBUGFS_H__
 | 
						|
 | 
						|
const char *debugfs_find_mountpoint(void);
 | 
						|
int debugfs_valid_mountpoint(const char *debugfs);
 | 
						|
char *debugfs_mount(const char *mountpoint);
 | 
						|
void debugfs_set_path(const char *mountpoint);
 | 
						|
 | 
						|
extern char debugfs_mountpoint[];
 | 
						|
extern char tracing_events_path[];
 | 
						|
 | 
						|
#endif /* __DEBUGFS_H__ */
 |