Netdev List
 help / color / mirror / Atom feed
* [GIT PULL] vhost,vdpa: last minute fixes
@ 2020-10-08 20:30 Michael S. Tsirkin
  2020-10-08 21:37 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Michael S. Tsirkin @ 2020-10-08 20:30 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: kvm, virtualization, netdev, linux-kernel, elic, groug, jasowang,
	lkp, michael.christie, mst, si-wei.liu, stable

The following changes since commit a127c5bbb6a8eee851cbdec254424c480b8edd75:

  vhost-vdpa: fix backend feature ioctls (2020-09-24 05:54:36 -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 aff90770e54cdb40228f2ab339339e95d0aa0c9a:

  vdpa/mlx5: Fix dependency on MLX5_CORE (2020-10-08 16:02:00 -0400)

----------------------------------------------------------------
vhost,vdpa: last minute fixes

Some last minute fixes. The last two of them haven't been in next but
they do seem kind of obvious, very small and safe, fix bugs reported in
the field, and they are both in a new mlx5 vdpa driver, so it's not like
we can introduce regressions.

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

----------------------------------------------------------------
Eli Cohen (1):
      vdpa/mlx5: Fix dependency on MLX5_CORE

Greg Kurz (3):
      vhost: Don't call access_ok() when using IOTLB
      vhost: Use vhost_get_used_size() in vhost_vring_set_addr()
      vhost: Don't call log_access_ok() when using IOTLB

Mike Christie (1):
      vhost vdpa: fix vhost_vdpa_open error handling

Si-Wei Liu (3):
      vhost-vdpa: fix vhost_vdpa_map() on error condition
      vhost-vdpa: fix page pinning leakage in error path
      vdpa/mlx5: should keep avail_index despite device status

 drivers/vdpa/Kconfig              |   7 +--
 drivers/vdpa/mlx5/net/mlx5_vnet.c |  20 ++++--
 drivers/vhost/vdpa.c              | 127 +++++++++++++++++++++++---------------
 drivers/vhost/vhost.c             |  33 +++++++---
 4 files changed, 117 insertions(+), 70 deletions(-)


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

* Re: [GIT PULL] vhost,vdpa: last minute fixes
  2020-10-08 20:30 Michael S. Tsirkin
@ 2020-10-08 21:37 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-10-08 21:37 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Linus Torvalds, lkp, kvm, mst, netdev, stable, linux-kernel,
	si-wei.liu, elic, virtualization, michael.christie

The pull request you sent on Thu, 8 Oct 2020 16:30:51 -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/3fdd47c3b40ac48e6e6e5904cf24d12e6e073a96

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* [GIT PULL] vhost,vdpa: last minute fixes
@ 2026-08-04 21:06 Michael S. Tsirkin
  2026-08-04 21:24 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Michael S. Tsirkin @ 2026-08-04 21:06 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: kvm, virtualization, netdev, linux-kernel, alhouseenyousef,
	borntraeger, dtatulea, junvyyang, linfeng.sun.dev,
	linfeng.sun.dev, mst, physicalmtea, slf, stable

The following changes since commit 075b74841bd0065a3bda3440873c747938e69b68:

  Linux 7.2-rc6 (2026-08-02 16:24:24 -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 42bc45df5905e2b7dccb72adaf7730f66cfbe03f:

  vhost-scsi: reject feature changes after endpoint (2026-08-03 23:08:15 -0400)

----------------------------------------------------------------
vhost,vdpa: last minute fixes

A small number of fixes that seem too important to
wait until the next release.

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

----------------------------------------------------------------
Christian Borntraeger (1):
      vdpa/mlx5: Fix buffer length in create_direct_keys()

Jia Jia (2):
      vhost-scsi: flush backend after device ioctls
      vhost-scsi: reject feature changes after endpoint

Jun Yang (1):
      vhost: reset the vring metadata cache on vring reconfiguration

Linfeng Sun (1):
      vhost-scsi: Validate T10 PI scatterlist counts

Linfeng Sun  (1):
      vhost_iotlb: bound map allocation in add_range

Yousef Alhouseen (1):
      vhost/vdpa: reject overflowing PA map page counts on 32-bit

 drivers/vdpa/mlx5/core/mlx5_vdpa.h   |  2 ++
 drivers/vdpa/mlx5/core/mr.c          |  8 ++++--
 drivers/vdpa/mlx5/core/resources.c   | 11 ++++++++-
 drivers/vdpa/vdpa_sim/vdpa_sim.c     | 10 +++++---
 drivers/vdpa/vdpa_user/iova_domain.c | 11 ++++++++-
 drivers/vhost/iotlb.c                | 47 +++++++++++++++++++++++++-----------
 drivers/vhost/scsi.c                 | 20 ++++++++++++++-
 drivers/vhost/vdpa.c                 | 18 ++++++++++++--
 drivers/vhost/vhost.c                | 16 ++++++++++++
 9 files changed, 119 insertions(+), 24 deletions(-)


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

* Re: [GIT PULL] vhost,vdpa: last minute fixes
  2026-08-04 21:06 [GIT PULL] vhost,vdpa: last minute fixes Michael S. Tsirkin
@ 2026-08-04 21:24 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2026-08-04 21:24 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Linus Torvalds, kvm, virtualization, netdev, linux-kernel,
	alhouseenyousef, borntraeger, dtatulea, junvyyang,
	linfeng.sun.dev, linfeng.sun.dev, mst, physicalmtea, slf, stable

The pull request you sent on Tue, 4 Aug 2026 17:06:24 -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/c21bb4193868a8de71fc4693fa741e195fdf5d86

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2026-08-04 21:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-04 21:06 [GIT PULL] vhost,vdpa: last minute fixes Michael S. Tsirkin
2026-08-04 21:24 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2020-10-08 20:30 Michael S. Tsirkin
2020-10-08 21:37 ` 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