Message ID | 20230808145531.19692-1-yuehaibing@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 526bc5ba19e8701a2b03fdbd2c01e684f0cf9010 |
Delegated to: | BPF |
Headers | show |
Series | [bpf-next] bpf: lru: Remove unused declaration bpf_lru_promote() | expand |
Hello: This patch was applied to bpf/bpf-next.git (master) by Martin KaFai Lau <martin.lau@kernel.org>: On Tue, 8 Aug 2023 22:55:31 +0800 you wrote: > Commit 3a08c2fd7634 ("bpf: LRU List") declared but never implemented this. > > Signed-off-by: Yue Haibing <yuehaibing@huawei.com> > --- > kernel/bpf/bpf_lru_list.h | 1 - > 1 file changed, 1 deletion(-) Here is the summary with links: - [bpf-next] bpf: lru: Remove unused declaration bpf_lru_promote() https://git.kernel.org/bpf/bpf-next/c/526bc5ba19e8 You are awesome, thank you!
diff --git a/kernel/bpf/bpf_lru_list.h b/kernel/bpf/bpf_lru_list.h index 8f3c8b2b4490..cbd8d3720c2b 100644 --- a/kernel/bpf/bpf_lru_list.h +++ b/kernel/bpf/bpf_lru_list.h @@ -75,6 +75,5 @@ void bpf_lru_populate(struct bpf_lru *lru, void *buf, u32 node_offset, void bpf_lru_destroy(struct bpf_lru *lru); struct bpf_lru_node *bpf_lru_pop_free(struct bpf_lru *lru, u32 hash); void bpf_lru_push_free(struct bpf_lru *lru, struct bpf_lru_node *node); -void bpf_lru_promote(struct bpf_lru *lru, struct bpf_lru_node *node); #endif
Commit 3a08c2fd7634 ("bpf: LRU List") declared but never implemented this. Signed-off-by: Yue Haibing <yuehaibing@huawei.com> --- kernel/bpf/bpf_lru_list.h | 1 - 1 file changed, 1 deletion(-)