mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] Change hypervisor detection order
@ 2011-07-08 18:42 Anupam Chanda
  2011-07-09  0:01 ` [tip:x86/detect-hyper] x86, hyper: " tip-bot for Anupam Chanda
  0 siblings, 1 reply; 2+ messages in thread
From: Anupam Chanda @ 2011-07-08 18:42 UTC (permalink / raw)
  To: tglx, mingo, hpa, x86, stefano.stabellini, jeremy.fitzhardinge,
	eddie.dong, linux-kernel
  Cc: achanda

Detect Xen before HyperV because in Viridian compatibility mode Xen presents
itself as HyperV.

Signed-off-by: Anupam Chanda <achanda@nicira.com>
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Acked-by: Yaozu (Eddie) Dong <eddie.dong@intel.com>
Reviewed-by: H. Peter Anvin <hpa@zytor.com>
---
 arch/x86/kernel/cpu/hypervisor.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kernel/cpu/hypervisor.c b/arch/x86/kernel/cpu/hypervisor.c
index 8095f86..755f64f 100644
--- a/arch/x86/kernel/cpu/hypervisor.c
+++ b/arch/x86/kernel/cpu/hypervisor.c
@@ -32,11 +32,11 @@
  */
 static const __initconst struct hypervisor_x86 * const hypervisors[] =
 {
-	&x86_hyper_vmware,
-	&x86_hyper_ms_hyperv,
 #ifdef CONFIG_XEN_PVHVM
 	&x86_hyper_xen_hvm,
 #endif
+	&x86_hyper_vmware,
+	&x86_hyper_ms_hyperv,
 };
 
 const struct hypervisor_x86 *x86_hyper;
-- 
1.7.2.5


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

end of thread, other threads:[~2011-07-09  0:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-08 18:42 [PATCH] Change hypervisor detection order Anupam Chanda
2011-07-09  0:01 ` [tip:x86/detect-hyper] x86, hyper: " tip-bot for Anupam Chanda

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome