Skip to content

Commit 164cb54

Browse files
committed
Merge tag 'timers-urgent-2026-03-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull timer fix from Ingo Molnar: "Fix function tracer recursion bug by marking jiffies_64_to_clock_t() notrace" * tag 'timers-urgent-2026-03-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: time/jiffies: Mark jiffies_64_to_clock_t() notrace
2 parents 63724e9 + 755a648 commit 164cb54

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/time/time.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ EXPORT_SYMBOL(clock_t_to_jiffies);
697697
*
698698
* Return: jiffies_64 value converted to 64-bit "clock_t" (CLOCKS_PER_SEC)
699699
*/
700-
u64 jiffies_64_to_clock_t(u64 x)
700+
notrace u64 jiffies_64_to_clock_t(u64 x)
701701
{
702702
#if (TICK_NSEC % (NSEC_PER_SEC / USER_HZ)) == 0
703703
# if HZ < USER_HZ

0 commit comments

Comments
 (0)