samples/bpf: remove unused function with test_lru_dist
Bugzilla: https://bugzilla.redhat.com/2178930 commit 13aa2a92840dd49a64362ddd1e4d16084a4b9e0f Author: Daniel T. Lee <danieltimlee@gmail.com> Date: Sun Dec 18 15:14:51 2022 +0900 samples/bpf: remove unused function with test_lru_dist Currently, compiling samples/bpf with LLVM warns about the unused function with test_lru_dist. ./samples/bpf/test_lru_dist.c:45:19: warning: unused function 'list_empty' [-Wunused-function] static inline int list_empty(const struct list_head *head) ^ 1 warning generated. This commit resolve this compiler warning by removing the abandoned function. Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com> Acked-by: Yonghong Song <yhs@fb.com> Link: https://lore.kernel.org/r/20221218061453.6287-2-danieltimlee@gmail.com Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org> Signed-off-by: Viktor Malik <vmalik@redhat.com>
This commit is contained in:
parent
1876dbfb9e
commit
b9cdcff1d8
|
@ -42,11 +42,6 @@ static inline void INIT_LIST_HEAD(struct list_head *list)
|
|||
list->prev = list;
|
||||
}
|
||||
|
||||
static inline int list_empty(const struct list_head *head)
|
||||
{
|
||||
return head->next == head;
|
||||
}
|
||||
|
||||
static inline void __list_add(struct list_head *new,
|
||||
struct list_head *prev,
|
||||
struct list_head *next)
|
||||
|
|
Loading…
Reference in New Issue