dect
/
linux-2.6
Archived
13
0
Fork 0

perf script: Make some lists static

Not accessed outside builtin-script, so make them static.

Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2011-01-04 16:32:52 -02:00
parent 6d8afb5630
commit eccdfe2d24
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{