Skip to content

Commit 65a4a66

Browse files
committed
lkt: runner: Do not increase memory for i386
Signed-off-by: Nathan Chancellor <[email protected]>
1 parent 4a9f763 commit 65a4a66

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lkt/runner.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,10 @@ def _boot_kernel(self):
8888
using_kvm = self.boot_arch in ('arm64', 'arm64be') and HAVE_DEV_KVM_ACCESS
8989
elif machine == 'x86_64':
9090
using_kvm = self.boot_arch in ('x86', 'x86_64') and HAVE_DEV_KVM_ACCESS
91-
if using_kvm:
91+
# i386 may not have highmem automatically enabled after
92+
# https://git.kernel.org/tip/bbeb69ce301323e84f1677484eb8e4cd8fb1f9f8
93+
# and it does not need this workaround because it can only have 8 CPUs.
94+
if using_kvm and self.boot_arch != 'x86':
9295
boot_utils_cmd += ['-m', '2G']
9396
lkt.utils.show_cmd(boot_utils_cmd)
9497
sys.stderr.flush()

0 commit comments

Comments
 (0)