From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751690AbdFHWv3 (ORCPT ); Thu, 8 Jun 2017 18:51:29 -0400 Received: from terminus.zytor.com ([65.50.211.136]:34635 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751475AbdFHWv2 (ORCPT ); Thu, 8 Jun 2017 18:51:28 -0400 Date: Thu, 8 Jun 2017 15:46:17 -0700 From: tip-bot for SeongJae Park Message-ID: Cc: tglx@linutronix.de, sj38.park@gmail.com, peterz@infradead.org, mingo@kernel.org, mhiramat@kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com, acme@redhat.com, treeze.taeung@gmail.com Reply-To: peterz@infradead.org, tglx@linutronix.de, sj38.park@gmail.com, mhiramat@kernel.org, mingo@kernel.org, linux-kernel@vger.kernel.org, acme@redhat.com, treeze.taeung@gmail.com, hpa@zytor.com In-Reply-To: <20170507103642.30560-1-sj38.park@gmail.com> References: <20170507103642.30560-1-sj38.park@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/urgent] perf probe: Fix examples section of documentation Git-Commit-ID: d89269a89ebb6a74512f3f40e89cd12017f60a75 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: d89269a89ebb6a74512f3f40e89cd12017f60a75 Gitweb: http://git.kernel.org/tip/d89269a89ebb6a74512f3f40e89cd12017f60a75 Author: SeongJae Park AuthorDate: Sun, 7 May 2017 19:36:42 +0900 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 7 Jun 2017 20:23:11 -0300 perf probe: Fix examples section of documentation An example in perf-probe documentation for pattern of function name based probe addition is not providing example command for that case. This commit fixes the example to give appropriate example command. Signed-off-by: SeongJae Park Acked-by: Masami Hiramatsu Cc: Peter Zijlstra Cc: Taeung Song Fixes: ee391de876ae ("perf probe: Update perf probe document") Link: http://lkml.kernel.org/r/20170507103642.30560-1-sj38.park@gmail.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/Documentation/perf-probe.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/perf/Documentation/perf-probe.txt b/tools/perf/Documentation/perf-probe.txt index e6c9902..165c2b1 100644 --- a/tools/perf/Documentation/perf-probe.txt +++ b/tools/perf/Documentation/perf-probe.txt @@ -240,9 +240,13 @@ Add a probe on schedule() function 12th line with recording cpu local variable: or ./perf probe --add='schedule:12 cpu' - this will add one or more probes which has the name start with "schedule". +Add one or more probes which has the name start with "schedule". - Add probes on lines in schedule() function which calls update_rq_clock(). + ./perf probe schedule* + or + ./perf probe --add='schedule*' + +Add probes on lines in schedule() function which calls update_rq_clock(). ./perf probe 'schedule;update_rq_clock*' or