linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] virtio,vhost,vdpa: features, fixes
@ 2021-05-05 20:11 Michael S. Tsirkin
  2021-05-05 20:49 ` pr-tracker-bot
  0 siblings, 1 reply; 8+ messages in thread
From: Michael S. Tsirkin @ 2021-05-05 20:11 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: kvm, virtualization, netdev, linux-kernel, elic, jasowang,
	lingshan.zhu, liu.xiang, lkp, mgurtovoy, mst, parav, sgarzare,
	stable, xieyongji

The following changes since commit 9f4ad9e425a1d3b6a34617b8ea226d56a119a717:

  Linux 5.12 (2021-04-25 13:49:08 -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 d7bce85aa7b92b5de8f69b3bcedfe51d7b1aabe1:

  virtio_pci_modern: correct sparse tags for notify (2021-05-04 04:19:59 -0400)

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

A bunch of new drivers including vdpa support for block
and virtio-vdpa. Beginning of vq kick (aka doorbell) mapping support.
Misc fixes.

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

----------------------------------------------------------------
Eli Cohen (1):
      vdpa/mlx5: Enable user to add/delete vdpa device

Jason Wang (9):
      vdpa: introduce virtio pci driver
      virtio_pci_modern: introduce helper to map vq notify area
      virtio-pci library: switch to use vp_modern_map_vq_notify()
      vp_vdpa: switch to use vp_modern_map_vq_notify()
      virtio_pci_modern: hide vp_modern_get_queue_notify_off()
      virito_pci libray: hide vp_modern_map_capability()
      virtio-pci library: report resource address
      vp_vdpa: report doorbell address
      vhost-vdpa: fix vm_flags for virtqueue doorbell mapping

Liu Xiang (1):
      virtio-balloon: fix a typo in comment of virtballoon_migratepage()

Max Gurtovoy (2):
      virtio-net: don't allocate control_buf if not supported
      vdpa: add vdpa simulator for block device

Michael S. Tsirkin (2):
      virtio_pci_modern: __force cast the notify mapping
      virtio_pci_modern: correct sparse tags for notify

Parav Pandit (2):
      vdpa: Follow kdoc comment style
      vdpa: Follow kdoc comment style

Stefano Garzarella (12):
      vdpa_sim: use iova module to allocate IOVA addresses
      vringh: add 'iotlb_lock' to synchronize iotlb accesses
      vringh: reset kiov 'consumed' field in __vringh_iov()
      vringh: explain more about cleaning riov and wiov
      vringh: implement vringh_kiov_advance()
      vringh: add vringh_kiov_length() helper
      vdpa_sim: cleanup kiovs in vdpasim_free()
      vdpa: add get_config_size callback in vdpa_config_ops
      vhost/vdpa: use get_config_size callback in vhost_vdpa_config_validate()
      vdpa_sim_blk: implement ramdisk behaviour
      vdpa_sim_blk: handle VIRTIO_BLK_T_GET_ID
      vdpa_sim_blk: add support for vdpa management tool

Xie Yongji (1):
      vhost/vdpa: Remove the restriction that only supports virtio-net devices

Zhu Lingshan (10):
      vDPA/ifcvf: get_vendor_id returns a device specific vendor id
      vDPA/ifcvf: enable Intel C5000X-PL virtio-net for vDPA
      vDPA/ifcvf: rename original IFCVF dev ids to N3000 ids
      vDPA/ifcvf: remove the version number string
      vDPA/ifcvf: fetch device feature bits when probe
      vDPA/ifcvf: verify mandatory feature bits for vDPA
      vDPA/ifcvf: deduce VIRTIO device ID from pdev ids
      vDPA/ifcvf: deduce VIRTIO device ID when probe
      vDPA/ifcvf: enable Intel C5000X-PL virtio-block for vDPA
      vDPA/ifcvf: get_config_size should return dev specific config size

 drivers/Makefile                       |   1 +
 drivers/net/virtio_net.c               |  10 +-
 drivers/vdpa/Kconfig                   |  15 +
 drivers/vdpa/Makefile                  |   1 +
 drivers/vdpa/ifcvf/ifcvf_base.c        |  24 +-
 drivers/vdpa/ifcvf/ifcvf_base.h        |  26 +-
 drivers/vdpa/ifcvf/ifcvf_main.c        |  86 +++++-
 drivers/vdpa/mlx5/net/mlx5_vnet.c      |  85 +++++-
 drivers/vdpa/vdpa.c                    |  12 +-
 drivers/vdpa/vdpa_sim/Makefile         |   1 +
 drivers/vdpa/vdpa_sim/vdpa_sim.c       | 127 ++++++---
 drivers/vdpa/vdpa_sim/vdpa_sim.h       |   2 +
 drivers/vdpa/vdpa_sim/vdpa_sim_blk.c   | 338 +++++++++++++++++++++++
 drivers/vdpa/virtio_pci/Makefile       |   2 +
 drivers/vdpa/virtio_pci/vp_vdpa.c      | 484 +++++++++++++++++++++++++++++++++
 drivers/vhost/vdpa.c                   |  16 +-
 drivers/vhost/vringh.c                 |  69 +++--
 drivers/virtio/virtio_balloon.c        |   2 +-
 drivers/virtio/virtio_pci_modern.c     |  27 +-
 drivers/virtio/virtio_pci_modern_dev.c |  67 ++++-
 include/linux/vdpa.h                   |  42 +--
 include/linux/virtio_pci_modern.h      |  11 +-
 include/linux/vringh.h                 |  19 +-
 23 files changed, 1295 insertions(+), 172 deletions(-)
 create mode 100644 drivers/vdpa/vdpa_sim/vdpa_sim_blk.c
 create mode 100644 drivers/vdpa/virtio_pci/Makefile
 create mode 100644 drivers/vdpa/virtio_pci/vp_vdpa.c


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

* Re: [GIT PULL] virtio,vhost,vdpa: features, fixes
  2021-05-05 20:11 [GIT PULL] virtio,vhost,vdpa: features, fixes Michael S. Tsirkin
@ 2021-05-05 20:49 ` pr-tracker-bot
  0 siblings, 0 replies; 8+ messages in thread
From: pr-tracker-bot @ 2021-05-05 20:49 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Linus Torvalds, kvm, virtualization, netdev, linux-kernel, elic,
	jasowang, lingshan.zhu, liu.xiang, lkp, mgurtovoy, mst, parav,
	sgarzare, stable, xieyongji

The pull request you sent on Wed, 5 May 2021 16:11:35 -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/16bb86b5569cb7489367101f6ed69b25682b47db

Thank you!

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

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

* Re: [GIT PULL] virtio,vhost,vdpa: features, fixes
  2023-02-21  0:40 Michael S. Tsirkin
  2023-02-23  7:05 ` Michael S. Tsirkin
@ 2023-02-25 19:58 ` pr-tracker-bot
  1 sibling, 0 replies; 8+ messages in thread
From: pr-tracker-bot @ 2023-02-25 19:58 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Linus Torvalds, kvm, virtualization, netdev, linux-kernel,
	almasrymina, alvaro.karsz, anders.roxell, bagasdotme, bhelgaas,
	colin.i.king, dmitry.fomichev, elic, eperezma, hch, jasowang,
	kangjie.xu, leiyang, liming.wu, lingshan.zhu, liubo03, lkft, mie,
	mst, m.szyprowski, ricardo.canuelo, sammler, sebastien.boeuf,
	sfr, si-wei.liu, stable, stefanha, suwan.kim027, xuanzhuo,
	yangyingliang, zyytlz.wz

The pull request you sent on Mon, 20 Feb 2023 19:40:45 -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/84cc6674b76ba2cdac0df8037b4d8a22a6fc1b77

Thank you!

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

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

* Re: [GIT PULL] virtio,vhost,vdpa: features, fixes
  2023-02-23  7:05 ` Michael S. Tsirkin
@ 2023-02-25 19:42   ` Linus Torvalds
  0 siblings, 0 replies; 8+ messages in thread
From: Linus Torvalds @ 2023-02-25 19:42 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: kvm, virtualization, netdev, linux-kernel, almasrymina,
	alvaro.karsz, anders.roxell, bagasdotme, bhelgaas, colin.i.king,
	dmitry.fomichev, elic, eperezma, hch, jasowang, kangjie.xu,
	leiyang, liming.wu, lingshan.zhu, liubo03, lkft, mie,
	m.szyprowski, ricardo.canuelo, sammler, sebastien.boeuf, sfr,
	si-wei.liu, stable, stefanha, suwan.kim027, xuanzhuo,
	yangyingliang, zyytlz.wz

On Wed, Feb 22, 2023 at 11:06 PM Michael S. Tsirkin <mst@redhat.com> wrote:
>
> Did I muck this one up?  Pls let me know and maybe I can fix it up
> before the merge window closes.

No much-ups, I've just been merging other things, and came back to
architectures updates and virtualization now, so it's next in my
queue.

           Linus

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

* Re: [GIT PULL] virtio,vhost,vdpa: features, fixes
  2023-02-21  0:40 Michael S. Tsirkin
@ 2023-02-23  7:05 ` Michael S. Tsirkin
  2023-02-25 19:42   ` Linus Torvalds
  2023-02-25 19:58 ` pr-tracker-bot
  1 sibling, 1 reply; 8+ messages in thread
From: Michael S. Tsirkin @ 2023-02-23  7:05 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: kvm, virtualization, netdev, linux-kernel, almasrymina,
	alvaro.karsz, anders.roxell, bagasdotme, bhelgaas, colin.i.king,
	dmitry.fomichev, elic, eperezma, hch, jasowang, kangjie.xu,
	leiyang, liming.wu, lingshan.zhu, liubo03, lkft, mie,
	m.szyprowski, ricardo.canuelo, sammler, sebastien.boeuf, sfr,
	si-wei.liu, stable, stefanha, suwan.kim027, xuanzhuo,
	yangyingliang, zyytlz.wz

Hi Linus,

On Mon, Feb 20, 2023 at 07:40:52PM -0500, Michael S. Tsirkin wrote:
> The following changes since commit ceaa837f96adb69c0df0397937cd74991d5d821a:
> 
>   Linux 6.2-rc8 (2023-02-12 14:10:17 -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 deeacf35c922da579637f5db625af20baafc66ed:
> 
>   vdpa/mlx5: support device features provisioning (2023-02-20 19:27:00 -0500)
> 
> Note: dropped a patch close to the bottom of the stack at the last
> minute so the commits differ but all of these have been in next already.
> The dropped patch just added a new query ioctl so not interacting with
> anything else in the pull.
> 
> ----------------------------------------------------------------
> virtio,vhost,vdpa: features, fixes
> 
> device feature provisioning in ifcvf, mlx5
> new SolidNET driver
> support for zoned block device in virtio blk
> numa support in virtio pmem
> VIRTIO_F_RING_RESET support in vhost-net
> more debugfs entries in mlx5
> resume support in vdpa
> completion batching in virtio blk
> cleanup of dma api use in vdpa
> now simulating more features in vdpa-sim
> documentation, features, fixes all over the place
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
> ----------------------------------------------------------------


Did I muck this one up?  Pls let me know and maybe I can fix it up
before the merge window closes.

Thanks!


> Alvaro Karsz (4):
>       PCI: Add SolidRun vendor ID
>       PCI: Avoid FLR for SolidRun SNET DPU rev 1
>       virtio: vdpa: new SolidNET DPU driver.
>       vhost-vdpa: print warning when vhost_vdpa_alloc_domain fails
> 
> Bagas Sanjaya (3):
>       docs: driver-api: virtio: parenthesize external reference targets
>       docs: driver-api: virtio: slightly reword virtqueues allocation paragraph
>       docs: driver-api: virtio: commentize spec version checking
> 
> Bo Liu (1):
>       vhost-scsi: convert sysfs snprintf and sprintf to sysfs_emit
> 
> Colin Ian King (1):
>       vdpa: Fix a couple of spelling mistakes in some messages
> 
> Dmitry Fomichev (1):
>       virtio-blk: add support for zoned block devices
> 
> Eli Cohen (6):
>       vdpa/mlx5: Move some definitions to a new header file
>       vdpa/mlx5: Add debugfs subtree
>       vdpa/mlx5: Add RX counters to debugfs
>       vdpa/mlx5: Directly assign memory key
>       vdpa/mlx5: Don't clear mr struct on destroy MR
>       vdpa/mlx5: Initialize CVQ iotlb spinlock
> 
> Eugenio Pérez (2):
>       vdpa_sim: not reset state in vdpasim_queue_ready
>       vdpa_sim_net: Offer VIRTIO_NET_F_STATUS
> 
> Jason Wang (11):
>       vdpa_sim: use weak barriers
>       vdpa_sim: switch to use __vdpa_alloc_device()
>       vdpasim: customize allocation size
>       vdpa_sim: support vendor statistics
>       vdpa_sim_net: vendor satistics
>       vdpa_sim: get rid of DMA ops
>       virtio_ring: per virtqueue dma device
>       vdpa: introduce get_vq_dma_device()
>       virtio-vdpa: support per vq dma device
>       vdpa: set dma mask for vDPA device
>       vdpa: mlx5: support per virtqueue dma device
> 
> Kangjie Xu (1):
>       vhost-net: support VIRTIO_F_RING_RESET
> 
> Liming Wu (2):
>       vhost-test: remove meaningless debug info
>       vhost: remove unused paramete
> 
> Michael S. Tsirkin (3):
>       virtio_blk: temporary variable type tweak
>       virtio_blk: zone append in header type tweak
>       virtio_blk: mark all zone fields LE
> 
> Michael Sammler (1):
>       virtio_pmem: populate numa information
> 
> Ricardo Cañuelo (1):
>       docs: driver-api: virtio: virtio on Linux
> 
> Sebastien Boeuf (4):
>       vdpa: Add resume operation
>       vhost-vdpa: Introduce RESUME backend feature bit
>       vhost-vdpa: uAPI to resume the device
>       vdpa_sim: Implement resume vdpa op
> 
> Shunsuke Mie (2):
>       vringh: fix a typo in comments for vringh_kiov
>       tools/virtio: enable to build with retpoline
> 
> Si-Wei Liu (6):
>       vdpa: fix improper error message when adding vdpa dev
>       vdpa: conditionally read STATUS in config space
>       vdpa: validate provisioned device features against specified attribute
>       vdpa: validate device feature provisioning against supported class
>       vdpa/mlx5: make MTU/STATUS presence conditional on feature bits
>       vdpa/mlx5: support device features provisioning
> 
> Suwan Kim (2):
>       virtio-blk: set req->state to MQ_RQ_COMPLETE after polling I/O is finished
>       virtio-blk: support completion batching for the IRQ path
> 
> Zheng Wang (1):
>       scsi: virtio_scsi: fix handling of kmalloc failure
> 
> Zhu Lingshan (12):
>       vDPA/ifcvf: decouple hw features manipulators from the adapter
>       vDPA/ifcvf: decouple config space ops from the adapter
>       vDPA/ifcvf: alloc the mgmt_dev before the adapter
>       vDPA/ifcvf: decouple vq IRQ releasers from the adapter
>       vDPA/ifcvf: decouple config IRQ releaser from the adapter
>       vDPA/ifcvf: decouple vq irq requester from the adapter
>       vDPA/ifcvf: decouple config/dev IRQ requester and vectors allocator from the adapter
>       vDPA/ifcvf: ifcvf_request_irq works on ifcvf_hw
>       vDPA/ifcvf: manage ifcvf_hw in the mgmt_dev
>       vDPA/ifcvf: allocate the adapter in dev_add()
>       vDPA/ifcvf: retire ifcvf_private_to_vf
>       vDPA/ifcvf: implement features provisioning
> 
>  Documentation/driver-api/index.rst                 |    1 +
>  Documentation/driver-api/virtio/index.rst          |   11 +
>  Documentation/driver-api/virtio/virtio.rst         |  145 +++
>  .../driver-api/virtio/writing_virtio_drivers.rst   |  197 ++++
>  MAINTAINERS                                        |    5 +
>  drivers/block/virtio_blk.c                         |  468 ++++++++-
>  drivers/nvdimm/virtio_pmem.c                       |   11 +-
>  drivers/pci/quirks.c                               |    8 +
>  drivers/scsi/virtio_scsi.c                         |   14 +-
>  drivers/vdpa/Kconfig                               |   30 +
>  drivers/vdpa/Makefile                              |    1 +
>  drivers/vdpa/ifcvf/ifcvf_base.c                    |   32 +-
>  drivers/vdpa/ifcvf/ifcvf_base.h                    |   10 +-
>  drivers/vdpa/ifcvf/ifcvf_main.c                    |  162 ++-
>  drivers/vdpa/mlx5/Makefile                         |    2 +-
>  drivers/vdpa/mlx5/core/mr.c                        |    1 -
>  drivers/vdpa/mlx5/core/resources.c                 |    3 +-
>  drivers/vdpa/mlx5/net/debug.c                      |  152 +++
>  drivers/vdpa/mlx5/net/mlx5_vnet.c                  |  261 +++--
>  drivers/vdpa/mlx5/net/mlx5_vnet.h                  |   94 ++
>  drivers/vdpa/solidrun/Makefile                     |    6 +
>  drivers/vdpa/solidrun/snet_hwmon.c                 |  188 ++++
>  drivers/vdpa/solidrun/snet_main.c                  | 1111 ++++++++++++++++++++
>  drivers/vdpa/solidrun/snet_vdpa.h                  |  194 ++++
>  drivers/vdpa/vdpa.c                                |  110 +-
>  drivers/vdpa/vdpa_sim/vdpa_sim.c                   |  233 ++--
>  drivers/vdpa/vdpa_sim/vdpa_sim.h                   |    7 +-
>  drivers/vdpa/vdpa_sim/vdpa_sim_blk.c               |    1 +
>  drivers/vdpa/vdpa_sim/vdpa_sim_net.c               |  219 +++-
>  drivers/vhost/net.c                                |    5 +-
>  drivers/vhost/scsi.c                               |    6 +-
>  drivers/vhost/test.c                               |    3 -
>  drivers/vhost/vdpa.c                               |   39 +-
>  drivers/vhost/vhost.c                              |    2 +-
>  drivers/vhost/vhost.h                              |    2 +-
>  drivers/vhost/vsock.c                              |    2 +-
>  drivers/virtio/virtio_ring.c                       |  133 ++-
>  drivers/virtio/virtio_vdpa.c                       |   13 +-
>  include/linux/pci_ids.h                            |    2 +
>  include/linux/vdpa.h                               |   12 +-
>  include/linux/virtio_config.h                      |    8 +-
>  include/linux/virtio_ring.h                        |   16 +
>  include/linux/vringh.h                             |    2 +-
>  include/uapi/linux/vhost.h                         |    8 +
>  include/uapi/linux/vhost_types.h                   |    2 +
>  include/uapi/linux/virtio_blk.h                    |  105 ++
>  tools/virtio/Makefile                              |    2 +-
>  47 files changed, 3536 insertions(+), 503 deletions(-)
>  create mode 100644 Documentation/driver-api/virtio/index.rst
>  create mode 100644 Documentation/driver-api/virtio/virtio.rst
>  create mode 100644 Documentation/driver-api/virtio/writing_virtio_drivers.rst
>  create mode 100644 drivers/vdpa/mlx5/net/debug.c
>  create mode 100644 drivers/vdpa/mlx5/net/mlx5_vnet.h
>  create mode 100644 drivers/vdpa/solidrun/Makefile
>  create mode 100644 drivers/vdpa/solidrun/snet_hwmon.c
>  create mode 100644 drivers/vdpa/solidrun/snet_main.c
>  create mode 100644 drivers/vdpa/solidrun/snet_vdpa.h


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

* [GIT PULL] virtio,vhost,vdpa: features, fixes
@ 2023-02-21  0:40 Michael S. Tsirkin
  2023-02-23  7:05 ` Michael S. Tsirkin
  2023-02-25 19:58 ` pr-tracker-bot
  0 siblings, 2 replies; 8+ messages in thread
From: Michael S. Tsirkin @ 2023-02-21  0:40 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: kvm, virtualization, netdev, linux-kernel, almasrymina,
	alvaro.karsz, anders.roxell, bagasdotme, bhelgaas, colin.i.king,
	dmitry.fomichev, elic, eperezma, hch, jasowang, kangjie.xu,
	leiyang, liming.wu, lingshan.zhu, liubo03, lkft, mie, mst,
	m.szyprowski, ricardo.canuelo, sammler, sebastien.boeuf, sfr,
	si-wei.liu, stable, stefanha, suwan.kim027, xuanzhuo,
	yangyingliang, zyytlz.wz

The following changes since commit ceaa837f96adb69c0df0397937cd74991d5d821a:

  Linux 6.2-rc8 (2023-02-12 14:10:17 -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 deeacf35c922da579637f5db625af20baafc66ed:

  vdpa/mlx5: support device features provisioning (2023-02-20 19:27:00 -0500)

Note: dropped a patch close to the bottom of the stack at the last
minute so the commits differ but all of these have been in next already.
The dropped patch just added a new query ioctl so not interacting with
anything else in the pull.

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

device feature provisioning in ifcvf, mlx5
new SolidNET driver
support for zoned block device in virtio blk
numa support in virtio pmem
VIRTIO_F_RING_RESET support in vhost-net
more debugfs entries in mlx5
resume support in vdpa
completion batching in virtio blk
cleanup of dma api use in vdpa
now simulating more features in vdpa-sim
documentation, features, fixes all over the place

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

----------------------------------------------------------------
Alvaro Karsz (4):
      PCI: Add SolidRun vendor ID
      PCI: Avoid FLR for SolidRun SNET DPU rev 1
      virtio: vdpa: new SolidNET DPU driver.
      vhost-vdpa: print warning when vhost_vdpa_alloc_domain fails

Bagas Sanjaya (3):
      docs: driver-api: virtio: parenthesize external reference targets
      docs: driver-api: virtio: slightly reword virtqueues allocation paragraph
      docs: driver-api: virtio: commentize spec version checking

Bo Liu (1):
      vhost-scsi: convert sysfs snprintf and sprintf to sysfs_emit

Colin Ian King (1):
      vdpa: Fix a couple of spelling mistakes in some messages

Dmitry Fomichev (1):
      virtio-blk: add support for zoned block devices

Eli Cohen (6):
      vdpa/mlx5: Move some definitions to a new header file
      vdpa/mlx5: Add debugfs subtree
      vdpa/mlx5: Add RX counters to debugfs
      vdpa/mlx5: Directly assign memory key
      vdpa/mlx5: Don't clear mr struct on destroy MR
      vdpa/mlx5: Initialize CVQ iotlb spinlock

Eugenio Pérez (2):
      vdpa_sim: not reset state in vdpasim_queue_ready
      vdpa_sim_net: Offer VIRTIO_NET_F_STATUS

Jason Wang (11):
      vdpa_sim: use weak barriers
      vdpa_sim: switch to use __vdpa_alloc_device()
      vdpasim: customize allocation size
      vdpa_sim: support vendor statistics
      vdpa_sim_net: vendor satistics
      vdpa_sim: get rid of DMA ops
      virtio_ring: per virtqueue dma device
      vdpa: introduce get_vq_dma_device()
      virtio-vdpa: support per vq dma device
      vdpa: set dma mask for vDPA device
      vdpa: mlx5: support per virtqueue dma device

Kangjie Xu (1):
      vhost-net: support VIRTIO_F_RING_RESET

Liming Wu (2):
      vhost-test: remove meaningless debug info
      vhost: remove unused paramete

Michael S. Tsirkin (3):
      virtio_blk: temporary variable type tweak
      virtio_blk: zone append in header type tweak
      virtio_blk: mark all zone fields LE

Michael Sammler (1):
      virtio_pmem: populate numa information

Ricardo Cañuelo (1):
      docs: driver-api: virtio: virtio on Linux

Sebastien Boeuf (4):
      vdpa: Add resume operation
      vhost-vdpa: Introduce RESUME backend feature bit
      vhost-vdpa: uAPI to resume the device
      vdpa_sim: Implement resume vdpa op

Shunsuke Mie (2):
      vringh: fix a typo in comments for vringh_kiov
      tools/virtio: enable to build with retpoline

Si-Wei Liu (6):
      vdpa: fix improper error message when adding vdpa dev
      vdpa: conditionally read STATUS in config space
      vdpa: validate provisioned device features against specified attribute
      vdpa: validate device feature provisioning against supported class
      vdpa/mlx5: make MTU/STATUS presence conditional on feature bits
      vdpa/mlx5: support device features provisioning

Suwan Kim (2):
      virtio-blk: set req->state to MQ_RQ_COMPLETE after polling I/O is finished
      virtio-blk: support completion batching for the IRQ path

Zheng Wang (1):
      scsi: virtio_scsi: fix handling of kmalloc failure

Zhu Lingshan (12):
      vDPA/ifcvf: decouple hw features manipulators from the adapter
      vDPA/ifcvf: decouple config space ops from the adapter
      vDPA/ifcvf: alloc the mgmt_dev before the adapter
      vDPA/ifcvf: decouple vq IRQ releasers from the adapter
      vDPA/ifcvf: decouple config IRQ releaser from the adapter
      vDPA/ifcvf: decouple vq irq requester from the adapter
      vDPA/ifcvf: decouple config/dev IRQ requester and vectors allocator from the adapter
      vDPA/ifcvf: ifcvf_request_irq works on ifcvf_hw
      vDPA/ifcvf: manage ifcvf_hw in the mgmt_dev
      vDPA/ifcvf: allocate the adapter in dev_add()
      vDPA/ifcvf: retire ifcvf_private_to_vf
      vDPA/ifcvf: implement features provisioning

 Documentation/driver-api/index.rst                 |    1 +
 Documentation/driver-api/virtio/index.rst          |   11 +
 Documentation/driver-api/virtio/virtio.rst         |  145 +++
 .../driver-api/virtio/writing_virtio_drivers.rst   |  197 ++++
 MAINTAINERS                                        |    5 +
 drivers/block/virtio_blk.c                         |  468 ++++++++-
 drivers/nvdimm/virtio_pmem.c                       |   11 +-
 drivers/pci/quirks.c                               |    8 +
 drivers/scsi/virtio_scsi.c                         |   14 +-
 drivers/vdpa/Kconfig                               |   30 +
 drivers/vdpa/Makefile                              |    1 +
 drivers/vdpa/ifcvf/ifcvf_base.c                    |   32 +-
 drivers/vdpa/ifcvf/ifcvf_base.h                    |   10 +-
 drivers/vdpa/ifcvf/ifcvf_main.c                    |  162 ++-
 drivers/vdpa/mlx5/Makefile                         |    2 +-
 drivers/vdpa/mlx5/core/mr.c                        |    1 -
 drivers/vdpa/mlx5/core/resources.c                 |    3 +-
 drivers/vdpa/mlx5/net/debug.c                      |  152 +++
 drivers/vdpa/mlx5/net/mlx5_vnet.c                  |  261 +++--
 drivers/vdpa/mlx5/net/mlx5_vnet.h                  |   94 ++
 drivers/vdpa/solidrun/Makefile                     |    6 +
 drivers/vdpa/solidrun/snet_hwmon.c                 |  188 ++++
 drivers/vdpa/solidrun/snet_main.c                  | 1111 ++++++++++++++++++++
 drivers/vdpa/solidrun/snet_vdpa.h                  |  194 ++++
 drivers/vdpa/vdpa.c                                |  110 +-
 drivers/vdpa/vdpa_sim/vdpa_sim.c                   |  233 ++--
 drivers/vdpa/vdpa_sim/vdpa_sim.h                   |    7 +-
 drivers/vdpa/vdpa_sim/vdpa_sim_blk.c               |    1 +
 drivers/vdpa/vdpa_sim/vdpa_sim_net.c               |  219 +++-
 drivers/vhost/net.c                                |    5 +-
 drivers/vhost/scsi.c                               |    6 +-
 drivers/vhost/test.c                               |    3 -
 drivers/vhost/vdpa.c                               |   39 +-
 drivers/vhost/vhost.c                              |    2 +-
 drivers/vhost/vhost.h                              |    2 +-
 drivers/vhost/vsock.c                              |    2 +-
 drivers/virtio/virtio_ring.c                       |  133 ++-
 drivers/virtio/virtio_vdpa.c                       |   13 +-
 include/linux/pci_ids.h                            |    2 +
 include/linux/vdpa.h                               |   12 +-
 include/linux/virtio_config.h                      |    8 +-
 include/linux/virtio_ring.h                        |   16 +
 include/linux/vringh.h                             |    2 +-
 include/uapi/linux/vhost.h                         |    8 +
 include/uapi/linux/vhost_types.h                   |    2 +
 include/uapi/linux/virtio_blk.h                    |  105 ++
 tools/virtio/Makefile                              |    2 +-
 47 files changed, 3536 insertions(+), 503 deletions(-)
 create mode 100644 Documentation/driver-api/virtio/index.rst
 create mode 100644 Documentation/driver-api/virtio/virtio.rst
 create mode 100644 Documentation/driver-api/virtio/writing_virtio_drivers.rst
 create mode 100644 drivers/vdpa/mlx5/net/debug.c
 create mode 100644 drivers/vdpa/mlx5/net/mlx5_vnet.h
 create mode 100644 drivers/vdpa/solidrun/Makefile
 create mode 100644 drivers/vdpa/solidrun/snet_hwmon.c
 create mode 100644 drivers/vdpa/solidrun/snet_main.c
 create mode 100644 drivers/vdpa/solidrun/snet_vdpa.h


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

* Re: [GIT PULL] virtio,vhost,vdpa: features, fixes
  2021-07-09 11:19 Michael S. Tsirkin
@ 2021-07-09 19:20 ` pr-tracker-bot
  0 siblings, 0 replies; 8+ messages in thread
From: pr-tracker-bot @ 2021-07-09 19:20 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Linus Torvalds, kvm, virtualization, netdev, linux-kernel, abaci,
	dan.carpenter, david, elic, jasowang, lingshan.zhu, lkp,
	michael.christie, mst, sgarzare, sohaib.amhmd, stefanha,
	wanjiabing, xieyongji, yang.lee, zhangshaokun

The pull request you sent on Fri, 9 Jul 2021 07:19:52 -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/1eb8df18677d197d7538583823c373d7f13cbebc

Thank you!

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

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

* [GIT PULL] virtio,vhost,vdpa: features, fixes
@ 2021-07-09 11:19 Michael S. Tsirkin
  2021-07-09 19:20 ` pr-tracker-bot
  0 siblings, 1 reply; 8+ messages in thread
From: Michael S. Tsirkin @ 2021-07-09 11:19 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: kvm, virtualization, netdev, linux-kernel, abaci, dan.carpenter,
	david, elic, jasowang, lingshan.zhu, lkp, michael.christie, mst,
	sgarzare, sohaib.amhmd, stefanha, wanjiabing, xieyongji,
	yang.lee, zhangshaokun

The following changes since commit 3dbdb38e286903ec220aaf1fb29a8d94297da246:

  Merge branch 'for-5.14' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup (2021-07-01 17:22:14 -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 db7b337709a15d33cc5e901d2ee35d3bb3e42b2f:

  virtio-mem: prioritize unplug from ZONE_MOVABLE in Big Block Mode (2021-07-08 07:49:02 -0400)

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

Doorbell remapping for ifcvf, mlx5.
virtio_vdpa support for mlx5.
Validate device input in several drivers (for SEV and friends).
ZONE_MOVABLE aware handling in virtio-mem.
Misc fixes, cleanups.

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

----------------------------------------------------------------
David Hildenbrand (7):
      virtio-mem: don't read big block size in Sub Block Mode
      virtio-mem: use page_zonenum() in virtio_mem_fake_offline()
      virtio-mem: simplify high-level plug handling in Sub Block Mode
      virtio-mem: simplify high-level unplug handling in Sub Block Mode
      virtio-mem: prioritize unplug from ZONE_MOVABLE in Sub Block Mode
      virtio-mem: simplify high-level unplug handling in Big Block Mode
      virtio-mem: prioritize unplug from ZONE_MOVABLE in Big Block Mode

Eli Cohen (8):
      vdpa/mlx5: Fix umem sizes assignments on VQ create
      vdpa/mlx5: Fix possible failure in umem size calculation
      vdpa/mlx5: Support creating resources with uid == 0
      vdp/mlx5: Fix setting the correct dma_device
      vdpa/mlx5: Add support for running with virtio_vdpa
      vdpa/mlx5: Add support for doorbell bypassing
      vdpa/mlx5: Clear vq ready indication upon device reset
      virtio/vdpa: clear the virtqueue state during probe

Jason Wang (11):
      vp_vdpa: correct the return value when fail to map notification
      virtio-ring: maintain next in extra state for packed virtqueue
      virtio_ring: rename vring_desc_extra_packed
      virtio-ring: factor out desc_extra allocation
      virtio_ring: secure handling of mapping errors
      virtio_ring: introduce virtqueue_desc_add_split()
      virtio: use err label in __vring_new_virtqueue()
      virtio-ring: store DMA metadata in desc_extra for split virtqueue
      vdpa: support packed virtqueue for set/get_vq_state()
      virtio-pci library: introduce vp_modern_get_driver_features()
      vp_vdpa: allow set vq state to initial state after reset

Michael S. Tsirkin (4):
      virtio_net: move tx vq operation under tx queue lock
      virtio_net: move txq wakeups under tx q lock
      virtio: fix up virtio_disable_cb
      virtio_net: disable cb aggressively

Mike Christie (5):
      vhost: remove work arg from vhost_work_flush
      vhost-scsi: remove extra flushes
      vhost-scsi: reduce flushes during endpoint clearing
      vhost: fix poll coding style
      vhost: fix up vhost_work coding style

Shaokun Zhang (1):
      vhost: Remove the repeated declaration

Sohaib (1):
      virtio_blk: cleanups: remove check obsoleted by CONFIG_LBDAF removal

Stefan Hajnoczi (1):
      virtio-blk: limit seg_max to a safe value

Stefano Garzarella (1):
      vhost-iotlb: fix vhost_iotlb_del_range() documentation

Wan Jiabing (1):
      vdpa_sim_blk: remove duplicate include of linux/blkdev.h

Xie Yongji (3):
      virtio-blk: Fix memory leak among suspend/resume procedure
      virtio_net: Fix error handling in virtnet_restore()
      virtio_console: Assure used length from device is limited

Yang Li (1):
      virtio_ring: Fix kernel-doc

Zhu Lingshan (4):
      vDPA/ifcvf: record virtio notify base
      vDPA/ifcvf: implement doorbell mapping for ifcvf
      virtio: update virtio id table, add transitional ids
      vDPA/ifcvf: reuse pre-defined macros for device ids and vendor ids

 drivers/block/virtio_blk.c             |  17 +-
 drivers/char/virtio_console.c          |   4 +-
 drivers/net/virtio_net.c               |  53 +++--
 drivers/vdpa/ifcvf/ifcvf_base.c        |   4 +
 drivers/vdpa/ifcvf/ifcvf_base.h        |  14 +-
 drivers/vdpa/ifcvf/ifcvf_main.c        |  43 ++--
 drivers/vdpa/mlx5/core/mlx5_vdpa.h     |   2 +
 drivers/vdpa/mlx5/core/mr.c            |  97 ++++++---
 drivers/vdpa/mlx5/core/resources.c     |   7 +
 drivers/vdpa/mlx5/net/mlx5_vnet.c      |  67 +++++--
 drivers/vdpa/vdpa_sim/vdpa_sim.c       |   4 +-
 drivers/vdpa/vdpa_sim/vdpa_sim_blk.c   |   1 -
 drivers/vdpa/virtio_pci/vp_vdpa.c      |  43 +++-
 drivers/vhost/iotlb.c                  |   2 +-
 drivers/vhost/scsi.c                   |  21 +-
 drivers/vhost/vdpa.c                   |   4 +-
 drivers/vhost/vhost.c                  |   8 +-
 drivers/vhost/vhost.h                  |  21 +-
 drivers/vhost/vsock.c                  |   2 +-
 drivers/virtio/virtio_mem.c            | 346 +++++++++++++++++----------------
 drivers/virtio/virtio_pci_modern_dev.c |  21 ++
 drivers/virtio/virtio_ring.c           | 229 ++++++++++++++++------
 drivers/virtio/virtio_vdpa.c           |  15 ++
 include/linux/mlx5/mlx5_ifc.h          |   4 +-
 include/linux/vdpa.h                   |  25 ++-
 include/linux/virtio_pci_modern.h      |   1 +
 include/uapi/linux/virtio_ids.h        |  12 ++
 27 files changed, 713 insertions(+), 354 deletions(-)


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

end of thread, other threads:[~2023-02-25 19:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-05 20:11 [GIT PULL] virtio,vhost,vdpa: features, fixes Michael S. Tsirkin
2021-05-05 20:49 ` pr-tracker-bot
2021-07-09 11:19 Michael S. Tsirkin
2021-07-09 19:20 ` pr-tracker-bot
2023-02-21  0:40 Michael S. Tsirkin
2023-02-23  7:05 ` Michael S. Tsirkin
2023-02-25 19:42   ` Linus Torvalds
2023-02-25 19:58 ` 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).