projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba3b86b
)
kernel/bpf/: Fix misspellings using codespell tool
author
Liu xuzhi
<liu.xuzhi@zte.com.cn>
Thu, 11 Mar 2021 12:31:03 +0000
(
04:31
-0800)
committer
Alexei Starovoitov
<ast@kernel.org>
Tue, 16 Mar 2021 19:22:20 +0000
(12:22 -0700)
A typo is found out by codespell tool in 34th lines of hashtab.c:
$ codespell ./kernel/bpf/
./hashtab.c:34 : differrent ==> different
Fix a typo found by codespell.
Signed-off-by: Liu xuzhi <liu.xuzhi@zte.com.cn>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link:
https://lore.kernel.org/bpf/20210311123103.323589-1-liu.xuzhi@zte.com.cn
kernel/bpf/hashtab.c
patch
|
blob
|
history
diff --git
a/kernel/bpf/hashtab.c
b/kernel/bpf/hashtab.c
index 330d721dd2affe944966998e71baecf823c02989..d7ebb12ffffcac5a1916ff41fb19ed2bb887796f 100644
(file)
--- a/
kernel/bpf/hashtab.c
+++ b/
kernel/bpf/hashtab.c
@@
-31,7
+31,7
@@
/*
* The bucket lock has two protection scopes:
*
- * 1) Serializing concurrent operations from BPF programs on differ
r
ent
+ * 1) Serializing concurrent operations from BPF programs on different
* CPUs
*
* 2) Serializing concurrent operations from BPF programs and sys_bpf()