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


Groups > linux.kernel > #1638043 > unrolled thread

[PATCH v3 3/7] perf config: Return -1 if show_spec_config() cannot show the config

Started byTaeung Song <treeze.taeung@gmail.com>
First post2017-05-09 13:10 +0200
Last post2017-05-09 13:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH v3 3/7] perf config: Return -1 if show_spec_config() cannot show the config Taeung Song <treeze.taeung@gmail.com> - 2017-05-09 13:10 +0200

#1638043 — [PATCH v3 3/7] perf config: Return -1 if show_spec_config() cannot show the config

FromTaeung Song <treeze.taeung@gmail.com>
Date2017-05-09 13:10 +0200
Subject[PATCH v3 3/7] perf config: Return -1 if show_spec_config() cannot show the config
Message-ID<tFbbI-TA-15@gated-at.bofh.it>
If the config isn't found in the config set,
show_spec_config() cannot show the config.
But it return 0 on the situation though, so fix it.

Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
---
 tools/perf/builtin-config.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/builtin-config.c b/tools/perf/builtin-config.c
index ece4558..6a4d8cd 100644
--- a/tools/perf/builtin-config.c
+++ b/tools/perf/builtin-config.c
@@ -97,7 +97,7 @@ static int show_spec_config(struct perf_config_set *set, const char *var)
 		}
 	}
 
-	return 0;
+	return -1;
 }
 
 static int show_config(struct perf_config_set *set)
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web