diff options
Diffstat (limited to 'tools/perf/builtin-inject.c')
-rw-r--r-- | tools/perf/builtin-inject.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tools/perf/builtin-inject.c b/tools/perf/builtin-inject.c index 9bb1f35d5cb7..24086b7f1b14 100644 --- a/tools/perf/builtin-inject.c +++ b/tools/perf/builtin-inject.c | |||
@@ -770,10 +770,8 @@ int cmd_inject(int argc, const char **argv) | |||
770 | .input_name = "-", | 770 | .input_name = "-", |
771 | .samples = LIST_HEAD_INIT(inject.samples), | 771 | .samples = LIST_HEAD_INIT(inject.samples), |
772 | .output = { | 772 | .output = { |
773 | .file = { | 773 | .path = "-", |
774 | .path = "-", | 774 | .mode = PERF_DATA_MODE_WRITE, |
775 | }, | ||
776 | .mode = PERF_DATA_MODE_WRITE, | ||
777 | }, | 775 | }, |
778 | }; | 776 | }; |
779 | struct perf_data data = { | 777 | struct perf_data data = { |
@@ -786,7 +784,7 @@ int cmd_inject(int argc, const char **argv) | |||
786 | "Inject build-ids into the output stream"), | 784 | "Inject build-ids into the output stream"), |
787 | OPT_STRING('i', "input", &inject.input_name, "file", | 785 | OPT_STRING('i', "input", &inject.input_name, "file", |
788 | "input file name"), | 786 | "input file name"), |
789 | OPT_STRING('o', "output", &inject.output.file.path, "file", | 787 | OPT_STRING('o', "output", &inject.output.path, "file", |
790 | "output file name"), | 788 | "output file name"), |
791 | OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat, | 789 | OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat, |
792 | "Merge sched-stat and sched-switch for getting events " | 790 | "Merge sched-stat and sched-switch for getting events " |
@@ -834,7 +832,7 @@ int cmd_inject(int argc, const char **argv) | |||
834 | 832 | ||
835 | inject.tool.ordered_events = inject.sched_stat; | 833 | inject.tool.ordered_events = inject.sched_stat; |
836 | 834 | ||
837 | data.file.path = inject.input_name; | 835 | data.path = inject.input_name; |
838 | inject.session = perf_session__new(&data, true, &inject.tool); | 836 | inject.session = perf_session__new(&data, true, &inject.tool); |
839 | if (inject.session == NULL) | 837 | if (inject.session == NULL) |
840 | return -1; | 838 | return -1; |