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 D5110E92714 for ; Thu, 5 Oct 2023 15:45:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233834AbjJEPpw (ORCPT ); Thu, 5 Oct 2023 11:45:52 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47712 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232958AbjJEPpB (ORCPT ); Thu, 5 Oct 2023 11:45:01 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8B4BC7688 for ; Thu, 5 Oct 2023 07:32:31 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2162AC116D2; Thu, 5 Oct 2023 09:44:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1696499059; bh=n0rJB8fV9mLGmVujUFMI+UNHNOp23wGOwv8hNHIVVmk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=qswWlWPadLuBBO2nU4EQZ/Ardmmf+MKvlrCHfX46HkFmSZdgk2C3goWZijVVU4GwB 8QnZNPwnU2huB5Bep7LtFo7nfiVhjClrMupqaYGgMSEazOHEFzMISRUOAT2+1ztCpW 6P0+/hjXBHtfbxOQyVP2PZfUe0Gtx7TwZ1611aNSiIcz7C8ez0yPao+lyMTUdx9Vno Smurun2I4Ftdn+ZrRwJJeVIcehDOPHgWP0IWS0hF8d0pwRR/y1agPg2qCa+fcCaFyP lxZKhGOPkbACR0dCASOzcrSfivTxHjl5Ty34ZwZyQFiyYPn2lGruRf2XFvXaxmKi8X +qSL959LeprlA== Date: Thu, 5 Oct 2023 11:44:16 +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 01/25] tick/sched: Cleanup confusing variables Message-ID: References: <20231004123454.15691-1-anna-maria@linutronix.de> <20231004123454.15691-2-anna-maria@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231004123454.15691-2-anna-maria@linutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Oct 04, 2023 at 02:34:30PM +0200, Anna-Maria Behnsen wrote: > tick_nohz_stop_tick() contains the expires (u64 variable) and tick > (ktime_t) variable. In the beginning the value of expires is written to > tick. Afterwards non of the variables is changed. They are only used for *none > checks. > > Drop the not required variable tick and use always expires instead. > > Signed-off-by: Anna-Maria Behnsen Reviewed-by: Frederic Weisbecker