From: Jan Kiszka <jan.kiszka@web.de>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: Jason Baron <jbaron@redhat.com>,
aliguori@us.ibm.com, kvm@vger.kernel.org, mst@redhat.com,
qemu-devel@nongnu.org, avi@redhat.com
Subject: Re: [PATCH 1/2] qemu kvm: Set up gsi bitmap correctly
Date: Wed, 28 Mar 2012 00:01:25 +0200 [thread overview]
Message-ID: <4F7238B5.600@web.de> (raw)
In-Reply-To: <1332883861.3799.13.camel@bling.home>
[-- Attachment #1: Type: text/plain, Size: 1850 bytes --]
On 2012-03-27 23:31, Alex Williamson wrote:
> On Tue, 2012-03-27 at 17:00 -0400, Jason Baron wrote:
>> The current 'kvm_init_irq_routing()' doesn't set up the gsi bitmap
>> correctly, and as a consequence pins max_gsi to 32 when it really
>> should be 1024. I ran into this limitation while testing pci
>> passthrough, where I consistently would get -ENOSPACE return from
>> kvm_get_irq_route_gsi() in assigned_dev_update_msix_mmio().
>>
>> Signed-off-by: Jason Baron <jbaron@redhat.com>
>> ---
>> kvm-all.c | 4 ++--
>> qemu-kvm.c | 2 +-
>> 2 files changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/kvm-all.c b/kvm-all.c
>> index ab88c7c..7d602af 100644
>> --- a/kvm-all.c
>> +++ b/kvm-all.c
>> @@ -873,9 +873,9 @@ static void kvm_init_irq_routing(KVMState *s)
>> unsigned int gsi_bits, i;
>>
>> /* Round up so we can search ints using ffs */
>> - gsi_bits = (gsi_count + 31) / 32;
>> + gsi_bits = ALIGN(gsi_count, 32);
>> s->used_gsi_bitmap = g_malloc0(gsi_bits / 8);
>
> I think the above is all that's needed (it actually used to be this,
> then got broken in 84b058d). But if we do this:
>
>> - s->max_gsi = gsi_bits;
>> + s->max_gsi = gsi_count;
>
> Then we'll hit this assert from the code immediately below where we're
> marking over-allocated bits as already used if we actually did a
> round-up:
>
> static void set_gsi(KVMState *s, unsigned int gsi)
> {
> assert(gsi < s->max_gsi);
>
> Sorry, I had forgotten about this pre-allocation trick to avoid
> returning > gsi_count when we talked about this.
Oh, indeed. That's slightly ugly, gsi_max remains misnamed.
Let's just drop the overeager asserts and keep the number of bitmap
words in KVMState. That's what we really need for doing the work.
Jan
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 262 bytes --]
next prev parent reply other threads:[~2012-03-27 22:01 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-27 21:00 [PATCH 0/2] qemu kvm: correct gsi bitmap Jason Baron
2012-03-27 21:00 ` [PATCH 1/2] qemu kvm: Set up gsi bitmap correctly Jason Baron
2012-03-27 21:31 ` Alex Williamson
2012-03-27 22:01 ` Jan Kiszka [this message]
2012-03-27 22:25 ` Alex Williamson
2012-03-27 22:32 ` Jan Kiszka
2012-03-27 21:52 ` Jan Kiszka
2012-03-27 21:00 ` [PATCH 2/2] qemu kvm: add better error reporting when kvm_get_irq_route_gsi() fails Jason Baron
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=4F7238B5.600@web.de \
--to=jan.kiszka@web.de \
--cc=alex.williamson@redhat.com \
--cc=aliguori@us.ibm.com \
--cc=avi@redhat.com \
--cc=jbaron@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=mst@redhat.com \
--cc=qemu-devel@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox