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 799C4EB64D9 for ; Tue, 27 Jun 2023 09:54:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231284AbjF0Jyq (ORCPT ); Tue, 27 Jun 2023 05:54:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51754 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230253AbjF0JyM (ORCPT ); Tue, 27 Jun 2023 05:54:12 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3C03630F0 for ; Tue, 27 Jun 2023 02:53:43 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 802B161090 for ; Tue, 27 Jun 2023 09:53:43 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8B6CCC433C8; Tue, 27 Jun 2023 09:53:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1687859622; bh=nNsZ+ZuUFJdXMsEeGaRoxgtH3zn2j6lnzZFeyTyKSJ0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=KjgTJkZWzbmv7aWajz+ulBenmFYVU/WRQGpqAdUg7naBwSbKMXK4reV/6AELiBBWq 7WOkUY7D9eqSXEBeTDXgr1btoxnJzN2J1dpEpFjHVKrxE2AS1Vpezzu+NPMqACBWvL LbxSgf200CyqzmSDh5LSX/SIfmxiHr1qGg7M/YCUCZ9m9Zpa4ka82CmZWQ9pnGiNU8 WMQgFI2mx/3cVFE7oYUDJoY2ya2ujsshoLysByOliPsoGFBkTqzuEzuX0QyOPCgEB6 Im2yKGlpJ/gdZAue1++3hdhfz30JDsROqGmOsFGVJIHXTr+P0LNp9l4riA9RC2dNwM VJhh7LemjFqew== Date: Tue, 27 Jun 2023 11:53:40 +0200 From: Frederic Weisbecker To: Thomas Gleixner Cc: LKML , Anna-Maria Behnsen , John Stultz , Peter Zijlstra , Ingo Molnar , Stephen Boyd , Eric Biederman , Oleg Nesterov Subject: Re: [patch 10/45] posix-cpu-timers: Use @now instead of @val for clarity Message-ID: References: <20230606132949.068951363@linutronix.de> <20230606142031.591764431@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230606142031.591764431@linutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jun 06, 2023 at 04:37:34PM +0200, Thomas Gleixner wrote: > posix_cpu_timer_set() uses @val as variable for the current time. That's > confusing at best. > > Use @now as anywhere else and rewrite the confusing comment about clock > sampling. > > No functional change. > > Signed-off-by: Thomas Gleixner Reviewed-by: Frederic Weisbecker