From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751096AbdALIbm (ORCPT ); Thu, 12 Jan 2017 03:31:42 -0500 Received: from terminus.zytor.com ([198.137.202.10]:34942 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750777AbdALIbk (ORCPT ); Thu, 12 Jan 2017 03:31:40 -0500 Date: Thu, 12 Jan 2017 00:30:56 -0800 From: tip-bot for Soramichi Akiyama Message-ID: Cc: mingo@kernel.org, acme@redhat.com, namhyung.kim@lge.com, linux-kernel@vger.kernel.org, hpa@zytor.com, tglx@linutronix.de, akiyama@m.soramichi.jp, peterz@infradead.org, alexander.shishkin@linux.intel.com Reply-To: mingo@kernel.org, namhyung.kim@lge.com, acme@redhat.com, linux-kernel@vger.kernel.org, hpa@zytor.com, akiyama@m.soramichi.jp, alexander.shishkin@linux.intel.com, peterz@infradead.org, tglx@linutronix.de In-Reply-To: <20170110200006.e1f7a766b4faf1f107ae2e1b@m.soramichi.jp> References: <20170110200006.e1f7a766b4faf1f107ae2e1b@m.soramichi.jp> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf evlist: Fix typo in perf_evlist__start_workload() Git-Commit-ID: e978be9ea2990f1af60fe10eadd2312a6250e0b8 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: e978be9ea2990f1af60fe10eadd2312a6250e0b8 Gitweb: http://git.kernel.org/tip/e978be9ea2990f1af60fe10eadd2312a6250e0b8 Author: Soramichi Akiyama AuthorDate: Tue, 10 Jan 2017 10:41:00 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 11 Jan 2017 16:48:01 -0300 perf evlist: Fix typo in perf_evlist__start_workload() This patch fixes a typo: s/enable to/unable to/ Signed-off-by: Soramichi AKIYAMA Cc: Alexander Shishkin Cc: Namhyung Kim Cc: Peter Zijlstra Fixes: bcf3145fbeb1 ("perf evlist: Enhance perf_evlist__start_workload()") Link: http://lkml.kernel.org/r/20170110200006.e1f7a766b4faf1f107ae2e1b@m.soramichi.jp [ Wasn't applying, fixed it up by hand, added Fixes: tag ] Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/evlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c index d92e020..23e6f33 100644 --- a/tools/perf/util/evlist.c +++ b/tools/perf/util/evlist.c @@ -1797,7 +1797,7 @@ int perf_evlist__start_workload(struct perf_evlist *evlist) */ ret = write(evlist->workload.cork_fd, &bf, 1); if (ret < 0) - perror("enable to write to pipe"); + perror("unable to write to pipe"); close(evlist->workload.cork_fd); return ret;