All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 0/1] virtio: bugfix
@ 2020-07-09 23:04 Michael S. Tsirkin
  2020-07-09 23:04 ` [PULL 1/1] vhost-vdpa: fix the compile issue without kvm Michael S. Tsirkin
  2020-07-11 12:55 ` [PULL 0/1] virtio: bugfix Peter Maydell
  0 siblings, 2 replies; 5+ messages in thread
From: Michael S. Tsirkin @ 2020-07-09 23:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

Fixes a single bug in vdpa.

The following changes since commit eb2c66b10efd2b914b56b20ae90655914310c925:

  Merge remote-tracking branch 'remotes/maxreitz/tags/pull-block-2020-07-06' into staging (2020-07-07 19:47:26 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream

for you to fetch changes up to 4dc5acc07e88b2776513db75944f2e240116ebda:

  vhost-vdpa: fix the compile issue without kvm (2020-07-08 06:16:48 -0400)

----------------------------------------------------------------
virtio: bugfix

fixes vdpa on non-kvm platforms

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

----------------------------------------------------------------
Cindy Lu (1):
      vhost-vdpa: fix the compile issue without kvm

 hw/virtio/vhost-vdpa.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)



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

* [PULL 1/1] vhost-vdpa: fix the compile issue without kvm
  2020-07-09 23:04 [PULL 0/1] virtio: bugfix Michael S. Tsirkin
@ 2020-07-09 23:04 ` Michael S. Tsirkin
  2020-07-11 12:55 ` [PULL 0/1] virtio: bugfix Peter Maydell
  1 sibling, 0 replies; 5+ messages in thread
From: Michael S. Tsirkin @ 2020-07-09 23:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Cindy Lu

From: Cindy Lu <lulu@redhat.com>

Fix the compile issue in the system without the kvm support

Signed-off-by: Cindy Lu <lulu@redhat.com>
Message-Id: <20200708084922.21904-1-lulu@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/virtio/vhost-vdpa.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
index a3d17fe0f9..65d5aaf08a 100644
--- a/hw/virtio/vhost-vdpa.c
+++ b/hw/virtio/vhost-vdpa.c
@@ -19,8 +19,7 @@
 #include "hw/virtio/virtio-net.h"
 #include "hw/virtio/vhost-vdpa.h"
 #include "qemu/main-loop.h"
-#include <linux/kvm.h>
-#include "sysemu/kvm.h"
+#include "cpu.h"
 
 static bool vhost_vdpa_listener_skipped_section(MemoryRegionSection *section)
 {
-- 
MST



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

* Re: [PULL 0/1] virtio: bugfix
  2020-07-09 23:04 [PULL 0/1] virtio: bugfix Michael S. Tsirkin
  2020-07-09 23:04 ` [PULL 1/1] vhost-vdpa: fix the compile issue without kvm Michael S. Tsirkin
@ 2020-07-11 12:55 ` Peter Maydell
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2020-07-11 12:55 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: QEMU Developers

On Fri, 10 Jul 2020 at 00:04, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> Fixes a single bug in vdpa.
>
> The following changes since commit eb2c66b10efd2b914b56b20ae90655914310c925:
>
>   Merge remote-tracking branch 'remotes/maxreitz/tags/pull-block-2020-07-06' into staging (2020-07-07 19:47:26 +0100)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
>
> for you to fetch changes up to 4dc5acc07e88b2776513db75944f2e240116ebda:
>
>   vhost-vdpa: fix the compile issue without kvm (2020-07-08 06:16:48 -0400)
>
> ----------------------------------------------------------------
> virtio: bugfix
>
> fixes vdpa on non-kvm platforms
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.1
for any user-visible changes.

-- PMM


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

* Re: [PULL 0/1] virtio: bugfix
  2024-04-15 10:52 Michael S. Tsirkin
@ 2024-04-15 14:24 ` Peter Maydell
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2024-04-15 14:24 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: qemu-devel

On Mon, 15 Apr 2024 at 11:52, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> The following changes since commit e1999904a960c33b68fedf26dfb7b8e00abab8f2:
>
>   qdev-monitor: fix error message in find_device_state() (2024-04-09 02:31:33 -0400)
>
> are available in the Git repository at:
>
>   https://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
>
> for you to fetch changes up to 2ce6cff94df2650c460f809e5ad263f1d22507c0:
>
>   virtio-pci: fix use of a released vector (2024-04-15 06:50:44 -0400)
>
> ----------------------------------------------------------------
> virtio: bugfix
>
> A last minute fix for a use of a vector after it's released.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/9.0
for any user-visible changes.

-- PMM


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

* [PULL 0/1] virtio: bugfix
@ 2024-04-15 10:52 Michael S. Tsirkin
  2024-04-15 14:24 ` Peter Maydell
  0 siblings, 1 reply; 5+ messages in thread
From: Michael S. Tsirkin @ 2024-04-15 10:52 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

The following changes since commit e1999904a960c33b68fedf26dfb7b8e00abab8f2:

  qdev-monitor: fix error message in find_device_state() (2024-04-09 02:31:33 -0400)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream

for you to fetch changes up to 2ce6cff94df2650c460f809e5ad263f1d22507c0:

  virtio-pci: fix use of a released vector (2024-04-15 06:50:44 -0400)

----------------------------------------------------------------
virtio: bugfix

A last minute fix for a use of a vector after it's released.

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

----------------------------------------------------------------
Cindy Lu (1):
      virtio-pci: fix use of a released vector

 hw/virtio/virtio-pci.c | 37 +++++++++++++++++++++++++++++++++++--
 1 file changed, 35 insertions(+), 2 deletions(-)



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

end of thread, other threads:[~2024-04-15 14:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-09 23:04 [PULL 0/1] virtio: bugfix Michael S. Tsirkin
2020-07-09 23:04 ` [PULL 1/1] vhost-vdpa: fix the compile issue without kvm Michael S. Tsirkin
2020-07-11 12:55 ` [PULL 0/1] virtio: bugfix Peter Maydell
2024-04-15 10:52 Michael S. Tsirkin
2024-04-15 14:24 ` Peter Maydell

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.