This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 27eddbf34490 Merge tag 'net-6.14-rc4' of git://git.kernel.org/pub/scm/l [...] new 733253796295 bpf: Remove unnecessary BTF lookups in bpf_sk_storage_trac [...] new 6b3d638ca897 bpf, test_run: Fix use-after-free issue in eth_skb_pkt_type() new c7f2188d68c1 selftests/bpf: Adjust data size to have ETH_HLEN new 98671a0fd1f1 bpf: unify VM_WRITE vs VM_MAYWRITE use in BPF map mmaping logic new bc27c52eea18 bpf: avoid holding freeze_mutex during mmap operation new 0532a79efd68 strparser: Add read_sock callback new 36b62df5683c bpf: Fix wrong copied_seq calculation new 5459cce6bf49 bpf: Disable non stream socket for strparser new a0c11149509a selftests/bpf: Fix invalid flag of recv() new 6fcfe96e0f6e selftests/bpf: Add strparser test for bpf new 9bf412d4d5b1 Merge branch 'bpf-fix-wrong-copied_seq-calculation-and-add-tests' new c78f4afbd962 bpf: Fix deadlock when freeing cgroup storage new 5da7e15fb5a1 net: Add rx_skb of kfree_skb to raw_tp_null_args[]. new 517e8a7835e8 bpf: Fix softlockup in arena_map_free on 64k page kernel new 884c3a18dadf bpf: verifier: Do not extract constant map keys for irrele [...] new 973cb1382ead bpf: selftests: Test constant key extraction on irrelevant maps new 7968c6581507 bpf: verifier: Disambiguate get_constant_map_key() errors new 310794c219e7 Merge branch 'bpf-some-fixes-for-nullness-elision' new 8784714d7f27 bpf: Handle allocation failure in acquire_lock_state new 5644c6b50ffe bpf: skip non exist keys in generic_map_lookup_batch new d66b7739176d selftests: bpf: test batch lookup on array of maps with holes new dbf7cc560007 Merge branch 'bpf-skip-non-exist-keys-in-generic_map_looku [...] new 319fc77f8f45 Merge tag 'bpf-fixes' of git://git.kernel.org/pub/scm/linu [...]
The 23 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/networking/strparser.rst | 9 +- include/linux/skmsg.h | 2 + include/net/strparser.h | 2 + include/net/tcp.h | 8 + kernel/bpf/arena.c | 2 +- kernel/bpf/bpf_cgrp_storage.c | 2 +- kernel/bpf/btf.c | 2 + kernel/bpf/ringbuf.c | 4 - kernel/bpf/syscall.c | 43 +- kernel/bpf/verifier.c | 31 +- net/bpf/test_run.c | 5 +- net/core/bpf_sk_storage.c | 13 +- net/core/skmsg.c | 7 + net/core/sock_map.c | 5 +- net/ipv4/tcp.c | 29 +- net/ipv4/tcp_bpf.c | 36 ++ net/strparser/strparser.c | 11 +- .../selftests/bpf/map_tests/map_in_map_batch_ops.c | 62 ++- .../selftests/bpf/prog_tests/sockmap_basic.c | 59 +-- .../selftests/bpf/prog_tests/sockmap_strp.c | 454 +++++++++++++++++++++ .../selftests/bpf/prog_tests/xdp_cpumap_attach.c | 4 +- .../selftests/bpf/prog_tests/xdp_devmap_attach.c | 8 +- .../selftests/bpf/progs/test_sockmap_strp.c | 53 +++ .../selftests/bpf/progs/verifier_array_access.c | 15 + 24 files changed, 726 insertions(+), 140 deletions(-) create mode 100644 tools/testing/selftests/bpf/prog_tests/sockmap_strp.c create mode 100644 tools/testing/selftests/bpf/progs/test_sockmap_strp.c