All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Thomas Huth <thuth@redhat.com>,
	qemu-devel@nongnu.org, qemu-trivial@nongnu.org
Cc: mtosatti@redhat.com, ehabkost@redhat.com, rth@twiddle.net
Subject: Re: [Qemu-trivial] [PATCH] kvm: Move x86-specific functions into target-i386/kvm.c
Date: Fri, 16 Oct 2015 09:27:56 +0200	[thread overview]
Message-ID: <5620A6FC.9030802@redhat.com> (raw)
In-Reply-To: <1444933820-6968-1-git-send-email-thuth@redhat.com>



On 15/10/2015 20:30, Thomas Huth wrote:
> The functions for checking xcrs, xsave and pit_state2 are
> only used on x86, so they should reside in target-i386/kvm.c.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  include/sysemu/kvm.h |  2 --
>  kvm-all.c            | 29 -----------------------------
>  kvm-stub.c           |  5 -----
>  target-i386/kvm.c    | 31 ++++++++++++++++++++++++++-----
>  4 files changed, 26 insertions(+), 41 deletions(-)
> 
> diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h
> index 2a58b4d..d26dfcb 100644
> --- a/include/sysemu/kvm.h
> +++ b/include/sysemu/kvm.h
> @@ -182,8 +182,6 @@ int kvm_has_sync_mmu(void);
>  int kvm_has_vcpu_events(void);
>  int kvm_has_robust_singlestep(void);
>  int kvm_has_debugregs(void);
> -int kvm_has_xsave(void);
> -int kvm_has_xcrs(void);
>  int kvm_has_pit_state2(void);
>  int kvm_has_many_ioeventfds(void);
>  int kvm_has_gsi_routing(void);
> diff --git a/kvm-all.c b/kvm-all.c
> index 0be4615..9caab30 100644
> --- a/kvm-all.c
> +++ b/kvm-all.c
> @@ -77,8 +77,6 @@ struct KVMState
>  #ifdef KVM_CAP_SET_GUEST_DEBUG
>      struct kvm_sw_breakpoint_head kvm_sw_breakpoints;
>  #endif
> -    int pit_state2;
> -    int xsave, xcrs;
>      int many_ioeventfds;
>      int intx_set_mask;
>      /* The man page (and posix) say ioctl numbers are signed int, but
> @@ -1585,18 +1583,6 @@ static int kvm_init(MachineState *ms)
>      s->debugregs = kvm_check_extension(s, KVM_CAP_DEBUGREGS);
>  #endif
>  
> -#ifdef KVM_CAP_XSAVE
> -    s->xsave = kvm_check_extension(s, KVM_CAP_XSAVE);
> -#endif
> -
> -#ifdef KVM_CAP_XCRS
> -    s->xcrs = kvm_check_extension(s, KVM_CAP_XCRS);
> -#endif
> -
> -#ifdef KVM_CAP_PIT_STATE2
> -    s->pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
> -#endif
> -
>  #ifdef KVM_CAP_IRQ_ROUTING
>      s->direct_msi = (kvm_check_extension(s, KVM_CAP_SIGNAL_MSI) > 0);
>  #endif
> @@ -2062,21 +2048,6 @@ int kvm_has_debugregs(void)
>      return kvm_state->debugregs;
>  }
>  
> -int kvm_has_xsave(void)
> -{
> -    return kvm_state->xsave;
> -}
> -
> -int kvm_has_xcrs(void)
> -{
> -    return kvm_state->xcrs;
> -}
> -
> -int kvm_has_pit_state2(void)
> -{
> -    return kvm_state->pit_state2;
> -}
> -
>  int kvm_has_many_ioeventfds(void)
>  {
>      if (!kvm_enabled()) {
> diff --git a/kvm-stub.c b/kvm-stub.c
> index d9ad624..a1d38f3 100644
> --- a/kvm-stub.c
> +++ b/kvm-stub.c
> @@ -67,11 +67,6 @@ int kvm_has_many_ioeventfds(void)
>      return 0;
>  }
>  
> -int kvm_has_pit_state2(void)
> -{
> -    return 0;
> -}
> -
>  void kvm_setup_guest_memory(void *start, size_t size)
>  {
>  }
> diff --git a/target-i386/kvm.c b/target-i386/kvm.c
> index 80d1a7e..1c33c6d 100644
> --- a/target-i386/kvm.c
> +++ b/target-i386/kvm.c
> @@ -88,6 +88,15 @@ static bool has_msr_xss;
>  static bool has_msr_architectural_pmu;
>  static uint32_t num_architectural_pmu_counters;
>  
> +static int has_xsave;
> +static int has_xcrs;
> +static int has_pit_state2;
> +
> +int kvm_has_pit_state2(void)
> +{
> +    return has_pit_state2;
> +}
> +
>  bool kvm_has_smm(void)
>  {
>      return kvm_check_extension(kvm_state, KVM_CAP_X86_SMM);
> @@ -752,7 +761,7 @@ int kvm_arch_init_vcpu(CPUState *cs)
>          }
>      }
>  
> -    if (kvm_has_xsave()) {
> +    if (has_xsave) {
>          env->kvm_xsave_buf = qemu_memalign(4096, sizeof(struct kvm_xsave));
>      }
>  
> @@ -908,6 +917,18 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
>      int ret;
>      struct utsname utsname;
>  
> +#ifdef KVM_CAP_XSAVE
> +    has_xsave = kvm_check_extension(s, KVM_CAP_XSAVE);
> +#endif
> +
> +#ifdef KVM_CAP_XCRS
> +    has_xcrs = kvm_check_extension(s, KVM_CAP_XCRS);
> +#endif
> +
> +#ifdef KVM_CAP_PIT_STATE2
> +    has_pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
> +#endif
> +
>      ret = kvm_get_supported_msrs(s);
>      if (ret < 0) {
>          return ret;
> @@ -1116,7 +1137,7 @@ static int kvm_put_xsave(X86CPU *cpu)
>      uint8_t *xmm, *ymmh, *zmmh;
>      int i, r;
>  
> -    if (!kvm_has_xsave()) {
> +    if (!has_xsave) {
>          return kvm_put_fpu(cpu);
>      }
>  
> @@ -1170,7 +1191,7 @@ static int kvm_put_xcrs(X86CPU *cpu)
>      CPUX86State *env = &cpu->env;
>      struct kvm_xcrs xcrs = {};
>  
> -    if (!kvm_has_xcrs()) {
> +    if (!has_xcrs) {
>          return 0;
>      }
>  
> @@ -1495,7 +1516,7 @@ static int kvm_get_xsave(X86CPU *cpu)
>      const uint8_t *xmm, *ymmh, *zmmh;
>      uint16_t cwd, swd, twd;
>  
> -    if (!kvm_has_xsave()) {
> +    if (!has_xsave) {
>          return kvm_get_fpu(cpu);
>      }
>  
> @@ -1554,7 +1575,7 @@ static int kvm_get_xcrs(X86CPU *cpu)
>      int i, ret;
>      struct kvm_xcrs xcrs;
>  
> -    if (!kvm_has_xcrs()) {
> +    if (!has_xcrs) {
>          return 0;
>      }
>  
> 

Applied, thanks.

Paolo


WARNING: multiple messages have this Message-ID (diff)
From: Paolo Bonzini <pbonzini@redhat.com>
To: Thomas Huth <thuth@redhat.com>,
	qemu-devel@nongnu.org, qemu-trivial@nongnu.org
Cc: mtosatti@redhat.com, ehabkost@redhat.com, rth@twiddle.net
Subject: Re: [Qemu-devel] [PATCH] kvm: Move x86-specific functions into target-i386/kvm.c
Date: Fri, 16 Oct 2015 09:27:56 +0200	[thread overview]
Message-ID: <5620A6FC.9030802@redhat.com> (raw)
In-Reply-To: <1444933820-6968-1-git-send-email-thuth@redhat.com>



On 15/10/2015 20:30, Thomas Huth wrote:
> The functions for checking xcrs, xsave and pit_state2 are
> only used on x86, so they should reside in target-i386/kvm.c.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  include/sysemu/kvm.h |  2 --
>  kvm-all.c            | 29 -----------------------------
>  kvm-stub.c           |  5 -----
>  target-i386/kvm.c    | 31 ++++++++++++++++++++++++++-----
>  4 files changed, 26 insertions(+), 41 deletions(-)
> 
> diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h
> index 2a58b4d..d26dfcb 100644
> --- a/include/sysemu/kvm.h
> +++ b/include/sysemu/kvm.h
> @@ -182,8 +182,6 @@ int kvm_has_sync_mmu(void);
>  int kvm_has_vcpu_events(void);
>  int kvm_has_robust_singlestep(void);
>  int kvm_has_debugregs(void);
> -int kvm_has_xsave(void);
> -int kvm_has_xcrs(void);
>  int kvm_has_pit_state2(void);
>  int kvm_has_many_ioeventfds(void);
>  int kvm_has_gsi_routing(void);
> diff --git a/kvm-all.c b/kvm-all.c
> index 0be4615..9caab30 100644
> --- a/kvm-all.c
> +++ b/kvm-all.c
> @@ -77,8 +77,6 @@ struct KVMState
>  #ifdef KVM_CAP_SET_GUEST_DEBUG
>      struct kvm_sw_breakpoint_head kvm_sw_breakpoints;
>  #endif
> -    int pit_state2;
> -    int xsave, xcrs;
>      int many_ioeventfds;
>      int intx_set_mask;
>      /* The man page (and posix) say ioctl numbers are signed int, but
> @@ -1585,18 +1583,6 @@ static int kvm_init(MachineState *ms)
>      s->debugregs = kvm_check_extension(s, KVM_CAP_DEBUGREGS);
>  #endif
>  
> -#ifdef KVM_CAP_XSAVE
> -    s->xsave = kvm_check_extension(s, KVM_CAP_XSAVE);
> -#endif
> -
> -#ifdef KVM_CAP_XCRS
> -    s->xcrs = kvm_check_extension(s, KVM_CAP_XCRS);
> -#endif
> -
> -#ifdef KVM_CAP_PIT_STATE2
> -    s->pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
> -#endif
> -
>  #ifdef KVM_CAP_IRQ_ROUTING
>      s->direct_msi = (kvm_check_extension(s, KVM_CAP_SIGNAL_MSI) > 0);
>  #endif
> @@ -2062,21 +2048,6 @@ int kvm_has_debugregs(void)
>      return kvm_state->debugregs;
>  }
>  
> -int kvm_has_xsave(void)
> -{
> -    return kvm_state->xsave;
> -}
> -
> -int kvm_has_xcrs(void)
> -{
> -    return kvm_state->xcrs;
> -}
> -
> -int kvm_has_pit_state2(void)
> -{
> -    return kvm_state->pit_state2;
> -}
> -
>  int kvm_has_many_ioeventfds(void)
>  {
>      if (!kvm_enabled()) {
> diff --git a/kvm-stub.c b/kvm-stub.c
> index d9ad624..a1d38f3 100644
> --- a/kvm-stub.c
> +++ b/kvm-stub.c
> @@ -67,11 +67,6 @@ int kvm_has_many_ioeventfds(void)
>      return 0;
>  }
>  
> -int kvm_has_pit_state2(void)
> -{
> -    return 0;
> -}
> -
>  void kvm_setup_guest_memory(void *start, size_t size)
>  {
>  }
> diff --git a/target-i386/kvm.c b/target-i386/kvm.c
> index 80d1a7e..1c33c6d 100644
> --- a/target-i386/kvm.c
> +++ b/target-i386/kvm.c
> @@ -88,6 +88,15 @@ static bool has_msr_xss;
>  static bool has_msr_architectural_pmu;
>  static uint32_t num_architectural_pmu_counters;
>  
> +static int has_xsave;
> +static int has_xcrs;
> +static int has_pit_state2;
> +
> +int kvm_has_pit_state2(void)
> +{
> +    return has_pit_state2;
> +}
> +
>  bool kvm_has_smm(void)
>  {
>      return kvm_check_extension(kvm_state, KVM_CAP_X86_SMM);
> @@ -752,7 +761,7 @@ int kvm_arch_init_vcpu(CPUState *cs)
>          }
>      }
>  
> -    if (kvm_has_xsave()) {
> +    if (has_xsave) {
>          env->kvm_xsave_buf = qemu_memalign(4096, sizeof(struct kvm_xsave));
>      }
>  
> @@ -908,6 +917,18 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
>      int ret;
>      struct utsname utsname;
>  
> +#ifdef KVM_CAP_XSAVE
> +    has_xsave = kvm_check_extension(s, KVM_CAP_XSAVE);
> +#endif
> +
> +#ifdef KVM_CAP_XCRS
> +    has_xcrs = kvm_check_extension(s, KVM_CAP_XCRS);
> +#endif
> +
> +#ifdef KVM_CAP_PIT_STATE2
> +    has_pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
> +#endif
> +
>      ret = kvm_get_supported_msrs(s);
>      if (ret < 0) {
>          return ret;
> @@ -1116,7 +1137,7 @@ static int kvm_put_xsave(X86CPU *cpu)
>      uint8_t *xmm, *ymmh, *zmmh;
>      int i, r;
>  
> -    if (!kvm_has_xsave()) {
> +    if (!has_xsave) {
>          return kvm_put_fpu(cpu);
>      }
>  
> @@ -1170,7 +1191,7 @@ static int kvm_put_xcrs(X86CPU *cpu)
>      CPUX86State *env = &cpu->env;
>      struct kvm_xcrs xcrs = {};
>  
> -    if (!kvm_has_xcrs()) {
> +    if (!has_xcrs) {
>          return 0;
>      }
>  
> @@ -1495,7 +1516,7 @@ static int kvm_get_xsave(X86CPU *cpu)
>      const uint8_t *xmm, *ymmh, *zmmh;
>      uint16_t cwd, swd, twd;
>  
> -    if (!kvm_has_xsave()) {
> +    if (!has_xsave) {
>          return kvm_get_fpu(cpu);
>      }
>  
> @@ -1554,7 +1575,7 @@ static int kvm_get_xcrs(X86CPU *cpu)
>      int i, ret;
>      struct kvm_xcrs xcrs;
>  
> -    if (!kvm_has_xcrs()) {
> +    if (!has_xcrs) {
>          return 0;
>      }
>  
> 

Applied, thanks.

Paolo

  reply	other threads:[~2015-10-16  7:28 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-15 18:30 [Qemu-trivial] [PATCH] kvm: Move x86-specific functions into target-i386/kvm.c Thomas Huth
2015-10-15 18:30 ` [Qemu-devel] " Thomas Huth
2015-10-16  7:27 ` Paolo Bonzini [this message]
2015-10-16  7:27   ` Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5620A6FC.9030802@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=mtosatti@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.