From 7373942623f4fb70febc7c8ea1491b4d53ff451e Mon Sep 17 00:00:00 2001 From: Liran Alon Date: Mon, 15 Jun 2020 13:00:44 -0400 Subject: [PATCH] i386/cpu: Store LAPIC bus frequency in CPU structure No functional change. This information will be used by following patches. Backports commit 73b994f6d74ec00a1d78daf4145096ff9f0e2982 from qemu --- qemu/target/i386/cpu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/qemu/target/i386/cpu.h b/qemu/target/i386/cpu.h index af3d053e..2efd21c2 100644 --- a/qemu/target/i386/cpu.h +++ b/qemu/target/i386/cpu.h @@ -1486,6 +1486,7 @@ typedef struct CPUX86State { bool tsc_valid; int64_t tsc_khz; int64_t user_tsc_khz; /* for sanity check only */ + uint64_t apic_bus_freq; void *kvm_xsave_buf; uint64_t mcg_cap;