stable.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; 6+ 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] 6+ 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; 6+ 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] 6+ 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; 6+ 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] 6+ 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; 6+ 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] 6+ 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; 6+ 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] 6+ 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; 6+ 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] 6+ messages in thread

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

Thread overview: 6+ 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
  -- strict thread matches above, loose matches on Subject: below --
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).