From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752049AbdFHWwa (ORCPT ); Thu, 8 Jun 2017 18:52:30 -0400 Received: from terminus.zytor.com ([65.50.211.136]:37549 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751523AbdFHWw2 (ORCPT ); Thu, 8 Jun 2017 18:52:28 -0400 Date: Thu, 8 Jun 2017 15:46:51 -0700 From: tip-bot for SeongJae Park Message-ID: Cc: tglx@linutronix.de, mingo@kernel.org, sj38.park@gmail.com, acme@redhat.com, alexander.shishkin@linux.intel.com, linux-kernel@vger.kernel.org, hpa@zytor.com, peterz@infradead.org Reply-To: sj38.park@gmail.com, tglx@linutronix.de, mingo@kernel.org, acme@redhat.com, hpa@zytor.com, peterz@infradead.org, alexander.shishkin@linux.intel.com, linux-kernel@vger.kernel.org In-Reply-To: <20170530111827.21732-2-sj38.park@gmail.com> References: <20170530111827.21732-2-sj38.park@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/urgent] perf script: Fix outdated comment for perf-trace-python Git-Commit-ID: c76132dc5182776b98e946d674cb41c421661ea9 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: c76132dc5182776b98e946d674cb41c421661ea9 Gitweb: http://git.kernel.org/tip/c76132dc5182776b98e946d674cb41c421661ea9 Author: SeongJae Park AuthorDate: Tue, 30 May 2017 20:18:23 +0900 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 7 Jun 2017 20:23:22 -0300 perf script: Fix outdated comment for perf-trace-python Script generated by the '--gen-script' option contains an outdated comment. It mentions a 'perf-trace-python' document while it has been renamed to 'perf-script-python'. Fix it. Signed-off-by: SeongJae Park Cc: Alexander Shishkin Cc: Peter Zijlstra Cc: Thomas Gleixner Fixes: 133dc4c39c57 ("perf: Rename 'perf trace' to 'perf script'") Link: http://lkml.kernel.org/r/20170530111827.21732-2-sj38.park@gmail.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/scripting-engines/trace-event-python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/util/scripting-engines/trace-event-python.c b/tools/perf/util/scripting-engines/trace-event-python.c index 9d92af7..40de3cb 100644 --- a/tools/perf/util/scripting-engines/trace-event-python.c +++ b/tools/perf/util/scripting-engines/trace-event-python.c @@ -1219,7 +1219,7 @@ static int python_generate_script(struct pevent *pevent, const char *outfile) fprintf(ofp, "# be retrieved using Python functions of the form " "common_*(context).\n"); - fprintf(ofp, "# See the perf-trace-python Documentation for the list " + fprintf(ofp, "# See the perf-script-python Documentation for the list " "of available functions.\n\n"); fprintf(ofp, "import os\n");