mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 20:07:46 +09:00
UPSTREAM: kcm: use BPF_PROG_RUN
Instead of invoking struct bpf_prog::bpf_func directly, use the
BPF_PROG_RUN macro.
Bug: 140377409
Change-Id: I26abeccc8d25af0f412935ed97aebb5c64f52a2a
(cherry picked from commit a2c11b0341 ("kcm: use BPF_PROG_RUN"))
Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
This commit is contained in:
@@ -382,7 +382,7 @@ static int kcm_parse_func_strparser(struct strparser *strp, struct sk_buff *skb)
|
||||
struct kcm_psock *psock = container_of(strp, struct kcm_psock, strp);
|
||||
struct bpf_prog *prog = psock->bpf_prog;
|
||||
|
||||
return (*prog->bpf_func)(skb, prog->insnsi);
|
||||
return BPF_PROG_RUN(prog, skb);
|
||||
}
|
||||
|
||||
static int kcm_read_sock_done(struct strparser *strp, int err)
|
||||
|
||||
Reference in New Issue
Block a user