diff options
author | Zhen Lei <thunder.leizhen@huawei.com> | 2021-05-25 10:56:59 +0800 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2021-05-24 21:13:05 -0700 |
commit | 8fb33b6055300a23f26868680c22a5726834785e (patch) | |
tree | 859ae2f446beff86d801bb218a613d0486c517a4 /include/linux/bpf_local_storage.h | |
parent | 4ce7d68beb9e63d0a0a427cc2b89ec0c68f24b3d (diff) | |
download | linux-8fb33b6055300a23f26868680c22a5726834785e.tar.gz linux-8fb33b6055300a23f26868680c22a5726834785e.tar.bz2 linux-8fb33b6055300a23f26868680c22a5726834785e.zip |
bpf: Fix spelling mistakes
Fix some spelling mistakes in comments:
aother ==> another
Netiher ==> Neither
desribe ==> describe
intializing ==> initializing
funciton ==> function
wont ==> won't and move the word 'the' at the end to the next line
accross ==> across
pathes ==> paths
triggerred ==> triggered
excute ==> execute
ether ==> either
conervative ==> conservative
convetion ==> convention
markes ==> marks
interpeter ==> interpreter
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20210525025659.8898-2-thunder.leizhen@huawei.com
Diffstat (limited to 'include/linux/bpf_local_storage.h')
-rw-r--r-- | include/linux/bpf_local_storage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/bpf_local_storage.h b/include/linux/bpf_local_storage.h index b902c580c48d..24496bc28e7b 100644 --- a/include/linux/bpf_local_storage.h +++ b/include/linux/bpf_local_storage.h @@ -58,7 +58,7 @@ struct bpf_local_storage_data { * from the object's bpf_local_storage. * * Put it in the same cacheline as the data to minimize - * the number of cachelines access during the cache hit case. + * the number of cachelines accessed during the cache hit case. */ struct bpf_local_storage_map __rcu *smap; u8 data[] __aligned(8); @@ -71,7 +71,7 @@ struct bpf_local_storage_elem { struct bpf_local_storage __rcu *local_storage; struct rcu_head rcu; /* 8 bytes hole */ - /* The data is stored in aother cacheline to minimize + /* The data is stored in another cacheline to minimize * the number of cachelines access during a cache hit. */ struct bpf_local_storage_data sdata ____cacheline_aligned; |