Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf
Daniel Borkmann says: ==================== pull-request: bpf 2023-05-24 We've added 19 non-merge commits during the last 10 day(s) which contain a total of 20 files changed, 738 insertions(+), 448 deletions(-). The main changes are: 1) Batch of BPF sockmap fixes found when running against NGINX TCP tests, from John Fastabend. 2) Fix a memleak in the LRU{,_PERCPU} hash map when bucket locking fails, from Anton Protopopov. 3) Init the BPF offload table earlier than just late_initcall, from Jakub Kicinski. 4) Fix ctx access mask generation for 32-bit narrow loads of 64-bit fields, from Will Deacon. 5) Remove a now unsupported __fallthrough in BPF samples, from Andrii Nakryiko. 6) Fix a typo in pkg-config call for building sign-file, from Jeremy Sowden. * tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf: bpf, sockmap: Test progs verifier error with latest clang bpf, sockmap: Test FIONREAD returns correct bytes in rx buffer with drops bpf, sockmap: Test FIONREAD returns correct bytes in rx buffer bpf, sockmap: Test shutdown() correctly exits epoll and recv()=0 bpf, sockmap: Build helper to create connected socket pair bpf, sockmap: Pull socket helpers out of listen test for general use bpf, sockmap: Incorrectly handling copied_seq bpf, sockmap: Wake up polling after data copy bpf, sockmap: TCP data stall on recv before accept bpf, sockmap: Handle fin correctly bpf, sockmap: Improved check for empty queue bpf, sockmap: Reschedule is now done through backlog bpf, sockmap: Convert schedule_work into delayed_work bpf, sockmap: Pass skb ownership through read_skb bpf: fix a memory leak in the LRU and LRU_PERCPU hash maps bpf: Fix mask generation for 32-bit narrow loads of 64-bit fields samples/bpf: Drop unnecessary fallthrough bpf: netdev: init the offload table earlier selftests/bpf: Fix pkg-config call building sign-file ==================== Link: https://lore.kernel.org/r/20230524170839.13905-1-daniel@iogearbox.net Signed-off-by:Jakub Kicinski <kuba@kernel.org>
No related branches found
No related tags found
Showing
- include/linux/skmsg.h 1 addition, 2 deletionsinclude/linux/skmsg.h
- include/net/tcp.h 10 additions, 0 deletionsinclude/net/tcp.h
- kernel/bpf/hashtab.c 4 additions, 2 deletionskernel/bpf/hashtab.c
- kernel/bpf/offload.c 1 addition, 1 deletionkernel/bpf/offload.c
- kernel/bpf/verifier.c 1 addition, 1 deletionkernel/bpf/verifier.c
- net/core/skmsg.c 38 additions, 43 deletionsnet/core/skmsg.c
- net/core/sock_map.c 2 additions, 1 deletionnet/core/sock_map.c
- net/ipv4/tcp.c 1 addition, 10 deletionsnet/ipv4/tcp.c
- net/ipv4/tcp_bpf.c 78 additions, 1 deletionnet/ipv4/tcp_bpf.c
- net/ipv4/udp.c 2 additions, 5 deletionsnet/ipv4/udp.c
- net/unix/af_unix.c 2 additions, 5 deletionsnet/unix/af_unix.c
- net/vmw_vsock/virtio_transport_common.c 1 addition, 4 deletionsnet/vmw_vsock/virtio_transport_common.c
- samples/bpf/hbm.c 0 additions, 1 deletionsamples/bpf/hbm.c
- tools/testing/selftests/bpf/Makefile 1 addition, 1 deletiontools/testing/selftests/bpf/Makefile
- tools/testing/selftests/bpf/prog_tests/sockmap_basic.c 131 additions, 0 deletionstools/testing/selftests/bpf/prog_tests/sockmap_basic.c
- tools/testing/selftests/bpf/prog_tests/sockmap_helpers.h 390 additions, 0 deletionstools/testing/selftests/bpf/prog_tests/sockmap_helpers.h
- tools/testing/selftests/bpf/prog_tests/sockmap_listen.c 6 additions, 364 deletionstools/testing/selftests/bpf/prog_tests/sockmap_listen.c
- tools/testing/selftests/bpf/progs/test_sockmap_drop_prog.c 32 additions, 0 deletionstools/testing/selftests/bpf/progs/test_sockmap_drop_prog.c
- tools/testing/selftests/bpf/progs/test_sockmap_kern.h 5 additions, 7 deletionstools/testing/selftests/bpf/progs/test_sockmap_kern.h
- tools/testing/selftests/bpf/progs/test_sockmap_pass_prog.c 32 additions, 0 deletionstools/testing/selftests/bpf/progs/test_sockmap_pass_prog.c
Loading
Please register or sign in to comment