From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Borntraeger Subject: Re: [PATCH 4/4] KVM: x86: enable configurable MAX_VCPU Date: Wed, 19 Apr 2017 10:08:58 +0200 Message-ID: References: <20170413201951.11939-1-rkrcmar@redhat.com> <20170413201951.11939-5-rkrcmar@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: Christoffer Dall , Marc Zyngier , Paolo Bonzini , Cornelia Huck , James Hogan , Paul Mackerras , Alexander Graf To: =?UTF-8?B?UmFkaW0gS3LEjW3DocWZ?= , linux-kernel@vger.kernel.org, kvm@vger.kernel.org Return-path: Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:52498 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933515AbdDSIJG (ORCPT ); Wed, 19 Apr 2017 04:09:06 -0400 Received: from pps.filterd (m0098396.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.20/8.16.0.20) with SMTP id v3J88jkp109464 for ; Wed, 19 Apr 2017 04:09:05 -0400 Received: from e38.co.us.ibm.com (e38.co.us.ibm.com [32.97.110.159]) by mx0a-001b2d01.pphosted.com with ESMTP id 29wqq1jdqv-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Wed, 19 Apr 2017 04:09:05 -0400 Received: from localhost by e38.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 19 Apr 2017 02:09:04 -0600 In-Reply-To: <20170413201951.11939-5-rkrcmar@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On 04/13/2017 10:19 PM, Radim Krčmář wrote: > The only user of KVM_MAX_VCPU is switched to kvm->max_vcpu. > > The limit could have been INT_MAX as it makes no difference, but there > is no point in making it bigger than KVM_MAX_VCPU_ID. > > Signed-off-by: Radim Krčmář > --- > arch/x86/include/asm/kvm_host.h | 1 + > arch/x86/kvm/irq_comm.c | 4 ++-- > 2 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h > index 2cc5ec7cc6f5..eeeb88eedabf 100644 > --- a/arch/x86/include/asm/kvm_host.h > +++ b/arch/x86/include/asm/kvm_host.h > @@ -38,6 +38,7 @@ > #define KVM_MAX_VCPUS 288 > #define KVM_SOFT_MAX_VCPUS 240 > #define KVM_MAX_VCPU_ID 1023 > +#define KVM_CONFIGURABLE_MAX_VCPUS KVM_MAX_VCPU_ID > #define KVM_USER_MEM_SLOTS 509 > /* memory slots that are not exposed to userspace */ > #define KVM_PRIVATE_MEM_SLOTS 3 > diff --git a/arch/x86/kvm/irq_comm.c b/arch/x86/kvm/irq_comm.c > index 4517a4c2ac3a..a7baeb44539a 100644 > --- a/arch/x86/kvm/irq_comm.c > +++ b/arch/x86/kvm/irq_comm.c > @@ -60,7 +60,7 @@ int kvm_irq_delivery_to_apic(struct kvm *kvm, struct kvm_lapic *src, > { > int i, r = -1; > struct kvm_vcpu *vcpu, *lowest = NULL; > - unsigned long dest_vcpu_bitmap[BITS_TO_LONGS(KVM_MAX_VCPUS)]; > + unsigned long dest_vcpu_bitmap[BITS_TO_LONGS(kvm->max_vcpus)]; Doesnt that allow unlimited stack usage?