All of lore.kernel.org
 help / color / mirror / Atom feed
* vmcs_revision_id: do we care?
@ 2008-01-08 22:40 Daniel Li
  2008-01-08 22:48 ` Keir Fraser
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Li @ 2008-01-08 22:40 UTC (permalink / raw)
  To: xen-devel

Right now when xen finds out a SMP host has processors with different 
vmcs_revision_id, it considers it a bug.

xen/arch/x86/hvm/vmx/vmcs.c:vmx_init_vmcs_config():

rdmsr(MSR_IA32_VMX_BASIC_MSR, vmx_msr_low, vmx_msr_high);

if ( smp_processor_id() == 0 )
{
    vmcs_revision_id = vmx_msr_low;
}
else
{
    BUG_ON(vmcs_revision_id != vmx_msr_low);
}

Does anyone know why are we doing this? Can we change that check into a 
warning message?

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

end of thread, other threads:[~2008-01-10 18:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-08 22:40 vmcs_revision_id: do we care? Daniel Li
2008-01-08 22:48 ` Keir Fraser
2008-01-09 16:13   ` Daniel Li
2008-01-09 16:18     ` Samuel Thibault
2008-01-09 19:25     ` Keir Fraser
2008-01-10 18:08     ` Keir Fraser

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.