summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <khem.raj@oss.qualcomm.com>2026-03-25 23:43:29 -0700
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-03-25 23:46:02 -0700
commita3348485c45852ec9ee056185eb925ba67e4122f (patch)
tree1e3e5d44f4028d8cf3ac51adc1b3c213f555fa6a
parentb7328f98d318f48db37f709dd1ea8f899ef7aa9f (diff)
downloadmeta-openembedded-a3348485c45852ec9ee056185eb925ba67e4122f.tar.gz
libbpf: Upgrade to 1.7.0 release
User space-side features * bpf_map__set_exclusive_program() and bpf_map__exclusive_program() APIs for exclusive map creation; * bpf_program__assoc_struct_ops() and bpf_prog_assoc_struct_ops() APIs to associate a non-struct_ops BPF program with a struct_ops map; * btf__permute() API to rearrange BTF types in-place according to a provided mapping; * BTF type lookup optimization: binary search for btf__find_by_name() and btf__find_by_name_kind(); * btf__add_btf() now accepts split BTF sources; * fsession support (SEC("fsession+") / SEC("fsession.s+")); * BPF_F_CPU and BPF_F_ALL_CPUS flags support for per-CPU map operations; * arena globals are moved to the end of the arena mmap region if kernel supports it; * support for LLVM-generated indirect jump tables (BPF ISA v4) via .jumptables ELF section and BPF_MAP_TYPE_INSN_ARRAY maps; * avoid expensive kallsyms parsing when kprobe.session target is an exact function match; * new dont_enable option in struct bpf_perf_event_opts to suppress perf event auto-enablement; BPF-side features * USDT SIB (Scale-Index-Base) addressing support; * dynptr helper signatures (bpf_dynptr_from_mem, bpf_dynptr_read, bpf_dynptr_write, bpf_dynptr_data) widened from 32-bit to 64-bit size/offset parameters; Bug fixes * As usual, a number of bug fixes included, see full commit log for details. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
-rw-r--r--meta-oe/recipes-kernel/libbpf/libbpf_1.7.0.bb (renamed from meta-oe/recipes-kernel/libbpf/libbpf_1.6.2.bb)4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-kernel/libbpf/libbpf_1.6.2.bb b/meta-oe/recipes-kernel/libbpf/libbpf_1.7.0.bb
index 28732b1e66..f6cb024706 100644
--- a/meta-oe/recipes-kernel/libbpf/libbpf_1.6.2.bb
+++ b/meta-oe/recipes-kernel/libbpf/libbpf_1.7.0.bb
@@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = "file://../LICENSE.LGPL-2.1;md5=b370887980db5dd40659b50909238
8 8
9DEPENDS = "zlib elfutils" 9DEPENDS = "zlib elfutils"
10 10
11SRC_URI = "git://github.com/libbpf/libbpf.git;protocol=https;branch=${BPN}-${PV}" 11SRC_URI = "git://github.com/libbpf/libbpf.git;protocol=https;branch=master;tag=v${PV}"
12SRCREV = "45e89348ec74617c11cd5241ccd0ffc91dfd03c4" 12SRCREV = "f5dcbae736e5d7f83a35718e01be1a8e3010fa39"
13 13
14PACKAGE_ARCH = "${MACHINE_ARCH}" 14PACKAGE_ARCH = "${MACHINE_ARCH}"
15COMPATIBLE_HOST = "(x86_64|i.86|arm|aarch64|riscv64|powerpc|powerpc64|mips64).*-linux" 15COMPATIBLE_HOST = "(x86_64|i.86|arm|aarch64|riscv64|powerpc|powerpc64|mips64).*-linux"