Merge branches 'sh/stable-updates' and 'sh/sparseirq'
This commit is contained in:
@ -402,9 +402,6 @@ int clocksource_register(struct clocksource *c)
|
||||
unsigned long flags;
|
||||
int ret;
|
||||
|
||||
/* save mult_orig on registration */
|
||||
c->mult_orig = c->mult;
|
||||
|
||||
spin_lock_irqsave(&clocksource_lock, flags);
|
||||
ret = clocksource_enqueue(c);
|
||||
if (!ret)
|
||||
|
@ -77,6 +77,10 @@ static void clocksource_forward_now(void)
|
||||
clock->cycle_last = cycle_now;
|
||||
|
||||
nsec = cyc2ns(clock, cycle_delta);
|
||||
|
||||
/* If arch requires, add in gettimeoffset() */
|
||||
nsec += arch_gettimeoffset();
|
||||
|
||||
timespec_add_ns(&xtime, nsec);
|
||||
|
||||
nsec = ((s64)cycle_delta * clock->mult_orig) >> clock->shift;
|
||||
@ -111,6 +115,9 @@ void getnstimeofday(struct timespec *ts)
|
||||
/* convert to nanoseconds: */
|
||||
nsecs = cyc2ns(clock, cycle_delta);
|
||||
|
||||
/* If arch requires, add in gettimeoffset() */
|
||||
nsecs += arch_gettimeoffset();
|
||||
|
||||
} while (read_seqretry(&xtime_lock, seq));
|
||||
|
||||
timespec_add_ns(ts, nsecs);
|
||||
|
Reference in New Issue
Block a user