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

perf bpf-loader: Fix debugging message typo

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.

This one has information that is presented to the user, albeit in debug
mode.

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>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/20181203102200.GA104797@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Ingo Molnar and committed by
Arnaldo Carvalho de Melo
e4a8b0af 1a7ea328

+1 -1
+1 -1
tools/perf/util/bpf-loader.c
··· 99 99 if (err) 100 100 return ERR_PTR(-BPF_LOADER_ERRNO__COMPILE); 101 101 } else 102 - pr_debug("bpf: successfull builtin compilation\n"); 102 + pr_debug("bpf: successful builtin compilation\n"); 103 103 obj = bpf_object__open_buffer(obj_buf, obj_buf_sz, filename); 104 104 105 105 if (!IS_ERR_OR_NULL(obj) && llvm_param.dump_obj)