Skip to content

Commit 6027558

Browse files
d-e-s-odanielocfb
authored andcommitted
Update vmlinux.h snapshot
Update the vmlinux.h snapshot we use, suitable for kernel 6.18. Also make sure we only consume a single vmlinux.h version. Signed-off-by: Daniel Müller <[email protected]>
1 parent dfbce3f commit 6027558

File tree

13 files changed

+25
-30
lines changed

13 files changed

+25
-30
lines changed

Cargo.lock

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

examples/capable/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "LGPL-2.1-only OR BSD-2-Clause"
77

88
[build-dependencies]
99
libbpf-cargo = { path = "../../libbpf-cargo" }
10-
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "83a228cf37fc65f2d14e4896a04922b5ee531a94" }
10+
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "991dd4b8dfd8c9d62ce8999521b24f61d9b7fc52" }
1111

1212
[dependencies]
1313
anyhow = "1.0.4"

examples/compiler_warnings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "LGPL-2.1-only OR BSD-2-Clause"
99
libbpf-cargo = { path = "../../libbpf-cargo" }
1010
tracing = { version = "0.1", default-features = false }
1111
tracing-subscriber = {version = "0.3", features = ["ansi", "chrono", "env-filter", "fmt"]}
12-
vmlinux = { version = "0.0", git = "https://github.com/libbpf/vmlinux.h.git", rev = "83a228cf37fc65f2d14e4896a04922b5ee531a94" }
12+
vmlinux = { version = "0.0", git = "https://github.com/libbpf/vmlinux.h.git", rev = "991dd4b8dfd8c9d62ce8999521b24f61d9b7fc52" }
1313

1414
[dependencies]
1515
libbpf-rs = { path = "../../libbpf-rs" }

examples/netfilter_blocklist/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "LGPL-2.1-only OR BSD-2-Clause"
66

77
[build-dependencies]
88
libbpf-cargo = { path = "../../libbpf-cargo" }
9-
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "8f91e9fd5b488ff57074e589e3960940f3387830" }
9+
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "991dd4b8dfd8c9d62ce8999521b24f61d9b7fc52" }
1010

1111
[[bin]]
1212
name = "netfilter_blocklist"

examples/ringbuf_multi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "LGPL-2.1-only OR BSD-2-Clause"
77

88
[build-dependencies]
99
libbpf-cargo = { path = "../../libbpf-cargo" }
10-
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "83a228cf37fc65f2d14e4896a04922b5ee531a94" }
10+
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "991dd4b8dfd8c9d62ce8999521b24f61d9b7fc52" }
1111

1212
[dependencies]
1313
libbpf-rs = { path = "../../libbpf-rs" }

examples/runqslower/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "LGPL-2.1-only OR BSD-2-Clause"
77

88
[build-dependencies]
99
libbpf-cargo = { path = "../../libbpf-cargo" }
10-
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "83a228cf37fc65f2d14e4896a04922b5ee531a94" }
10+
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "991dd4b8dfd8c9d62ce8999521b24f61d9b7fc52" }
1111

1212
[dependencies]
1313
anyhow = "1.0"

examples/task_longrun/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "LGPL-2.1-only OR BSD-2-Clause"
77

88
[build-dependencies]
99
libbpf-cargo = { path = "../../libbpf-cargo" }
10-
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "83a228cf37fc65f2d14e4896a04922b5ee531a94" }
10+
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "991dd4b8dfd8c9d62ce8999521b24f61d9b7fc52" }
1111

1212
[dependencies]
1313
anyhow = "1.0"

examples/tc_port_whitelist/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "LGPL-2.1-only OR BSD-2-Clause"
77

88
[build-dependencies]
99
libbpf-cargo = { path = "../../libbpf-cargo" }
10-
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "83a228cf37fc65f2d14e4896a04922b5ee531a94" }
10+
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "991dd4b8dfd8c9d62ce8999521b24f61d9b7fc52" }
1111

1212
[dependencies]
1313
anyhow = "1.0"

examples/tcp_ca/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "LGPL-2.1-only OR BSD-2-Clause"
77

88
[build-dependencies]
99
libbpf-cargo = { path = "../../libbpf-cargo" }
10-
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "83a228cf37fc65f2d14e4896a04922b5ee531a94" }
10+
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "991dd4b8dfd8c9d62ce8999521b24f61d9b7fc52" }
1111

1212
[dependencies]
1313
clap = { version = "4.0.32", features = ["derive"] }

examples/tcp_option/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "LGPL-2.1-only OR BSD-2-Clause"
66

77
[build-dependencies]
88
libbpf-cargo = { path = "../../libbpf-cargo" }
9-
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "83a228cf37fc65f2d14e4896a04922b5ee531a94" }
9+
vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "991dd4b8dfd8c9d62ce8999521b24f61d9b7fc52" }
1010

1111
[dependencies]
1212
anyhow = "1.0"

0 commit comments

Comments
 (0)