perf tools: Remove repipe argument from perf_session__new()
The repipe argument is only used by perf inject and the all others passes 'false'. Let's remove it from the function signature and add __perf_session__new() to be called from perf inject directly. This is a preparation of the change the pipe input/output. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Acked-by: Jiri Olsa <jolsa@redhat.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Ian Rogers <irogers@google.com> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lore.kernel.org/lkml/20210719223153.1618812-2-namhyung@kernel.org [ Fixed up some trivial conflicts as this patchset fell thru the cracks ;-( ] Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
committed by
Arnaldo Carvalho de Melo
parent
880569296f
commit
2681bd85a4
@@ -1156,7 +1156,7 @@ static int check_file_brstack(void)
|
||||
int i;
|
||||
|
||||
data__for_each_file(i, d) {
|
||||
d->session = perf_session__new(&d->data, false, &pdiff.tool);
|
||||
d->session = perf_session__new(&d->data, &pdiff.tool);
|
||||
if (IS_ERR(d->session)) {
|
||||
pr_err("Failed to open %s\n", d->data.path);
|
||||
return PTR_ERR(d->session);
|
||||
@@ -1188,7 +1188,7 @@ static int __cmd_diff(void)
|
||||
ret = -EINVAL;
|
||||
|
||||
data__for_each_file(i, d) {
|
||||
d->session = perf_session__new(&d->data, false, &pdiff.tool);
|
||||
d->session = perf_session__new(&d->data, &pdiff.tool);
|
||||
if (IS_ERR(d->session)) {
|
||||
ret = PTR_ERR(d->session);
|
||||
pr_err("Failed to open %s\n", d->data.path);
|
||||
|
||||
Reference in New Issue
Block a user