linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] vhost,virtio,vdpa: features, fixes, cleanups
@ 2022-06-02 20:11 Michael S. Tsirkin
  2022-06-03 18:50 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Michael S. Tsirkin @ 2022-06-02 20:11 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: kvm, virtualization, netdev, linux-kernel, arbn, arei.gonglei,
	christophe.jaillet, cohuck, dan.carpenter, dinechin, elic,
	eperezma, gautam.dawar, gdawar, helei.sig11, jasowang,
	lingshan.zhu, linux-s390, liuke94, lkp, lulu, maz,
	michael.christie, mst, muriloo, oberpar, pasic, paulmck, peterz,
	pizhenwei, sgarzare, solomonbstoner, stable, suwan.kim027, tglx,
	vneethv, xianting.tian, zheyuma97

The following changes since commit 8ab2afa23bd197df47819a87f0265c0ac95c5b6a:

  Merge tag 'for-5.19/fbdev-1' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev (2022-05-30 12:46: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 bd8bb9aed56b1814784a975e2dfea12a9adcee92:

  vdpa: ifcvf: set pci driver data in probe (2022-06-01 02:16:38 -0400)

----------------------------------------------------------------
vhost,virtio,vdpa: features, fixes, cleanups

mac vlan filter and stats support in mlx5 vdpa
irq hardening in virtio
performance improvements in virtio crypto
polling i/o support in virtio blk
ASID support in vhost
fixes, cleanups all over the place

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

----------------------------------------------------------------
Andrey Ryabinin (4):
      vhost: get rid of vhost_poll_flush() wrapper
      vhost_net: get rid of vhost_net_flush_vq() and extra flush calls
      vhost_test: remove vhost_test_flush_vq()
      vhost_vsock: simplify vhost_vsock_flush()

Christophe JAILLET (1):
      virtio: pci: Fix an error handling path in vp_modern_probe()

Cindy Lu (1):
      vdpa/vp_vdpa : add vdpa tool support in vp_vdpa

Dan Carpenter (2):
      vdpasim: Off by one in vdpasim_set_group_asid()
      vhost-vdpa: return -EFAULT on copy_to_user() failure

Eli Cohen (8):
      vdpa: Fix error logic in vdpa_nl_cmd_dev_get_doit
      vdpa: Add support for querying vendor statistics
      net/vdpa: Use readers/writers semaphore instead of vdpa_dev_mutex
      net/vdpa: Use readers/writers semaphore instead of cf_mutex
      vdpa/mlx5: Add support for reading descriptor statistics
      vdpa/mlx5: Use readers/writers semaphore instead of mutex
      vdpa/mlx5: Remove flow counter from steering
      vdpa/mlx5: Add RX MAC VLAN filter support

Eugenio Pérez (1):
      vdpasim: allow to enable a vq repeatedly

Gautam Dawar (19):
      vhost: move the backend feature bits to vhost_types.h
      virtio-vdpa: don't set callback if virtio doesn't need it
      vhost-vdpa: passing iotlb to IOMMU mapping helpers
      vhost-vdpa: switch to use vhost-vdpa specific IOTLB
      vdpa: introduce virtqueue groups
      vdpa: multiple address spaces support
      vdpa: introduce config operations for associating ASID to a virtqueue group
      vhost_iotlb: split out IOTLB initialization
      vhost: support ASID in IOTLB API
      vhost-vdpa: introduce asid based IOTLB
      vhost-vdpa: introduce uAPI to get the number of virtqueue groups
      vhost-vdpa: introduce uAPI to get the number of address spaces
      vhost-vdpa: uAPI to get virtqueue group id
      vhost-vdpa: introduce uAPI to set group ASID
      vhost-vdpa: support ASID based IOTLB API
      vdpa_sim: advertise VIRTIO_NET_F_MTU
      vdpa_sim: factor out buffer completion logic
      vdpa_sim: filter destination mac address
      vdpasim: control virtqueue support

Jason Wang (9):
      virtio: use virtio_reset_device() when possible
      virtio: introduce config op to synchronize vring callbacks
      virtio-pci: implement synchronize_cbs()
      virtio-mmio: implement synchronize_cbs()
      virtio-ccw: implement synchronize_cbs()
      virtio: allow to unbreak virtqueue
      virtio: harden vring IRQ
      virtio: use WARN_ON() to warning illegal status value
      vdpa: ifcvf: set pci driver data in probe

Mike Christie (4):
      vhost: flush dev once during vhost_dev_stop
      vhost-scsi: drop flush after vhost_dev_cleanup
      vhost-test: drop flush after vhost_dev_cleanup
      vhost: rename vhost_work_dev_flush

Murilo Opsfelder Araujo (1):
      virtio-pci: Remove wrong address verification in vp_del_vqs()

Solomon Tan (2):
      virtio: Replace unsigned with unsigned int
      virtio: Replace long long int with long long

Stefano Garzarella (1):
      virtio: use virtio_device_ready() in virtio_device_restore()

Suwan Kim (2):
      virtio-blk: support polling I/O
      virtio-blk: support mq_ops->queue_rqs()

Xianting Tian (2):
      virtio_ring: remove unnecessary to_vvq call in vring hot path
      virtio_ring: add unlikely annotation for free descs check

Zhu Lingshan (1):
      vDPA/ifcvf: fix uninitialized config_vector warning

keliu (1):
      virtio: Directly use ida_alloc()/free()

lei he (2):
      virtio-crypto: adjust dst_len at ops callback
      virtio-crypto: enable retry for virtio-crypto-dev

zhenwei pi (3):
      virtio-crypto: change code style
      virtio-crypto: use private buffer for control request
      virtio-crypto: wait ctrl queue instead of busy polling

 drivers/block/virtio_blk.c                         | 224 +++++++++-
 .../crypto/virtio/virtio_crypto_akcipher_algs.c    |  95 ++--
 drivers/crypto/virtio/virtio_crypto_common.h       |  21 +-
 drivers/crypto/virtio/virtio_crypto_core.c         |  55 ++-
 .../crypto/virtio/virtio_crypto_skcipher_algs.c    | 138 +++---
 drivers/s390/virtio/virtio_ccw.c                   |  34 ++
 drivers/vdpa/alibaba/eni_vdpa.c                    |   2 +-
 drivers/vdpa/ifcvf/ifcvf_main.c                    |  23 +-
 drivers/vdpa/mlx5/core/mlx5_vdpa.h                 |   2 +
 drivers/vdpa/mlx5/net/mlx5_vnet.c                  | 491 +++++++++++++++++----
 drivers/vdpa/vdpa.c                                | 257 +++++++++--
 drivers/vdpa/vdpa_sim/vdpa_sim.c                   | 107 ++++-
 drivers/vdpa/vdpa_sim/vdpa_sim.h                   |   3 +
 drivers/vdpa/vdpa_sim/vdpa_sim_net.c               | 169 +++++--
 drivers/vdpa/vdpa_user/vduse_dev.c                 |   3 +-
 drivers/vdpa/virtio_pci/vp_vdpa.c                  | 161 +++++--
 drivers/vhost/iotlb.c                              |  23 +-
 drivers/vhost/net.c                                |  11 +-
 drivers/vhost/scsi.c                               |   4 +-
 drivers/vhost/test.c                               |  14 +-
 drivers/vhost/vdpa.c                               | 271 +++++++++---
 drivers/vhost/vhost.c                              |  45 +-
 drivers/vhost/vhost.h                              |   7 +-
 drivers/vhost/vsock.c                              |   7 +-
 drivers/virtio/virtio.c                            |  32 +-
 drivers/virtio/virtio_balloon.c                    |  12 +-
 drivers/virtio/virtio_mmio.c                       |  27 +-
 drivers/virtio/virtio_pci_common.c                 |  15 +-
 drivers/virtio/virtio_pci_common.h                 |  10 +-
 drivers/virtio/virtio_pci_legacy.c                 |  11 +-
 drivers/virtio/virtio_pci_modern.c                 |  14 +-
 drivers/virtio/virtio_pci_modern_dev.c             |   6 +
 drivers/virtio/virtio_ring.c                       |  55 ++-
 drivers/virtio/virtio_vdpa.c                       |  12 +-
 include/linux/mlx5/mlx5_ifc.h                      |   1 +
 include/linux/mlx5/mlx5_ifc_vdpa.h                 |  39 ++
 include/linux/vdpa.h                               |  61 ++-
 include/linux/vhost_iotlb.h                        |   2 +
 include/linux/virtio.h                             |   1 +
 include/linux/virtio_config.h                      |  47 +-
 include/uapi/linux/vdpa.h                          |   6 +
 include/uapi/linux/vhost.h                         |  26 +-
 include/uapi/linux/vhost_types.h                   |  11 +-
 43 files changed, 1964 insertions(+), 591 deletions(-)


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

* Re: [GIT PULL] vhost,virtio,vdpa: features, fixes, cleanups
  2022-06-02 20:11 [GIT PULL] vhost,virtio,vdpa: features, fixes, cleanups Michael S. Tsirkin
@ 2022-06-03 18:50 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2022-06-03 18:50 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Linus Torvalds, kvm, virtualization, netdev, linux-kernel, arbn,
	arei.gonglei, christophe.jaillet, cohuck, dan.carpenter,
	dinechin, elic, eperezma, gautam.dawar, gdawar, helei.sig11,
	jasowang, lingshan.zhu, linux-s390, liuke94, lkp, lulu, maz,
	michael.christie, mst, muriloo, oberpar, pasic, paulmck, peterz,
	pizhenwei, sgarzare, solomonbstoner, stable, suwan.kim027, tglx,
	vneethv, xianting.tian, zheyuma97

The pull request you sent on Thu, 2 Jun 2022 16:11: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/6e5f6a86915d65210e90acac0402e6f37e21fc7b

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

* Re: [GIT PULL] vhost,virtio,vdpa: features, fixes, cleanups
  2023-11-05 15:58 Michael S. Tsirkin
@ 2023-11-05 19:11 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2023-11-05 19:11 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Linus Torvalds, xuanzhuo, geert+renesas, kvm, mst, simon.horman,
	netdev, xieyongji, xueshi.hu, pizhenwei, linux-kernel, eperezma,
	leiyang, gregkh, shawn.shao, virtualization, leon

The pull request you sent on Sun, 5 Nov 2023 10:58: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/77fa2fbe87fc605c4bfa87dff87be9bfded0e9a3

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,virtio,vdpa: features, fixes, cleanups
@ 2023-11-05 15:58 Michael S. Tsirkin
  2023-11-05 19:11 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Michael S. Tsirkin @ 2023-11-05 15:58 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: kvm, virtualization, netdev, linux-kernel, dtatulea, eperezma,
	geert+renesas, gregkh, jasowang, leiyang, leon, mst, pizhenwei,
	sgarzare, shannon.nelson, shawn.shao, simon.horman, si-wei.liu,
	xieyongji, xuanzhuo, xueshi.hu

The following changes since commit ffc253263a1375a65fa6c9f62a893e9767fbebfa:

  Linux 6.6 (2023-10-29 16:31:08 -1000)

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 86f6c224c97911b4392cb7b402e6a4ed323a449e:

  vdpa_sim: implement .reset_map support (2023-11-01 09:20:00 -0400)

----------------------------------------------------------------
vhost,virtio,vdpa: features, fixes, cleanups

vdpa/mlx5:
	VHOST_BACKEND_F_ENABLE_AFTER_DRIVER_OK
	new maintainer
vdpa:
	support for vq descriptor mappings
	decouple reset of iotlb mapping from device reset

fixes, cleanups all over the place

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

----------------------------------------------------------------
Dragos Tatulea (14):
      vdpa/mlx5: Expose descriptor group mkey hw capability
      vdpa/mlx5: Create helper function for dma mappings
      vdpa/mlx5: Decouple cvq iotlb handling from hw mapping code
      vdpa/mlx5: Take cvq iotlb lock during refresh
      vdpa/mlx5: Collapse "dvq" mr add/delete functions
      vdpa/mlx5: Rename mr destroy functions
      vdpa/mlx5: Allow creation/deletion of any given mr struct
      vdpa/mlx5: Move mr mutex out of mr struct
      vdpa/mlx5: Improve mr update flow
      vdpa/mlx5: Introduce mr for vq descriptor
      vdpa/mlx5: Enable hw support for vq descriptor mapping
      vdpa/mlx5: Make iotlb helper functions more generic
      vdpa/mlx5: Update cvq iotlb mapping on ASID change
      MAINTAINERS: Add myself as mlx5_vdpa driver

Eugenio Pérez (1):
      mlx5_vdpa: offer VHOST_BACKEND_F_ENABLE_AFTER_DRIVER_OK

Geert Uytterhoeven (1):
      vhost-scsi: Spelling s/preceeding/preceding/g

Greg Kroah-Hartman (1):
      vduse: make vduse_class constant

Michael S. Tsirkin (1):
      Merge branch 'mlx5-vhost' of https://git.kernel.org/pub/scm/linux/kernel/git/mellanox/linux.git

Shannon Nelson (1):
      virtio: kdoc for struct virtio_pci_modern_device

Shawn.Shao (1):
      vdpa: Update sysfs ABI documentation

Si-Wei Liu (10):
      vdpa: introduce dedicated descriptor group for virtqueue
      vhost-vdpa: introduce descriptor group backend feature
      vhost-vdpa: uAPI to get dedicated descriptor group id
      vdpa: introduce .reset_map operation callback
      vhost-vdpa: reset vendor specific mapping to initial state in .release
      vhost-vdpa: introduce IOTLB_PERSIST backend feature bit
      vdpa: introduce .compat_reset operation callback
      vhost-vdpa: clean iotlb map during reset for older userspace
      vdpa/mlx5: implement .reset_map driver op
      vdpa_sim: implement .reset_map support

Xuan Zhuo (3):
      virtio: add definition of VIRTIO_F_NOTIF_CONFIG_DATA feature bit
      virtio_pci: add build offset check for the new common cfg items
      virtio_pci: add check for common cfg size

Xueshi Hu (1):
      virtio-balloon: correct the comment of virtballoon_migratepage()

zhenwei pi (1):
      virtio-blk: fix implicit overflow on virtio_max_dma_size

 Documentation/ABI/testing/sysfs-bus-vdpa |   4 +-
 MAINTAINERS                              |   6 +
 drivers/block/virtio_blk.c               |   4 +-
 drivers/vdpa/mlx5/core/mlx5_vdpa.h       |  32 +++--
 drivers/vdpa/mlx5/core/mr.c              | 213 +++++++++++++++++++------------
 drivers/vdpa/mlx5/core/resources.c       |   6 +-
 drivers/vdpa/mlx5/net/mlx5_vnet.c        | 137 +++++++++++++++-----
 drivers/vdpa/vdpa_sim/vdpa_sim.c         |  52 ++++++--
 drivers/vdpa/vdpa_user/vduse_dev.c       |  40 +++---
 drivers/vhost/scsi.c                     |   2 +-
 drivers/vhost/vdpa.c                     |  79 +++++++++++-
 drivers/virtio/virtio_balloon.c          |   2 +-
 drivers/virtio/virtio_pci_modern.c       |  36 ++++++
 drivers/virtio/virtio_pci_modern_dev.c   |   6 +-
 drivers/virtio/virtio_vdpa.c             |   2 +-
 include/linux/mlx5/mlx5_ifc.h            |   8 +-
 include/linux/mlx5/mlx5_ifc_vdpa.h       |   7 +-
 include/linux/vdpa.h                     |  41 +++++-
 include/linux/virtio_pci_modern.h        |  35 +++--
 include/uapi/linux/vhost.h               |   8 ++
 include/uapi/linux/vhost_types.h         |   7 +
 include/uapi/linux/virtio_config.h       |   5 +
 22 files changed, 546 insertions(+), 186 deletions(-)


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

end of thread, other threads:[~2023-11-05 19:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-02 20:11 [GIT PULL] vhost,virtio,vdpa: features, fixes, cleanups Michael S. Tsirkin
2022-06-03 18:50 ` pr-tracker-bot
2023-11-05 15:58 Michael S. Tsirkin
2023-11-05 19:11 ` 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).