]> xenbits.xensource.com Git - xen.git/commitdiff
x86: move cached CR4 value to struct cpu_info
authorJan Beulich <jbeulich@suse.com>
Fri, 18 Mar 2016 08:49:47 +0000 (09:49 +0100)
committerJan Beulich <jbeulich@suse.com>
Fri, 18 Mar 2016 08:49:47 +0000 (09:49 +0100)
This not only eases using the cached value in assembly code, but also
improves the generated code resulting from such reads in C.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/domain.c
xen/arch/x86/setup.c
xen/include/asm-x86/current.h
xen/include/asm-x86/processor.h

index a6d721bd48176f51c0d9dfb57099c8b7f52220c2..a33f97561de2b981c5c908e6acba5f7db01a24dd 100644 (file)
@@ -64,7 +64,6 @@
 #include <asm/psr.h>
 
 DEFINE_PER_CPU(struct vcpu *, curr_vcpu);
-DEFINE_PER_CPU(unsigned long, cr4);
 
 static void default_idle(void);
 void (*pm_idle) (void) __read_mostly = default_idle;
index c5c332ddde7b3665a6dd7b7c22d243c15b71dc1b..1876a2895b078803bded7f7aa4564f32b5524a1c 100644 (file)
@@ -645,7 +645,7 @@ void __init noreturn __start_xen(unsigned long mbi_p)
     parse_video_info();
 
     rdmsrl(MSR_EFER, this_cpu(efer));
-    asm volatile ( "mov %%cr4,%0" : "=r" (this_cpu(cr4)) );
+    asm volatile ( "mov %%cr4,%0" : "=r" (get_cpu_info()->cr4) );
 
     /* We initialise the serial devices very early so we can get debugging. */
     ns16550.io_base = 0x3f8;
index 15b99ff8c0bd5aabf9962f07f700e66223474e56..40832611b7e2e647fe335b4a75c2c6260e351451 100644 (file)
@@ -41,8 +41,8 @@ struct cpu_info {
     unsigned int processor_id;
     struct vcpu *current_vcpu;
     unsigned long per_cpu_offset;
+    unsigned long cr4;
     /* get_stack_bottom() must be 16-byte aligned */
-    unsigned long __pad_for_stack_bottom;
 };
 
 static inline struct cpu_info *get_cpu_info(void)
index ba907ee602dd6a0f08454b6f028ec25d1723eef4..dfe0c5ecc3c02e9cb9a9910d1cfe3cecb718813b 100644 (file)
@@ -328,8 +328,6 @@ static inline unsigned long read_cr2(void)
     return cr2;
 }
 
-DECLARE_PER_CPU(unsigned long, cr4);
-
 static inline void raw_write_cr4(unsigned long val)
 {
     asm volatile ( "mov %0,%%cr4" : : "r" (val) );
@@ -337,12 +335,12 @@ static inline void raw_write_cr4(unsigned long val)
 
 static inline unsigned long read_cr4(void)
 {
-    return this_cpu(cr4);
+    return get_cpu_info()->cr4;
 }
 
 static inline void write_cr4(unsigned long val)
 {
-    this_cpu(cr4) = val;
+    get_cpu_info()->cr4 = val;
     raw_write_cr4(val);
 }