Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1680378 > unrolled thread

[PATCH 02/15] perf tests attr: Do not store failed events

Started byJiri Olsa <jolsa@kernel.org>
First post2017-07-03 17:00 +0200
Last post2017-07-03 17:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 02/15] perf tests attr: Do not store failed events Jiri Olsa <jolsa@kernel.org> - 2017-07-03 17:00 +0200

#1680378 — [PATCH 02/15] perf tests attr: Do not store failed events

FromJiri Olsa <jolsa@kernel.org>
Date2017-07-03 17:00 +0200
Subject[PATCH 02/15] perf tests attr: Do not store failed events
Message-ID<tZaZu-2UC-87@gated-at.bofh.it>
Do not mess up our temp space with files we don't
need - failed event open attempts.

Link: http://lkml.kernel.org/n/tip-gfmm0o2bidc41umvecbtsf36@git.kernel.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
---
 tools/perf/tests/attr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/tests/attr.c b/tools/perf/tests/attr.c
index 0e77b2cf61ec..08b1d5ce9020 100644
--- a/tools/perf/tests/attr.c
+++ b/tools/perf/tests/attr.c
@@ -136,7 +136,7 @@ void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu,
 {
 	int errno_saved = errno;
 
-	if (store_event(attr, pid, cpu, fd, group_fd, flags)) {
+	if ((fd != -1) && store_event(attr, pid, cpu, fd, group_fd, flags)) {
 		pr_err("test attr FAILED");
 		exit(128);
 	}
-- 
2.9.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web