From 3deed47d57df26360352485aaf9bc89cb2b22598 Mon Sep 17 00:00:00 2001 From: Babis Chalios Date: Tue, 10 Sep 2024 12:41:59 +0200 Subject: [PATCH] chore: pin all 6.1 kernels for all pipelines Latest 6.1 introduced a regression in the parsing of VirtIO headers for the network device. This causes failures in the TX path, where Firecracker fails to write network frames in the TAP device. Pin the buildkite agents with 6.1 kernel to the latest known good version. Signed-off-by: Babis Chalios --- .buildkite/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.buildkite/common.py b/.buildkite/common.py index a479f59cc73..c33acee9b49 100644 --- a/.buildkite/common.py +++ b/.buildkite/common.py @@ -24,7 +24,8 @@ DEFAULT_PLATFORMS = [ ("al2", "linux_5.10"), - ("al2023", "linux_6.1"), + # TODO: unpin 6.1 AMI once the bug is fixed + ("al2023", "linux_6.1-pinned"), ]