aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/x86.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r--arch/x86/kvm/x86.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index b364d192896c..5c3c9d38c780 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -817,6 +817,7 @@ int kvm_dev_ioctl_check_extension(long ext)
817 case KVM_CAP_CLOCKSOURCE: 817 case KVM_CAP_CLOCKSOURCE:
818 case KVM_CAP_PIT: 818 case KVM_CAP_PIT:
819 case KVM_CAP_NOP_IO_DELAY: 819 case KVM_CAP_NOP_IO_DELAY:
820 case KVM_CAP_MP_STATE:
820 r = 1; 821 r = 1;
821 break; 822 break;
822 case KVM_CAP_VAPIC: 823 case KVM_CAP_VAPIC:
@@ -3083,6 +3084,24 @@ int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
3083 return 0; 3084 return 0;
3084} 3085}
3085 3086
3087int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
3088 struct kvm_mp_state *mp_state)
3089{
3090 vcpu_load(vcpu);
3091 mp_state->mp_state = vcpu->arch.mp_state;
3092 vcpu_put(vcpu);
3093 return 0;
3094}
3095
3096int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
3097 struct kvm_mp_state *mp_state)
3098{
3099 vcpu_load(vcpu);
3100 vcpu->arch.mp_state = mp_state->mp_state;
3101 vcpu_put(vcpu);
3102 return 0;
3103}
3104
3086static void set_segment(struct kvm_vcpu *vcpu, 3105static void set_segment(struct kvm_vcpu *vcpu,
3087 struct kvm_segment *var, int seg) 3106 struct kvm_segment *var, int seg)
3088{ 3107{