Message ID | 20210223090416.333943-1-me@ubique.spb.ru (mailing list archive) |
---|---|
State | Accepted |
Commit | f4eda8b6e4a5c7897c6bb992ed63a27061b371ef |
Delegated to: | BPF |
Headers | show |
Series | [v2] bpf: Drop imprecise log message | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
Hello: This patch was applied to bpf/bpf.git (refs/heads/master): On Tue, 23 Feb 2021 13:04:16 +0400 you wrote: > Now it is possible for global function to have a pointer argument that > points to something different than struct. Drop the irrelevant log > message and keep the logic same. > > Fixes: e5069b9c23b3 ("bpf: Support pointers in global func args") > Signed-off-by: Dmitrii Banshchikov <me@ubique.spb.ru> > Acked-by: Martin KaFai Lau <kafai@fb.com> > > [...] Here is the summary with links: - [v2] bpf: Drop imprecise log message https://git.kernel.org/bpf/bpf/c/f4eda8b6e4a5 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/kernel/bpf/btf.c b/kernel/bpf/btf.c index 2efeb5f4b343..b1a76fe046cb 100644 --- a/kernel/bpf/btf.c +++ b/kernel/bpf/btf.c @@ -4321,8 +4321,6 @@ btf_get_prog_ctx_type(struct bpf_verifier_log *log, struct btf *btf, * is not supported yet. * BPF_PROG_TYPE_RAW_TRACEPOINT is fine. */ - if (log->level & BPF_LOG_LEVEL) - bpf_log(log, "arg#%d type is not a struct\n", arg); return NULL; } tname = btf_name_by_offset(btf, t->name_off);