From: Leon Huayra Date: Wed, 29 Dec 2021 14:44:22 +0000 (+0800) Subject: bpf: Fix typo in a comment in bpf lpm_trie. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9e6b19a66d9b6b94395478fe79c5a3ccba181ad3;p=linux.git bpf: Fix typo in a comment in bpf lpm_trie. Fix typo in a comment in trie_update_elem(). Signed-off-by: Leon Huayra Signed-off-by: Alexei Starovoitov Link: https://lore.kernel.org/bpf/20211229144422.70339-1-hffilwlqm@gmail.com --- diff --git a/kernel/bpf/lpm_trie.c b/kernel/bpf/lpm_trie.c index 423549d2c52e2..5763cc7ac4f12 100644 --- a/kernel/bpf/lpm_trie.c +++ b/kernel/bpf/lpm_trie.c @@ -412,7 +412,7 @@ static int trie_update_elem(struct bpf_map *map, rcu_assign_pointer(im_node->child[1], node); } - /* Finally, assign the intermediate node to the determined spot */ + /* Finally, assign the intermediate node to the determined slot */ rcu_assign_pointer(*slot, im_node); out: