Skip to content

Commit

Permalink
Upgrade to libbpf 0.6.1 and libbpfgo v0.2.4 (#224)
Browse files Browse the repository at this point in the history
Signed-off-by: Kemal Akkoyun <kakkoyun@gmail.com>
  • Loading branch information
kakkoyun committed Jan 25, 2022
1 parent 272d7a7 commit 946bf8b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/libbpf
Submodule libbpf updated 65 files
+1 −1 .github/actions/setup/action.yml
+40 −0 .github/workflows/cifuzz.yml
+1 −0 .github/workflows/coverity.yml
+0 −20 .github/workflows/pahole.yml
+7 −2 .github/workflows/test.yml
+1 −1 BPF-CHECKPOINT-COMMIT
+1 −1 CHECKPOINT-COMMIT
+7 −0 README.md
+7 −7 docs/api.rst
+2 −2 docs/index.rst
+40 −0 docs/libbpf_naming_convention.rst
+8 −0 include/linux/filter.h
+95 −4 include/uapi/linux/bpf.h
+36 −20 include/uapi/linux/btf.h
+1 −0 include/uapi/linux/if_link.h
+7 −4 scripts/sync-kernel.sh
+3 −3 src/Makefile
+201 −148 src/bpf.c
+102 −5 src/bpf.h
+1 −1 src/bpf_core_read.h
+33 −6 src/bpf_gen_internal.h
+97 −4 src/bpf_helper_defs.h
+43 −8 src/bpf_helpers.h
+32 −0 src/bpf_tracing.h
+339 −156 src/btf.c
+186 −10 src/btf.h
+67 −36 src/btf_dump.c
+420 −104 src/gen_loader.c
+1,881 −1,027 src/libbpf.c
+236 −61 src/libbpf.h
+33 −0 src/libbpf.map
+37 −1 src/libbpf_common.h
+42 −37 src/libbpf_internal.h
+19 −0 src/libbpf_legacy.h
+25 −27 src/libbpf_probes.c
+9 −0 src/libbpf_version.h
+36 −25 src/linker.c
+1 −1 src/relo_core.c
+15 −4 src/skel_internal.h
+1 −0 src/strset.c
+22 −36 src/xsk.c
+52 −38 src/xsk.h
+2 −2 travis-ci/vmtest/build_selftests.sh
+8 −7 travis-ci/vmtest/configs/INDEX
+3 −0 travis-ci/vmtest/configs/blacklist/BLACKLIST-5.5.0
+4 −0 travis-ci/vmtest/configs/blacklist/BLACKLIST-latest
+52 −0 travis-ci/vmtest/configs/blacklist/BLACKLIST-latest.s390x
+2,703 −0 travis-ci/vmtest/configs/config-latest.s390x
+0 −0 travis-ci/vmtest/configs/config-latest.x86_64
+1 −0 travis-ci/vmtest/configs/whitelist/WHITELIST-4.9.0
+56 −0 travis-ci/vmtest/configs/whitelist/WHITELIST-5.5.0
+22 −0 travis-ci/vmtest/helpers.sh
+1 −53 travis-ci/vmtest/mkrootfs_arch.sh
+40 −0 travis-ci/vmtest/mkrootfs_debian.sh
+61 −0 travis-ci/vmtest/mkrootfs_tweak.sh
+1 −1 travis-ci/vmtest/prepare_selftests.sh
+167 −75 travis-ci/vmtest/run.sh
+24 −14 travis-ci/vmtest/run_selftests.sh
+5 −3 travis-ci/vmtest/run_vmtest.sh
+72 −0 travis-ci/vmtest/s390x-self-hosted-builder/README.md
+48 −0 travis-ci/vmtest/s390x-self-hosted-builder/actions-runner-libbpf.Dockerfile
+24 −0 travis-ci/vmtest/s390x-self-hosted-builder/actions-runner-libbpf.service
+40 −0 travis-ci/vmtest/s390x-self-hosted-builder/fs/usr/bin/actions-runner
+35 −0 travis-ci/vmtest/s390x-self-hosted-builder/fs/usr/bin/entrypoint
+11 −0 travis-ci/vmtest/s390x-self-hosted-builder/qemu-user-static.service
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -4,7 +4,7 @@ go 1.17

require (
github.com/alecthomas/kong v0.3.0
github.com/aquasecurity/libbpfgo v0.2.2-libbpf-0.5.0
github.com/aquasecurity/libbpfgo v0.2.4-libbpf-0.6.1
github.com/cespare/xxhash/v2 v2.1.2
github.com/containerd/cgroups v1.0.2
github.com/containerd/containerd v1.5.9
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Expand Up @@ -174,8 +174,8 @@ github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kd
github.com/apache/arrow/go/arrow v0.0.0-20191024131854-af6fa24be0db/go.mod h1:VTxUBvSJ3s3eHAg65PNgrsn5BtqCRPdmyXh6rAfdxN0=
github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
github.com/aquasecurity/libbpfgo v0.2.2-libbpf-0.5.0 h1:Qecy9Qvj4TG0LK7sfuJWzd1QlwMozHo7H0AyZMGjLg8=
github.com/aquasecurity/libbpfgo v0.2.2-libbpf-0.5.0/go.mod h1:/+clceXE103FaXvVTIY2HAkQjxNtkra4DRWvZYr2SKw=
github.com/aquasecurity/libbpfgo v0.2.4-libbpf-0.6.1 h1:7Ezl6s7ftdV1S7JnBi/zgRR4Od3MtEx0GH21TmyFMAI=
github.com/aquasecurity/libbpfgo v0.2.4-libbpf-0.6.1/go.mod h1:/+clceXE103FaXvVTIY2HAkQjxNtkra4DRWvZYr2SKw=
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=
Expand Down

0 comments on commit 946bf8b

Please sign in to comment.