From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752174AbdKVSDb (ORCPT ); Wed, 22 Nov 2017 13:03:31 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:44272 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751794AbdKVSDB (ORCPT ); Wed, 22 Nov 2017 13:03:01 -0500 X-Google-Smtp-Source: AGs4zMbHVv+SgNHE4kVhLVvCqloK3OvENReauh3YpCnpb/x8IB+sgIRM71VcXU8c4+dx3a/Qgv9X7g== From: "Vladislav Valtchev (VMware)" To: rostedt@goodmis.org, linux-kernel@vger.kernel.org Cc: "Vladislav Valtchev (VMware)" Subject: [PATCH 2/3] trace-cmd: s/plugin/tracer/ in record's man page Date: Wed, 22 Nov 2017 20:02:01 +0200 Message-Id: <20171122180202.9519-3-vladislav.valtchev@gmail.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20171122180202.9519-1-vladislav.valtchev@gmail.com> References: <20171122180202.9519-1-vladislav.valtchev@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Currently, the man page of trace-cmd record states that: To see a list of available plugins, see trace-cmd-list(1). While `trace-cmd list` [w/o options] mentions "tracers", which is the proper term there. The inconsistency exists because the terminology in trace-cmd/ftrace changed over time: what we call today "tracers" use to be called "plugins" when ftrace was created. This simple patch updates trace-cmd record's man page accordingly, in order to avoid any confusion and improve the user experience. Signed-off-by: Vladislav Valtchev (VMware) --- Documentation/trace-cmd-record.1.txt | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Documentation/trace-cmd-record.1.txt b/Documentation/trace-cmd-record.1.txt index 5663447..68afa16 100644 --- a/Documentation/trace-cmd-record.1.txt +++ b/Documentation/trace-cmd-record.1.txt @@ -25,12 +25,11 @@ file that can later be read (see trace-cmd-report(1)). OPTIONS ------- -*-p* 'plugin':: - Specify a trace plugin. Plugins are special Ftrace tracers that usually do - more than just trace an event. Common plugins are *function*, - *function_graph*, *preemptirqsoff*, *irqsoff*, *preemptoff*, and *wakeup*. - A plugin must be supported by the running kernel. To see a list of - available plugins, see trace-cmd-list(1). +*-p* 'tracer':: + Specify a tracer. Tracers usually do more than just trace an event. + Common tracers are: *function*, *function_graph*, *preemptirqsoff*, + *irqsoff*, *preemptoff* and *wakeup*. A tracer must be supported by the + running kernel. To see a list of available tracers, see trace-cmd-list(1). *-e* 'event':: Specify an event to trace. Various static trace points have been added to -- 2.14.1