From cea708deb92c5c277f42df75a05840191cfeb67c Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Wed, 16 Jul 2025 17:17:09 +0000 Subject: [PATCH] performance-metrics: Fix the names of the kernels In 2b0575371693, the names of the reference kernels are changed. Signed-off-by: Wei Liu --- performance-metrics/src/performance_tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/performance-metrics/src/performance_tests.rs b/performance-metrics/src/performance_tests.rs index 7bbecf889..a2d700490 100644 --- a/performance-metrics/src/performance_tests.rs +++ b/performance-metrics/src/performance_tests.rs @@ -68,9 +68,9 @@ fn direct_kernel_boot_path() -> PathBuf { let mut kernel_path = workload_path; #[cfg(target_arch = "x86_64")] - kernel_path.push("vmlinux"); + kernel_path.push("vmlinux-x86_64"); #[cfg(target_arch = "aarch64")] - kernel_path.push("Image"); + kernel_path.push("Image-arm64"); kernel_path }