[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <165201148510.536527.10163841261763309889.tglx@xen13>
Date: Sun, 8 May 2022 14:05:24 +0200 (CEST)
From: Thomas Gleixner <tglx@...utronix.de>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: linux-kernel@...r.kernel.org, x86@...nel.org
Subject: [GIT pull] timers/urgent for v5.18-rc6
Linus,
please pull the latest timers/urgent branch from:
git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers-urgent-2022-05-08
up to: 2c33d775ef4c: timekeeping: Mark NMI safe time accessors as notrace
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
Thanks,
tglx
------------------>
John Stultz (1):
MAINTAINERS: Update email address for John Stultz
Kurt Kanzenbach (1):
timekeeping: Mark NMI safe time accessors as notrace
MAINTAINERS | 8 ++++----
kernel/time/timekeeping.c | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index 40fa1955ca3f..c2e1b7202449 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -5914,7 +5914,7 @@ R: Benjamin Gaignard <benjamin.gaignard@...labora.com>
R: Liam Mark <lmark@...eaurora.org>
R: Laura Abbott <labbott@...hat.com>
R: Brian Starkey <Brian.Starkey@....com>
-R: John Stultz <john.stultz@...aro.org>
+R: John Stultz <jstultz@...gle.com>
L: linux-media@...r.kernel.org
L: dri-devel@...ts.freedesktop.org
L: linaro-mm-sig@...ts.linaro.org (moderated for non-subscribers)
@@ -6584,7 +6584,7 @@ F: drivers/gpu/drm/gma500/
DRM DRIVERS FOR HISILICON
M: Xinliang Liu <xinliang.liu@...aro.org>
M: Tian Tao <tiantao6@...ilicon.com>
-R: John Stultz <john.stultz@...aro.org>
+R: John Stultz <jstultz@...gle.com>
R: Xinwei Kong <kong.kongxinwei@...ilicon.com>
R: Chen Feng <puck.chen@...ilicon.com>
L: dri-devel@...ts.freedesktop.org
@@ -8845,7 +8845,7 @@ F: Documentation/devicetree/bindings/net/hisilicon*.txt
F: drivers/net/ethernet/hisilicon/
HIKEY960 ONBOARD USB GPIO HUB DRIVER
-M: John Stultz <john.stultz@...aro.org>
+M: John Stultz <jstultz@...gle.com>
L: linux-kernel@...r.kernel.org
S: Maintained
F: drivers/misc/hisi_hikey_usb.c
@@ -19784,7 +19784,7 @@ F: drivers/net/wireless/ti/
F: include/linux/wl12xx.h
TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
-M: John Stultz <john.stultz@...aro.org>
+M: John Stultz <jstultz@...gle.com>
M: Thomas Gleixner <tglx@...utronix.de>
R: Stephen Boyd <sboyd@...nel.org>
L: linux-kernel@...r.kernel.org
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index dcdcb85121e4..3b1398fbddaf 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -482,7 +482,7 @@ static __always_inline u64 __ktime_get_fast_ns(struct tk_fast *tkf)
* of the following timestamps. Callers need to be aware of that and
* deal with it.
*/
-u64 ktime_get_mono_fast_ns(void)
+u64 notrace ktime_get_mono_fast_ns(void)
{
return __ktime_get_fast_ns(&tk_fast_mono);
}
@@ -494,7 +494,7 @@ EXPORT_SYMBOL_GPL(ktime_get_mono_fast_ns);
* Contrary to ktime_get_mono_fast_ns() this is always correct because the
* conversion factor is not affected by NTP/PTP correction.
*/
-u64 ktime_get_raw_fast_ns(void)
+u64 notrace ktime_get_raw_fast_ns(void)
{
return __ktime_get_fast_ns(&tk_fast_raw);
}
Powered by blists - more mailing lists