mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	sched/pelt: Check that *_avg are null when *_sum are
Check that we never break the rule that pelt's avg values are null if pelt's sum are. Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Dietmar Eggemann <dietmar.eggemann@arm.com> Acked-by: Odin Ugedal <odin@uged.al> Link: https://lore.kernel.org/r/20210601155328.19487-1-vincent.guittot@linaro.org
This commit is contained in:
		
							parent
							
								
									0159bb020c
								
							
						
					
					
						commit
						9e077b52d8
					
				
					 1 changed files with 9 additions and 0 deletions
				
			
		|  | @ -8026,6 +8026,15 @@ static inline bool cfs_rq_is_decayed(struct cfs_rq *cfs_rq) | |||
| 	if (cfs_rq->avg.runnable_sum) | ||||
| 		return false; | ||||
| 
 | ||||
| 	/*
 | ||||
| 	 * _avg must be null when _sum are null because _avg = _sum / divider | ||||
| 	 * Make sure that rounding and/or propagation of PELT values never | ||||
| 	 * break this. | ||||
| 	 */ | ||||
| 	SCHED_WARN_ON(cfs_rq->avg.load_avg || | ||||
| 		      cfs_rq->avg.util_avg || | ||||
| 		      cfs_rq->avg.runnable_avg); | ||||
| 
 | ||||
| 	return true; | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Vincent Guittot
						Vincent Guittot