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 53158C4332F for ; Tue, 12 Dec 2023 13:37:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346528AbjLLNg7 (ORCPT ); Tue, 12 Dec 2023 08:36:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57796 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232517AbjLLNg5 (ORCPT ); Tue, 12 Dec 2023 08:36:57 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 92E5F83 for ; Tue, 12 Dec 2023 05:37:04 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DA27DC433C9; Tue, 12 Dec 2023 13:37:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1702388224; bh=An6pJpMuiYlfSi/g1KRM/yinCkpjxYiXnMPBeXwAN0o=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=gAq56hNCUV6DkM14vBoeoLgWhBIxTOhtKi3S9BimwOkCB/1hXMzll/BrxD1PES5jx IidMgrFPaeLRXfwFye4rcot9E6XcY3YcU4dxBG43E8PzXkPCD13I5COD+VhtDWDKD/ 0QNvAEJLf1sNjtJyoxqwCsT6OvZ8IKxYvkXqJ3LEW9gXrcP7r276j9PPp/cq/7uQAJ dLY+MT2Q/LHMCV+OXquotuZj8FCTIUarGkXqoAKH6Rm6XUnco1GXFwb/qcyekmvXXG WlBwVyl2ZZkDmkW6JQoWnrBxtWAwi+uVwhtN3WgkuIxu+wosyMBTd2weJMPEPR+Cbf uRYmUCR58/5pA== Date: Tue, 12 Dec 2023 14:37:01 +0100 From: Frederic Weisbecker To: Anna-Maria Behnsen Cc: Sebastian Siewior , 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 , Giovanni Gherdovich , Lukasz Luba , "Gautham R . Shenoy" , Srinivas Pandruvada , K Prateek Nayak Subject: Re: [PATCH v9 12/32] timers: Fix nextevt calculation when no timers are pending Message-ID: References: <20231201092654.34614-1-anna-maria@linutronix.de> <20231201092654.34614-13-anna-maria@linutronix.de> <20231204160350.OTCnqCJf@linutronix.de> <87zfyodfxc.fsf@somnus> <875y13mu96.fsf@somnus> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <875y13mu96.fsf@somnus> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 12, 2023 at 02:21:25PM +0100, Anna-Maria Behnsen wrote: > Frederic Weisbecker writes: > > > Le Tue, Dec 05, 2023 at 12:53:03PM +0100, Anna-Maria Behnsen a écrit : > >> > >> Frederic, what do you think? > > > > So it looks like is_idle must be fixed. > > > > As for the timer softirq, ->next_expiry is already unreliable because when > > a timer is removed, ->next_expiry is not updated (even though that removed > > timer might have been the earliest). So ->next_expiry can already carry a > > "too early" value. The only constraint is that ->next_expiry can't be later > > than the first timer. > > > > So I'd rather put a comment somewhere about the fact that wrapping is expected > > to behave ok. But it's your call. > > Ok. If both solutions are fine, I would like to take the solution with > updating the next_expiry values for empty bases. It will make the > compare of expiry values of global and local timer base easier in one of > the patches later on. Fine by me at least! Thanks. > Thanks, > > Anna-Maria >