From nobody Mon May 11 04:12:55 2026 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 AFD1AC35273 for ; Thu, 14 Apr 2022 15:40:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1347474AbiDNPjp (ORCPT ); Thu, 14 Apr 2022 11:39:45 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50250 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1351684AbiDNOb1 (ORCPT ); Thu, 14 Apr 2022 10:31:27 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9E81EB36AE; Thu, 14 Apr 2022 07:21:50 -0700 (PDT) Date: Thu, 14 Apr 2022 14:21:48 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1649946109; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=xG0YNv6UpmTWIvybxRgaQrZpZmMJBavRFa1QDKMAijY=; b=jAUaU3bf2lGKNCIiX7EWhCHJcoRDl03lRXP4cloKxnJOMdkvo3Dl2NZ2FwZJcUUnJkeBWa JzqUJfgk2ukX2mkuokO2QjMnij6ke379QLH2rbBncIAE/7cuAX34AMtBQfaa5pVNelU0HG 5IcZMkCdWnk5aJ322sAcGx7X5ympD9ajDj61FLbj2nsBvGqYukfY7xSKb/bvOMUXNbp4Sw 4Z2i2cElzuClJ0rujbvM4L5zGPnQQznWv1TDP1CGQ8QEoTmVUoZTrwQriEiL2OvOG5IQEx 0Ib+1SltjZi2+r9FGnt67xIfumdPcfVdM8mOKKJwDy3Nci33pbdNNjTqWYfkaQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1649946109; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=xG0YNv6UpmTWIvybxRgaQrZpZmMJBavRFa1QDKMAijY=; b=8dfz2LXEAG/kV/cIq6zkrIS+9+QfLuW2ZhYcZ1JJffnz2jQeSuvQ/SEXAwEw4q8Ikmn6Gp yw4ctHzrbt0NBGDg== From: "tip-bot2 for Anna-Maria Behnsen" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: timers/core] tracing/timer: Add missing argument documentation of trace points Cc: "Anna-Maria Behnsen" , Thomas Gleixner , "Steven Rostedt (Google)" , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20220411140115.24185-1-anna-maria@linutronix.de> References: <20220411140115.24185-1-anna-maria@linutronix.de> MIME-Version: 1.0 Message-ID: <164994610801.4207.12614965303442956238.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the timers/core branch of tip: Commit-ID: fde33ca4cb2bae6472714123b451475fdfd9995c Gitweb: https://git.kernel.org/tip/fde33ca4cb2bae6472714123b451475fd= fd9995c Author: Anna-Maria Behnsen AuthorDate: Mon, 11 Apr 2022 16:01:15 +02:00 Committer: Thomas Gleixner CommitterDate: Thu, 14 Apr 2022 16:14:49 +02:00 tracing/timer: Add missing argument documentation of trace points Documentation of trace points timer_start, timer_expire_entry and hrtimer_start lack always the last argument. Add it to keep implementation and documentation in sync. Signed-off-by: Anna-Maria Behnsen Signed-off-by: Thomas Gleixner Acked-by: Steven Rostedt (Google) Link: https://lore.kernel.org/r/20220411140115.24185-1-anna-maria@linutroni= x.de --- include/trace/events/timer.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/trace/events/timer.h b/include/trace/events/timer.h index 6ad031c..2e713a7 100644 --- a/include/trace/events/timer.h +++ b/include/trace/events/timer.h @@ -48,6 +48,7 @@ DEFINE_EVENT(timer_class, timer_init, * timer_start - called when the timer is started * @timer: pointer to struct timer_list * @expires: the timers expiry time + * @flags: the timers flags */ TRACE_EVENT(timer_start, =20 @@ -84,6 +85,7 @@ TRACE_EVENT(timer_start, /** * timer_expire_entry - called immediately before the timer callback * @timer: pointer to struct timer_list + * @baseclk: value of timer_base::clk when timer expires * * Allows to determine the timer latency. */ @@ -190,7 +192,8 @@ TRACE_EVENT(hrtimer_init, =20 /** * hrtimer_start - called when the hrtimer is started - * @hrtimer: pointer to struct hrtimer + * @hrtimer: pointer to struct hrtimer + * @mode: the hrtimers mode */ TRACE_EVENT(hrtimer_start,