profiling: fix !procfs build
fix: kernel/built-in.o: In function `profiling_store': ksysfs.c:(.text+0x1f90c): undefined reference to `create_proc_profile' Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
@@ -37,7 +37,14 @@ extern int prof_on __read_mostly;
|
|||||||
/* init basic kernel profiler */
|
/* init basic kernel profiler */
|
||||||
int profile_init(void);
|
int profile_init(void);
|
||||||
int profile_setup(char *str);
|
int profile_setup(char *str);
|
||||||
|
#ifdef CONFIG_PROC_FS
|
||||||
int create_proc_profile(void);
|
int create_proc_profile(void);
|
||||||
|
#else
|
||||||
|
static inline int create_proc_profile(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
void profile_tick(int type);
|
void profile_tick(int type);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user