summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/progs/test_subprogs.c
diff options
context:
space:
mode:
authorTaichi Nishimura <awkrail01@gmail.com>2023-02-16 17:55:37 +0900
committerAndrii Nakryiko <andrii@kernel.org>2023-02-16 16:56:17 -0800
commitdf71a42cc37a44cdc7682f57aecf14ff44391eed (patch)
tree08187f8129d2193cf6e8922ef9d8528f83d49047 /tools/testing/selftests/bpf/progs/test_subprogs.c
parentc5a237a4db21ca7a28518c994def39d7bd62a0d1 (diff)
downloadlinux-stable-df71a42cc37a44cdc7682f57aecf14ff44391eed.tar.gz
linux-stable-df71a42cc37a44cdc7682f57aecf14ff44391eed.tar.bz2
linux-stable-df71a42cc37a44cdc7682f57aecf14ff44391eed.zip
Fix typos in selftest/bpf files
Run spell checker on files in selftest/bpf and fixed typos. Signed-off-by: Taichi Nishimura <awkrail01@gmail.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Reviewed-by: Randy Dunlap <rdunlap@infradead.org> Link: https://lore.kernel.org/bpf/20230216085537.519062-1-awkrail01@gmail.com
Diffstat (limited to 'tools/testing/selftests/bpf/progs/test_subprogs.c')
-rw-r--r--tools/testing/selftests/bpf/progs/test_subprogs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/progs/test_subprogs.c b/tools/testing/selftests/bpf/progs/test_subprogs.c
index f8e9256cf18d..a8d602d7c88a 100644
--- a/tools/testing/selftests/bpf/progs/test_subprogs.c
+++ b/tools/testing/selftests/bpf/progs/test_subprogs.c
@@ -47,7 +47,7 @@ static __noinline int sub5(int v)
return sub1(v) - 1; /* compensates sub1()'s + 1 */
}
-/* unfortunately verifier rejects `struct task_struct *t` as an unkown pointer
+/* unfortunately verifier rejects `struct task_struct *t` as an unknown pointer
* type, so we need to accept pointer as integer and then cast it inside the
* function
*/