forked from Minki/linux
perf auxtrace: Remove auxtrace_mmap_params__set_idx() per_cpu parameter
Remove auxtrace_mmap_params__set_idx() per_cpu parameter because it isn't needed. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Acked-by: Ian Rogers <irogers@google.com> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Alexey Bayduraev <alexey.v.bayduraev@linux.intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Leo Yan <leo.yan@linaro.org> Link: https://lore.kernel.org/r/20220524075436.29144-4-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
d01508f2df
commit
84bd5aba88
@ -169,9 +169,10 @@ void auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp,
|
||||
|
||||
void auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp,
|
||||
struct evlist *evlist,
|
||||
struct evsel *evsel, int idx,
|
||||
bool per_cpu)
|
||||
struct evsel *evsel, int idx)
|
||||
{
|
||||
bool per_cpu = !perf_cpu_map__empty(evlist->core.user_requested_cpus);
|
||||
|
||||
mp->mmap_needed = evsel->needs_auxtrace_mmap;
|
||||
|
||||
if (!mp->mmap_needed)
|
||||
|
@ -496,8 +496,7 @@ void auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp,
|
||||
bool auxtrace_overwrite);
|
||||
void auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp,
|
||||
struct evlist *evlist,
|
||||
struct evsel *evsel, int idx,
|
||||
bool per_cpu);
|
||||
struct evsel *evsel, int idx);
|
||||
|
||||
typedef int (*process_auxtrace_t)(struct perf_tool *tool,
|
||||
struct mmap *map,
|
||||
@ -870,8 +869,7 @@ void auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp,
|
||||
bool auxtrace_overwrite);
|
||||
void auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp,
|
||||
struct evlist *evlist,
|
||||
struct evsel *evsel, int idx,
|
||||
bool per_cpu);
|
||||
struct evsel *evsel, int idx);
|
||||
|
||||
#define ITRACE_HELP ""
|
||||
|
||||
|
@ -753,10 +753,9 @@ perf_evlist__mmap_cb_idx(struct perf_evlist *_evlist,
|
||||
{
|
||||
struct evlist *evlist = container_of(_evlist, struct evlist, core);
|
||||
struct mmap_params *mp = container_of(_mp, struct mmap_params, core);
|
||||
bool per_cpu = !perf_cpu_map__empty(_evlist->user_requested_cpus);
|
||||
struct evsel *evsel = container_of(_evsel, struct evsel, core);
|
||||
|
||||
auxtrace_mmap_params__set_idx(&mp->auxtrace_mp, evlist, evsel, idx, per_cpu);
|
||||
auxtrace_mmap_params__set_idx(&mp->auxtrace_mp, evlist, evsel, idx);
|
||||
}
|
||||
|
||||
static struct perf_mmap*
|
||||
|
@ -63,8 +63,7 @@ void __weak auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp __maybe_u
|
||||
void __weak auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp __maybe_unused,
|
||||
struct evlist *evlist __maybe_unused,
|
||||
struct evsel *evsel __maybe_unused,
|
||||
int idx __maybe_unused,
|
||||
bool per_cpu __maybe_unused)
|
||||
int idx __maybe_unused)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user