From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4378B189BB6 for ; Sun, 15 Mar 2026 03:31:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773545461; cv=none; b=A+BWYlRPHof/GifUQmO/4bk/sJyC2t3R4HsTqKI+wILEALyF3wQOkXCki9jhyj3XEMJse0qRMlePXO0SHR237Z+f0OMXjGvyQ+KAb8vGujOgRoMtI51wXTsC158C0UG75WVdnjFonn4EsInlmiIxNcNwzMgWzzNZ7MJv3bzswBc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773545461; c=relaxed/simple; bh=7riCASDs6uLCdEZmCLN3lgJAT16ub1ms4GoPDSjxft4=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=ZS2F0iNj7Wp7p3fkDWsAGunMkNROc1VwA84lxqmkd+v1WYR+Z/pdQ6ncy5Gk0Xb5/dgBb2WCkHrO9UIGC/pMxLOPZGsoCNJ9g1fhAVmXO2BRQK72hRn79HDtKq/bWGTOvykG/nVXKVc93uh22d66ZN7klc4yvgxbpLLCYXnJzzk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=GGC4WBf9; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="GGC4WBf9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 11BC6C4CEF7; Sun, 15 Mar 2026 03:30:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773545460; bh=7riCASDs6uLCdEZmCLN3lgJAT16ub1ms4GoPDSjxft4=; h=Date:From:To:Cc:Subject:From; b=GGC4WBf98uhJ4t3x4UvkJz+2M/k//8WEfZ343scComDzFkV1kcDbw/rI7XHNOxggx x+aq5mvamVsFd0yNZhP+MSiJadbxV6YHg+yAgDlB5CDzX8wOuUXUrjgWafPsZc5ZEl hAaZnrx9EwDQvr8I/wxx38PKjbjxQD9qhNxJX9vtMQKnEng9R9cdCqZO27gf2oFB0u IUbfcAzOZObxLpKqIkOkzu8zp+cz+knBY017jVlU7ERfzi+REPa/j0jK8k9X4SCIog SGQsQI5/zOaEt75rnYG7lVM0YYhqsWiXMYwR1UFDamXu5dhcS3Nsb8jZzHA+Y0og+P l2xPnRaWoryQg== Date: Sun, 15 Mar 2026 04:30:56 +0100 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Thomas Gleixner , Daniel Lezcano , Peter Zijlstra , Anna-Maria Behnsen , Frederic Weisbecker Subject: [GIT PULL] timer subsystem fix Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Linus, Please pull the latest timers/urgent Git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers-urgent-2026-03-15 for you to fetch changes up to 755a648e78f12574482d4698d877375793867fa1: Fix function tracer recursion bug by marking jiffies_64_to_clock_t() notrace. Thanks, Ingo ------------------> Steven Rostedt (1): time/jiffies: Mark jiffies_64_to_clock_t() notrace kernel/time/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/time/time.c b/kernel/time/time.c index 36fd2313ae7e..0d832317d576 100644 --- a/kernel/time/time.c +++ b/kernel/time/time.c @@ -697,7 +697,7 @@ EXPORT_SYMBOL(clock_t_to_jiffies); * * Return: jiffies_64 value converted to 64-bit "clock_t" (CLOCKS_PER_SEC) */ -u64 jiffies_64_to_clock_t(u64 x) +notrace u64 jiffies_64_to_clock_t(u64 x) { #if (TICK_NSEC % (NSEC_PER_SEC / USER_HZ)) == 0 # if HZ < USER_HZ