mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	sched/debug: Move print_cfs_rq() declaration to kernel/sched/sched.h
Currently print_cfs_rq() is declared in include/linux/sched.h. However it's not used outside kernel/sched. Hence move the declaration to kernel/sched/sched.h Also some functions are only available for CONFIG_SCHED_DEBUG=y. Hence move the declarations to within the #ifdef. Signed-off-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com> Acked-by: Rik van Riel <riel@redhat.com> Cc: Iulia Manda <iulia.manda21@gmail.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Mel Gorman <mgorman@suse.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/1435252903-1081-2-git-send-email-srikar@linux.vnet.ibm.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
		
							parent
							
								
									5968cecedd
								
							
						
					
					
						commit
						6b55c9654f
					
				
					 2 changed files with 5 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -191,8 +191,6 @@ struct task_group;
 | 
			
		|||
#ifdef CONFIG_SCHED_DEBUG
 | 
			
		||||
extern void proc_sched_show_task(struct task_struct *p, struct seq_file *m);
 | 
			
		||||
extern void proc_sched_set_task(struct task_struct *p);
 | 
			
		||||
extern void
 | 
			
		||||
print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1668,9 +1668,14 @@ static inline void double_rq_unlock(struct rq *rq1, struct rq *rq2)
 | 
			
		|||
 | 
			
		||||
extern struct sched_entity *__pick_first_entity(struct cfs_rq *cfs_rq);
 | 
			
		||||
extern struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq);
 | 
			
		||||
 | 
			
		||||
#ifdef	CONFIG_SCHED_DEBUG
 | 
			
		||||
extern void print_cfs_stats(struct seq_file *m, int cpu);
 | 
			
		||||
extern void print_rt_stats(struct seq_file *m, int cpu);
 | 
			
		||||
extern void print_dl_stats(struct seq_file *m, int cpu);
 | 
			
		||||
extern void
 | 
			
		||||
print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
extern void init_cfs_rq(struct cfs_rq *cfs_rq);
 | 
			
		||||
extern void init_rt_rq(struct rt_rq *rt_rq);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue