Commit 0895cf0a823e03ea6d79736611e90186006c805e

Authored by Kirill Smelkov
Committed by Ingo Molnar
1 parent b7cece7678

perf: Fix few typos + cosmetics

Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <1263396139-4798-2-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 2 changed files with 5 additions and 5 deletions Side-by-side Diff

tools/perf/Documentation/perf.txt
... ... @@ -12,7 +12,7 @@
12 12  
13 13 DESCRIPTION
14 14 -----------
15   -Performance counters for Linux are are a new kernel-based subsystem
  15 +Performance counters for Linux are a new kernel-based subsystem
16 16 that provide a framework for all things performance analysis. It
17 17 covers hardware level (CPU/PMU, Performance Monitoring Unit) features
18 18 and software features (software counters, tracepoints) as well.
tools/perf/design.txt
... ... @@ -101,10 +101,10 @@
101 101 */
102 102 PERF_COUNT_HW_CPU_CYCLES = 0,
103 103 PERF_COUNT_HW_INSTRUCTIONS = 1,
104   - PERF_COUNT_HW_CACHE_REFERENCES = 2,
  104 + PERF_COUNT_HW_CACHE_REFERENCES = 2,
105 105 PERF_COUNT_HW_CACHE_MISSES = 3,
106 106 PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4,
107   - PERF_COUNT_HW_BRANCH_MISSES = 5,
  107 + PERF_COUNT_HW_BRANCH_MISSES = 5,
108 108 PERF_COUNT_HW_BUS_CYCLES = 6,
109 109 };
110 110  
... ... @@ -131,8 +131,8 @@
131 131 */
132 132 enum sw_event_ids {
133 133 PERF_COUNT_SW_CPU_CLOCK = 0,
134   - PERF_COUNT_SW_TASK_CLOCK = 1,
135   - PERF_COUNT_SW_PAGE_FAULTS = 2,
  134 + PERF_COUNT_SW_TASK_CLOCK = 1,
  135 + PERF_COUNT_SW_PAGE_FAULTS = 2,
136 136 PERF_COUNT_SW_CONTEXT_SWITCHES = 3,
137 137 PERF_COUNT_SW_CPU_MIGRATIONS = 4,
138 138 PERF_COUNT_SW_PAGE_FAULTS_MIN = 5,