diff options
author | Stephane Eranian <eranian@google.com> | 2011-01-12 04:29:05 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-01-13 08:25:49 -0500 |
commit | 9710118bd4e7f3406865171cb9b9c94547c1c2f9 (patch) | |
tree | 8757556161f0d91c599c8039d906d7b9cbc42c8a /tools | |
parent | 4ad9f594d7199c99f6b1b3ef88c64bd5920a4592 (diff) |
perf sched: Fix list of events, dropping unsupported ':r' modifier
Looks to me like the :r modifier is not supported anymore, so remove it from
the list of events.
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Robert Richter <robert.richter@amd.com>
LKML-Reference: <AANLkTim=jawJyBj0iFd0r4-LCKzvjFW+NddzJMD5GUB9@mail.gmail.com>
Signed-off-by: Stephane Eranian <eranian@google.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/builtin-sched.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c index abd4b8497bc4..29e7ffd85690 100644 --- a/tools/perf/builtin-sched.c +++ b/tools/perf/builtin-sched.c | |||
@@ -1843,15 +1843,15 @@ static const char *record_args[] = { | |||
1843 | "-f", | 1843 | "-f", |
1844 | "-m", "1024", | 1844 | "-m", "1024", |
1845 | "-c", "1", | 1845 | "-c", "1", |
1846 | "-e", "sched:sched_switch:r", | 1846 | "-e", "sched:sched_switch", |
1847 | "-e", "sched:sched_stat_wait:r", | 1847 | "-e", "sched:sched_stat_wait", |
1848 | "-e", "sched:sched_stat_sleep:r", | 1848 | "-e", "sched:sched_stat_sleep", |
1849 | "-e", "sched:sched_stat_iowait:r", | 1849 | "-e", "sched:sched_stat_iowait", |
1850 | "-e", "sched:sched_stat_runtime:r", | 1850 | "-e", "sched:sched_stat_runtime", |
1851 | "-e", "sched:sched_process_exit:r", | 1851 | "-e", "sched:sched_process_exit", |
1852 | "-e", "sched:sched_process_fork:r", | 1852 | "-e", "sched:sched_process_fork", |
1853 | "-e", "sched:sched_wakeup:r", | 1853 | "-e", "sched:sched_wakeup", |
1854 | "-e", "sched:sched_migrate_task:r", | 1854 | "-e", "sched:sched_migrate_task", |
1855 | }; | 1855 | }; |
1856 | 1856 | ||
1857 | static int __cmd_record(int argc, const char **argv) | 1857 | static int __cmd_record(int argc, const char **argv) |