forked from mirrors/linux
		
	Revert "sched_clock: prevent scd->clock from moving backwards"
This reverts commit 5b7dba4ff8, which
caused a regression in hibernate, reported by and bisected by Fabio
Comolli.
This revert fixes
 http://bugzilla.kernel.org/show_bug.cgi?id=12155
 http://bugzilla.kernel.org/show_bug.cgi?id=12149
Bisected-by: Fabio Comolli <fabio.comolli@gmail.com>
Requested-by: Rafael J. Wysocki <rjw@sisk.pl>
Acked-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
			
			
This commit is contained in:
		
							parent
							
								
									5279585ff2
								
							
						
					
					
						commit
						ca7e716c78
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -119,12 +119,12 @@ static u64 __update_sched_clock(struct sched_clock_data *scd, u64 now)
 | 
			
		|||
	/*
 | 
			
		||||
	 * scd->clock = clamp(scd->tick_gtod + delta,
 | 
			
		||||
	 * 		      max(scd->tick_gtod, scd->clock),
 | 
			
		||||
	 *		      max(scd->clock, scd->tick_gtod + TICK_NSEC));
 | 
			
		||||
	 * 		      scd->tick_gtod + TICK_NSEC);
 | 
			
		||||
	 */
 | 
			
		||||
 | 
			
		||||
	clock = scd->tick_gtod + delta;
 | 
			
		||||
	min_clock = wrap_max(scd->tick_gtod, scd->clock);
 | 
			
		||||
	max_clock = wrap_max(scd->clock, scd->tick_gtod + TICK_NSEC);
 | 
			
		||||
	max_clock = scd->tick_gtod + TICK_NSEC;
 | 
			
		||||
 | 
			
		||||
	clock = wrap_max(clock, min_clock);
 | 
			
		||||
	clock = wrap_min(clock, max_clock);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue