diff options
| author | Thomas Gleixner <[email protected]> | 2017-06-21 09:08:13 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2017-06-21 09:08:13 +0200 | 
| commit | 17d9d6875ce89c0c98bb54d4d5649efb22986bf3 (patch) | |
| tree | 6029577f3145777289c32255b448bd956b2fe5a5 /kernel | |
| parent | f0cd9ae5d0df8668e76359a3e0e99856aa9c53b9 (diff) | |
| parent | 767392565a3e618950fe1a5ff1ba11295f6332f4 (diff) | |
Merge branch 'fortglx/4.13/time' of https://git.linaro.org/people/john.stultz/linux into timers/core
Merge time(keeping) updates from John Stultz:
  "Just a small set of changes, the biggest changes being the MONOTONIC_RAW
   handling cleanup, and a new kselftest from Miroslav. Also a a clear
   warning deprecating CONFIG_GENERIC_TIME_VSYSCALL_OLD, which affects ppc
   and ia64."
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/time/timekeeping.c | 46 | 
1 files changed, 26 insertions, 20 deletions
| diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index b602c48cb841..cedafa008de5 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c @@ -72,6 +72,10 @@ static inline void tk_normalize_xtime(struct timekeeper *tk)  		tk->tkr_mono.xtime_nsec -= (u64)NSEC_PER_SEC << tk->tkr_mono.shift;  		tk->xtime_sec++;  	} +	while (tk->tkr_raw.xtime_nsec >= ((u64)NSEC_PER_SEC << tk->tkr_raw.shift)) { +		tk->tkr_raw.xtime_nsec -= (u64)NSEC_PER_SEC << tk->tkr_raw.shift; +		tk->raw_sec++; +	}  }  static inline struct timespec64 tk_xtime(struct timekeeper *tk) @@ -285,12 +289,14 @@ static void tk_setup_internals(struct timekeeper *tk, struct clocksource *clock)  	 /* if changing clocks, convert xtime_nsec shift units */  	if (old_clock) {  		int shift_change = clock->shift - old_clock->shift; -		if (shift_change < 0) +		if (shift_change < 0) {  			tk->tkr_mono.xtime_nsec >>= -shift_change; -		else +			tk->tkr_raw.xtime_nsec >>= -shift_change; +		} else {  			tk->tkr_mono.xtime_nsec <<= shift_change; +			tk->tkr_raw.xtime_nsec <<= shift_change; +		}  	} -	tk->tkr_raw.xtime_nsec = 0;  	tk->tkr_mono.shift = clock->shift;  	tk->tkr_raw.shift = clock->shift; @@ -510,6 +516,7 @@ static void halt_fast_timekeeper(struct timekeeper *tk)  }  #ifdef CONFIG_GENERIC_TIME_VSYSCALL_OLD +#warning Please contact your maintainers, as GENERIC_TIME_VSYSCALL_OLD compatibity will disappear soon.  static inline void update_vsyscall(struct timekeeper *tk)  { @@ -619,9 +626,6 @@ static inline void tk_update_ktime_data(struct timekeeper *tk)  	nsec = (u32) tk->wall_to_monotonic.tv_nsec;  	tk->tkr_mono.base = ns_to_ktime(seconds * NSEC_PER_SEC + nsec); -	/* Update the monotonic raw base */ -	tk->tkr_raw.base = timespec64_to_ktime(tk->raw_time); -  	/*  	 * The sum of the nanoseconds portions of xtime and  	 * wall_to_monotonic can be greater/equal one second. Take @@ -631,6 +635,11 @@ static inline void tk_update_ktime_data(struct timekeeper *tk)  	if (nsec >= NSEC_PER_SEC)  		seconds++;  	tk->ktime_sec = seconds; + +	/* Update the monotonic raw base */ +	seconds = tk->raw_sec; +	nsec = (u32)(tk->tkr_raw.xtime_nsec >> tk->tkr_raw.shift); +	tk->tkr_raw.base = ns_to_ktime(seconds * NSEC_PER_SEC + nsec);  }  /* must hold timekeeper_lock */ @@ -672,7 +681,6 @@ static void timekeeping_update(struct timekeeper *tk, unsigned int action)  static void timekeeping_forward_now(struct timekeeper *tk)  {  	u64 cycle_now, delta; -	u64 nsec;  	cycle_now = tk_clock_read(&tk->tkr_mono);  	delta = clocksource_delta(cycle_now, tk->tkr_mono.cycle_last, tk->tkr_mono.mask); @@ -684,10 +692,13 @@ static void timekeeping_forward_now(struct timekeeper *tk)  	/* If arch requires, add in get_arch_timeoffset() */  	tk->tkr_mono.xtime_nsec += (u64)arch_gettimeoffset() << tk->tkr_mono.shift; -	tk_normalize_xtime(tk); -	nsec = clocksource_cyc2ns(delta, tk->tkr_raw.mult, tk->tkr_raw.shift); -	timespec64_add_ns(&tk->raw_time, nsec); +	tk->tkr_raw.xtime_nsec += delta * tk->tkr_raw.mult; + +	/* If arch requires, add in get_arch_timeoffset() */ +	tk->tkr_raw.xtime_nsec += (u64)arch_gettimeoffset() << tk->tkr_raw.shift; + +	tk_normalize_xtime(tk);  }  /** @@ -1373,19 +1384,18 @@ int timekeeping_notify(struct clocksource *clock)  void getrawmonotonic64(struct timespec64 *ts)  {  	struct timekeeper *tk = &tk_core.timekeeper; -	struct timespec64 ts64;  	unsigned long seq;  	u64 nsecs;  	do {  		seq = read_seqcount_begin(&tk_core.seq); +		ts->tv_sec = tk->raw_sec;  		nsecs = timekeeping_get_ns(&tk->tkr_raw); -		ts64 = tk->raw_time;  	} while (read_seqcount_retry(&tk_core.seq, seq)); -	timespec64_add_ns(&ts64, nsecs); -	*ts = ts64; +	ts->tv_nsec = 0; +	timespec64_add_ns(ts, nsecs);  }  EXPORT_SYMBOL(getrawmonotonic64); @@ -1509,8 +1519,7 @@ void __init timekeeping_init(void)  	tk_setup_internals(tk, clock);  	tk_set_xtime(tk, &now); -	tk->raw_time.tv_sec = 0; -	tk->raw_time.tv_nsec = 0; +	tk->raw_sec = 0;  	if (boot.tv_sec == 0 && boot.tv_nsec == 0)  		boot = tk_xtime(tk); @@ -2011,15 +2020,12 @@ static u64 logarithmic_accumulation(struct timekeeper *tk, u64 offset,  	*clock_set |= accumulate_nsecs_to_secs(tk);  	/* Accumulate raw time */ -	tk->tkr_raw.xtime_nsec += (u64)tk->raw_time.tv_nsec << tk->tkr_raw.shift;  	tk->tkr_raw.xtime_nsec += tk->raw_interval << shift;  	snsec_per_sec = (u64)NSEC_PER_SEC << tk->tkr_raw.shift;  	while (tk->tkr_raw.xtime_nsec >= snsec_per_sec) {  		tk->tkr_raw.xtime_nsec -= snsec_per_sec; -		tk->raw_time.tv_sec++; +		tk->raw_sec++;  	} -	tk->raw_time.tv_nsec = tk->tkr_raw.xtime_nsec >> tk->tkr_raw.shift; -	tk->tkr_raw.xtime_nsec -= (u64)tk->raw_time.tv_nsec << tk->tkr_raw.shift;  	/* Accumulate error between NTP and clock interval */  	tk->ntp_error += tk->ntp_tick << shift; |