Skip to content

Commit ea82593

Browse files
committed
Merge tag 'timers-urgent-2022-05-08' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull timer fix from Thomas Gleixner: "A fix and an email address update: - Mark the NMI safe time accessors notrace to prevent tracer recursion when they are selected as trace clocks. - John Stultz has a new email address" * tag 'timers-urgent-2022-05-08' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: timekeeping: Mark NMI safe time accessors as notrace MAINTAINERS: Update email address for John Stultz
2 parents 9692df0 + 2c33d77 commit ea82593

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

MAINTAINERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5917,7 +5917,7 @@ R: Benjamin Gaignard <benjamin.gaignard@collabora.com>
59175917
R: Liam Mark <lmark@codeaurora.org>
59185918
R: Laura Abbott <labbott@redhat.com>
59195919
R: Brian Starkey <Brian.Starkey@arm.com>
5920-
R: John Stultz <john.stultz@linaro.org>
5920+
R: John Stultz <jstultz@google.com>
59215921
L: linux-media@vger.kernel.org
59225922
L: dri-devel@lists.freedesktop.org
59235923
L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
@@ -6587,7 +6587,7 @@ F: drivers/gpu/drm/gma500/
65876587
DRM DRIVERS FOR HISILICON
65886588
M: Xinliang Liu <xinliang.liu@linaro.org>
65896589
M: Tian Tao <tiantao6@hisilicon.com>
6590-
R: John Stultz <john.stultz@linaro.org>
6590+
R: John Stultz <jstultz@google.com>
65916591
R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
65926592
R: Chen Feng <puck.chen@hisilicon.com>
65936593
L: dri-devel@lists.freedesktop.org
@@ -8848,7 +8848,7 @@ F: Documentation/devicetree/bindings/net/hisilicon*.txt
88488848
F: drivers/net/ethernet/hisilicon/
88498849

88508850
HIKEY960 ONBOARD USB GPIO HUB DRIVER
8851-
M: John Stultz <john.stultz@linaro.org>
8851+
M: John Stultz <jstultz@google.com>
88528852
L: linux-kernel@vger.kernel.org
88538853
S: Maintained
88548854
F: drivers/misc/hisi_hikey_usb.c
@@ -19793,7 +19793,7 @@ F: drivers/net/wireless/ti/
1979319793
F: include/linux/wl12xx.h
1979419794

1979519795
TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19796-
M: John Stultz <john.stultz@linaro.org>
19796+
M: John Stultz <jstultz@google.com>
1979719797
M: Thomas Gleixner <tglx@linutronix.de>
1979819798
R: Stephen Boyd <sboyd@kernel.org>
1979919799
L: linux-kernel@vger.kernel.org

kernel/time/timekeeping.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ static __always_inline u64 __ktime_get_fast_ns(struct tk_fast *tkf)
482482
* of the following timestamps. Callers need to be aware of that and
483483
* deal with it.
484484
*/
485-
u64 ktime_get_mono_fast_ns(void)
485+
u64 notrace ktime_get_mono_fast_ns(void)
486486
{
487487
return __ktime_get_fast_ns(&tk_fast_mono);
488488
}
@@ -494,7 +494,7 @@ EXPORT_SYMBOL_GPL(ktime_get_mono_fast_ns);
494494
* Contrary to ktime_get_mono_fast_ns() this is always correct because the
495495
* conversion factor is not affected by NTP/PTP correction.
496496
*/
497-
u64 ktime_get_raw_fast_ns(void)
497+
u64 notrace ktime_get_raw_fast_ns(void)
498498
{
499499
return __ktime_get_fast_ns(&tk_fast_raw);
500500
}

0 commit comments

Comments
 (0)