Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf config: Make perf_config_system() global

Make perf_config_system 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-6-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Jiri Olsa and committed by
Arnaldo Carvalho de Melo
b2946282 f5f03e19

+2 -1
+1 -1
tools/perf/util/config.c
··· 521 521 return v ? perf_config_bool(k, v) : def; 522 522 } 523 523 524 - static int perf_config_system(void) 524 + int perf_config_system(void) 525 525 { 526 526 return !perf_env_bool("PERF_CONFIG_NOSYSTEM", 0); 527 527 }
+1
tools/perf/util/config.h
··· 38 38 int config_error_nonbool(const char *); 39 39 const char *perf_etc_perfconfig(void); 40 40 const char *perf_home_perfconfig(void); 41 + int perf_config_system(void); 41 42 42 43 struct perf_config_set *perf_config_set__new(void); 43 44 struct perf_config_set *perf_config_set__load_file(const char *file);