commit | 291ae5a12088e1aa87aae4899a818498be3d18eb | [log] [tgz] |
---|---|---|
author | Josh Triplett <josh@kernel.org> | Thu Aug 09 11:16:46 2007 +0200 |
committer | Ingo Molnar <mingo@elte.hu> | Thu Aug 09 11:16:46 2007 +0200 |
tree | 0c45edfb75caa16f5d75d47b71d9c3fcf321fcec | |
parent | 9531b62f5ebf2b693bf85129d20328188f685c44 [diff] |
sched: mark print_cfs_stats static sched_fair.c defines print_cfs_stats, and sched_debug.c uses it, but sched.c includes both sched_fair.c and sched_debug.c, so all the references to print_cfs_stats occur in the same compilation unit. Thus, mark print_cfs_stats static. Eliminates a sparse warning: warning: symbol 'print_cfs_stats' was not declared. Should it be static? Signed-off-by: Josh Triplett <josh@kernel.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>