mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
libbpf: Fix spelling mistake "kallasyms" -> "kallsyms"
There is a spelling mistake in a pr_warn message. Fix it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Andrii Nakryiko <andriin@fb.com> Link: https://lore.kernel.org/bpf/20200623084207.149253-1-colin.king@canonical.com
This commit is contained in:
parent
54b66c2255
commit
135c783f47
1 changed files with 1 additions and 1 deletions
|
@ -5741,7 +5741,7 @@ static int bpf_object__read_kallsyms_file(struct bpf_object *obj)
|
|||
if (ret == EOF && feof(f))
|
||||
break;
|
||||
if (ret != 3) {
|
||||
pr_warn("failed to read kallasyms entry: %d\n", ret);
|
||||
pr_warn("failed to read kallsyms entry: %d\n", ret);
|
||||
err = -EINVAL;
|
||||
goto out;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue