linux-kernel.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,
	alexandre.belloni@bootlin.com, dongli.zhang@oracle.com,
	hch@lst.de, israelr@nvidia.com, kees@kernel.org,
	leiyang@redhat.com, mst@redhat.com, phasta@kernel.org,
	quic_philber@quicinc.com, sami.md.ko@gmail.com,
	vattunuru@marvell.com
Subject: [GIT PULL] virtio, vhost: features, fixes
Date: Wed, 28 May 2025 03:27:24 -0400	[thread overview]
Message-ID: <20250528032724-mutt-send-email-mst@kernel.org> (raw)

Hi Linus,
There are several bugfixes I'm testing for post rc1 on top of this, but they
are pretty minor.


The following changes since commit a5806cd506af5a7c19bcd596e4708b5c464bfd21:

  Linux 6.15-rc7 (2025-05-18 13:57:29 -0700)

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 206cc44588f72b49ad4d7e21a7472ab2a72a83df:

  virtio: reject shm region if length is zero (2025-05-28 03:19:03 -0400)

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

A new virtio RTC driver.

vhost scsi now logs write descriptors so migration works.

Some hardening work in virtio core.

An old spec compliance issue fixed in vhost net.

A couple of cleanups, fixes in vringh, virtio-pci, vdpa.

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

----------------------------------------------------------------
Christoph Hellwig (1):
      vringh: use bvec_kmap_local

Dongli Zhang (5):
      vhost: modify vhost_log_write() for broader users
      vhost-scsi: adjust vhost_scsi_get_desc() to log vring descriptors
      vhost-scsi: log I/O queue write descriptors
      vhost-scsi: log control queue write descriptors
      vhost-scsi: log event queue write descriptors

Israel Rukshin (1):
      virtio-pci: Fix result size returned for the admin command completion

Kees Cook (1):
      vhost: vringh: Use matching allocation type in resize_iovec()

Peter Hilber (4):
      virtio_rtc: Add module and driver core
      virtio_rtc: Add PTP clocks
      virtio_rtc: Add Arm Generic Timer cross-timestamping
      virtio_rtc: Add RTC class driver

Philipp Stanner (1):
      vdpa/octeon_ep: Control PCI dev enabling manually

Sami Uddin (1):
      virtio: reject shm region if length is zero

 MAINTAINERS                              |    7 +
 drivers/vdpa/octeon_ep/octep_vdpa_main.c |   17 +-
 drivers/vhost/scsi.c                     |  190 +++-
 drivers/vhost/vhost.c                    |   28 +-
 drivers/vhost/vringh.c                   |   19 +-
 drivers/virtio/Kconfig                   |   64 ++
 drivers/virtio/Makefile                  |    5 +
 drivers/virtio/virtio_pci_modern.c       |   13 +-
 drivers/virtio/virtio_rtc_arm.c          |   23 +
 drivers/virtio/virtio_rtc_class.c        |  262 ++++++
 drivers/virtio/virtio_rtc_driver.c       | 1407 ++++++++++++++++++++++++++++++
 drivers/virtio/virtio_rtc_internal.h     |  122 +++
 drivers/virtio/virtio_rtc_ptp.c          |  347 ++++++++
 include/linux/virtio_config.h            |    2 +
 include/uapi/linux/virtio_rtc.h          |  237 +++++
 15 files changed, 2707 insertions(+), 36 deletions(-)
 create mode 100644 drivers/virtio/virtio_rtc_arm.c
 create mode 100644 drivers/virtio/virtio_rtc_class.c
 create mode 100644 drivers/virtio/virtio_rtc_driver.c
 create mode 100644 drivers/virtio/virtio_rtc_internal.h
 create mode 100644 drivers/virtio/virtio_rtc_ptp.c
 create mode 100644 include/uapi/linux/virtio_rtc.h


             reply	other threads:[~2025-05-28  7:27 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-28  7:27 Michael S. Tsirkin [this message]
2025-05-29 16:40 ` [GIT PULL] virtio, vhost: features, fixes pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2025-08-01 11:00 Michael S. Tsirkin
2025-08-01 13:03 ` Michael S. Tsirkin
2025-08-01 13:19   ` Michael S. Tsirkin

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=20250528032724-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=dongli.zhang@oracle.com \
    --cc=hch@lst.de \
    --cc=israelr@nvidia.com \
    --cc=kees@kernel.org \
    --cc=kvm@vger.kernel.org \
    --cc=leiyang@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=phasta@kernel.org \
    --cc=quic_philber@quicinc.com \
    --cc=sami.md.ko@gmail.com \
    --cc=torvalds@linux-foundation.org \
    --cc=vattunuru@marvell.com \
    --cc=virtualization@lists.linux-foundation.org \
    /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).