From: David Gibson <david@gibson.dropbear.id.au>
To: Greg Kurz <groug@kaod.org>
Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org,
Thomas Huth <thuth@redhat.com>,
Sam Bobroff <sam.bobroff@au1.ibm.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 2/3] kvm: check KVM_CAP_NR_VCPUS with kvm_vm_check_extension()
Date: Fri, 15 Sep 2017 11:00:21 +1000 [thread overview]
Message-ID: <20170915010021.GC5250@umbus.fritz.box> (raw)
In-Reply-To: <150541713284.1616.15291547955159941369.stgit@bahia.lan>
[-- Attachment #1: Type: text/plain, Size: 4581 bytes --]
On Thu, Sep 14, 2017 at 09:25:32PM +0200, Greg Kurz wrote:
1;4803;0c> On a modern server-class ppc host with the following CPU topology:
>
> Architecture: ppc64le
> Byte Order: Little Endian
> CPU(s): 32
> On-line CPU(s) list: 0,8,16,24
> Off-line CPU(s) list: 1-7,9-15,17-23,25-31
> Thread(s) per core: 1
>
> If both KVM PR and KVM HV loaded and we pass:
>
> -machine pseries,accel=kvm,kvm-type=PR -smp 8
>
> We expect QEMU to warn that this exceeds the number of online CPUs:
>
> Warning: Number of SMP cpus requested (8) exceeds the recommended
> cpus supported by KVM (4)
> Warning: Number of hotpluggable cpus requested (8) exceeds the
> recommended cpus supported by KVM (4)
>
> but nothing is printed...
>
> This happens because on ppc the KVM_CAP_NR_VCPUS capability is VM
> specific ndreally depends on the KVM type, but we currently use it
> as a global capability. And KVM returns a fallback value based on
> KVM HV being present. Maybe KVM on POWER shouldn't presume anything
> as long as it doesn't have a VM, but in all cases, we should call
> KVM_CREATE_VM first and use KVM_CAP_NR_VCPUS as a VM capability.
>
> This patch hence changes kvm_recommended_vcpus() accordingly and
> moves the sanity checking of smp_cpus after the VM creation.
>
> It is okay for the other archs that also implement KVM_CAP_NR_VCPUS,
> ie, mips, s390, x86 and arm, because they don't depend on the VM
> being created or not.
>
> Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> accel/kvm/kvm-all.c | 45 +++++++++++++++++++++++----------------------
> 1 file changed, 23 insertions(+), 22 deletions(-)
>
> diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c
> index 323c567cfb68..d10534de2da1 100644
> --- a/accel/kvm/kvm-all.c
> +++ b/accel/kvm/kvm-all.c
> @@ -1533,7 +1533,7 @@ static void kvm_irqchip_create(MachineState *machine, KVMState *s)
> */
> static int kvm_recommended_vcpus(KVMState *s)
> {
> - int ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS);
> + int ret = kvm_vm_check_extension(s, KVM_CAP_NR_VCPUS);
> return (ret) ? ret : 4;
> }
>
> @@ -1623,27 +1623,6 @@ static int kvm_init(MachineState *ms)
> s->nr_slots = 32;
> }
>
> - /* check the vcpu limits */
> - soft_vcpus_limit = kvm_recommended_vcpus(s);
> - hard_vcpus_limit = kvm_max_vcpus(s);
> -
> - while (nc->name) {
> - if (nc->num > soft_vcpus_limit) {
> - fprintf(stderr,
> - "Warning: Number of %s cpus requested (%d) exceeds "
> - "the recommended cpus supported by KVM (%d)\n",
> - nc->name, nc->num, soft_vcpus_limit);
> -
> - if (nc->num > hard_vcpus_limit) {
> - fprintf(stderr, "Number of %s cpus requested (%d) exceeds "
> - "the maximum cpus supported by KVM (%d)\n",
> - nc->name, nc->num, hard_vcpus_limit);
> - exit(1);
> - }
> - }
> - nc++;
> - }
> -
> kvm_type = qemu_opt_get(qemu_get_machine_opts(), "kvm-type");
> if (mc->kvm_type) {
> type = mc->kvm_type(kvm_type);
> @@ -1678,6 +1657,28 @@ static int kvm_init(MachineState *ms)
> }
>
> s->vmfd = ret;
> +
> + /* check the vcpu limits */
> + soft_vcpus_limit = kvm_recommended_vcpus(s);
> + hard_vcpus_limit = kvm_max_vcpus(s);
> +
> + while (nc->name) {
> + if (nc->num > soft_vcpus_limit) {
> + fprintf(stderr,
> + "Warning: Number of %s cpus requested (%d) exceeds "
> + "the recommended cpus supported by KVM (%d)\n",
> + nc->name, nc->num, soft_vcpus_limit);
> +
> + if (nc->num > hard_vcpus_limit) {
> + fprintf(stderr, "Number of %s cpus requested (%d) exceeds "
> + "the maximum cpus supported by KVM (%d)\n",
> + nc->name, nc->num, hard_vcpus_limit);
> + exit(1);
> + }
> + }
> + nc++;
> + }
> +
> missing_cap = kvm_check_extension_list(s, kvm_required_capabilites);
> if (!missing_cap) {
> missing_cap =
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2017-09-15 2:59 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-14 19:25 [Qemu-devel] [PATCH 0/3] kvm: use kvm_vm_check_extension() with VM capabilities Greg Kurz
2017-09-14 19:25 ` [Qemu-devel] [PATCH 1/3] kvm: check KVM_CAP_SYNC_MMU with kvm_vm_check_extension() Greg Kurz
2017-09-15 0:54 ` David Gibson
2017-09-15 5:32 ` Thomas Huth
2017-09-15 15:14 ` Greg Kurz
2017-09-14 19:25 ` [Qemu-devel] [PATCH 2/3] kvm: check KVM_CAP_NR_VCPUS " Greg Kurz
2017-09-15 1:00 ` David Gibson [this message]
2017-09-15 5:34 ` Thomas Huth
2017-09-14 19:25 ` [Qemu-devel] [PATCH 3/3] ppc/kvm: check some capabilities " Greg Kurz
2017-09-15 5:15 ` Thomas Huth
2017-09-15 6:35 ` David Gibson
2017-09-15 8:18 ` Thomas Huth
2017-09-15 8:39 ` David Gibson
2017-09-15 8:43 ` Greg Kurz
2017-09-15 8:52 ` Thomas Huth
2017-09-15 6:34 ` David Gibson
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=20170915010021.GC5250@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=groug@kaod.org \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=sam.bobroff@au1.ibm.com \
--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 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).