From d5ca76422abad1ccdac4e125d13cef3d28025dc3 Mon Sep 17 00:00:00 2001 From: neel Date: Sat, 18 Oct 2014 05:39:32 +0000 Subject: Don't advertise support for the NodeID MSR since bhyve doesn't emulate it. --- sys/amd64/vmm/x86.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sys/amd64/vmm') diff --git a/sys/amd64/vmm/x86.c b/sys/amd64/vmm/x86.c index 0b32eef..cf0b54b 100644 --- a/sys/amd64/vmm/x86.c +++ b/sys/amd64/vmm/x86.c @@ -171,6 +171,9 @@ x86_emulate_cpuid(struct vm *vm, int vcpu_id, */ regs[2] &= ~AMDID2_IBS; + /* NodeID MSR not available */ + regs[2] &= ~AMDID2_NODE_ID; + /* * Hide rdtscp/ia32_tsc_aux until we know how * to deal with them. -- cgit v1.1