Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tools/perf: Fix misspellings in comments.

Signed-off-by: Adam Buchbinder <adam.buchbinder@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Adam Buchbinder and committed by
Jiri Kosina
bd1a0be5 014b38ec

+5 -5
+1 -1
tools/perf/tests/openat-syscall-all-cpus.c
··· 73 73 } 74 74 75 75 /* 76 - * Here we need to explicitely preallocate the counts, as if 76 + * Here we need to explicitly preallocate the counts, as if 77 77 * we use the auto allocation it will allocate just for 1 cpu, 78 78 * as we start by cpu 0. 79 79 */
+1 -1
tools/perf/util/evsel.c
··· 826 826 perf_evsel__set_sample_bit(evsel, PERIOD); 827 827 828 828 /* 829 - * When the user explicitely disabled time don't force it here. 829 + * When the user explicitly disabled time don't force it here. 830 830 */ 831 831 if (opts->sample_time && 832 832 (!perf_missing_features.sample_id_all &&
+1 -1
tools/perf/util/machine.c
··· 361 361 } 362 362 363 363 /* 364 - * Caller must eventually drop thread->refcnt returned with a successfull 364 + * Caller must eventually drop thread->refcnt returned with a successful 365 365 * lookup/new thread inserted. 366 366 */ 367 367 static struct thread *____machine__findnew_thread(struct machine *machine,
+1 -1
tools/perf/util/parse-events.c
··· 1649 1649 1650 1650 buf = _buf; 1651 1651 1652 - /* We're cutting from the beggining. */ 1652 + /* We're cutting from the beginning. */ 1653 1653 if (err->idx > max_err_idx) 1654 1654 cut = err->idx - max_err_idx; 1655 1655
+1 -1
tools/perf/util/session.c
··· 555 555 556 556 /* 557 557 * XXX this is hack in attempt to carry flags bitfield 558 - * throught endian village. ABI says: 558 + * through endian village. ABI says: 559 559 * 560 560 * Bit-fields are allocated from right to left (least to most significant) 561 561 * on little-endian implementations and from left to right (most to least