Skip to content

Commit

Permalink
libbpf: sync with latest libbpf
Browse files Browse the repository at this point in the history
Signed-off-by: Hengqi Chen <[email protected]>
  • Loading branch information
chenhengqi committed May 4, 2021
1 parent 1946d2c commit e37075d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ LDFLAGS ?= -L$(LIBBPF_DIR)

BPF_CFLAGS ?= -I$(LIBBPF_DIR)/build/usr/include/ -I../headers/

LIBS = -l:libbpf.a -lelf $(USER_LIBS)
LIBS = -l:libbpf.a -lelf -lz $(USER_LIBS)

all: llvm-check $(USER_TARGETS) $(XDP_OBJ) $(COPY_LOADER) $(COPY_STATS)

Expand Down
2 changes: 1 addition & 1 deletion libbpf
Submodule libbpf updated 66 files
+71 −92 .travis.yml
+1 −1 BPF-CHECKPOINT-COMMIT
+1 −1 CHECKPOINT-COMMIT
+1 −0 LICENSE
+32 −0 LICENSE.BSD-2-Clause
+503 −0 LICENSE.LGPL-2.1
+122 −17 README.md
+8 −0 include/linux/filter.h
+9 −0 include/linux/list.h
+0 −20 include/tools/libc_compat.h
+2,722 −324 include/uapi/linux/bpf.h
+13 −5 include/uapi/linux/btf.h
+17 −1 include/uapi/linux/if_link.h
+4 −1 include/uapi/linux/if_xdp.h
+0 −18 scripts/check-reallocarray.sh
+51 −63 scripts/sync-kernel.sh
+61 −33 src/Makefile
+296 −31 src/bpf.c
+112 −8 src/bpf.h
+227 −54 src/bpf_core_read.h
+35 −8 src/bpf_endian.h
+1,274 −141 src/bpf_helper_defs.h
+118 −4 src/bpf_helpers.h
+277 −4 src/bpf_tracing.h
+2,446 −672 src/btf.c
+120 −51 src/btf.h
+159 −101 src/btf_dump.c
+14 −2 src/hashmap.c
+30 −13 src/hashmap.h
+6,949 −1,868 src/libbpf.c
+205 −55 src/libbpf.h
+157 −0 src/libbpf.map
+1 −1 src/libbpf.pc.template
+42 −0 src/libbpf_common.h
+3 −0 src/libbpf_errno.c
+235 −21 src/libbpf_internal.h
+37 −2 src/libbpf_probes.c
+0 −47 src/libbpf_util.h
+2,883 −0 src/linker.c
+45 −124 src/netlink.c
+3 −3 src/nlattr.c
+290 −0 src/ringbuf.c
+3 −0 src/str_error.c
+176 −0 src/strset.c
+21 −0 src/strset.h
+635 −161 src/xsk.c
+97 −21 src/xsk.h
+12 −9 travis-ci/managers/debian.sh
+6 −10 travis-ci/managers/ubuntu.sh
+30 −0 travis-ci/vmtest/build_pahole.sh
+43 −0 travis-ci/vmtest/build_selftests.sh
+44 −0 travis-ci/vmtest/checkout_latest_kernel.sh
+8 −0 travis-ci/vmtest/configs/INDEX
+98 −0 travis-ci/vmtest/configs/blacklist/BLACKLIST-5.5.0
+1 −0 travis-ci/vmtest/configs/blacklist/BLACKLIST-latest
+3,054 −0 travis-ci/vmtest/configs/latest.config
+7 −0 travis-ci/vmtest/configs/whitelist/WHITELIST-4.9.0
+12 −0 travis-ci/vmtest/helpers.sh
+158 −0 travis-ci/vmtest/mkrootfs.sh
+3 −0 travis-ci/vmtest/prepare_selftests-4.9.0.sh
+3 −0 travis-ci/vmtest/prepare_selftests-5.5.0.sh
+20 −0 travis-ci/vmtest/prepare_selftests.sh
+455 −0 travis-ci/vmtest/run.sh
+51 −0 travis-ci/vmtest/run_selftests.sh
+38 −0 travis-ci/vmtest/run_vmtest.sh
+138,018 −0 travis-ci/vmtest/vmlinux.h

0 comments on commit e37075d

Please sign in to comment.