mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
[PATCH] hrtimer: fix up unlocked access to wall_to_monotonic
commit f4304ab215
(HZ free NTP) moved the
access to wall_to_monotonic in hrtimer_get_softirq_time() out of the
xtime_lock protection.
Move it back into the seq_lock section.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: John Stultz <johnstul@us.ibm.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c6ca97d26a
commit
ad28d94abb
1 changed files with 3 additions and 2 deletions
|
@ -135,7 +135,7 @@ EXPORT_SYMBOL_GPL(ktime_get_ts);
|
||||||
static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
|
static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
|
||||||
{
|
{
|
||||||
ktime_t xtim, tomono;
|
ktime_t xtim, tomono;
|
||||||
struct timespec xts;
|
struct timespec xts, tom;
|
||||||
unsigned long seq;
|
unsigned long seq;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
@ -145,10 +145,11 @@ static void hrtimer_get_softirq_time(struct hrtimer_cpu_base *base)
|
||||||
#else
|
#else
|
||||||
xts = xtime;
|
xts = xtime;
|
||||||
#endif
|
#endif
|
||||||
|
tom = wall_to_monotonic;
|
||||||
} while (read_seqretry(&xtime_lock, seq));
|
} while (read_seqretry(&xtime_lock, seq));
|
||||||
|
|
||||||
xtim = timespec_to_ktime(xts);
|
xtim = timespec_to_ktime(xts);
|
||||||
tomono = timespec_to_ktime(wall_to_monotonic);
|
tomono = timespec_to_ktime(tom);
|
||||||
base->clock_base[CLOCK_REALTIME].softirq_time = xtim;
|
base->clock_base[CLOCK_REALTIME].softirq_time = xtim;
|
||||||
base->clock_base[CLOCK_MONOTONIC].softirq_time =
|
base->clock_base[CLOCK_MONOTONIC].softirq_time =
|
||||||
ktime_add(xtim, tomono);
|
ktime_add(xtim, tomono);
|
||||||
|
|
Loading…
Reference in a new issue