All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv5 1/5] qemu/msi: fix segfault in msix_save
       [not found] <cover.1246798625.git.mst@redhat.com>
@ 2009-07-05 12:58   ` Michael S. Tsirkin
  2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 12:58 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

This fixes segfault reported by Kevin Wolf,
and simplifies the code in msix_save.

Reported-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/msix.c |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/hw/msix.c b/hw/msix.c
index 4ab6da6..d0f9695 100644
--- a/hw/msix.c
+++ b/hw/msix.c
@@ -284,11 +284,13 @@ int msix_uninit(PCIDevice *dev)
 
 void msix_save(PCIDevice *dev, QEMUFile *f)
 {
-    unsigned nentries = (pci_get_word(dev->config + PCI_MSIX_FLAGS) &
-                         PCI_MSIX_FLAGS_QSIZE) + 1;
-    qemu_put_buffer(f, dev->msix_table_page, nentries * MSIX_ENTRY_SIZE);
-    qemu_put_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING,
-                    (nentries + 7) / 8);
+    unsigned n = dev->msix_entries_nr;
+
+    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX)) {
+        return;
+    }
+    qemu_put_buffer(f, dev->msix_table_page, n * MSIX_ENTRY_SIZE);
+    qemu_put_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8);
 }
 
 /* Should be called after restoring the config space. */
-- 
1.6.2.2


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

* [Qemu-devel] [PATCHv5 1/5] qemu/msi: fix segfault in msix_save
@ 2009-07-05 12:58   ` Michael S. Tsirkin
  0 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 12:58 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

This fixes segfault reported by Kevin Wolf,
and simplifies the code in msix_save.

Reported-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/msix.c |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/hw/msix.c b/hw/msix.c
index 4ab6da6..d0f9695 100644
--- a/hw/msix.c
+++ b/hw/msix.c
@@ -284,11 +284,13 @@ int msix_uninit(PCIDevice *dev)
 
 void msix_save(PCIDevice *dev, QEMUFile *f)
 {
-    unsigned nentries = (pci_get_word(dev->config + PCI_MSIX_FLAGS) &
-                         PCI_MSIX_FLAGS_QSIZE) + 1;
-    qemu_put_buffer(f, dev->msix_table_page, nentries * MSIX_ENTRY_SIZE);
-    qemu_put_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING,
-                    (nentries + 7) / 8);
+    unsigned n = dev->msix_entries_nr;
+
+    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX)) {
+        return;
+    }
+    qemu_put_buffer(f, dev->msix_table_page, n * MSIX_ENTRY_SIZE);
+    qemu_put_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8);
 }
 
 /* Should be called after restoring the config space. */
-- 
1.6.2.2

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

* [PATCHv5 2/5] qemu/virtio: remove control vector save
       [not found] <cover.1246798625.git.mst@redhat.com>
@ 2009-07-05 12:58   ` Michael S. Tsirkin
  2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 12:58 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

control vector is already saved/restored by virtio-pci,
it does not need to be done in virtio.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/virtio.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/hw/virtio.c b/hw/virtio.c
index 843be86..41e7ca2 100644
--- a/hw/virtio.c
+++ b/hw/virtio.c
@@ -626,9 +626,6 @@ void virtio_save(VirtIODevice *vdev, QEMUFile *f)
     qemu_put_be32(f, vdev->config_len);
     qemu_put_buffer(f, vdev->config, vdev->config_len);
 
-    if (vdev->nvectors)
-        qemu_put_be16s(f, &vdev->config_vector);
-
     for (i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
         if (vdev->vq[i].vring.num == 0)
             break;
-- 
1.6.2.2


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

* [Qemu-devel] [PATCHv5 2/5] qemu/virtio: remove control vector save
@ 2009-07-05 12:58   ` Michael S. Tsirkin
  0 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 12:58 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

control vector is already saved/restored by virtio-pci,
it does not need to be done in virtio.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/virtio.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/hw/virtio.c b/hw/virtio.c
index 843be86..41e7ca2 100644
--- a/hw/virtio.c
+++ b/hw/virtio.c
@@ -626,9 +626,6 @@ void virtio_save(VirtIODevice *vdev, QEMUFile *f)
     qemu_put_be32(f, vdev->config_len);
     qemu_put_buffer(f, vdev->config, vdev->config_len);
 
-    if (vdev->nvectors)
-        qemu_put_be16s(f, &vdev->config_vector);
-
     for (i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
         if (vdev->vq[i].vring.num == 0)
             break;
-- 
1.6.2.2

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

* [PATCHv5 3/5] qemu/msi: clean used vectors state on load
       [not found] <cover.1246798625.git.mst@redhat.com>
@ 2009-07-05 12:58   ` Michael S. Tsirkin
  2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 12:58 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

Clean up msix vector usage state on load. Since guest might have control
over it through the device, the device will have to load this state from
file.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/msix.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/hw/msix.c b/hw/msix.c
index d0f9695..80038d3 100644
--- a/hw/msix.c
+++ b/hw/msix.c
@@ -301,6 +301,7 @@ void msix_load(PCIDevice *dev, QEMUFile *f)
     if (!dev->cap_present & QEMU_PCI_CAP_MSIX)
         return;
 
+    msix_free_irq_entries(dev);
     qemu_get_buffer(f, dev->msix_table_page, n * MSIX_ENTRY_SIZE);
     qemu_get_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8);
 }
-- 
1.6.2.2


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

* [Qemu-devel] [PATCHv5 3/5] qemu/msi: clean used vectors state on load
@ 2009-07-05 12:58   ` Michael S. Tsirkin
  0 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 12:58 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

Clean up msix vector usage state on load. Since guest might have control
over it through the device, the device will have to load this state from
file.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/msix.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/hw/msix.c b/hw/msix.c
index d0f9695..80038d3 100644
--- a/hw/msix.c
+++ b/hw/msix.c
@@ -301,6 +301,7 @@ void msix_load(PCIDevice *dev, QEMUFile *f)
     if (!dev->cap_present & QEMU_PCI_CAP_MSIX)
         return;
 
+    msix_free_irq_entries(dev);
     qemu_get_buffer(f, dev->msix_table_page, n * MSIX_ENTRY_SIZE);
     qemu_get_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8);
 }
-- 
1.6.2.2

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

* [PATCHv5 4/5] qemu/msi: missing braces
       [not found] <cover.1246798625.git.mst@redhat.com>
@ 2009-07-05 12:58   ` Michael S. Tsirkin
  2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 12:58 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

MSIX present bit is tested incorrectly, and only happens to work because
the bit we are testing is 0x1.  Add braces to fix this.

Reported-by: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/msix.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/msix.c b/hw/msix.c
index 80038d3..4224d8f 100644
--- a/hw/msix.c
+++ b/hw/msix.c
@@ -298,9 +298,9 @@ void msix_load(PCIDevice *dev, QEMUFile *f)
 {
     unsigned n = dev->msix_entries_nr;
 
-    if (!dev->cap_present & QEMU_PCI_CAP_MSIX)
+    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX)) {
         return;
-
+    }
     msix_free_irq_entries(dev);
     qemu_get_buffer(f, dev->msix_table_page, n * MSIX_ENTRY_SIZE);
     qemu_get_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8);
-- 
1.6.2.2


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

* [Qemu-devel] [PATCHv5 4/5] qemu/msi: missing braces
@ 2009-07-05 12:58   ` Michael S. Tsirkin
  0 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 12:58 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

MSIX present bit is tested incorrectly, and only happens to work because
the bit we are testing is 0x1.  Add braces to fix this.

Reported-by: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/msix.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/msix.c b/hw/msix.c
index 80038d3..4224d8f 100644
--- a/hw/msix.c
+++ b/hw/msix.c
@@ -298,9 +298,9 @@ void msix_load(PCIDevice *dev, QEMUFile *f)
 {
     unsigned n = dev->msix_entries_nr;
 
-    if (!dev->cap_present & QEMU_PCI_CAP_MSIX)
+    if (!(dev->cap_present & QEMU_PCI_CAP_MSIX)) {
         return;
-
+    }
     msix_free_irq_entries(dev);
     qemu_get_buffer(f, dev->msix_table_page, n * MSIX_ENTRY_SIZE);
     qemu_get_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8);
-- 
1.6.2.2

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

* [PATCHv5 5/5] qemu/virtio: mark msi vectors used on load
       [not found] <cover.1246798625.git.mst@redhat.com>
@ 2009-07-05 13:02   ` Michael S. Tsirkin
  2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 13:02 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

Usage of msi vectors is controlled by the guest and so needs to be
restored on load. Do this for msi vectors used by the virtio device.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/virtio-pci.c |   22 +++++++++++++++++-----
 1 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c
index f7da503..19ba5b8 100644
--- a/hw/virtio-pci.c
+++ b/hw/virtio-pci.c
@@ -126,11 +126,18 @@ static int virtio_pci_load_config(void * opaque, QEMUFile *f)
     VirtIOPCIProxy *proxy = opaque;
     int ret;
     ret = pci_device_load(&proxy->pci_dev, f);
-    if (ret)
+    if (ret) {
         return ret;
+    }
     msix_load(&proxy->pci_dev, f);
-    if (msix_present(&proxy->pci_dev))
+    if (msix_present(&proxy->pci_dev)) {
         qemu_get_be16s(f, &proxy->vdev->config_vector);
+    } else {
+        proxy->vdev->config_vector = VIRTIO_NO_VECTOR;
+    }
+    if (proxy->vdev->config_vector != VIRTIO_NO_VECTOR) {
+        return msix_vector_use(&proxy->pci_dev, proxy->vdev->config_vector);
+    }
     return 0;
 }
 
@@ -138,10 +145,15 @@ static int virtio_pci_load_queue(void * opaque, int n, QEMUFile *f)
 {
     VirtIOPCIProxy *proxy = opaque;
     uint16_t vector;
-    if (!msix_present(&proxy->pci_dev))
-        return 0;
-    qemu_get_be16s(f, &vector);
+    if (msix_present(&proxy->pci_dev)) {
+        qemu_get_be16s(f, &vector);
+    } else {
+        vector = VIRTIO_NO_VECTOR;
+    }
     virtio_queue_set_vector(proxy->vdev, n, vector);
+    if (vector != VIRTIO_NO_VECTOR) {
+        return msix_vector_use(&proxy->pci_dev, vector);
+    }
     return 0;
 }
 
-- 
1.6.2.2

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

* [Qemu-devel] [PATCHv5 5/5] qemu/virtio: mark msi vectors used on load
@ 2009-07-05 13:02   ` Michael S. Tsirkin
  0 siblings, 0 replies; 14+ messages in thread
From: Michael S. Tsirkin @ 2009-07-05 13:02 UTC (permalink / raw)
  To: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

Usage of msi vectors is controlled by the guest and so needs to be
restored on load. Do this for msi vectors used by the virtio device.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/virtio-pci.c |   22 +++++++++++++++++-----
 1 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c
index f7da503..19ba5b8 100644
--- a/hw/virtio-pci.c
+++ b/hw/virtio-pci.c
@@ -126,11 +126,18 @@ static int virtio_pci_load_config(void * opaque, QEMUFile *f)
     VirtIOPCIProxy *proxy = opaque;
     int ret;
     ret = pci_device_load(&proxy->pci_dev, f);
-    if (ret)
+    if (ret) {
         return ret;
+    }
     msix_load(&proxy->pci_dev, f);
-    if (msix_present(&proxy->pci_dev))
+    if (msix_present(&proxy->pci_dev)) {
         qemu_get_be16s(f, &proxy->vdev->config_vector);
+    } else {
+        proxy->vdev->config_vector = VIRTIO_NO_VECTOR;
+    }
+    if (proxy->vdev->config_vector != VIRTIO_NO_VECTOR) {
+        return msix_vector_use(&proxy->pci_dev, proxy->vdev->config_vector);
+    }
     return 0;
 }
 
@@ -138,10 +145,15 @@ static int virtio_pci_load_queue(void * opaque, int n, QEMUFile *f)
 {
     VirtIOPCIProxy *proxy = opaque;
     uint16_t vector;
-    if (!msix_present(&proxy->pci_dev))
-        return 0;
-    qemu_get_be16s(f, &vector);
+    if (msix_present(&proxy->pci_dev)) {
+        qemu_get_be16s(f, &vector);
+    } else {
+        vector = VIRTIO_NO_VECTOR;
+    }
     virtio_queue_set_vector(proxy->vdev, n, vector);
+    if (vector != VIRTIO_NO_VECTOR) {
+        return msix_vector_use(&proxy->pci_dev, vector);
+    }
     return 0;
 }
 
-- 
1.6.2.2

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

* Re: [Qemu-devel] [PATCHv5 1/5] qemu/msi: fix segfault in msix_save
  2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
@ 2009-07-09 19:08     ` Luiz Capitulino
  -1 siblings, 0 replies; 14+ messages in thread
From: Luiz Capitulino @ 2009-07-09 19:08 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: qemu-devel, avi, kvm, aliguori, kwolf, glommer, blauwirbel

On Sun, 5 Jul 2009 15:58:23 +0300
"Michael S. Tsirkin" <mst@redhat.com> wrote:

> This fixes segfault reported by Kevin Wolf,
> and simplifies the code in msix_save.
> 
> Reported-by: Kevin Wolf <kwolf@redhat.com>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

 Any reason on why this wasn't applied yet?

 Spent some time bisecting this just to find out it's already
fixed. I'm unable to migrate w/o this one.

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

* Re: [Qemu-devel] [PATCHv5 1/5] qemu/msi: fix segfault in msix_save
@ 2009-07-09 19:08     ` Luiz Capitulino
  0 siblings, 0 replies; 14+ messages in thread
From: Luiz Capitulino @ 2009-07-09 19:08 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: kwolf, aliguori, kvm, glommer, qemu-devel, blauwirbel, avi

On Sun, 5 Jul 2009 15:58:23 +0300
"Michael S. Tsirkin" <mst@redhat.com> wrote:

> This fixes segfault reported by Kevin Wolf,
> and simplifies the code in msix_save.
> 
> Reported-by: Kevin Wolf <kwolf@redhat.com>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

 Any reason on why this wasn't applied yet?

 Spent some time bisecting this just to find out it's already
fixed. I'm unable to migrate w/o this one.

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

* Re: [Qemu-devel] [PATCHv5 1/5] qemu/msi: fix segfault in msix_save
  2009-07-09 19:08     ` Luiz Capitulino
@ 2009-07-09 19:12       ` Anthony Liguori
  -1 siblings, 0 replies; 14+ messages in thread
From: Anthony Liguori @ 2009-07-09 19:12 UTC (permalink / raw)
  To: Luiz Capitulino
  Cc: Michael S. Tsirkin, qemu-devel, avi, kvm, kwolf, glommer, blauwirbel

Luiz Capitulino wrote:
> On Sun, 5 Jul 2009 15:58:23 +0300
> "Michael S. Tsirkin" <mst@redhat.com> wrote:
>
>   
>> This fixes segfault reported by Kevin Wolf,
>> and simplifies the code in msix_save.
>>
>> Reported-by: Kevin Wolf <kwolf@redhat.com>
>> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>>     
>
>  Any reason on why this wasn't applied yet?
>
>  Spent some time bisecting this just to find out it's already
> fixed. I'm unable to migrate w/o this one.
>   

It was just posted on Sunday, give a chance for people to review it and 
apply.

-- 
Regards,

Anthony Liguori


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

* Re: [Qemu-devel] [PATCHv5 1/5] qemu/msi: fix segfault in msix_save
@ 2009-07-09 19:12       ` Anthony Liguori
  0 siblings, 0 replies; 14+ messages in thread
From: Anthony Liguori @ 2009-07-09 19:12 UTC (permalink / raw)
  To: Luiz Capitulino
  Cc: kwolf, kvm, Michael S. Tsirkin, glommer, qemu-devel, blauwirbel, avi

Luiz Capitulino wrote:
> On Sun, 5 Jul 2009 15:58:23 +0300
> "Michael S. Tsirkin" <mst@redhat.com> wrote:
>
>   
>> This fixes segfault reported by Kevin Wolf,
>> and simplifies the code in msix_save.
>>
>> Reported-by: Kevin Wolf <kwolf@redhat.com>
>> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>>     
>
>  Any reason on why this wasn't applied yet?
>
>  Spent some time bisecting this just to find out it's already
> fixed. I'm unable to migrate w/o this one.
>   

It was just posted on Sunday, give a chance for people to review it and 
apply.

-- 
Regards,

Anthony Liguori

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

end of thread, other threads:[~2009-07-09 19:12 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <cover.1246798625.git.mst@redhat.com>
2009-07-05 12:58 ` [PATCHv5 1/5] qemu/msi: fix segfault in msix_save Michael S. Tsirkin
2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
2009-07-09 19:08   ` Luiz Capitulino
2009-07-09 19:08     ` Luiz Capitulino
2009-07-09 19:12     ` Anthony Liguori
2009-07-09 19:12       ` Anthony Liguori
2009-07-05 12:58 ` [PATCHv5 2/5] qemu/virtio: remove control vector save Michael S. Tsirkin
2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
2009-07-05 12:58 ` [PATCHv5 3/5] qemu/msi: clean used vectors state on load Michael S. Tsirkin
2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
2009-07-05 12:58 ` [PATCHv5 4/5] qemu/msi: missing braces Michael S. Tsirkin
2009-07-05 12:58   ` [Qemu-devel] " Michael S. Tsirkin
2009-07-05 13:02 ` [PATCHv5 5/5] qemu/virtio: mark msi vectors used on load Michael S. Tsirkin
2009-07-05 13:02   ` [Qemu-devel] " Michael S. Tsirkin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.