All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Laurent Vivier <lvivier@redhat.com>, qemu-ppc@nongnu.org
Cc: dgibson@redhat.com, qemu-devel@nongnu.org,
	Alexander Graf <agraf@suse.de>
Subject: Re: [Qemu-devel] [PATCH] ppc: add helpful message when KVM fails to start VCPU
Date: Tue, 19 May 2015 10:07:07 +0200	[thread overview]
Message-ID: <555AEF2B.4020006@redhat.com> (raw)
In-Reply-To: <1431976007-20503-1-git-send-email-lvivier@redhat.com>

On 18/05/2015 21:06, Laurent Vivier wrote:
> On POWER8 systems, KVM checks if VCPU is running on primary threads,
> and that secondary threads are offline. If this is not the case,
> ioctl() fails with errno set to EBUSY.
> 
> QEMU aborts with a non explicit error message:
> $ ./qemu-system-ppc64 --nographic -machine pseries,accel=kvm
> error: kvm run failed Device or resource busy
> 
> To help user to diagnose the problem, this patch adds an informative
> error message.
> 
> There is no easy way to check if SMT is enabled before starting the VCPU,
> and as this case is the only one setting errno to EBUSY, we just check
> the errno value to display a message.
> 
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>

Thanks, applied to my queue for 2.4.

Paolo

> ---
>  kvm-all.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/kvm-all.c b/kvm-all.c
> index 17a3771..7b57826 100644
> --- a/kvm-all.c
> +++ b/kvm-all.c
> @@ -1828,6 +1828,14 @@ int kvm_cpu_exec(CPUState *cpu)
>              }
>              fprintf(stderr, "error: kvm run failed %s\n",
>                      strerror(-run_ret));
> +#ifdef TARGET_PPC
> +            if (run_ret == -EBUSY) {
> +                fprintf(stderr,
> +                        "This is probably because your SMT is enabled.\n"
> +                        "VCPU can only run on primary threads with all "
> +                        "secondary threads offline.\n");
> +            }
> +#endif
>              ret = -1;
>              break;
>          }
> 

      reply	other threads:[~2015-05-19  8:07 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-18 19:06 [Qemu-devel] [PATCH] ppc: add helpful message when KVM fails to start VCPU Laurent Vivier
2015-05-19  8:07 ` Paolo Bonzini [this message]

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=555AEF2B.4020006@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=agraf@suse.de \
    --cc=dgibson@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /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.