projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d8afb5
)
perf script: Make some lists static
author
Arnaldo Carvalho de Melo
<
[email protected]
>
Tue, 4 Jan 2011 18:32:52 +0000
(16:32 -0200)
committer
Arnaldo Carvalho de Melo
<
[email protected]
>
Wed, 5 Jan 2011 16:53:59 +0000
(14:53 -0200)
Not accessed outside builtin-script, so make them static.
Cc: Frederic Weisbecker <
[email protected]
>
Cc: Ingo Molnar <
[email protected]
>
Cc: Mike Galbraith <
[email protected]
>
Cc: Paul Mackerras <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Cc: Stephane Eranian <
[email protected]
>
Cc: Tom Zanussi <
[email protected]
>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <
[email protected]
>
tools/perf/builtin-script.c
patch
|
blob
|
history
diff --git
a/tools/perf/builtin-script.c
b/tools/perf/builtin-script.c
index 27d568daac775ea8207b1c2c446e3ef69759d913..150a606002eb7b4eb281e69c9c8287eed1931077 100644
(file)
--- a/
tools/perf/builtin-script.c
+++ b/
tools/perf/builtin-script.c
@@
-137,7
+137,7
@@
struct script_spec {
char spec[0];
};
-LIST_HEAD(script_specs);
+
static
LIST_HEAD(script_specs);
static struct script_spec *script_spec__new(const char *spec,
struct scripting_ops *ops)
@@
-319,7
+319,7
@@
struct script_desc {
char *args;
};
-LIST_HEAD(script_descs);
+
static
LIST_HEAD(script_descs);
static struct script_desc *script_desc__new(const char *name)
{