1. 21 12月, 2018 2 次提交
    • V
      KVM: x86: svm: report MSR_IA32_MCG_EXT_CTL as unsupported · e87555e5
      Vitaly Kuznetsov 提交于
      AMD doesn't seem to implement MSR_IA32_MCG_EXT_CTL and svm code in kvm
      knows nothing about it, however, this MSR is among emulated_msrs and
      thus returned with KVM_GET_MSR_INDEX_LIST. The consequent KVM_GET_MSRS,
      of course, fails.
      
      Report the MSR as unsupported to not confuse userspace.
      Signed-off-by: NVitaly Kuznetsov <vkuznets@redhat.com>
      Signed-off-by: NRadim Krčmář <rkrcmar@redhat.com>
      e87555e5
    • P
      KVM: x86: fix size of x86_fpu_cache objects · ed8e4812
      Paolo Bonzini 提交于
      The memory allocation in b666a4b6 ("kvm: x86: Dynamically allocate
      guest_fpu", 2018-11-06) is wrong, there are other members in struct fpu
      before the fpregs_state union and the patch should be doing something
      similar to the code in fpu__init_task_struct_size.  It's enough to run
      a guest and then rmmod kvm to see slub errors which are actually caused
      by memory corruption.
      
      For now let's revert it to sizeof(struct fpu), which is conservative.
      I have plans to move fsave/fxsave/xsave directly in KVM, without using
      the kernel FPU helpers, and once it's done, the size of the object in
      the cache will be something like kvm_xstate_size.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      ed8e4812
  2. 20 12月, 2018 15 次提交
  3. 18 12月, 2018 18 次提交
  4. 17 12月, 2018 5 次提交