]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'bpf, sockmap: allow verdict only sk_skb progs'
authorAlexei Starovoitov <ast@kernel.org>
Mon, 12 Oct 2020 01:09:45 +0000 (18:09 -0700)
committerAlexei Starovoitov <ast@kernel.org>
Mon, 12 Oct 2020 01:09:45 +0000 (18:09 -0700)
commit79cd2d340be7d3139f58c8d909a81cdad03a63b0
tree6f02632346e8d59489cb9d81c9f3fa44b1ca4480
parentd571bf2c120eb519704cbd5920e7f85e11245fc2
parent2cf708d8bf779ed3262f4750a0539fa715084ed3
Merge branch 'bpf, sockmap: allow verdict only sk_skb progs'

John Fastabend says:

====================

This allows a sockmap sk_skb verdict programs to run without a parser. For
some use cases, such as verdict program that support streaming data or a
l3/l4 proxy that does not use data in packet, loading the nop parser
'return skb->len' is an extra unnecessary complexity. With this series we
simply call the verdict program directly from data_ready instead of
bouncing through the strparser logic.

Patches 1,2 do the lifting on the sockmap side then patches 3,4 add the
selftests.

This applies on top of the series here,

  sockmap/sk_skb program memory acct fixes
  https://patchwork.ozlabs.org/project/netdev/list/?series=206975

it will apply without the above series cleanly, but will have an incorrect
memory accounting causing a failure in ./test_sockmap. I could have left
it so the series passed without above series, but it seemed odd to have
it out there and then require yet another patch to fix it up here.

Thanks.
---
====================

Signed-off-by: Alexei Starovoitov <ast@kernel.org>