Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

kernel/bpf/: Fix misspellings using codespell tool

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

authored by

Liu xuzhi and committed by
Alexei Starovoitov
6bd45f2e ba3b86b9

+1 -1
+1 -1
kernel/bpf/hashtab.c
··· 31 31 /* 32 32 * The bucket lock has two protection scopes: 33 33 * 34 - * 1) Serializing concurrent operations from BPF programs on differrent 34 + * 1) Serializing concurrent operations from BPF programs on different 35 35 * CPUs 36 36 * 37 37 * 2) Serializing concurrent operations from BPF programs and sys_bpf()