mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	sched/debug: Add task uclamp values to SCHED_DEBUG procfs
Requested and effective uclamp values can be a bit tricky to decipher when playing with cgroup hierarchies. Add them to a task's procfs when SCHED_DEBUG is enabled. Reviewed-by: Qais Yousef <qais.yousef@arm.com> Signed-off-by: Valentin Schneider <valentin.schneider@arm.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Signed-off-by: Ingo Molnar <mingo@kernel.org> Link: https://lkml.kernel.org/r/20200226124543.31986-4-valentin.schneider@arm.com
This commit is contained in:
		
							parent
							
								
									9e3bf9469c
								
							
						
					
					
						commit
						96e74ebf8d
					
				
					 1 changed files with 6 additions and 0 deletions
				
			
		| 
						 | 
					@ -946,6 +946,12 @@ void proc_sched_show_task(struct task_struct *p, struct pid_namespace *ns,
 | 
				
			||||||
	P(se.avg.last_update_time);
 | 
						P(se.avg.last_update_time);
 | 
				
			||||||
	P(se.avg.util_est.ewma);
 | 
						P(se.avg.util_est.ewma);
 | 
				
			||||||
	P(se.avg.util_est.enqueued);
 | 
						P(se.avg.util_est.enqueued);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					#ifdef CONFIG_UCLAMP_TASK
 | 
				
			||||||
 | 
						__PS("uclamp.min", p->uclamp[UCLAMP_MIN].value);
 | 
				
			||||||
 | 
						__PS("uclamp.max", p->uclamp[UCLAMP_MAX].value);
 | 
				
			||||||
 | 
						__PS("effective uclamp.min", uclamp_eff_value(p, UCLAMP_MIN));
 | 
				
			||||||
 | 
						__PS("effective uclamp.max", uclamp_eff_value(p, UCLAMP_MAX));
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
	P(policy);
 | 
						P(policy);
 | 
				
			||||||
	P(prio);
 | 
						P(prio);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue