Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 780f98ff authored by Paul Mundt's avatar Paul Mundt
Browse files

sh: Account for INITIAL_JIFFIES when using jiffies clocksource.



In the case where we fall back on the generic jiffies clocksource,
INITIAL_JIFFIES needs to be accounted for so that printk times aren't
completely skewed.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent d9d674e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ unsigned long long sched_clock(void)

	/* jiffies based sched_clock if no clocksource is installed */
	if (!clocksource_sh.rating)
		return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
		return (jiffies_64 - INITIAL_JIFFIES) * (NSEC_PER_SEC / HZ);

	cycles = clocksource_sh.read(&clocksource_sh);
	return cyc2ns(&clocksource_sh, cycles);