We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a9f763 commit 65a4a66Copy full SHA for 65a4a66
lkt/runner.py
@@ -88,7 +88,10 @@ def _boot_kernel(self):
88
using_kvm = self.boot_arch in ('arm64', 'arm64be') and HAVE_DEV_KVM_ACCESS
89
elif machine == 'x86_64':
90
using_kvm = self.boot_arch in ('x86', 'x86_64') and HAVE_DEV_KVM_ACCESS
91
- if using_kvm:
+ # 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':
95
boot_utils_cmd += ['-m', '2G']
96
lkt.utils.show_cmd(boot_utils_cmd)
97
sys.stderr.flush()
0 commit comments