diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/design.txt | 2 | ||||
-rw-r--r-- | tools/perf/util/parse-events.c | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/design.txt b/tools/perf/design.txt index fdd42a824c98..f000c30877ac 100644 --- a/tools/perf/design.txt +++ b/tools/perf/design.txt | |||
@@ -137,6 +137,8 @@ enum sw_event_ids { | |||
137 | PERF_COUNT_SW_CPU_MIGRATIONS = 4, | 137 | PERF_COUNT_SW_CPU_MIGRATIONS = 4, |
138 | PERF_COUNT_SW_PAGE_FAULTS_MIN = 5, | 138 | PERF_COUNT_SW_PAGE_FAULTS_MIN = 5, |
139 | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6, | 139 | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6, |
140 | PERF_COUNT_SW_ALIGNMENT_FAULTS = 7, | ||
141 | PERF_COUNT_SW_EMULATION_FAULTS = 8, | ||
140 | }; | 142 | }; |
141 | 143 | ||
142 | Counters of the type PERF_TYPE_TRACEPOINT are available when the ftrace event | 144 | Counters of the type PERF_TYPE_TRACEPOINT are available when the ftrace event |
diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c index 8cfb48cbbea0..34bd84423933 100644 --- a/tools/perf/util/parse-events.c +++ b/tools/perf/util/parse-events.c | |||
@@ -46,6 +46,8 @@ static struct event_symbol event_symbols[] = { | |||
46 | { CSW(PAGE_FAULTS_MAJ), "major-faults", "" }, | 46 | { CSW(PAGE_FAULTS_MAJ), "major-faults", "" }, |
47 | { CSW(CONTEXT_SWITCHES), "context-switches", "cs" }, | 47 | { CSW(CONTEXT_SWITCHES), "context-switches", "cs" }, |
48 | { CSW(CPU_MIGRATIONS), "cpu-migrations", "migrations" }, | 48 | { CSW(CPU_MIGRATIONS), "cpu-migrations", "migrations" }, |
49 | { CSW(ALIGNMENT_FAULTS), "alignment-faults", "" }, | ||
50 | { CSW(EMULATION_FAULTS), "emulation-faults", "" }, | ||
49 | }; | 51 | }; |
50 | 52 | ||
51 | #define __PERF_EVENT_FIELD(config, name) \ | 53 | #define __PERF_EVENT_FIELD(config, name) \ |
@@ -74,6 +76,8 @@ static const char *sw_event_names[] = { | |||
74 | "CPU-migrations", | 76 | "CPU-migrations", |
75 | "minor-faults", | 77 | "minor-faults", |
76 | "major-faults", | 78 | "major-faults", |
79 | "alignment-faults", | ||
80 | "emulation-faults", | ||
77 | }; | 81 | }; |
78 | 82 | ||
79 | #define MAX_ALIASES 8 | 83 | #define MAX_ALIASES 8 |