Skip to content

Commit 1c2c839

Browse files
committed
chore: Update kernel version for Ubuntu
Now Ubuntu 24.04 AMI uses kernel v6.14. Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent cb1b8ea commit 1c2c839

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_tests/functional/test_cpu_features_host_vs_guest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,14 +195,14 @@ def test_host_vs_guest_cpu_features(uvm_plain_any):
195195
# Linux kernel v6.4+ passes through the CPUID bit for "flush_l1d" to guests.
196196
# https://github.com/torvalds/linux/commit/45cf86f26148e549c5ba4a8ab32a390e4bde216e
197197
#
198-
# Our test ubuntu host kernel is v6.8 and has the commit.
198+
# Our test ubuntu host kernel is v6.14 and has the commit.
199199
if global_props.host_linux_version_tpl >= (6, 4):
200200
expected_host_minus_guest -= {"flush_l1d"}
201201

202202
# Linux kernel v6.6+ drops the "invpcid_single" synthetic feature bit.
203203
# https://github.com/torvalds/linux/commit/54e3d9434ef61b97fd3263c141b928dc5635e50d
204204
#
205-
# Our test ubuntu host kernel is v6.8 and has the commit.
205+
# Our test ubuntu host kernel is v6.14 and has the commit.
206206
host_has_invpcid_single = global_props.host_linux_version_tpl < (6, 6)
207207
guest_has_invpcid_single = vm.guest_kernel_version < (6, 6)
208208
if host_has_invpcid_single and not guest_has_invpcid_single:

0 commit comments

Comments
 (0)