OSDN Git Service

perf tools: Fix diverse comment typos
authorIngo Molnar <mingo@kernel.org>
Mon, 3 Dec 2018 10:22:00 +0000 (11:22 +0100)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 17 Dec 2018 17:56:47 +0000 (14:56 -0300)
Go over the tools/ files that are maintained in Arnaldo's tree and
fix common typos: half of them were in comments, the other half
in JSON files.

No change in functionality intended.

Committer notes:

This was split from a larger patch as there are code that is,
additionally, maintained outside the kernel tree, so to ease
cherry-picking and/or backporting, split this into multiple patches.

Just typos in comments, no need to backport, reducing the possibility of
possible backporting artifacts.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20181203102200.GA104797@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/arch/x86/tests/insn-x86.c
tools/perf/builtin-top.c
tools/perf/builtin-trace.c
tools/perf/tests/attr.c
tools/perf/util/annotate.c
tools/perf/util/header.c
tools/perf/util/hist.c
tools/perf/util/jitdump.c
tools/perf/util/machine.c
tools/perf/util/probe-event.c
tools/perf/util/sort.c

index a5d24ae..c3e5f4a 100644 (file)
@@ -170,7 +170,7 @@ static int test_data_set(struct test_data *dat_set, int x86_64)
  *
  * If the test passes %0 is returned, otherwise %-1 is returned.  Use the
  * verbose (-v) option to see all the instructions and whether or not they
- * decoded successfuly.
+ * decoded successfully.
  */
 int test__insn_x86(struct test *test __maybe_unused, int subtest __maybe_unused)
 {
index 1252d17..c59a3eb 100644 (file)
@@ -595,7 +595,7 @@ static void *display_thread_tui(void *arg)
 
        /*
         * Initialize the uid_filter_str, in the future the TUI will allow
-        * Zooming in/out UIDs. For now juse use whatever the user passed
+        * Zooming in/out UIDs. For now just use whatever the user passed
         * via --uid.
         */
        evlist__for_each_entry(top->evlist, pos) {
index a57a9ae..a6aa458 100644 (file)
@@ -2782,7 +2782,7 @@ static int trace__run(struct trace *trace, int argc, const char **argv)
         * Now that we already used evsel->attr to ask the kernel to setup the
         * events, lets reuse evsel->attr.sample_max_stack as the limit in
         * trace__resolve_callchain(), allowing per-event max-stack settings
-        * to override an explicitely set --max-stack global setting.
+        * to override an explicitly set --max-stack global setting.
         */
        evlist__for_each_entry(evlist, evsel) {
                if (evsel__has_callchain(evsel) &&
index 05dfe11..d842654 100644 (file)
@@ -182,7 +182,7 @@ int test__attr(struct test *test __maybe_unused, int subtest __maybe_unused)
        char path_perf[PATH_MAX];
        char path_dir[PATH_MAX];
 
-       /* First try developement tree tests. */
+       /* First try development tree tests. */
        if (!lstat("./tests", &st))
                return run_dir("./tests", "./perf");
 
index f69d8e1..51d291b 100644 (file)
@@ -1772,7 +1772,7 @@ static int symbol__disassemble(struct symbol *sym, struct annotate_args *args)
        while (!feof(file)) {
                /*
                 * The source code line number (lineno) needs to be kept in
-                * accross calls to symbol__parse_objdump_line(), so that it
+                * across calls to symbol__parse_objdump_line(), so that it
                 * can associate it with the instructions till the next one.
                 * See disasm_line__new() and struct disasm_line::line_nr.
                 */
index 9cc81d4..4a64739 100644 (file)
@@ -2798,7 +2798,7 @@ static int perf_header__adds_write(struct perf_header *header,
        lseek(fd, sec_start, SEEK_SET);
        /*
         * may write more than needed due to dropped feature, but
-        * this is okay, reader will skip the mising entries
+        * this is okay, reader will skip the missing entries
         */
        err = do_write(&ff, feat_sec, sec_size);
        if (err < 0)
index 828cb97..8aad833 100644 (file)
@@ -1160,7 +1160,7 @@ void hist_entry__delete(struct hist_entry *he)
 
 /*
  * If this is not the last column, then we need to pad it according to the
- * pre-calculated max lenght for this column, otherwise don't bother adding
+ * pre-calculated max length for this column, otherwise don't bother adding
  * spaces because that would break viewing this with, for instance, 'less',
  * that would show tons of trailing spaces when a long C++ demangled method
  * names is sampled.
index a186300..bf24955 100644 (file)
@@ -38,7 +38,7 @@ struct jit_buf_desc {
        uint64_t         sample_type;
        size_t           bufsize;
        FILE             *in;
-       bool             needs_bswap; /* handles cross-endianess */
+       bool             needs_bswap; /* handles cross-endianness */
        bool             use_arch_timestamp;
        void             *debug_data;
        void             *unwinding_data;
index 9397e3f..d130920 100644 (file)
@@ -137,7 +137,7 @@ struct machine *machine__new_kallsyms(void)
        struct machine *machine = machine__new_host();
        /*
         * FIXME:
-        * 1) We should switch to machine__load_kallsyms(), i.e. not explicitely
+        * 1) We should switch to machine__load_kallsyms(), i.e. not explicitly
         *    ask for not using the kcore parsing code, once this one is fixed
         *    to create a map per module.
         */
index e86f8be..18a59fb 100644 (file)
@@ -692,7 +692,7 @@ static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
                return ret;
 
        for (i = 0; i < ntevs && ret >= 0; i++) {
-               /* point.address is the addres of point.symbol + point.offset */
+               /* point.address is the address of point.symbol + point.offset */
                tevs[i].point.address -= stext;
                tevs[i].point.module = strdup(exec);
                if (!tevs[i].point.module) {
@@ -3062,7 +3062,7 @@ static int try_to_find_absolute_address(struct perf_probe_event *pev,
        /*
         * Give it a '0x' leading symbol name.
         * In __add_probe_trace_events, a NULL symbol is interpreted as
-        * invalud.
+        * invalid.
         */
        if (asprintf(&tp->symbol, "0x%lx", tp->address) < 0)
                goto errout;
index 0477935..6c1a837 100644 (file)
@@ -37,7 +37,7 @@ enum sort_mode        sort__mode = SORT_MODE__NORMAL;
  * -t, --field-separator
  *
  * option, that uses a special separator character and don't pad with spaces,
- * replacing all occurances of this separator in symbol names (and other
+ * replacing all occurrences of this separator in symbol names (and other
  * output) with a '.' character, that thus it's the only non valid separator.
 */
 static int repsep_snprintf(char *bf, size_t size, const char *fmt, ...)