Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1468950
| From | Arnaldo Carvalho de Melo <acme@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 35/35] perf record: Fix spelling mistake "Finshed" -> "Finished" |
| Date | 2016-08-24 00:30 +0200 |
| Message-ID | <s9smK-1Jr-7@gated-at.bofh.it> (permalink) |
| References | <s9r7j-ZT-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Colin Ian King <colin.king@canonical.com>
Trivial fix to spelling mistake in pr_debug message.
Signed-off-by: Colin King <colin.king@canonical.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20160822183008.26368-1-colin.king@canonical.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/builtin-record.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
index a3792e8c3e03..03251c7f14ec 100644
--- a/tools/perf/builtin-record.c
+++ b/tools/perf/builtin-record.c
@@ -96,7 +96,7 @@ backward_rb_find_range(void *buf, int mask, u64 head, u64 *start, u64 *end)
*start = head;
while (true) {
if (evt_head - head >= (unsigned int)size) {
- pr_debug("Finshed reading backward ring buffer: rewind\n");
+ pr_debug("Finished reading backward ring buffer: rewind\n");
if (evt_head - head > (unsigned int)size)
evt_head -= pheader->size;
*end = evt_head;
@@ -106,7 +106,7 @@ backward_rb_find_range(void *buf, int mask, u64 head, u64 *start, u64 *end)
pheader = (struct perf_event_header *)(buf + (evt_head & mask));
if (pheader->size == 0) {
- pr_debug("Finshed reading backward ring buffer: get start\n");
+ pr_debug("Finished reading backward ring buffer: get start\n");
*end = evt_head;
return 0;
}
--
2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[GIT PULL 00/35] perf/core improvements and fixes Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-23 23:10 +0200 [PATCH 10/35] perf kvm: Use NSEC_PER_USEC Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-23 23:50 +0200 [PATCH 11/35] perf bench futex: Use NSEC_PER_USEC Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-23 23:50 +0200 [PATCH 12/35] perf top: Use MSEC_PER_SEC Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-23 23:50 +0200 [PATCH 01/35] tools: Introduce tools/include/linux/time64.h for *SEC_PER_*SEC macros Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-23 23:50 +0200 [PATCH 34/35] perf bpf: Fix typo: "ehough" -> "enough" Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 17/35] perf hists: Add support for header span Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 23/35] perf tools: Use __weak definition from linux/compiler.h Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 09/35] perf record: Use USEC_PER_MSEC Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 22/35] perf report: Allow configuring the default sort order in ~/.perfconfig Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 27/35] ftrace: probe: Add README entries for k/uprobe-events Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 14/35] perf hists: Add line argument into perf_hpp_fmt's header callback Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 21/35] tools: Copy coresight-pmu.h header file needed by perf tools Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 32/35] perf tools: Fix typo: "ehough" -> "enough" Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 02/35] perf bench numa: Use NSEC_PER_U?SEC Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 29/35] perf probe: Support hexadecimal casting Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 04/35] perf timechart: Use NSEC_PER_U?SEC Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 18/35] perf disassemble: Move check for kallsyms + !kcore Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 08/35] perf bench sched-messaging: Use USEC_PER_MSEC Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 33/35] perf test bpf: Fix typo: "ehough" -> "enough" Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 31/35] ftrace: kprobe: uprobe: Show u8/u16/u32/u64 types in decimal Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 15/35] perf tools tui: Display multiple header lines Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 05/35] perf bench sched-pipe: Use linux/time64.h, USEC_PER_SEC Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:00 +0200 [PATCH 35/35] perf record: Fix spelling mistake "Finshed" -> "Finished" Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 00:30 +0200 [PATCH 03/35] perf sched: Use linux/time64.h Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:00 +0200 [PATCH 06/35] perf stat: Use *SEC_PER_*SEC macros Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:00 +0200 [PATCH 16/35] perf tools stdio: Display multiple header lines Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:00 +0200 [PATCH 25/35] perf hists browser: Remove superfluous null check on map Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:10 +0200 [PATCH 07/35] perf bench mem: Use USEC_PER_SEC Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:10 +0200 [PATCH 20/35] perf disassemble: Extract logic to find file to pass to objdump to a separate function Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:10 +0200 [PATCH 19/35] perf disassemble: Simplify logic for picking the filename to disassemble Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:10 +0200 [PATCH 24/35] perf tools: Skip running the feature tests for 'make install-doc' Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:10 +0200 [PATCH 13/35] perf hists: Introduce nr_header_lines into struct perf_hpp_list Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:10 +0200 [PATCH 30/35] perf probe: Use hexadecimal type by default if possible Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-08-24 01:20 +0200 Re: [GIT PULL 00/35] perf/core improvements and fixes Ingo Molnar <mingo@kernel.org> - 2016-08-24 11:10 +0200
csiph-web