Skip to content

Commit a0be91c

Browse files
Bump github.com/cilium/ebpf from 0.18.0 to 0.19.0 (#745)
* Bump github.com/cilium/ebpf from 0.18.0 to 0.19.0 Bumps [github.com/cilium/ebpf](https://github.com/cilium/ebpf) from 0.18.0 to 0.19.0. - [Release notes](https://github.com/cilium/ebpf/releases) - [Commits](cilium/ebpf@v0.18.0...v0.19.0) --- updated-dependencies: - dependency-name: github.com/cilium/ebpf dependency-version: 0.19.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * update makefile Signed-off-by: Mohamed S. Mahmoud <[email protected]> * use x86_64 emulation so we can gen ebpf files on macOS and update ebpf generated files Signed-off-by: Mohamed S. Mahmoud <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Mohamed S. Mahmoud <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mohamed S. Mahmoud <[email protected]>
1 parent c52c750 commit a0be91c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+2552
-1539
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ifneq ($(CLEAN_BUILD),)
3333
endif
3434

3535
LOCAL_GENERATOR_IMAGE ?= ebpf-generator:latest
36-
CILIUM_EBPF_VERSION := v0.18.0
36+
CILIUM_EBPF_VERSION := v0.19.0
3737
GOLANGCI_LINT_VERSION = v1.61.0
3838
GO_VERSION = "1.23.4"
3939
PROTOC_VERSION = "3.19.4"
@@ -149,7 +149,7 @@ generate: gen-bpf gen-protobuf
149149
.PHONY: docker-generate
150150
docker-generate: ## Create the container that generates the eBPF binaries
151151
@echo "### Creating the container that generates the eBPF binaries"
152-
$(OCI_BIN) build . -f scripts/generators.Dockerfile -t $(LOCAL_GENERATOR_IMAGE) --build-arg EXTENSION="x86_64" --build-arg PROTOCVERSION="$(PROTOC_VERSION)" --build-arg GOVERSION="$(GO_VERSION)"
152+
$(OCI_BIN) build . -f scripts/generators.Dockerfile -t $(LOCAL_GENERATOR_IMAGE) --platform=linux/amd64 --build-arg EXTENSION="x86_64" --build-arg PROTOCVERSION="$(PROTOC_VERSION)" --build-arg GOVERSION="$(GO_VERSION)"
153153
$(OCI_BIN) run --privileged --rm -v $(shell pwd):/src $(LOCAL_GENERATOR_IMAGE)
154154

155155
.PHONY: compile

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.23.5
66

77
require (
88
github.com/caarlos0/env/v11 v11.3.1
9-
github.com/cilium/ebpf v0.18.0
9+
github.com/cilium/ebpf v0.19.0
1010
github.com/fsnotify/fsnotify v1.9.0
1111
github.com/gavv/monotime v0.0.0-20190418164738-30dba4353424
1212
github.com/gopacket/gopacket v1.3.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XL
4949
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
5050
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
5151
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
52-
github.com/cilium/ebpf v0.18.0 h1:OsSwqS4y+gQHxaKgg2U/+Fev834kdnsQbtzRnbVC6Gs=
53-
github.com/cilium/ebpf v0.18.0/go.mod h1:vmsAT73y4lW2b4peE+qcOqw6MxvWQdC+LiU5gd/xyo4=
52+
github.com/cilium/ebpf v0.19.0 h1:Ro/rE64RmFBeA9FGjcTc+KmCeY6jXmryu6FfnzPRIao=
53+
github.com/cilium/ebpf v0.19.0/go.mod h1:fLCgMo3l8tZmAdM3B2XqdFzXBpwkcSTroaVqN08OWVY=
5454
github.com/containernetworking/cni v1.1.2 h1:wtRGZVv7olUHMOqouPpn3cXJWpJgM6+EUl31EQbXALQ=
5555
github.com/containernetworking/cni v1.1.2/go.mod h1:sDpYKmGVENF3s6uvMvGgldDWeG8dMxakj/u+i9ht9vw=
5656
github.com/containernetworking/plugins v1.2.0 h1:SWgg3dQG1yzUo4d9iD8cwSVh1VqI+bP7mkPDoSfP9VU=

pkg/ebpf/bpf_arm64_bpfel.go

Lines changed: 24 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/ebpf/bpf_powerpc_bpfel.go

Lines changed: 24 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/ebpf/bpf_s390_bpfeb.go

Lines changed: 24 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)