kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] qemu-kvm: reserve the low 24 gsi values
@ 2009-07-21 15:57 Michael S. Tsirkin
  2009-07-21 17:21 ` Gleb Natapov
  0 siblings, 1 reply; 3+ messages in thread
From: Michael S. Tsirkin @ 2009-07-21 15:57 UTC (permalink / raw)
  To: kvm, avi, gleb

reserve gsi 0 to 23 so that they won't be allocated for msi

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

---

diff --git a/qemu-kvm.c b/qemu-kvm.c
index c6c9fc6..f440b2d 100644
--- a/qemu-kvm.c
+++ b/qemu-kvm.c
@@ -1613,10 +1613,12 @@ int kvm_get_irq_route_gsi(kvm_context_t kvm)
 {
 	int i, bit;
 	uint32_t *buf = kvm->used_gsi_bitmap;
+	uint32_t mask = 0xff000000;
 
 	/* Return the lowest unused GSI in the bitmap */
-	for (i = 0; i < kvm->max_gsi / 32; i++) {
-		bit = ffs(~buf[i]);
+	for (i = 0; i < kvm->max_gsi / 32; i++) {
+		bit = ffs(~buf[i] & mask);
+		mask = 0xffffffff;
 		if (!bit)
 			continue;
 

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] qemu-kvm: reserve the low 24 gsi values
  2009-07-21 15:57 [PATCH] qemu-kvm: reserve the low 24 gsi values Michael S. Tsirkin
@ 2009-07-21 17:21 ` Gleb Natapov
  2009-07-21 20:23   ` Michael S. Tsirkin
  0 siblings, 1 reply; 3+ messages in thread
From: Gleb Natapov @ 2009-07-21 17:21 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: kvm, avi

On Tue, Jul 21, 2009 at 06:57:42PM +0300, Michael S. Tsirkin wrote:
> reserve gsi 0 to 23 so that they won't be allocated for msi
> 
In the not so distant future we may want to support more then one
ioapic, so 23 will became 23*n where n is a number of ioapics. I prefer
to fix it by moving msi injection to its own ioctl. But for now may be
we can scan used_gsi_bitmap from the end during allocation of gsi for
msi?

> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
> ---
> 
> diff --git a/qemu-kvm.c b/qemu-kvm.c
> index c6c9fc6..f440b2d 100644
> --- a/qemu-kvm.c
> +++ b/qemu-kvm.c
> @@ -1613,10 +1613,12 @@ int kvm_get_irq_route_gsi(kvm_context_t kvm)
>  {
>  	int i, bit;
>  	uint32_t *buf = kvm->used_gsi_bitmap;
> +	uint32_t mask = 0xff000000;
>  
>  	/* Return the lowest unused GSI in the bitmap */
> -	for (i = 0; i < kvm->max_gsi / 32; i++) {
> -		bit = ffs(~buf[i]);
> +	for (i = 0; i < kvm->max_gsi / 32; i++) {
> +		bit = ffs(~buf[i] & mask);
> +		mask = 0xffffffff;
>  		if (!bit)
>  			continue;
>  

--
			Gleb.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] qemu-kvm: reserve the low 24 gsi values
  2009-07-21 17:21 ` Gleb Natapov
@ 2009-07-21 20:23   ` Michael S. Tsirkin
  0 siblings, 0 replies; 3+ messages in thread
From: Michael S. Tsirkin @ 2009-07-21 20:23 UTC (permalink / raw)
  To: Gleb Natapov; +Cc: kvm, avi

On Tue, Jul 21, 2009 at 08:21:15PM +0300, Gleb Natapov wrote:
> On Tue, Jul 21, 2009 at 06:57:42PM +0300, Michael S. Tsirkin wrote:
> > reserve gsi 0 to 23 so that they won't be allocated for msi
> > 
> In the not so distant future we may want to support more then one
> ioapic, so 23 will became 23*n where n is a number of ioapics.

Hmm, n is not limited here, is it?

> I prefer
> to fix it by moving msi injection to its own ioctl.

We will have to figure out how to do this in a backwards-compatible way.

> But for now may be
> we can scan used_gsi_bitmap from the end during allocation of gsi for
> msi?

Right, but I think we also want to fail allocations with number < 24
at least for now?

> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> > 
> > ---
> > 
> > diff --git a/qemu-kvm.c b/qemu-kvm.c
> > index c6c9fc6..f440b2d 100644
> > --- a/qemu-kvm.c
> > +++ b/qemu-kvm.c
> > @@ -1613,10 +1613,12 @@ int kvm_get_irq_route_gsi(kvm_context_t kvm)
> >  {
> >  	int i, bit;
> >  	uint32_t *buf = kvm->used_gsi_bitmap;
> > +	uint32_t mask = 0xff000000;
> >  
> >  	/* Return the lowest unused GSI in the bitmap */
> > -	for (i = 0; i < kvm->max_gsi / 32; i++) {
> > -		bit = ffs(~buf[i]);
> > +	for (i = 0; i < kvm->max_gsi / 32; i++) {
> > +		bit = ffs(~buf[i] & mask);
> > +		mask = 0xffffffff;
> >  		if (!bit)
> >  			continue;
> >  
> 
> --
> 			Gleb.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-07-21 20:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-21 15:57 [PATCH] qemu-kvm: reserve the low 24 gsi values Michael S. Tsirkin
2009-07-21 17:21 ` Gleb Natapov
2009-07-21 20:23   ` Michael S. Tsirkin

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).