perf record: Fix spelling mistake "Finshed" -> "Finished"
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>
This commit is contained in:
parent
c77ce225d5
commit
5e30d55c71
@ -96,7 +96,7 @@ backward_rb_find_range(void *buf, int mask, u64 head, u64 *start, u64 *end)
|
|||||||
*start = head;
|
*start = head;
|
||||||
while (true) {
|
while (true) {
|
||||||
if (evt_head - head >= (unsigned int)size) {
|
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)
|
if (evt_head - head > (unsigned int)size)
|
||||||
evt_head -= pheader->size;
|
evt_head -= pheader->size;
|
||||||
*end = evt_head;
|
*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));
|
pheader = (struct perf_event_header *)(buf + (evt_head & mask));
|
||||||
|
|
||||||
if (pheader->size == 0) {
|
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;
|
*end = evt_head;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user