From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 98FAD26E165 for ; Tue, 23 Jun 2026 17:18:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782235131; cv=none; b=XSCS2Uir/9qoTYjBeapDDtpbNTIVodPAeNqk8od8NPc41DzJUpkh0CkMl2uyt6VUURJhrHVehXzlHpZnXv9KOFyTV7vIIOWiN/Lq25c4HZPYmUoaYZhWS3yqKrEJLEPSEu332sDIGKbBOFP1zqdvDKFo/CZ/b4/X6bhJoiqa/9c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782235131; c=relaxed/simple; bh=Yl4XcPuxE1fr2ZTUJzxkgcpq0StNwuPHFkh6A6PEMb0=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=rNSpiz4sr13Tufyo9gaNoBuwp7tA5twvMazM5Q+7OOsRbPVI0m1jtMytFN1/k3Ur7D5iXy2CUVvgB+FIzz7F4pLyL2ay4C9y3Z0mXh1iJEdm0p4/noH3H1MHocKk/iwck0qmNtXSmIND2gGaopQuoqyuVmEU+JBGbV5lUEaH3QY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=DvN8mYFX; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="DvN8mYFX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B70BB1F000E9; Tue, 23 Jun 2026 17:18:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782235129; bh=tE0tC3Jq/CfEtJiBXGaB/I5cQar8qIJURsk+f19VMzY=; h=Date:From:To:Cc:Subject; b=DvN8mYFXcqV1F0Eitj/8RK6aPvw8WOTcZMdrohc2zgDPYBGzgdhkV9igJ3pdDGEGZ 72L4dMQcMyvlB5KM8aXh8JZaadUEEvyt/iki+ahj3rbyH2n6bi6bBROf9MxDZmV/Hi TuqG45Afknl2HwHZCF3Is12pXPGQr8Qasbnas5tOTDokShjmFz37PIH4wKHskntrNq I6pcZnQ+RIU4l+MGnwsW5nwkwtse29JiDdwt0VwE/9qq4V46A0OY+C8lCZ/VHv594j av/bIsvWdXAxOyy3yT9E/IbUabKCaADuc+mJZRZ9YlBP0JUEP3Ejqxj3hs8bMoFcUl K2E3MSwjMIKJQ== Date: Tue, 23 Jun 2026 19:18:45 +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 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-2026-06-23 for you to fetch changes up to 269f2b43fae692d1f3988c9f888a6301aa537b82: Miscellaneous timer fixes: - Fix timekeeping locking order bug in the timekeeping init code (Mikhail Gavrilov) - Fix u64 multiplication bug in the posix-cpu-timers code on 32-bit kernels (Zhan Xusheng) - Fix macro name in comment block (Ethan Nelson-Moore) - Fix off-by-one bug in the compat settimeofday() usecs validation code (Wang Yan) Thanks, Ingo ------------------> Ethan Nelson-Moore (1): hrtimer: Correct CONFIG_NO_HZ_COMMON macro name in comment Mikhail Gavrilov (1): timekeeping: Register default clocksource before taking tk_core.lock Wang Yan (1): time: Fix off-by-one in compat settimeofday() usec validation Zhan Xusheng (1): posix-cpu-timers: Use u64 multiplication in update_rlimit_cpu() kernel/time/hrtimer.c | 2 +- kernel/time/posix-cpu-timers.c | 2 +- kernel/time/time.c | 2 +- kernel/time/timekeeping.c | 7 ++++--- 4 files changed, 7 insertions(+), 6 deletions(-)