All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: kvm@vger.kernel.org, virtualization@lists.linux-foundation.org,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	elic@nvidia.com, eperezma@redhat.com, gautam.dawar@xilinx.com,
	huangjie.albert@bytedance.com, jasowang@redhat.com,
	liubo03@inspur.com, mst@redhat.com, parav@nvidia.com,
	sgarzare@redhat.com, stephan.gerhold@kernkonzept.com,
	wangdeming@inspur.com
Subject: [GIT PULL] virtio,vdpa: fixes
Date: Mon, 27 Jun 2022 11:50:24 -0400	[thread overview]
Message-ID: <20220627115024-mutt-send-email-mst@kernel.org> (raw)

The following changes since commit a111daf0c53ae91e71fd2bfe7497862d14132e3e:

  Linux 5.19-rc3 (2022-06-19 15:06:47 -0500)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus

for you to fetch changes up to c7cc29aaebf9eaa543b4c70801e0ecef1101b3c8:

  virtio_ring: make vring_create_virtqueue_split prettier (2022-06-27 08:05:35 -0400)

----------------------------------------------------------------
virtio,vdpa: fixes

Fixes all over the place, most notably we are disabling
IRQ hardening (again!).

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

----------------------------------------------------------------
Bo Liu (1):
      virtio: Remove unnecessary variable assignments

Deming Wang (1):
      virtio_ring: make vring_create_virtqueue_split prettier

Eli Cohen (2):
      vdpa/mlx5: Update Control VQ callback information
      vdpa/mlx5: Initialize CVQ vringh only once

Jason Wang (3):
      virtio: disable notification hardening by default
      virtio-net: fix race between ndo_open() and virtio_device_ready()
      caif_virtio: fix race between virtio_device_ready() and ndo_open()

Parav Pandit (1):
      vduse: Tie vduse mgmtdev and its device

Stefano Garzarella (1):
      vhost-vdpa: call vhost_vdpa_cleanup during the release

Stephan Gerhold (2):
      virtio_mmio: Add missing PM calls to freeze/restore
      virtio_mmio: Restore guest page size on resume

huangjie.albert (1):
      virtio_ring : keep used_wrap_counter in vq->last_used_idx

 drivers/net/caif/caif_virtio.c         | 10 +++-
 drivers/net/virtio_net.c               |  8 ++-
 drivers/s390/virtio/virtio_ccw.c       |  9 +++-
 drivers/vdpa/mlx5/net/mlx5_vnet.c      | 33 ++++++++-----
 drivers/vdpa/vdpa_user/vduse_dev.c     | 60 ++++++++++++++---------
 drivers/vhost/vdpa.c                   |  2 +-
 drivers/virtio/Kconfig                 | 13 +++++
 drivers/virtio/virtio.c                |  2 +
 drivers/virtio/virtio_mmio.c           | 26 ++++++++++
 drivers/virtio/virtio_pci_modern_dev.c |  2 -
 drivers/virtio/virtio_ring.c           | 89 +++++++++++++++++++++++-----------
 include/linux/virtio_config.h          |  2 +
 12 files changed, 187 insertions(+), 69 deletions(-)


WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: stephan.gerhold@kernkonzept.com, kvm@vger.kernel.org,
	mst@redhat.com, huangjie.albert@bytedance.com,
	netdev@vger.kernel.org, wangdeming@inspur.com,
	linux-kernel@vger.kernel.org,
	virtualization@lists.linux-foundation.org, eperezma@redhat.com,
	liubo03@inspur.com, elic@nvidia.com, gautam.dawar@xilinx.com
Subject: [GIT PULL] virtio,vdpa: fixes
Date: Mon, 27 Jun 2022 11:50:24 -0400	[thread overview]
Message-ID: <20220627115024-mutt-send-email-mst@kernel.org> (raw)

The following changes since commit a111daf0c53ae91e71fd2bfe7497862d14132e3e:

  Linux 5.19-rc3 (2022-06-19 15:06:47 -0500)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus

for you to fetch changes up to c7cc29aaebf9eaa543b4c70801e0ecef1101b3c8:

  virtio_ring: make vring_create_virtqueue_split prettier (2022-06-27 08:05:35 -0400)

----------------------------------------------------------------
virtio,vdpa: fixes

Fixes all over the place, most notably we are disabling
IRQ hardening (again!).

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

----------------------------------------------------------------
Bo Liu (1):
      virtio: Remove unnecessary variable assignments

Deming Wang (1):
      virtio_ring: make vring_create_virtqueue_split prettier

Eli Cohen (2):
      vdpa/mlx5: Update Control VQ callback information
      vdpa/mlx5: Initialize CVQ vringh only once

Jason Wang (3):
      virtio: disable notification hardening by default
      virtio-net: fix race between ndo_open() and virtio_device_ready()
      caif_virtio: fix race between virtio_device_ready() and ndo_open()

Parav Pandit (1):
      vduse: Tie vduse mgmtdev and its device

Stefano Garzarella (1):
      vhost-vdpa: call vhost_vdpa_cleanup during the release

Stephan Gerhold (2):
      virtio_mmio: Add missing PM calls to freeze/restore
      virtio_mmio: Restore guest page size on resume

huangjie.albert (1):
      virtio_ring : keep used_wrap_counter in vq->last_used_idx

 drivers/net/caif/caif_virtio.c         | 10 +++-
 drivers/net/virtio_net.c               |  8 ++-
 drivers/s390/virtio/virtio_ccw.c       |  9 +++-
 drivers/vdpa/mlx5/net/mlx5_vnet.c      | 33 ++++++++-----
 drivers/vdpa/vdpa_user/vduse_dev.c     | 60 ++++++++++++++---------
 drivers/vhost/vdpa.c                   |  2 +-
 drivers/virtio/Kconfig                 | 13 +++++
 drivers/virtio/virtio.c                |  2 +
 drivers/virtio/virtio_mmio.c           | 26 ++++++++++
 drivers/virtio/virtio_pci_modern_dev.c |  2 -
 drivers/virtio/virtio_ring.c           | 89 +++++++++++++++++++++++-----------
 include/linux/virtio_config.h          |  2 +
 12 files changed, 187 insertions(+), 69 deletions(-)

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

             reply	other threads:[~2022-06-27 15:50 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-27 15:50 Michael S. Tsirkin [this message]
2022-06-27 15:50 ` [GIT PULL] virtio,vdpa: fixes Michael S. Tsirkin
2022-06-27 18:03 ` pr-tracker-bot
2022-06-27 18:03   ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2022-06-11  7:48 Michael S. Tsirkin
2022-06-11  7:48 ` Michael S. Tsirkin
2022-06-12  0:33 ` pr-tracker-bot
2022-06-12  0:33   ` pr-tracker-bot
2021-10-17 14:49 Michael S. Tsirkin
2021-10-17 14:49 ` Michael S. Tsirkin
2021-10-18  6:02 ` pr-tracker-bot
2021-10-18  6:02   ` pr-tracker-bot
2021-09-27 22:30 Michael S. Tsirkin
2021-09-27 22:30 ` Michael S. Tsirkin
2021-09-28 14:31 ` pr-tracker-bot
2021-09-28 14:31   ` pr-tracker-bot

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=20220627115024-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=elic@nvidia.com \
    --cc=eperezma@redhat.com \
    --cc=gautam.dawar@xilinx.com \
    --cc=huangjie.albert@bytedance.com \
    --cc=jasowang@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=liubo03@inspur.com \
    --cc=netdev@vger.kernel.org \
    --cc=parav@nvidia.com \
    --cc=sgarzare@redhat.com \
    --cc=stephan.gerhold@kernkonzept.com \
    --cc=torvalds@linux-foundation.org \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=wangdeming@inspur.com \
    /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 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.