performance-metrics: Fix the names of the kernels

In 2b05753716, the names of the reference kernels are changed.

Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
Wei Liu 2025-07-16 17:17:09 +00:00 committed by Bo Chen
parent e32fa593e5
commit cea708deb9

View file

@ -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
}