* [GIT PULL] virtio, vhost: fixes
@ 2025-04-23 6:42 Michael S. Tsirkin
2025-04-23 17:29 ` pr-tracker-bot
0 siblings, 1 reply; 6+ messages in thread
From: Michael S. Tsirkin @ 2025-04-23 6:42 UTC (permalink / raw)
To: Linus Torvalds
Cc: kvm, virtualization, netdev, linux-kernel, danielj, dongli.zhang,
eauger, eric.auger, jasowang, jfalempe, maxbr, mst, pasic,
quic_zhonhan, sgarzare, syzbot+efe683d57990864b8c8e
The following changes since commit 8ffd015db85fea3e15a77027fda6c02ced4d2444:
Linux 6.15-rc2 (2025-04-13 11:54:49 -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 58465d86071b61415e25fb054201f61e83d21465:
vhost-scsi: Fix vhost_scsi_send_status() (2025-04-18 10:08:11 -0400)
----------------------------------------------------------------
virtio, vhost: fixes
A small number of fixes.
virtgpu is exempt from reset shutdown fow now -
a more complete fix is in the works
spec compliance fixes in:
virtio-pci cap commands
vhost_scsi_send_bad_target
virtio console resize
missing locking fix in vhost-scsi
virtio ring - a KCSAN false positive fix
VHOST_*_OWNER documentation fix
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Daniel Jurgens (1):
virtio_pci: Use self group type for cap commands
Dongli Zhang (3):
vhost-scsi: protect vq->log_used with vq->mutex
vhost-scsi: Fix vhost_scsi_send_bad_target()
vhost-scsi: Fix vhost_scsi_send_status()
Halil Pasic (1):
virtio_console: fix missing byte order handling for cols and rows
Maximilian Immanuel Brandtner (1):
virtio_console: fix order of fields cols and rows
Michael S. Tsirkin (1):
virtgpu: don't reset on shutdown
Stefano Garzarella (2):
vhost: fix VHOST_*_OWNER documentation
vhost_task: fix vhost_task_create() documentation
Zhongqiu Han (1):
virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN
drivers/char/virtio_console.c | 7 ++--
drivers/gpu/drm/virtio/virtgpu_drv.c | 9 +++++
drivers/vhost/scsi.c | 74 +++++++++++++++++++++++++++---------
drivers/virtio/virtio.c | 6 +++
drivers/virtio/virtio_pci_modern.c | 4 +-
drivers/virtio/virtio_ring.c | 2 +-
include/linux/virtio.h | 3 ++
include/uapi/linux/vhost.h | 4 +-
include/uapi/linux/virtio_pci.h | 1 +
kernel/vhost_task.c | 2 +-
10 files changed, 85 insertions(+), 27 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [GIT PULL] virtio, vhost: fixes
2025-04-23 6:42 [GIT PULL] virtio, vhost: fixes Michael S. Tsirkin
@ 2025-04-23 17:29 ` pr-tracker-bot
0 siblings, 0 replies; 6+ messages in thread
From: pr-tracker-bot @ 2025-04-23 17:29 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Linus Torvalds, kvm, virtualization, netdev, linux-kernel,
danielj, dongli.zhang, eauger, eric.auger, jasowang, jfalempe,
maxbr, mst, pasic, quic_zhonhan, sgarzare,
syzbot+efe683d57990864b8c8e
The pull request you sent on Wed, 23 Apr 2025 02:42:39 -0400:
> https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/0251ddbffbeb213f0f74ef94b2cacce580eb8d76
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] virtio,vhost: fixes
@ 2025-08-27 14:20 Michael S. Tsirkin
2025-08-27 17:24 ` pr-tracker-bot
0 siblings, 1 reply; 6+ messages in thread
From: Michael S. Tsirkin @ 2025-08-27 14:20 UTC (permalink / raw)
To: Linus Torvalds
Cc: kvm, virtualization, netdev, linux-kernel, arbn, igor.torrente,
junnan01.wu, kniv, leiyang, liming.wu, mst, namhyung, stable,
ying01.gao, ying123.xu
The following changes since commit 1b237f190eb3d36f52dffe07a40b5eb210280e00:
Linux 6.17-rc3 (2025-08-24 12:04:12 -0400)
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 45d8ef6322b8a828d3b1e2cfb8893e2ff882cb23:
virtio_net: adjust the execution order of function `virtnet_close` during freeze (2025-08-26 03:38:20 -0400)
----------------------------------------------------------------
virtio,vhost: fixes
More small fixes. Most notably this fixes a messed up ioctl #,
and a regression in shmem affecting drm users.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Igor Torrente (1):
Revert "virtio: reject shm region if length is zero"
Junnan Wu (1):
virtio_net: adjust the execution order of function `virtnet_close` during freeze
Liming Wu (1):
virtio_pci: Fix misleading comment for queue vector
Namhyung Kim (1):
vhost: Fix ioctl # for VHOST_[GS]ET_FORK_FROM_OWNER
Nikolay Kuratov (1):
vhost/net: Protect ubufs with rcu read lock in vhost_net_ubuf_put()
Ying Gao (1):
virtio_input: Improve freeze handling
drivers/net/virtio_net.c | 7 ++++---
drivers/vhost/net.c | 9 +++++++--
drivers/virtio/virtio_input.c | 4 ++++
drivers/virtio/virtio_pci_legacy_dev.c | 4 ++--
drivers/virtio/virtio_pci_modern_dev.c | 4 ++--
include/linux/virtio_config.h | 2 --
include/uapi/linux/vhost.h | 4 ++--
7 files changed, 21 insertions(+), 13 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [GIT PULL] virtio,vhost: fixes
2025-08-27 14:20 [GIT PULL] virtio,vhost: fixes Michael S. Tsirkin
@ 2025-08-27 17:24 ` pr-tracker-bot
0 siblings, 0 replies; 6+ messages in thread
From: pr-tracker-bot @ 2025-08-27 17:24 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Linus Torvalds, kvm, virtualization, netdev, linux-kernel, arbn,
igor.torrente, junnan01.wu, kniv, leiyang, liming.wu, mst,
namhyung, stable, ying01.gao, ying123.xu
The pull request you sent on Wed, 27 Aug 2025 10:20:04 -0400:
> https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/39f90c1967215375f7d87b81d14b0f3ed6b40c29
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] virtio,vhost: fixes
@ 2025-12-26 14:36 Michael S. Tsirkin
2025-12-26 19:49 ` pr-tracker-bot
0 siblings, 1 reply; 6+ messages in thread
From: Michael S. Tsirkin @ 2025-12-26 14:36 UTC (permalink / raw)
To: Linus Torvalds
Cc: kvm, virtualization, netdev, linux-kernel, jasowang, mst,
sgarzare, stefanha
The following changes since commit 9448598b22c50c8a5bb77a9103e2d49f134c9578:
Linux 6.19-rc2 (2025-12-21 15:52:04 -0800)
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 d8ee3cfdc89b75dc059dc21c27bef2c1440f67eb:
vhost/vsock: improve RCU read sections around vhost_vsock_get() (2025-12-24 08:02:57 -0500)
----------------------------------------------------------------
virtio,vhost: fixes
Just a bunch of fixes, mostly trivial ones in tools/virtio
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Michael S. Tsirkin (14):
tools/virtio: fix up compiler.h stub
virtio: make it self-contained
tools/virtio: use kernel's virtio.h
tools/virtio: add struct module forward declaration
tools/virtio: stub DMA mapping functions
tools/virtio: add dev_WARN_ONCE and is_vmalloc_addr stubs
tools/virtio: add ucopysize.h stub
tools/virtio: pass KCFLAGS to module build
tools/virtio: add struct cpumask to cpumask.h
tools/virtio: stub might_sleep and synchronize_rcu
tools/virtio: switch to kernel's virtio_config.h
virtio_features: make it self-contained
tools/virtio: fix up oot build
tools/virtio: add device, device_driver stubs
Stefano Garzarella (1):
vhost/vsock: improve RCU read sections around vhost_vsock_get()
drivers/vhost/vsock.c | 15 ++++--
include/linux/virtio.h | 2 +
include/linux/virtio_features.h | 2 +
tools/virtio/Makefile | 8 +--
tools/virtio/linux/compiler.h | 6 +++
tools/virtio/linux/cpumask.h | 4 ++
tools/virtio/linux/device.h | 8 +++
tools/virtio/linux/dma-mapping.h | 4 ++
tools/virtio/linux/kernel.h | 16 ++++++
tools/virtio/linux/module.h | 2 +
tools/virtio/linux/ucopysize.h | 21 ++++++++
tools/virtio/linux/virtio.h | 73 +-------------------------
tools/virtio/linux/virtio_config.h | 102 +------------------------------------
tools/virtio/oot-stubs.h | 10 ++++
14 files changed, 93 insertions(+), 180 deletions(-)
create mode 100644 tools/virtio/linux/ucopysize.h
create mode 100644 tools/virtio/oot-stubs.h
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [GIT PULL] virtio,vhost: fixes
2025-12-26 14:36 Michael S. Tsirkin
@ 2025-12-26 19:49 ` pr-tracker-bot
0 siblings, 0 replies; 6+ messages in thread
From: pr-tracker-bot @ 2025-12-26 19:49 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Linus Torvalds, kvm, virtualization, netdev, linux-kernel,
jasowang, mst, sgarzare, stefanha
The pull request you sent on Fri, 26 Dec 2025 09:36:06 -0500:
> https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/8f0cbedc86cfc93ea869bbff420a2d86f6373f57
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-12-26 19:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-23 6:42 [GIT PULL] virtio, vhost: fixes Michael S. Tsirkin
2025-04-23 17:29 ` pr-tracker-bot
-- strict thread matches above, loose matches on Subject: below --
2025-08-27 14:20 [GIT PULL] virtio,vhost: fixes Michael S. Tsirkin
2025-08-27 17:24 ` pr-tracker-bot
2025-12-26 14:36 Michael S. Tsirkin
2025-12-26 19:49 ` pr-tracker-bot
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).