Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump 3rdparty/libbpf to v1.5.0 #4530

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3rdparty/libbpf
Submodule libbpf updated 63 files
+0 −3 .github/PULL_REQUEST_TEMPLATE.md
+5 −0 .github/actions/build-selftests/action.yml
+6 −7 .github/actions/build-selftests/build_selftests.sh
+92,024 −83,931 .github/actions/build-selftests/vmlinux.h
+6 −0 .github/actions/vmtest/action.yml
+5 −5 .github/workflows/build.yml
+1 −1 .github/workflows/cifuzz.yml
+2 −2 .github/workflows/codeql.yml
+1 −1 .github/workflows/coverity.yml
+1 −1 .github/workflows/lint.yml
+1 −1 .github/workflows/ondemand.yml
+2 −2 .github/workflows/pahole.yml
+5 −8 .github/workflows/test.yml
+21 −0 .mailmap
+1 −1 BPF-CHECKPOINT-COMMIT
+1 −1 CHECKPOINT-COMMIT
+69 −0 ci/diffs/0001-arch-Kconfig-Move-SPECULATION_MITIGATIONS-to-arch-Kc.patch
+32 −0 ci/diffs/0001-selftests-bpf-fix-inet_csk_accept-prototype-in-test_.patch
+58 −0 ci/diffs/0003-selftests-bpf-Fix-uprobe-consumer-test.patch
+0 −1 ci/vmtest/configs/ALLOWLIST-5.5.0
+1 −0 ci/vmtest/configs/DENYLIST
+2 −0 ci/vmtest/run_selftests.sh
+8 −0 docs/libbpf_overview.rst
+26 −4 docs/program_types.rst
+72 −28 include/uapi/linux/bpf.h
+0 −123 include/uapi/linux/fcntl.h
+4 −0 include/uapi/linux/if_xdp.h
+35 −0 include/uapi/linux/netdev.h
+0 −43 include/uapi/linux/openat2.h
+4 −2 include/uapi/linux/perf_event.h
+37 −0 scripts/mailmap-update.sh
+16 −0 scripts/sync-kernel.sh
+4 −4 src/Makefile
+2 −1 src/bpf.c
+2 −2 src/bpf.h
+2 −1 src/bpf_core_read.h
+1 −0 src/bpf_gen_internal.h
+22 −13 src/bpf_helper_defs.h
+19 −5 src/bpf_helpers.h
+51 −44 src/bpf_tracing.h
+716 −268 src/btf.c
+40 −1 src/btf.h
+14 −7 src/btf_dump.c
+177 −0 src/btf_iter.c
+519 −0 src/btf_relocate.c
+3 −0 src/elf.c
+32 −2 src/features.c
+135 −52 src/gen_loader.c
+10 −10 src/hashmap.h
+390 −158 src/libbpf.c
+52 −7 src/libbpf.h
+14 −0 src/libbpf.map
+71 −16 src/libbpf_internal.h
+2 −2 src/libbpf_legacy.h
+4 −2 src/libbpf_probes.c
+1 −1 src/libbpf_version.h
+115 −42 src/linker.c
+1 −1 src/relo_core.c
+45 −8 src/ringbuf.c
+3 −2 src/skel_internal.h
+14 −2 src/str_error.c
+13 −13 src/usdt.bpf.h
+1 −1 src/zip.c
Loading