kvm: 23090: cpu0 unhandled wrmsr 0x391 data 2000000f

75

Solution 1

It's a harmless warning message. Your guest operating system is probing its virtual CPU and restoring some CPU state during boot, which can not be done in a virtual environment. See this KVM mailing list post. It should eventually go away with a KVM/QEMU update.

Solution 2

"wrmsr" means "write to model-specific register".

The KVM guest's kernel is attempting to access some x86_64 CPU register which is present in the physical CPU, but which KVM does not expose to the guest, or does not provide the guest write access to.

This denial of access is probably because that access may break the host. For example, you don't want your guest kernel being allowed to turn features of the physical processors on and off.

You can read about MSRs at: http://en.wikipedia.org/wiki/Model-specific_register

You can view the entire lot of x86 and x86_64 MSRs at: http://download.intel.com/products/processor/manual/325384.pdf

You can see this MSR 0x391 (the 0x specifies Hex, the Intel manual refers to this as 391H) is a performance counter register. Its usage is covered a bit more at: http://ajray.wordpress.com/2009/04/12/global-control-register-for-pmcs/

Because the guest VCPU is not a real CPU, and there is more running on the CPU than the guest can realise, we don't want its performance data messing up the real performance data which the host kernel is taking care of, hence the guest kernel writing into this MSR is denied.

Share:
75

Related videos on Youtube

Bishonen_PL
Author by

Bishonen_PL

Updated on September 18, 2022

Comments

  • Bishonen_PL
    Bishonen_PL over 1 year

    Can xlWings return a string instead a 2dim array in VBA? The documentation hints as if this might be possible, but with the lack of an example, it is hard for me to be certain.