From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D4EAFE936FC for ; Fri, 6 Oct 2023 11:16:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232003AbjJFLQJ (ORCPT ); Fri, 6 Oct 2023 07:16:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42956 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231916AbjJFLQH (ORCPT ); Fri, 6 Oct 2023 07:16:07 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B9E83D6 for ; Fri, 6 Oct 2023 04:16:05 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C7133C43397; Fri, 6 Oct 2023 11:16:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1696590965; bh=lgHxBR1MXcz9SOv/ilPUJyFBLRJZCHLDgsuiRWJ7OsQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=I8xcCG5bk2TiFUKZO4lDfGCoA8EclOMrs2DUsRBRmuuqOCYGD+lBz800T1tyd5NTg 0IuvyiDvVuYBaOdDre/VU34Ac9/nkuK+W8TqTN0yhMcJjOLQU9X/p/A1vEPLdkTzJT lbrioIPLWbtXVuEQsce1mnyFoLdqQDrUy4gAhcy71niHgl4P9L8jK6WavDAMjySHC8 pcQAGEUpoVPyYGHp1ZiM6rTG6HfVOgzl/YxMXaZRMqFZ+gFHI1ob0yGvOpnFZhkg6N UymxMc8oAAOTxST9M+hRVrofjdxl5NTnDeaqDFrugNyyKuIdDHiptRQPKZAI6nGksh t3szND6TPmbRA== Date: Fri, 6 Oct 2023 13:16:02 +0200 From: Frederic Weisbecker To: Anna-Maria Behnsen Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , John Stultz , Thomas Gleixner , Eric Dumazet , "Rafael J . Wysocki" , Arjan van de Ven , "Paul E . McKenney" , Rik van Riel , Steven Rostedt , Sebastian Siewior , Giovanni Gherdovich , Lukasz Luba , "Gautham R . Shenoy" , Srinivas Pandruvada , K Prateek Nayak Subject: Re: [PATCH v8 06/25] timers: Split out forward timer base functionality Message-ID: References: <20231004123454.15691-1-anna-maria@linutronix.de> <20231004123454.15691-7-anna-maria@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231004123454.15691-7-anna-maria@linutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Oct 04, 2023 at 02:34:35PM +0200, Anna-Maria Behnsen wrote: > Forwarding timer base is done when the next expiry value is calculated and > when a new timer is enqueued. When the next expiry value is calculated the > jiffies value is already available and does not need to be reread a second > time. > > Splitting out the forward timer base functionality to make it executable > via both contextes - those where jiffies are already known and those, where > jiffies need to be read. > > No functional change. > > Signed-off-by: Anna-Maria Behnsen Reviewed-by: Frederic Weisbecker