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 BD88C40DFC1 for ; Sun, 29 Mar 2026 05:27:24 +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=1774762044; cv=none; b=lrR41k7POzXdbmBzAfxtGRHu1sXYUBCEnsnp9ZbH25q5PJOFWnb+J4CJakJuxtJhPYcf6cfDumgrjyOoXOIVtAHwuVfweML+tL1UVwFKGIwsULyLuKlFm+HlrIu6qzhL1v18qZJM1VGs7l4/XX2f1wOCjObeRT5cDgL6VK8TzDA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774762044; c=relaxed/simple; bh=b6CXWJEmnrPdcSgQTuVQKFofsaPHaH+Rwp+LXujLbPc=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=YWHX0IcSwLpwBBSAtMPPhNb/anYXjTrpaGbtypH87bZtTQuhbocZpe8fLLlbGzHixA+mpM4f+xZhbeJiAR2mQ4Vy5KZnSsYm4f0atEqeMatfY3fQVAeMeRWg9cDVNT5b2ITAN8Ncv0doqaXnOzQRVOS3tp3rQb9iRtm8GKEyZLI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=a3qA6+4V; 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="a3qA6+4V" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8538AC116C6; Sun, 29 Mar 2026 05:27:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1774762044; bh=b6CXWJEmnrPdcSgQTuVQKFofsaPHaH+Rwp+LXujLbPc=; h=Date:From:To:Cc:Subject:From; b=a3qA6+4V2Cfcan4E3QssmBQu2tbwrikkPmCNQrlWCZP3WcrPwRZh19VenEBhptEL1 Adqvkp0j8GFKrl+M3MMO2scHYBo0hlbI4XZhPYIV0h9UWwsIdKNWvuU4KOOtgZSxJs H3FbDkCl2ckmn5tZDUPaunCyGeWgL7pJYDWzhpBtKFPWy6MYIDpDYD3PvxQkWd4veQ vX0emxGuDft/i3CLaKqi8rfc6Nd67Eh+54AKiHTYqgPK8L+Np3lRk+mE5KaHNM8sWd VG9Wo33rlvKiLyCeB6QsYchJW3WhOR0R3dvMxPOYXyrOelNHQgpAci5t4gBKRg4PXE K03lA65LsAZSg== Date: Sun, 29 Mar 2026 07:27:20 +0200 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-29 for you to fetch changes up to 5d16467ae56343b9205caedf85e3a131e0914ad8: Fix an argument order bug in the alarm timer forwarding logic, which may cause missed expirations or incorrect overrun accounting. Thanks, Ingo ------------------> Zhan Xusheng (1): alarmtimer: Fix argument order in alarm_timer_forward() kernel/time/alarmtimer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/time/alarmtimer.c b/kernel/time/alarmtimer.c index 069d93bfb0c7..b64db405ba5c 100644 --- a/kernel/time/alarmtimer.c +++ b/kernel/time/alarmtimer.c @@ -540,7 +540,7 @@ static s64 alarm_timer_forward(struct k_itimer *timr, ktime_t now) { struct alarm *alarm = &timr->it.alarm.alarmtimer; - return alarm_forward(alarm, timr->it_interval, now); + return alarm_forward(alarm, now, timr->it_interval); } /**