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 BC231175A62 for ; Sun, 7 Jun 2026 05:07:55 +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=1780808876; cv=none; b=oMaetgdcHsChETZXDAYjtaxV9/BOn5pEgGdTG7bsZf9ular5iJoFR1vqz2IcE/txGmSHKvg8NmsyuccJfeqfgRF+yw9C9/cRxFEp9Sgzp9iRe1twGnLkiAmy5BLdReJo69Rifw5it/6U9E5marDTyaeZn5zp0LHWzLKHanehTlk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780808876; c=relaxed/simple; bh=peSXFqYiIONDRmROUCXLhUVJc831DKPRT6aspi8xIrQ=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=gLdkB/mxv65s72602L4EwU3w3a78TctLsddGoYWQoyUG0PIb91DahU3IL6Xd3/Rnl+GPHqpTcbxKB5l+HruoSsEakM6/AUYEbsr7i0fr/IbSah/Gh9AYtIr+Z6U9scWH3KQ9YVQBn9r1CnAGrTEC8Mido5tdejsO1vd54S1jzOw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=oBsm1kt2; 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="oBsm1kt2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A69FC1F00893; Sun, 7 Jun 2026 05:07:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1780808875; bh=Ugx0MW9tLZXdDXOw7H2zCBfGgKfX87LSXSHaXsC8ePg=; h=Date:From:To:Cc:Subject; b=oBsm1kt21YYYJeUDc9g79COeylZ2xMjAgfE61oXYxNV7AchGguRi489HppEnClEYK OXL3uT96VC4M64uObZovbCeyUFbPMvpcHXfD1KGSd80ng4wWlXKU1PB2mpW0aJvdAo FuEc68RR4+ODbNkaOplN4Sc4RKhONzLH58HKunU8ShGzWBwWvlqtRZPUw25qiZId9Y 88G/MpIAIgEiPpI+WLguxQaklq6xUXRoPGOBD21vdE+Y9nT6ClNIlaCXaLmoT8PSNr 46/3tvBDUefRMjxAHPWMEKiqczvRTGgWqTUsaXdbu5o5BAPBDQlCx7jxoYCvBOnkNq EEmNqo5amiirQ== Date: Sun, 7 Jun 2026 07:07:50 +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=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit 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-07 for you to fetch changes up to d486b4934a8e504376b85cdb3766f306d57aff5b: Miscellaneous timer fixes: - Fix the arch_inlined_clockevent_set_next_coupled() prototype in the !CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST case (Naveen Kumar Chaudhary) - Fix an off-by-1 bug in the sys_settimeofday() usecs validation code (Naveen Kumar Chaudhary) - Mark vdso_k_*_data pointers as __ro_after_init (Thomas Weißschuh) - Fix livelock race in tmigr_handle_remote_up() (Amit Matityahu) Thanks, Ingo ------------------> Amit Matityahu (1): timers/migration: Fix livelock in tmigr_handle_remote_up() Naveen Kumar Chaudhary (2): clockevents: Fix duplicate type specifier in stub function parameter time: Fix off-by-one in settimeofday() usec validation Thomas Weißschuh (1): vdso/datastore: Mark vdso_k_*_data pointers as __ro_after_init kernel/time/clockevents.c | 2 +- kernel/time/time.c | 2 +- kernel/time/timer_migration.c | 8 ++++++-- lib/vdso/datastore.c | 6 +++--- 4 files changed, 11 insertions(+), 7 deletions(-)