aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/perf/util/evlist.c
diff options
context:
space:
mode:
authorSoramichi Akiyama <akiyama@m.soramichi.jp>2017-01-10 10:41:00 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2017-01-11 16:48:01 -0300
commite978be9ea2990f1af60fe10eadd2312a6250e0b8 (patch)
treec67c484a58d4dfd4363b646e884f7632caab9f32 /tools/perf/util/evlist.c
parentperf trace: Allow specifying list of syscalls and events in -e/--expr/--event (diff)
downloadwireguard-linux-e978be9ea2990f1af60fe10eadd2312a6250e0b8.tar.xz
wireguard-linux-e978be9ea2990f1af60fe10eadd2312a6250e0b8.zip
perf evlist: Fix typo in perf_evlist__start_workload()
This patch fixes a typo: s/enable to/unable to/ Signed-off-by: Soramichi AKIYAMA <akiyama@m.soramichi.jp> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Namhyung Kim <namhyung.kim@lge.com> Cc: Peter Zijlstra <peterz@infradead.org> 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 <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/evlist.c')
-rw-r--r--tools/perf/util/evlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c
index d92e02006fb8..23e6f33edcf2 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;