diff options
author | Jiri Olsa <jolsa@kernel.org> | 2021-01-02 23:04:25 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2021-01-20 14:34:21 -0300 |
commit | e8b2db07810a0449cb754095c2d85cdfb39e3f57 (patch) | |
tree | c07361a9147ca2d21be64bad0cd4255af0331149 /tools/perf/util/config.h | |
parent | b2946282c02b4d4deb0f3b47db8131e9afbef624 (diff) | |
download | linux-stable-e8b2db07810a0449cb754095c2d85cdfb39e3f57.tar.gz linux-stable-e8b2db07810a0449cb754095c2d85cdfb39e3f57.tar.bz2 linux-stable-e8b2db07810a0449cb754095c2d85cdfb39e3f57.zip |
perf config: Make perf_config_global() global
Make perf_config_global global, it will be used outside the config.c
object in the following patches.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexei Budankov <abudankov@huawei.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lore.kernel.org/lkml/20210102220441.794923-7-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/config.h')
-rw-r--r-- | tools/perf/util/config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/config.h b/tools/perf/util/config.h index bf68e4acea73..2fd77aaff4d2 100644 --- a/tools/perf/util/config.h +++ b/tools/perf/util/config.h @@ -39,6 +39,7 @@ int config_error_nonbool(const char *); const char *perf_etc_perfconfig(void); const char *perf_home_perfconfig(void); int perf_config_system(void); +int perf_config_global(void); struct perf_config_set *perf_config_set__new(void); struct perf_config_set *perf_config_set__load_file(const char *file); |