]> xenbits.xensource.com Git - xen.git/commitdiff
x86/EFI: also fill boot_tsc_stamp on the xen.efi boot path
authorJan Beulich <jbeulich@suse.com>
Mon, 27 Apr 2020 13:49:38 +0000 (15:49 +0200)
committerJan Beulich <jbeulich@suse.com>
Mon, 27 Apr 2020 13:49:38 +0000 (15:49 +0200)
Commit e3a379c35eff ("x86/time: always count s_time from Xen boot")
introducing this missed adjusting this path as well.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Wei Liu <wl@xen.org>
master commit: 0dbc112e727f6c17f306c864950bdf83dece5cd5
master date: 2020-04-14 11:42:11 +0200

xen/arch/x86/efi/efi-boot.h
xen/include/asm-x86/setup.h

index dee65b7177d0d688753d6ba629695820a2816644..a0be818ee487140f401df6505f07a294a5a193bb 100644 (file)
@@ -8,6 +8,7 @@
 #include <asm/edd.h>
 #include <asm/msr.h>
 #include <asm/processor.h>
+#include <asm/setup.h>
 
 static struct file __initdata ucode;
 static multiboot_info_t __initdata mbi = {
@@ -638,6 +639,8 @@ static void __init efi_arch_cpu(void)
 {
     uint32_t eax = cpuid_eax(0x80000000);
 
+    boot_tsc_stamp = rdtsc();
+
     if ( (eax >> 16) == 0x8000 && eax > 0x80000000 )
     {
         cpuid_ext_features = cpuid_edx(0x80000001);
index bb4c38567c68837e1a8c2a9b610f6517ede0ccb0..562c4b54d75782c571b096e5d02a5ea076c3434f 100644 (file)
@@ -13,6 +13,7 @@ extern char __2M_init_start[], __2M_init_end[];
 extern char __2M_rwdata_start[], __2M_rwdata_end[];
 
 extern unsigned long xenheap_initial_phys_start;
+extern uint64_t boot_tsc_stamp;
 
 void early_cpu_init(void);
 void early_time_init(void);