diff options
Diffstat (limited to 'tools/perf/builtin-sched.c')
-rw-r--r-- | tools/perf/builtin-sched.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c index ede40c1429a8..8db0fd222f80 100644 --- a/tools/perf/builtin-sched.c +++ b/tools/perf/builtin-sched.c | |||
@@ -1597,7 +1597,7 @@ more: | |||
1597 | } | 1597 | } |
1598 | 1598 | ||
1599 | static const char * const sched_usage[] = { | 1599 | static const char * const sched_usage[] = { |
1600 | "perf sched [<options>] {record|latency|replay}", | 1600 | "perf sched [<options>] {record|latency|replay|trace}", |
1601 | NULL | 1601 | NULL |
1602 | }; | 1602 | }; |
1603 | 1603 | ||
@@ -1719,6 +1719,11 @@ int cmd_sched(int argc, const char **argv, const char *prefix __used) | |||
1719 | usage_with_options(replay_usage, replay_options); | 1719 | usage_with_options(replay_usage, replay_options); |
1720 | } | 1720 | } |
1721 | __cmd_replay(); | 1721 | __cmd_replay(); |
1722 | } else if (!strcmp(argv[0], "trace")) { | ||
1723 | /* | ||
1724 | * Aliased to 'perf trace' for now: | ||
1725 | */ | ||
1726 | return cmd_trace(argc, argv, prefix); | ||
1722 | } else { | 1727 | } else { |
1723 | usage_with_options(sched_usage, sched_options); | 1728 | usage_with_options(sched_usage, sched_options); |
1724 | } | 1729 | } |