|
@@ -675,7 +675,7 @@ EXPORT_SYMBOL_GPL(tb_to_ns);
|
|
|
* the high 64 bits of a * b, i.e. (a * b) >> 64, where a and b
|
|
|
* are 64-bit unsigned numbers.
|
|
|
*/
|
|
|
-unsigned long long sched_clock(void)
|
|
|
+notrace unsigned long long sched_clock(void)
|
|
|
{
|
|
|
if (__USE_RTC())
|
|
|
return get_rtc();
|
|
@@ -831,12 +831,12 @@ void read_persistent_clock(struct timespec *ts)
|
|
|
}
|
|
|
|
|
|
/* clocksource code */
|
|
|
-static u64 rtc_read(struct clocksource *cs)
|
|
|
+static notrace u64 rtc_read(struct clocksource *cs)
|
|
|
{
|
|
|
return (u64)get_rtc();
|
|
|
}
|
|
|
|
|
|
-static u64 timebase_read(struct clocksource *cs)
|
|
|
+static notrace u64 timebase_read(struct clocksource *cs)
|
|
|
{
|
|
|
return (u64)get_tb();
|
|
|
}
|