-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Dockerfiles and kernel versions
In kernel 6.11 decl tag generation for kfuncs has been added. This allows users to list all kfuncs built into the kernel via the vmlinux BTF. This commit updates the versions.json to include kernel 6.11. The current builder ships with pahole 1.24 which it gets from the debian repository. This version does not support the new decl tag generation. This commit updates the builder to build pahole 1.27 from source. During the version upgrade two CI build errors were found. For 6.11 we new require `CONFIG_MPTCP=y`. Due to missing dependencies in the backport process the selftests can't build on v6.6.42-v6.6.52. So despite v6.6.52 being the latest version, only upgrading to v6.6.41. We should be able to upgrade once `tools/testing/selftests/bpf/netlink_helpers.{c,h}` have been backported to v6.6.x. Signed-off-by: Dylan Reimerink <[email protected]>
- Loading branch information
1 parent
2cf24ef
commit e3830fd
Showing
6 changed files
with
43 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1716461563 | ||
1727287467 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
[ | ||
{ | ||
"version": "6.9.1", | ||
"static_tag": "stable" | ||
"version": "6.12-rc1", | ||
"static_tag": "mainline" | ||
}, | ||
{ | ||
"version": "6.9", | ||
"static_tag": "mainline" | ||
"version": "6.11.1", | ||
"static_tag": "stable" | ||
}, | ||
{ | ||
"version": "6.8.10", | ||
"version": "6.10.12", | ||
"static_tag": "" | ||
}, | ||
{ | ||
"version": "6.6.31", | ||
"version": "6.6.41", | ||
"static_tag": "longterm" | ||
}, | ||
{ | ||
"version": "6.1.91", | ||
"version": "6.1.112", | ||
"static_tag": "" | ||
}, | ||
{ | ||
"version": "5.4.276", | ||
"version": "5.15.167", | ||
"static_tag": "" | ||
}, | ||
{ | ||
"version": "5.15.159", | ||
"version": "5.10.226", | ||
"static_tag": "" | ||
}, | ||
{ | ||
"version": "5.10.217", | ||
"version": "5.4.284", | ||
"static_tag": "" | ||
}, | ||
{ | ||
"version": "4.19.314", | ||
"version": "4.19.322", | ||
"static_tag": "" | ||
} | ||
] |