Re: [kvm-devel] [patch 5/5] KVM: add ioctls to save/store mpstate

2008-04-13 Thread Avi Kivity
Marcelo Tosatti wrote:
 So userspace can save/restore the mpstate during migration.

Applied, thanks.  I also added public #defines for the possible values.

-- 
error compiling committee.c: too many arguments to function


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel


[kvm-devel] [patch 5/5] KVM: add ioctls to save/store mpstate

2008-04-11 Thread Marcelo Tosatti
So userspace can save/restore the mpstate during migration.

Signed-off-by: Marcelo Tosatti [EMAIL PROTECTED]

Index: kvm/arch/x86/kvm/x86.c
===
--- kvm.orig/arch/x86/kvm/x86.c
+++ kvm/arch/x86/kvm/x86.c
@@ -814,6 +814,7 @@ int kvm_dev_ioctl_check_extension(long e
case KVM_CAP_CLOCKSOURCE:
case KVM_CAP_PIT:
case KVM_CAP_NOP_IO_DELAY:
+   case KVM_CAP_MP_STATE:
r = 1;
break;
case KVM_CAP_VAPIC:
@@ -3057,6 +3058,24 @@ int kvm_arch_vcpu_ioctl_get_sregs(struct
return 0;
 }
 
+int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
+   struct kvm_mp_state *mp_state)
+{
+   vcpu_load(vcpu);
+   mp_state-mp_state = vcpu-arch.mp_state;
+   vcpu_put(vcpu);
+   return 0;
+}
+
+int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
+   struct kvm_mp_state *mp_state)
+{
+   vcpu_load(vcpu);
+   vcpu-arch.mp_state = mp_state-mp_state;
+   vcpu_put(vcpu);
+   return 0;
+}
+
 static void set_segment(struct kvm_vcpu *vcpu,
struct kvm_segment *var, int seg)
 {
Index: kvm/include/linux/kvm.h
===
--- kvm.orig/include/linux/kvm.h
+++ kvm/include/linux/kvm.h
@@ -222,6 +222,11 @@ struct kvm_vapic_addr {
__u64 vapic_addr;
 };
 
+/* for KVM_SET_MPSTATE */
+struct kvm_mp_state {
+   __u32 mp_state;
+};
+
 struct kvm_s390_psw {
__u64 mask;
__u64 addr;
@@ -279,6 +284,7 @@ struct kvm_s390_interrupt {
 #define KVM_CAP_PIT 11
 #define KVM_CAP_NOP_IO_DELAY 12
 #define KVM_CAP_PV_MMU 13
+#define KVM_CAP_MP_STATE 14
 
 /*
  * ioctls for VM fds
@@ -340,5 +346,7 @@ struct kvm_s390_interrupt {
 #define KVM_S390_SET_INITIAL_PSW  _IOW(KVMIO,  0x96, struct kvm_s390_psw)
 /* initial reset for s390 */
 #define KVM_S390_INITIAL_RESET_IO(KVMIO,  0x97)
+#define KVM_GET_MP_STATE  _IOR(KVMIO,  0x98, struct kvm_mp_state)
+#define KVM_SET_MP_STATE  _IOW(KVMIO,  0x99, struct kvm_mp_state)
 
 #endif
Index: kvm/include/linux/kvm_host.h
===
--- kvm.orig/include/linux/kvm_host.h
+++ kvm/include/linux/kvm_host.h
@@ -236,6 +236,10 @@ int kvm_arch_vcpu_ioctl_get_sregs(struct
  struct kvm_sregs *sregs);
 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
  struct kvm_sregs *sregs);
+int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
+   struct kvm_mp_state *mp_state);
+int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
+   struct kvm_mp_state *mp_state);
 int kvm_arch_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
struct kvm_debug_guest *dbg);
 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
Index: kvm/virt/kvm/kvm_main.c
===
--- kvm.orig/virt/kvm/kvm_main.c
+++ kvm/virt/kvm/kvm_main.c
@@ -978,6 +978,30 @@ out_free2:
r = 0;
break;
}
+   case KVM_GET_MP_STATE: {
+   struct kvm_mp_state mp_state;
+
+   r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, mp_state);
+   if (r)
+   goto out;
+   r = -EFAULT;
+   if (copy_to_user(argp, mp_state, sizeof mp_state))
+   goto out;
+   r = 0;
+   break;
+   }
+   case KVM_SET_MP_STATE: {
+   struct kvm_mp_state mp_state;
+
+   r = -EFAULT;
+   if (copy_from_user(mp_state, argp, sizeof mp_state))
+   goto out;
+   r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, mp_state);
+   if (r)
+   goto out;
+   r = 0;
+   break;
+   }
case KVM_TRANSLATE: {
struct kvm_translation tr;
 

-- 


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel