kvm,x86: load guest FPU context more eagerly
authorRik van Riel <riel@redhat.com>
Thu, 23 Apr 2015 15:52:37 +0000 (11:52 -0400)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 7 May 2015 09:29:45 +0000 (11:29 +0200)
commit653f52c316a49c5ee2701bc13b15879f20790662
tree2e939ee44f04a4bd39f009f0a91c9a536b116b71
parentd1ebdbf99a3ce90f3b886c2cf0dfd7da17703d2a
kvm,x86: load guest FPU context more eagerly

Currently KVM will clear the FPU bits in CR0.TS in the VMCS, and trap to
re-load them every time the guest accesses the FPU after a switch back into
the guest from the host.

This patch copies the x86 task switch semantics for FPU loading, with the
FPU loaded eagerly after first use if the system uses eager fpu mode,
or if the guest uses the FPU frequently.

In the latter case, after loading the FPU for 255 times, the fpu_counter
will roll over, and we will revert to loading the FPU on demand, until
it has been established that the guest is still actively using the FPU.

This mirrors the x86 task switch policy, which seems to work.

Signed-off-by: Rik van Riel <riel@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/x86.c
include/linux/kvm_host.h