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 E32017E774 for ; Wed, 24 Jan 2024 14:42:43 +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=1706107364; cv=none; b=qi9m71ZiJVJg6D/gXq3KE+ZV9kz09IiqU7i5Y6oCAKcdq2Ugc1sV25LAR8SM9Ju93GA5pD+Yh9bmBDQuui2LRQXPnxU4vQUR/rrdBe498ApQ/aZFsmCa29g+9EgjTkdzQ7JPAC0sopqwsjhhqFW1UWXJHzhmmovEfAD5pgGtJ54= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706107364; c=relaxed/simple; bh=wCPHcF2kRTlRySGOaeV0Cen6uSwRmqdRtCEYBTLRkVM=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Ge+lbTby3XfVygop/qTjezwOD+dqrn9MBUGe/Dc+z52sWgMjslvAPWsryQ+Oc0Sbn78HKf9xYzIxPWZ4ZA03OF2txy+pEDuncMLLu7Hw1Y7tERclQf6QARIt5VKls7Mky4M3iNBC7jLzcRr/hLJL/wDG0Cyjfs5YjSCgOe+Bg9c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=hR4EzU17; 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="hR4EzU17" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CA464C433C7; Wed, 24 Jan 2024 14:42:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1706107363; bh=wCPHcF2kRTlRySGOaeV0Cen6uSwRmqdRtCEYBTLRkVM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=hR4EzU17NKS0Riax1VgMzse174Wxqe1HzX0VW+/OEgdP82Iag1kOzsHIQp+aHLyat pmmojeVQmOjeM+dA6Y8c7eTK1QIbf9H/xud6Qr3EqGibVikgvJzNMrNZ30fC9YVoeQ CVh0RNgk4LK0sfP+kgqjZ4gVcgIEL7Kkqu7S/RUQqpb3gJL1Ev9IvS8pkM31divR5l GmqyAQlkzPkFtnsVpv1bXSJwIr4zi24TopNzvQCGJHwD+OsNAqxXGLDWeB/B9A3YPy HBgs4WX0If2RTrIVC+gNlxVgXHOdfGt+fv2DL/1aAjSXbDj7TAbpuXT6UVlq/sK82o INunxvWm+RBsA== Date: Wed, 24 Jan 2024 15:42:40 +0100 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 , "Richard Cochran (linutronix GmbH)" Subject: Re: [PATCH v10 16/20] tick/sched: Split out jiffies update helper function Message-ID: References: <20240115143743.27827-1-anna-maria@linutronix.de> <20240115143743.27827-17-anna-maria@linutronix.de> 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 In-Reply-To: <20240115143743.27827-17-anna-maria@linutronix.de> Le Mon, Jan 15, 2024 at 03:37:39PM +0100, Anna-Maria Behnsen a écrit : > From: "Richard Cochran (linutronix GmbH)" > > The logic to get the time of the last jiffies update will be needed by > the timer pull model as well. > > Move the code into a global function in anticipation of the new caller. > > No functional change. > > Signed-off-by: Richard Cochran (linutronix GmbH) > Signed-off-by: Anna-Maria Behnsen Reviewed-by: Frederic Weisbecker