]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
kunit: enable hardware acceleration when available
authorTamir Duberstein <tamird@gmail.com>
Sat, 2 Nov 2024 12:09:49 +0000 (08:09 -0400)
committerShuah Khan <skhan@linuxfoundation.org>
Tue, 14 Jan 2025 21:56:56 +0000 (14:56 -0700)
Use KVM or HVF if supported by the QEMU binary and available on the
system.

This produces a nice improvement on my Apple M3 Pro running macOS 14.7:

Before:
./tools/testing/kunit/kunit.py exec --arch arm64
[HH:MM:SS] Elapsed time: 10.145s

After:
./tools/testing/kunit/kunit.py exec --arch arm64
[HH:MM:SS] Elapsed time: 1.773s

Signed-off-by: Tamir Duberstein <tamird@gmail.com>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/kunit/kunit_kernel.py
tools/testing/kunit/qemu_configs/arm64.py

index e76d7894b6c5195ece49f0d8c7ac35130df428a9..d30f90eae9a4237e85910fd36f7f1c731d952319 100644 (file)
@@ -125,6 +125,9 @@ class LinuxSourceTreeOperationsQemu(LinuxSourceTreeOperations):
                                '-append', ' '.join(params + [self._kernel_command_line]),
                                '-no-reboot',
                                '-nographic',
+                               '-accel', 'kvm',
+                               '-accel', 'hvf',
+                               '-accel', 'tcg',
                                '-serial', self._serial] + self._extra_qemu_params
                # Note: shlex.join() does what we want, but requires python 3.8+.
                print('Running tests with:\n$', ' '.join(shlex.quote(arg) for arg in qemu_command))
index d3ff27024755411441f910799be30399295c9541..5c44d3a87e6dd2cd6b086138186a277a1473585b 100644 (file)
@@ -9,4 +9,4 @@ CONFIG_SERIAL_AMBA_PL011_CONSOLE=y''',
                           qemu_arch='aarch64',
                           kernel_path='arch/arm64/boot/Image.gz',
                           kernel_command_line='console=ttyAMA0',
-                          extra_qemu_params=['-machine', 'virt', '-cpu', 'max,pauth-impdef=on'])
+                          extra_qemu_params=['-machine', 'virt', '-cpu', 'max'])