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 EA420405C51; Tue, 26 May 2026 17:15:20 +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=1779815722; cv=none; b=fUp1DAV4SFcfckrCpYCS7C5Oh1S1o6QFjq9bqis+pNOrvNIxlhrwrg5IYJmB/CyHY1eZG0nEJiRiUDzdu2hKyCc7qoU3AijDmoT0EV1lmnvyDAPzgdxZ/6GLUjfKfpf75eAClL0bwWkjbmayGbSFV+IWu+BzoEWqqjgafBDxanE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779815722; c=relaxed/simple; bh=taA3JhJ8LfR540IvF/KyclmLykmRPPkG2o8PM3ZOnT0=; h=Date:Message-ID:From:To:Cc:Subject:References:MIME-Version: Content-Type; b=IBleQwZ2eL06uIg89lsmC7arA2EIHCdKzgYPEFHGj7GT7HT8C7vpVfmAsyXLDYManmnkZPR7WxqEGMqlt9QNxq2DMCkMOYs13XXdPIWFlUQuI/9Dy4nzFpW04pJG/wY7pjGX0X5oWIbSARnvO0oddUA6lS6o1tUqgRG8i5IIl0U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=mJ9txE58; 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="mJ9txE58" Received: by smtp.kernel.org (Postfix) with UTF8SMTPSA id B18251F000E9; Tue, 26 May 2026 17:15:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1779815720; bh=iP9+Ejq+468GjDeS30IX6KFuH3pNpoH1TK3AxvpH6jM=; h=Date:From:To:Cc:Subject:References; b=mJ9txE58645sQz4WH7pcRhejpZWtR9+rOPLzP0JoT85ne5BnRR3eoGxgqeuO3sXvm EDc64YGg1uTPw64JEPsVEU/b0dm7bVYiFTnD5hKg8/FVmMxA1ScVOaLF0PhpzwUb5k uhplXMkSmgbQHiK5PBnr1dcuFNlqkToeEut6YWN/aSkUqlVNM00Sbl3WNlBTldhqY2 MGZPhvQKA/s6B0w3VRRX87UD4VEiMcJe2sWsfB1gXznCB+F+EUlGDhtihWuk9QUL85 9ENqoFtbpNE1NpBSkPuMTHrYCHzxJdmm4U0cyui2DB26SCFwqza711Wm1FkFMnJ1f1 Qk8tMpgtfmbeQ== Date: Tue, 26 May 2026 19:15:17 +0200 Message-ID: <20260526171224.347997043@kernel.org> User-Agent: quilt/0.68 From: Thomas Gleixner To: LKML Cc: David Woodhouse , Miroslav Lichvar , John Stultz , Stephen Boyd , Anna-Maria Behnsen , Frederic Weisbecker , thomas.weissschuh@linutronix.de, Arthur Kiyanovski , Rodolfo Giometti , Vincent Donnefort , Marc Zyngier , Oliver Upton , kvmarm@lists.linux.dev, Oliver Upton , Richard Cochran , netdev@vger.kernel.org, Takashi Iwai , Miri Korenblit , Johannes Berg , Jacob Keller , Tony Nguyen , Saeed Mahameed , Peter Hilber , "Michael S. Tsirkin" , virtualization@lists.linux.dev, linux-wireless@vger.kernel.org, linux-sound@vger.kernel.org Subject: [patch 22/24] timekeeping: Remove system_device_crosststamp::sys_realtime References: <20260526165826.392227559@kernel.org> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 All users are converted to sys_systime. Signed-off-by: Thomas Gleixner --- include/linux/timekeeping.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) --- a/include/linux/timekeeping.h +++ b/include/linux/timekeeping.h @@ -318,7 +318,6 @@ struct system_counterval_t { * @clock_id: System time Clock ID to capture * @device: Device time * @sys_counter: Clocksource counter value simultaneous with device time - * @sys_realtime: Realtime simultaneous with device time * @sys_systime: System time for @clock_id * @sys_monoraw: Monotonic raw simultaneous with device time */ @@ -326,11 +325,7 @@ struct system_device_crosststamp { clockid_t clock_id; ktime_t device; struct system_counterval_t sys_counter; - union { - /* realtime goes away once all users are converted */ - ktime_t sys_realtime; - ktime_t sys_systime; - }; + ktime_t sys_systime; ktime_t sys_monoraw; };