From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51817) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WstwM-0006fu-Cz for qemu-devel@nongnu.org; Fri, 06 Jun 2014 09:12:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WstwE-0005UT-UF for qemu-devel@nongnu.org; Fri, 06 Jun 2014 09:12:14 -0400 Received: from e06smtp17.uk.ibm.com ([195.75.94.113]:47971) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WstwE-0005UG-L1 for qemu-devel@nongnu.org; Fri, 06 Jun 2014 09:12:06 -0400 Received: from /spool/local by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 6 Jun 2014 14:12:05 +0100 Received: from b06cxnps3074.portsmouth.uk.ibm.com (d06relay09.portsmouth.uk.ibm.com [9.149.109.194]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id 7BFEB2190041 for ; Fri, 6 Jun 2014 14:11:52 +0100 (BST) Received: from d06av09.portsmouth.uk.ibm.com (d06av09.portsmouth.uk.ibm.com [9.149.37.250]) by b06cxnps3074.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id s56DC2no21364892 for ; Fri, 6 Jun 2014 13:12:03 GMT Received: from d06av09.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s56DC2jS005089 for ; Fri, 6 Jun 2014 07:12:02 -0600 Date: Fri, 6 Jun 2014 15:12:00 +0200 From: Cornelia Huck Message-ID: <20140606151200.660e3072.cornelia.huck@de.ibm.com> In-Reply-To: <1402058765-48921-1-git-send-email-agraf@suse.de> References: <1402058765-48921-1-git-send-email-agraf@suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] KVM: Fix GSI number space limit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: pbonzini@redhat.com, qemu-devel@nongnu.org, kvm@vger.kernel.org On Fri, 6 Jun 2014 14:46:05 +0200 Alexander Graf wrote: > KVM tells us the number of GSIs it can handle inside the kernel. That value is > basically KVM_MAX_IRQ_ROUTES. However when we try to set the GSI mapping table, > it checks for > > r = -EINVAL; > if (routing.nr >= KVM_MAX_IRQ_ROUTES) > goto out; > > erroring out even when we're only using all of the GSIs. To make sure we never > hit that limit, let's reduce the number of GSIs we get from KVM by one. > > Signed-off-by: Alexander Graf > --- > kvm-all.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/kvm-all.c b/kvm-all.c > index 4e19eff..56a251b 100644 > --- a/kvm-all.c > +++ b/kvm-all.c > @@ -938,7 +938,7 @@ void kvm_init_irq_routing(KVMState *s) > { > int gsi_count, i; > > - gsi_count = kvm_check_extension(s, KVM_CAP_IRQ_ROUTING); > + gsi_count = kvm_check_extension(s, KVM_CAP_IRQ_ROUTING) - 1; > if (gsi_count > 0) { > unsigned int gsi_bits, i; > But gsi_count is already marked as used further down in this function, isn't it? Confused.