From 882bd9aa144fb4ef718700255c60c8f937dc0ed6 Mon Sep 17 00:00:00 2001 From: Omar Sandoval Date: Tue, 27 Aug 2024 13:47:36 -0700 Subject: [PATCH] Add 6.11 to supported kernels s390x support was broken entirely on 6.10 and 6.11 until Linux kernel commit 1642285e511c ("s390/boot: Fix KASLR base offset off by __START_KERNEL bytes") (in v6.11-rc5). That fix is also being backported to 6.10-stable. After that fix, virtual address translation is still broken on s390x on Linux >= 6.10. Make note of that. Other than that, 6.11 didn't need any updates. Signed-off-by: Omar Sandoval --- docs/support_matrix.rst | 4 ++-- vmtest/config.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/support_matrix.rst b/docs/support_matrix.rst index 1eda070a0..e28e61edd 100644 --- a/docs/support_matrix.rst +++ b/docs/support_matrix.rst @@ -25,7 +25,7 @@ of this support is: * - s390x - ✓ - ✓ - - ✓ + - ✓ (currently broken on Linux ≥ 6.10) * - ppc64 - ✓ - ✓ @@ -70,7 +70,7 @@ currently fully supported are: .. Keep this in sync with vmtest/config.py. -- 6.0-6.10 +- 6.0-6.11 - 5.10-5.19 - 5.4 - 4.19 diff --git a/vmtest/config.py b/vmtest/config.py index a8121c831..9c99f4545 100644 --- a/vmtest/config.py +++ b/vmtest/config.py @@ -13,6 +13,7 @@ # Kernel versions that we run tests on and therefore support. Keep this in sync # with docs/support_matrix.rst. SUPPORTED_KERNEL_VERSIONS = ( + "6.11", "6.10", "6.9", "6.8",