netdev.vger.kernel.org archive mirror
 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,
	changyuanl@google.com, christophe.jaillet@wanadoo.fr,
	dtatulea@nvidia.com, eperezma@redhat.com, jasowang@redhat.com,
	michael.christie@oracle.com, mst@redhat.com,
	pasha.tatashin@soleen.com, rientjes@google.com,
	stevensd@chromium.org, tytso@mit.edu, xuanzhuo@linux.alibaba.com
Subject: [GIT PULL] virtio: features, fixes
Date: Tue, 16 Jan 2024 11:28:28 -0500	[thread overview]
Message-ID: <20240116112828-mutt-send-email-mst@kernel.org> (raw)

The following changes since commit b8e0792449928943c15d1af9f63816911d139267:

  virtio_blk: fix snprintf truncation compiler warning (2023-12-04 09:43:53 -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 f16d65124380ac6de8055c4a8e5373a1043bb09b:

  vdpa/mlx5: Add mkey leak detection (2024-01-10 13:01:38 -0500)

----------------------------------------------------------------
virtio: features, fixes

vdpa/mlx5: support for resumable vqs
virtio_scsi: mq_poll support
3virtio_pmem: support SHMEM_REGION
virtio_balloon: stay awake while adjusting balloon
virtio: support for no-reset virtio PCI PM

Fixes, cleanups.

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

----------------------------------------------------------------
Changyuan Lyu (1):
      virtio_pmem: support feature SHMEM_REGION

Christophe JAILLET (2):
      vdpa: Fix an error handling path in eni_vdpa_probe()
      vdpa: Remove usage of the deprecated ida_simple_xx() API

David Stevens (2):
      virtio: Add support for no-reset virtio PCI PM
      virtio_balloon: stay awake while adjusting balloon

Dragos Tatulea (10):
      vdpa: Track device suspended state
      vdpa: Block vq property changes in DRIVER_OK
      vdpa/mlx5: Expose resumable vq capability
      vdpa/mlx5: Allow modifying multiple vq fields in one modify command
      vdpa/mlx5: Introduce per vq and device resume
      vdpa/mlx5: Mark vq addrs for modification in hw vq
      vdpa/mlx5: Mark vq state for modification in hw vq
      vdpa/mlx5: Use vq suspend/resume during .set_map
      vdpa/mlx5: Introduce reference counting to mrs
      vdpa/mlx5: Add mkey leak detection

Mike Christie (1):
      scsi: virtio_scsi: Add mq_poll support

Pasha Tatashin (1):
      vhost-vdpa: account iommu allocations

Xuan Zhuo (1):
      virtio_net: fix missing dma unmap for resize

 drivers/net/virtio_net.c           |  60 +++++------
 drivers/nvdimm/virtio_pmem.c       |  36 ++++++-
 drivers/scsi/virtio_scsi.c         |  78 +++++++++++++-
 drivers/vdpa/alibaba/eni_vdpa.c    |   6 +-
 drivers/vdpa/mlx5/core/mlx5_vdpa.h |  10 +-
 drivers/vdpa/mlx5/core/mr.c        |  73 ++++++++++---
 drivers/vdpa/mlx5/net/mlx5_vnet.c  | 209 +++++++++++++++++++++++++++++++++----
 drivers/vdpa/vdpa.c                |   4 +-
 drivers/vhost/vdpa.c               |  26 ++++-
 drivers/virtio/virtio_balloon.c    |  57 ++++++++--
 drivers/virtio/virtio_pci_common.c |  34 +++++-
 include/linux/mlx5/mlx5_ifc.h      |   3 +-
 include/linux/mlx5/mlx5_ifc_vdpa.h |   4 +
 include/uapi/linux/virtio_pmem.h   |   7 ++
 14 files changed, 510 insertions(+), 97 deletions(-)


             reply	other threads:[~2024-01-16 16:28 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-16 16:28 Michael S. Tsirkin [this message]
2024-01-19  1:08 ` [GIT PULL] virtio: features, fixes pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2024-03-19  7:41 Michael S. Tsirkin
2024-03-19 16:32 ` pr-tracker-bot
2024-03-19 18:03 ` Linus Torvalds
2024-03-19 19:24   ` Michael S. Tsirkin
2022-03-31 13:48 Michael S. Tsirkin
2022-03-31 21:21 ` pr-tracker-bot
2021-02-25 19:33 Michael S. Tsirkin
2021-02-25 20:29 ` pr-tracker-bot
2020-08-11  8:56 Michael S. Tsirkin
2020-08-11 21:59 ` pr-tracker-bot
2020-06-10  4:44 Michael S. Tsirkin
2020-06-10 20:48 ` Linus Torvalds
2020-06-10 21:45 ` 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=20240116112828-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=changyuanl@google.com \
    --cc=christophe.jaillet@wanadoo.fr \
    --cc=dtatulea@nvidia.com \
    --cc=eperezma@redhat.com \
    --cc=jasowang@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=michael.christie@oracle.com \
    --cc=netdev@vger.kernel.org \
    --cc=pasha.tatashin@soleen.com \
    --cc=rientjes@google.com \
    --cc=stevensd@chromium.org \
    --cc=torvalds@linux-foundation.org \
    --cc=tytso@mit.edu \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=xuanzhuo@linux.alibaba.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 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).