aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2011-10-12 09:07:49 +0200
committerIngo Molnar <mingo@elte.hu>2011-10-12 09:07:49 +0200
commit177e2163fe2a5951c1d0531baa4bc1f135c6b7b4 (patch)
tree11c50db259bace9d4bf71ed9449c43d2eaaf01ae /tools
parentMerge branch 'perf/core' of git://github.com/acmel/linux into perf/core (diff)
parentperf probe: Fix to show correct error string (diff)
downloadlinux-dev-177e2163fe2a5951c1d0531baa4bc1f135c6b7b4.tar.xz
linux-dev-177e2163fe2a5951c1d0531baa4bc1f135c6b7b4.zip
Merge branch 'tip/perf/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace into perf/core
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/probe-event.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c
index 1c7bfa5fe0a8..eb25900e2211 100644
--- a/tools/perf/util/probe-event.c
+++ b/tools/perf/util/probe-event.c
@@ -1956,8 +1956,10 @@ static int __del_trace_probe_event(int fd, struct str_node *ent)
pr_debug("Writing event: %s\n", buf);
ret = write(fd, buf, strlen(buf));
- if (ret < 0)
+ if (ret < 0) {
+ ret = -errno;
goto error;
+ }
printf("Remove event: %s\n", ent->s);
return 0;