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>

authored by Stephane Eranian and committed by Arnaldo Carvalho de Melo 9710118b 4ad9f594

+9 -9
+9 -9
tools/perf/builtin-sched.c
··· 1843 "-f", 1844 "-m", "1024", 1845 "-c", "1", 1846 - "-e", "sched:sched_switch:r", 1847 - "-e", "sched:sched_stat_wait:r", 1848 - "-e", "sched:sched_stat_sleep:r", 1849 - "-e", "sched:sched_stat_iowait:r", 1850 - "-e", "sched:sched_stat_runtime:r", 1851 - "-e", "sched:sched_process_exit:r", 1852 - "-e", "sched:sched_process_fork:r", 1853 - "-e", "sched:sched_wakeup:r", 1854 - "-e", "sched:sched_migrate_task:r", 1855 }; 1856 1857 static int __cmd_record(int argc, const char **argv)
··· 1843 "-f", 1844 "-m", "1024", 1845 "-c", "1", 1846 + "-e", "sched:sched_switch", 1847 + "-e", "sched:sched_stat_wait", 1848 + "-e", "sched:sched_stat_sleep", 1849 + "-e", "sched:sched_stat_iowait", 1850 + "-e", "sched:sched_stat_runtime", 1851 + "-e", "sched:sched_process_exit", 1852 + "-e", "sched:sched_process_fork", 1853 + "-e", "sched:sched_wakeup", 1854 + "-e", "sched:sched_migrate_task", 1855 }; 1856 1857 static int __cmd_record(int argc, const char **argv)