[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220521000921.8337-1-ruijian63@gmail.com>
Date: Sat, 21 May 2022 08:09:21 +0800
From: Ruijian Li <ruijian63@...il.com>
To: ast@...nel.org
Cc: daniel@...earbox.net, andrii@...nel.org, kafai@...com,
songliubraving@...com, yhs@...com, john.fastabend@...il.com,
kpsingh@...nel.org, netdev@...r.kernel.org, bpf@...r.kernel.org,
linux-kernel@...r.kernel.org, 798073189@...com,
Ruijian Li <ruijian63@...il.com>
Subject: [PATCH] samples: fix compile failure error
Because compile samples/bpf/test_lru_dist failure, I remove the
declaration of the struct list_head.
Signed-off-by: Ruijian Li <ruijian63@...il.com>
---
samples/bpf/test_lru_dist.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/samples/bpf/test_lru_dist.c b/samples/bpf/test_lru_dist.c
index 75e877853596..dd7eb470653b 100644
--- a/samples/bpf/test_lru_dist.c
+++ b/samples/bpf/test_lru_dist.c
@@ -33,10 +33,6 @@ static int nr_cpus;
static unsigned long long *dist_keys;
static unsigned int dist_key_counts;
-struct list_head {
- struct list_head *next, *prev;
-};
-
static inline void INIT_LIST_HEAD(struct list_head *list)
{
list->next = list;
--
2.32.0
Powered by blists - more mailing lists