aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2012-10-01 14:20:58 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-10-02 17:36:41 -0400
commit002439e84ed67cbb33cab4057fcd6a4146c0f815 (patch)
tree5d1f6083aabe07f2fbf917977d09b1b0b567aa4e /tools/perf
parent61eaa3be152afcbfb862a10f81341f96371c3ce3 (diff)
perf inject: Don't use globals where not needed to
Some variables were global but used in just one function, so move it to where it belongs. Leftover from patch at the beggining of this series. Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-9cer20zhw64wbxyb0zias82i@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/builtin-inject.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/tools/perf/builtin-inject.c b/tools/perf/builtin-inject.c
index 3c9ab55f49e6..4688bea95c12 100644
--- a/tools/perf/builtin-inject.c
+++ b/tools/perf/builtin-inject.c
@@ -242,11 +242,6 @@ static int __cmd_inject(struct perf_inject *inject)
242 return ret; 242 return ret;
243} 243}
244 244
245static const char * const report_usage[] = {
246 "perf inject [<options>]",
247 NULL
248};
249
250int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused) 245int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
251{ 246{
252 struct perf_inject inject = { 247 struct perf_inject inject = {
@@ -273,14 +268,18 @@ int cmd_inject(int argc, const char **argv, const char *prefix __maybe_unused)
273 "be more verbose (show build ids, etc)"), 268 "be more verbose (show build ids, etc)"),
274 OPT_END() 269 OPT_END()
275 }; 270 };
271 const char * const inject_usage[] = {
272 "perf inject [<options>]",
273 NULL
274 };
276 275
277 argc = parse_options(argc, argv, options, report_usage, 0); 276 argc = parse_options(argc, argv, options, inject_usage, 0);
278 277
279 /* 278 /*
280 * Any (unrecognized) arguments left? 279 * Any (unrecognized) arguments left?
281 */ 280 */
282 if (argc) 281 if (argc)
283 usage_with_options(report_usage, options); 282 usage_with_options(inject_usage, options);
284 283
285 if (symbol__init() < 0) 284 if (symbol__init() < 0)
286 return -1; 285 return -1;