All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0
@ 2015-03-26 23:33 Luis R. Rodriguez
  2015-03-27  8:32 ` Roger Pau Monné
  2015-03-27  9:37 ` Andrew Cooper
  0 siblings, 2 replies; 5+ messages in thread
From: Luis R. Rodriguez @ 2015-03-26 23:33 UTC (permalink / raw)
  To: xen-devel
  Cc: jgross, mcgrof, mcgrof, david.vrabel, boris.ostrovsky,
	Roger Pau Monné

From: "Luis R. Rodriguez" <mcgrof@suse.com>

Commit 586ab6a by Roger disabled the main MTRR CPU feature
on the cpuid when on pvh in order to avoid having MTRR code
run on the OS on dom0. This missed the fact that not all CPUs
use this cpuid to identify MTRR support, this complets that.

This could in theory fix some potential issues where MTRR
code was previously enabled, for instance running cat /proc/mtrr
on a Linux system where MTRR was actually disabled.

Cc: Roger Pau Monné <roger.pau@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---

Konrad asked me to submit this. I don't have time to test this
though so it goes as RFT. If it clears through the flames of
xen testing thunder please consider merging.

 xen/arch/x86/traps.c             | 6 ++++++
 xen/include/asm-x86/cpufeature.h | 3 +++
 2 files changed, 9 insertions(+)

diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c
index ec324b0..23c3bbc 100644
--- a/xen/arch/x86/traps.c
+++ b/xen/arch/x86/traps.c
@@ -888,7 +888,13 @@ void pv_cpuid(struct cpu_user_regs *regs)
         __clear_bit(X86_FEATURE_ACC, &d);
         __clear_bit(X86_FEATURE_PBE, &d);
         if ( is_pvh_vcpu(curr) )
+        {
             __clear_bit(X86_FEATURE_MTRR, &d);
+            __clear_bit(X86_FEATURE_K6_MTRR, &d);
+            __clear_bit(X86_FEATURE_CENTAUR_MCR, &d);
+            __clear_bit(X86_FEATURE_CYRIX_ARR, &d);
+        }
+
 
         __clear_bit(X86_FEATURE_DTES64 % 32, &c);
         __clear_bit(X86_FEATURE_MWAIT % 32, &c);
diff --git a/xen/include/asm-x86/cpufeature.h b/xen/include/asm-x86/cpufeature.h
index 7963a3a..2ce5c7c 100644
--- a/xen/include/asm-x86/cpufeature.h
+++ b/xen/include/asm-x86/cpufeature.h
@@ -61,6 +61,9 @@
 
 /* Other features, Linux-defined mapping, word 3 */
 /* This range is used for feature bits which conflict or are synthesized */
+#define X86_FEATURE_K6_MTRR     (3*32+ 1) /* AMD K6 nonstandard MTRRs */
+#define X86_FEATURE_CYRIX_ARR   (3*32+ 2) /* Cyrix ARRs (= MTRRs) */
+#define X86_FEATURE_CENTAUR_MCR (3*32+ 3) /* Centaur MCRs (= MTRRs) */
 #define X86_FEATURE_CONSTANT_TSC (3*32+ 8) /* TSC ticks at a constant rate */
 #define X86_FEATURE_NONSTOP_TSC	(3*32+ 9) /* TSC does not stop in C states */
 #define X86_FEATURE_ARAT	(3*32+ 10) /* Always running APIC timer */
-- 
2.3.2.209.gd67f9d5.dirty


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-03-27 18:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-26 23:33 [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0 Luis R. Rodriguez
2015-03-27  8:32 ` Roger Pau Monné
2015-03-27 18:08   ` Luis R. Rodriguez
2015-03-27  9:37 ` Andrew Cooper
2015-03-27 10:33   ` Jan Beulich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.