mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-22 06:32:08 +00:00
perf annotate: Fix -i option, which is currently ignored.
Assign input_name, received from program arguments, to file data structure. Signed-off-by: Martin Liska <mliska@suse.cz> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/55685654.2010209@suse.cz Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
f1942b96b4
commit
44848cdbbd
1 changed files with 2 additions and 1 deletions
|
@ -289,7 +289,6 @@ int cmd_annotate(int argc, const char **argv, const char *prefix __maybe_unused)
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
struct perf_data_file file = {
|
struct perf_data_file file = {
|
||||||
.path = input_name,
|
|
||||||
.mode = PERF_DATA_MODE_READ,
|
.mode = PERF_DATA_MODE_READ,
|
||||||
};
|
};
|
||||||
const struct option options[] = {
|
const struct option options[] = {
|
||||||
|
@ -346,6 +345,8 @@ int cmd_annotate(int argc, const char **argv, const char *prefix __maybe_unused)
|
||||||
else if (annotate.use_gtk)
|
else if (annotate.use_gtk)
|
||||||
use_browser = 2;
|
use_browser = 2;
|
||||||
|
|
||||||
|
file.path = input_name;
|
||||||
|
|
||||||
setup_browser(true);
|
setup_browser(true);
|
||||||
|
|
||||||
annotate.session = perf_session__new(&file, false, &annotate.tool);
|
annotate.session = perf_session__new(&file, false, &annotate.tool);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue