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 7B62EE936FB for ; Fri, 6 Oct 2023 11:17:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232007AbjJFLRS (ORCPT ); Fri, 6 Oct 2023 07:17:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51724 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232018AbjJFLRP (ORCPT ); Fri, 6 Oct 2023 07:17:15 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id ED5A8F9 for ; Fri, 6 Oct 2023 04:17:13 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E4E32C433B7; Fri, 6 Oct 2023 11:17:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1696591033; bh=cd0i+PIs1RvXzrN3U6j1Ub0kVu8Y50D6gcMqDJ6I48c=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=uUXZ7l2u+mtU9bqIBKm8CNtiky6Snt6UIAaoD3H5/XWYCv+/P2Xea+FU8bBgNyZp1 2SxnZah8UGAMzVeuVygjnCcl4VOJziltHsP4sWZtgeCQGoeTI5dnea99Q3gQ1cNWz7 oOYJRQ88VmmEs2ZzeKdAMHL+ytR1vc+98U0eUQCVMU3fjNzS+uTj9RE5N6pEV9O+5X /zI7L8Xg90cJaaHBnKNkGSilYIB3Sur48cDT3cke3dTKocYT/4Itx2WHKyGPn71dzJ aZ2FZsVr6RjY/TY6K6ZRU8lNdJ+QqwWSdtQfFcvVNeUZuSeg0N+23pxSjboxsxD9mz WQi3ls5/vpBfQ== Date: Fri, 6 Oct 2023 13:17:10 +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 07/25] timers: Use already existing function for forwarding timer base Message-ID: References: <20231004123454.15691-1-anna-maria@linutronix.de> <20231004123454.15691-8-anna-maria@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231004123454.15691-8-anna-maria@linutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Oct 04, 2023 at 02:34:36PM +0200, Anna-Maria Behnsen wrote: > There is an already existing function for forwarding the timer > base. Forwarding the timer base is implemented directly in > get_next_timer_interrupt() as well. > > To avoid code duplication, replace implementation for forwarding timer base > with the direct call to the already existing function. > > Signed-off-by: Anna-Maria Behnsen Good catch! Reviewed-by: Frederic Weisbecker