qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 1/7 v2] KVM regsync: Rename KVM_PUT_ constants to KVM_REGSYNC_
@ 2013-01-10 15:28 Jason J. Herne
  2013-01-10 16:34 ` Anthony Liguori
  0 siblings, 1 reply; 2+ messages in thread
From: Jason J. Herne @ 2013-01-10 15:28 UTC (permalink / raw)
  To: agraf, borntraeger, aliguori, mtosatti, qemu-devel, R65777,
	jan.kiszka
  Cc: Jason J. Herne

From: "Jason J. Herne" <jjherne@us.ibm.com>

It makes sense to rename these to KVM_REGSYNC in order to use them for
specifying a register level parameter for both kvm_arch_put_registers
and kvm_arch_get_registers.

Signed-off-by: Jason J. Herne <jjherne@us.ibm.com>
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
---
 include/sysemu/kvm.h |    6 +++---
 kvm-all.c            |    6 +++---
 target-i386/kvm.c    |    8 ++++----
 target-ppc/kvm.c     |    4 ++--
 target-s390x/kvm.c   |    2 +-
 5 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h
index 3db19ff..6756e16 100644
--- a/include/sysemu/kvm.h
+++ b/include/sysemu/kvm.h
@@ -168,11 +168,11 @@ int kvm_arch_process_async_events(CPUState *cpu);
 int kvm_arch_get_registers(CPUState *cpu);
 
 /* state subset only touched by the VCPU itself during runtime */
-#define KVM_PUT_RUNTIME_STATE   1
+#define KVM_REGSYNC_RUNTIME_STATE   1
 /* state subset modified during VCPU reset */
-#define KVM_PUT_RESET_STATE     2
+#define KVM_REGSYNC_RESET_STATE     2
 /* full state set, modified during initialization or on vmload */
-#define KVM_PUT_FULL_STATE      3
+#define KVM_REGSYNC_FULL_STATE      3
 
 int kvm_arch_put_registers(CPUState *cpu, int level);
 
diff --git a/kvm-all.c b/kvm-all.c
index fc0c6e7..aa58b74 100644
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -1512,7 +1512,7 @@ void kvm_cpu_synchronize_post_reset(CPUArchState *env)
 {
     CPUState *cpu = ENV_GET_CPU(env);
 
-    kvm_arch_put_registers(cpu, KVM_PUT_RESET_STATE);
+    kvm_arch_put_registers(cpu, KVM_REGSYNC_RESET_STATE);
     cpu->kvm_vcpu_dirty = false;
 }
 
@@ -1520,7 +1520,7 @@ void kvm_cpu_synchronize_post_init(CPUArchState *env)
 {
     CPUState *cpu = ENV_GET_CPU(env);
 
-    kvm_arch_put_registers(cpu, KVM_PUT_FULL_STATE);
+    kvm_arch_put_registers(cpu, KVM_REGSYNC_FULL_STATE);
     cpu->kvm_vcpu_dirty = false;
 }
 
@@ -1539,7 +1539,7 @@ int kvm_cpu_exec(CPUArchState *env)
 
     do {
         if (cpu->kvm_vcpu_dirty) {
-            kvm_arch_put_registers(cpu, KVM_PUT_RUNTIME_STATE);
+            kvm_arch_put_registers(cpu, KVM_REGSYNC_RUNTIME_STATE);
             cpu->kvm_vcpu_dirty = false;
         }
 
diff --git a/target-i386/kvm.c b/target-i386/kvm.c
index 3acff40..fc84922 100644
--- a/target-i386/kvm.c
+++ b/target-i386/kvm.c
@@ -1049,7 +1049,7 @@ static int kvm_put_msrs(X86CPU *cpu, int level)
         kvm_msr_entry_set(&msrs[n++], MSR_LSTAR, env->lstar);
     }
 #endif
-    if (level == KVM_PUT_FULL_STATE) {
+    if (level == KVM_REGSYNC_FULL_STATE) {
         /*
          * KVM is yet unable to synchronize TSC values of multiple VCPUs on
          * writeback. Until this is fixed, we only write the offset to SMP
@@ -1065,7 +1065,7 @@ static int kvm_put_msrs(X86CPU *cpu, int level)
      * too heavy for normal writeback. Limit them to reset or full state
      * updates.
      */
-    if (level >= KVM_PUT_RESET_STATE) {
+    if (level >= KVM_REGSYNC_RESET_STATE) {
         kvm_msr_entry_set(&msrs[n++], MSR_KVM_SYSTEM_TIME,
                           env->system_time_msr);
         kvm_msr_entry_set(&msrs[n++], MSR_KVM_WALL_CLOCK, env->wall_clock_msr);
@@ -1504,7 +1504,7 @@ static int kvm_put_vcpu_events(X86CPU *cpu, int level)
     events.sipi_vector = env->sipi_vector;
 
     events.flags = 0;
-    if (level >= KVM_PUT_RESET_STATE) {
+    if (level >= KVM_REGSYNC_RESET_STATE) {
         events.flags |=
             KVM_VCPUEVENT_VALID_NMI_PENDING | KVM_VCPUEVENT_VALID_SIPI_VECTOR;
     }
@@ -1653,7 +1653,7 @@ int kvm_arch_put_registers(CPUState *cpu, int level)
     if (ret < 0) {
         return ret;
     }
-    if (level >= KVM_PUT_RESET_STATE) {
+    if (level >= KVM_REGSYNC_RESET_STATE) {
         ret = kvm_put_mp_state(x86_cpu);
         if (ret < 0) {
             return ret;
diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c
index 436ca47..f705b4c 100644
--- a/target-ppc/kvm.c
+++ b/target-ppc/kvm.c
@@ -489,7 +489,7 @@ int kvm_arch_put_registers(CPUState *cs, int level)
         env->tlb_dirty = false;
     }
 
-    if (cap_segstate && (level >= KVM_PUT_RESET_STATE)) {
+    if (cap_segstate && (level >= KVM_REGSYNC_RESET_STATE)) {
         struct kvm_sregs sregs;
 
         sregs.pvr = env->spr[SPR_PVR];
@@ -524,7 +524,7 @@ int kvm_arch_put_registers(CPUState *cs, int level)
         }
     }
 
-    if (cap_hior && (level >= KVM_PUT_RESET_STATE)) {
+    if (cap_hior && (level >= KVM_REGSYNC_RESET_STATE)) {
         uint64_t hior = env->spr[SPR_HIOR];
         struct kvm_one_reg reg = {
             .id = KVM_REG_PPC_HIOR,
diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c
index 6ec5e6d..e7b5ad9 100644
--- a/target-s390x/kvm.c
+++ b/target-s390x/kvm.c
@@ -117,7 +117,7 @@ int kvm_arch_put_registers(CPUState *cs, int level)
     }
 
     /* Do we need to save more than that? */
-    if (level == KVM_PUT_RUNTIME_STATE) {
+    if (level == KVM_REGSYNC_RUNTIME_STATE) {
         return 0;
     }
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH 1/7 v2] KVM regsync: Rename KVM_PUT_ constants to KVM_REGSYNC_
  2013-01-10 15:28 [Qemu-devel] [PATCH 1/7 v2] KVM regsync: Rename KVM_PUT_ constants to KVM_REGSYNC_ Jason J. Herne
@ 2013-01-10 16:34 ` Anthony Liguori
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony Liguori @ 2013-01-10 16:34 UTC (permalink / raw)
  To: Jason Herne, agraf, borntraeger, mtosatti, qemu-devel, R65777,
	jan.kiszka

Jason Herne <jjherne@us.ibm.com> writes:

Please use git-send-email when sending patches.  You're breaking
threading.

Regards,

Anthony Liguori

> From: "Jason J. Herne" <jjherne@us.ibm.com>
>
> It makes sense to rename these to KVM_REGSYNC in order to use them for
> specifying a register level parameter for both kvm_arch_put_registers
> and kvm_arch_get_registers.
>
> Signed-off-by: Jason J. Herne <jjherne@us.ibm.com>
> Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
> ---
>  include/sysemu/kvm.h |    6 +++---
>  kvm-all.c            |    6 +++---
>  target-i386/kvm.c    |    8 ++++----
>  target-ppc/kvm.c     |    4 ++--
>  target-s390x/kvm.c   |    2 +-
>  5 files changed, 13 insertions(+), 13 deletions(-)
>
> diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h
> index 3db19ff..6756e16 100644
> --- a/include/sysemu/kvm.h
> +++ b/include/sysemu/kvm.h
> @@ -168,11 +168,11 @@ int kvm_arch_process_async_events(CPUState *cpu);
>  int kvm_arch_get_registers(CPUState *cpu);
>  
>  /* state subset only touched by the VCPU itself during runtime */
> -#define KVM_PUT_RUNTIME_STATE   1
> +#define KVM_REGSYNC_RUNTIME_STATE   1
>  /* state subset modified during VCPU reset */
> -#define KVM_PUT_RESET_STATE     2
> +#define KVM_REGSYNC_RESET_STATE     2
>  /* full state set, modified during initialization or on vmload */
> -#define KVM_PUT_FULL_STATE      3
> +#define KVM_REGSYNC_FULL_STATE      3
>  
>  int kvm_arch_put_registers(CPUState *cpu, int level);
>  
> diff --git a/kvm-all.c b/kvm-all.c
> index fc0c6e7..aa58b74 100644
> --- a/kvm-all.c
> +++ b/kvm-all.c
> @@ -1512,7 +1512,7 @@ void kvm_cpu_synchronize_post_reset(CPUArchState *env)
>  {
>      CPUState *cpu = ENV_GET_CPU(env);
>  
> -    kvm_arch_put_registers(cpu, KVM_PUT_RESET_STATE);
> +    kvm_arch_put_registers(cpu, KVM_REGSYNC_RESET_STATE);
>      cpu->kvm_vcpu_dirty = false;
>  }
>  
> @@ -1520,7 +1520,7 @@ void kvm_cpu_synchronize_post_init(CPUArchState *env)
>  {
>      CPUState *cpu = ENV_GET_CPU(env);
>  
> -    kvm_arch_put_registers(cpu, KVM_PUT_FULL_STATE);
> +    kvm_arch_put_registers(cpu, KVM_REGSYNC_FULL_STATE);
>      cpu->kvm_vcpu_dirty = false;
>  }
>  
> @@ -1539,7 +1539,7 @@ int kvm_cpu_exec(CPUArchState *env)
>  
>      do {
>          if (cpu->kvm_vcpu_dirty) {
> -            kvm_arch_put_registers(cpu, KVM_PUT_RUNTIME_STATE);
> +            kvm_arch_put_registers(cpu, KVM_REGSYNC_RUNTIME_STATE);
>              cpu->kvm_vcpu_dirty = false;
>          }
>  
> diff --git a/target-i386/kvm.c b/target-i386/kvm.c
> index 3acff40..fc84922 100644
> --- a/target-i386/kvm.c
> +++ b/target-i386/kvm.c
> @@ -1049,7 +1049,7 @@ static int kvm_put_msrs(X86CPU *cpu, int level)
>          kvm_msr_entry_set(&msrs[n++], MSR_LSTAR, env->lstar);
>      }
>  #endif
> -    if (level == KVM_PUT_FULL_STATE) {
> +    if (level == KVM_REGSYNC_FULL_STATE) {
>          /*
>           * KVM is yet unable to synchronize TSC values of multiple VCPUs on
>           * writeback. Until this is fixed, we only write the offset to SMP
> @@ -1065,7 +1065,7 @@ static int kvm_put_msrs(X86CPU *cpu, int level)
>       * too heavy for normal writeback. Limit them to reset or full state
>       * updates.
>       */
> -    if (level >= KVM_PUT_RESET_STATE) {
> +    if (level >= KVM_REGSYNC_RESET_STATE) {
>          kvm_msr_entry_set(&msrs[n++], MSR_KVM_SYSTEM_TIME,
>                            env->system_time_msr);
>          kvm_msr_entry_set(&msrs[n++], MSR_KVM_WALL_CLOCK, env->wall_clock_msr);
> @@ -1504,7 +1504,7 @@ static int kvm_put_vcpu_events(X86CPU *cpu, int level)
>      events.sipi_vector = env->sipi_vector;
>  
>      events.flags = 0;
> -    if (level >= KVM_PUT_RESET_STATE) {
> +    if (level >= KVM_REGSYNC_RESET_STATE) {
>          events.flags |=
>              KVM_VCPUEVENT_VALID_NMI_PENDING | KVM_VCPUEVENT_VALID_SIPI_VECTOR;
>      }
> @@ -1653,7 +1653,7 @@ int kvm_arch_put_registers(CPUState *cpu, int level)
>      if (ret < 0) {
>          return ret;
>      }
> -    if (level >= KVM_PUT_RESET_STATE) {
> +    if (level >= KVM_REGSYNC_RESET_STATE) {
>          ret = kvm_put_mp_state(x86_cpu);
>          if (ret < 0) {
>              return ret;
> diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c
> index 436ca47..f705b4c 100644
> --- a/target-ppc/kvm.c
> +++ b/target-ppc/kvm.c
> @@ -489,7 +489,7 @@ int kvm_arch_put_registers(CPUState *cs, int level)
>          env->tlb_dirty = false;
>      }
>  
> -    if (cap_segstate && (level >= KVM_PUT_RESET_STATE)) {
> +    if (cap_segstate && (level >= KVM_REGSYNC_RESET_STATE)) {
>          struct kvm_sregs sregs;
>  
>          sregs.pvr = env->spr[SPR_PVR];
> @@ -524,7 +524,7 @@ int kvm_arch_put_registers(CPUState *cs, int level)
>          }
>      }
>  
> -    if (cap_hior && (level >= KVM_PUT_RESET_STATE)) {
> +    if (cap_hior && (level >= KVM_REGSYNC_RESET_STATE)) {
>          uint64_t hior = env->spr[SPR_HIOR];
>          struct kvm_one_reg reg = {
>              .id = KVM_REG_PPC_HIOR,
> diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c
> index 6ec5e6d..e7b5ad9 100644
> --- a/target-s390x/kvm.c
> +++ b/target-s390x/kvm.c
> @@ -117,7 +117,7 @@ int kvm_arch_put_registers(CPUState *cs, int level)
>      }
>  
>      /* Do we need to save more than that? */
> -    if (level == KVM_PUT_RUNTIME_STATE) {
> +    if (level == KVM_REGSYNC_RUNTIME_STATE) {
>          return 0;
>      }
>  
> -- 
> 1.7.9.5

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-01-10 16:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-10 15:28 [Qemu-devel] [PATCH 1/7 v2] KVM regsync: Rename KVM_PUT_ constants to KVM_REGSYNC_ Jason J. Herne
2013-01-10 16:34 ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).