aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/perf_counter/builtin-report.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/perf_counter/builtin-report.c b/Documentation/perf_counter/builtin-report.c
index 82b62529e659..6003cc3b188d 100644
--- a/Documentation/perf_counter/builtin-report.c
+++ b/Documentation/perf_counter/builtin-report.c
@@ -893,6 +893,15 @@ process_event(event_t *event, unsigned long offset, unsigned long head)
893 case PERF_EVENT_COMM: 893 case PERF_EVENT_COMM:
894 return process_comm_event(event, offset, head); 894 return process_comm_event(event, offset, head);
895 895
896 /*
897 * We dont process them right now but they are fine:
898 */
899 case PERF_EVENT_MUNMAP:
900 case PERF_EVENT_PERIOD:
901 case PERF_EVENT_THROTTLE:
902 case PERF_EVENT_UNTHROTTLE:
903 return 0;
904
896 default: 905 default:
897 return -1; 906 return -1;
898 } 907 }