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 F37F42BF00A for ; Sun, 23 Nov 2025 07:58:58 +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=1763884739; cv=none; b=WNIP1iKXiqnYkZ6Ke8LDiPN1jrr6p7zujY5lB5qJVKAqDgu8lDBHe6HTLn56iiWzGjQ2S/rKbgY2A94c9BuAPFhpeLYWRUp+/vahyfwykkMUQhlqGyGWvr0GJBtk8GH6e3A51VCaBWgmHDSj6rdnzb2LLHQPQC/2ZGMwgZNqOJo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763884739; c=relaxed/simple; bh=oXbEGJvZ923jTWQ1QKxhpHtfWuY2+2K0YSiHNYLX5KQ=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=ERs6plb4ctfz+fkWUoblcW53cke3zVhMEweKHDGErU2CBu6qfCFXtVbCAEZvyKkvrgDmRN5WF5JsIN0CmXC+H59pe24Ql6uPkmYRvPd5vhnSrnzY5Z7kxodpzY7P6TZte8MWc9ROm4ACIWT6bC14jNLC6+xnNh959J4qkZ/BGtE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=vB1Wyedl; 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="vB1Wyedl" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7B902C113D0; Sun, 23 Nov 2025 07:58:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1763884738; bh=oXbEGJvZ923jTWQ1QKxhpHtfWuY2+2K0YSiHNYLX5KQ=; h=Date:From:To:Cc:Subject:From; b=vB1WyedlHP+KzMVPLobHGiLzbN/NCR4eiWVb5QjWYDpkOMoMb3awmDf7dHP+pnDqn 4bjvHj5csMf3wNQ8jPadxfUM6aC0VrTsACmMpRwzG/PYtdZHKFCOjfImefVNyE5ZZl 66IH6xn4+JI7Ihnbl97d/ccj2lF1ndgM956p+BBuqTzvASrLtrpZonZe/5b3gl/ZGO H5XuvKCuXaAEccFnff+zg8UOCfiBhr8tbccL4g/E3oFHCAKVDKm2WZAQDCL9J8Dyck ZP1l5cnhLW8iOh5runhTaIIxkktkwbeWL7KcZPorwexy/wVxlDK42P+iyS6d5jFtn2 jyk3X8k5t8D1w== Date: Sun, 23 Nov 2025 08:58:53 +0100 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Thomas Gleixner , Daniel Lezcano , Peter Zijlstra , Andrew Morton , Anna-Maria Behnsen , Frederic Weisbecker Subject: [GIT PULL] timer subsystem fixes 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-2025-11-23 # HEAD: 20739af07383e6eb1ec59dcd70b72ebfa9ac362c timers: Fix NULL function pointer race in timer_shutdown_sync() Miscellaneous fixes: - Fix a race in timer->function clearing in timer_shutdown_sync() - Fix a timekeeper sysfs-setup resource leak in error paths - Fix the NOHZ report_idle_softirq() syslog rate-limiting logic to have no side effects on the return value Thanks, Ingo ------------------> Malaya Kumar Rout (1): timekeeping: Fix resource leak in tk_aux_sysfs_init() error paths Wen Yang (1): tick/sched: Fix bogus condition in report_idle_softirq() Yipeng Zou (1): timers: Fix NULL function pointer race in timer_shutdown_sync() kernel/time/tick-sched.c | 11 +++++------ kernel/time/timekeeping.c | 21 ++++++++++++--------- kernel/time/timer.c | 7 ++++--- 3 files changed, 21 insertions(+), 18 deletions(-)