[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 9.0 v2 00/13] Consolidate common vdpa members in VhostVDPAShared
From: |
Eugenio Pérez |
Subject: |
[PATCH 9.0 v2 00/13] Consolidate common vdpa members in VhostVDPAShared |
Date: |
Fri, 15 Dec 2023 13:52:37 +0100 |
Current memory operations like pinning may take a lot of time at the
destination. Currently they are done after the source of the migration is
stopped, and before the workload is resumed at the destination. This is a
period where neigher traffic can flow, nor the VM workload can continue
(downtime).
We can do better as we know the memory layout of the guest RAM at the
destination from the moment the migration starts. Moving that operation allows
QEMU to communicate the kernel the maps while the workload is still running in
the source, so Linux can start mapping them. Ideally, all IOMMU is configured,
but if the vDPA parent driver uses on-chip IOMMU and .set_map we're still
saving all the pinning time.
This is a first required step to consolidate all the members in a common
struct. This is needed because the destination does not know what vhost_vdpa
struct will have the registered listener member, so it is easier to place them
in a shared struct rather to keep them in vhost_vdpa struct.
v2:
* Avoid repeated setting shared->shadow_data by squashing Si-Wei's patch
[1].
v1 from RFC:
* Fix vhost_vdpa_net_cvq_start checking for always_svq instead of
shadow_data. This could cause CVQ not being shadowed if
vhost_vdpa_net_cvq_start was called in the middle of a migration.
[1]
1701970793-6865-10-git-send-email-si-wei.liu@oracle.com/">https://patchwork.kernel.org/project/qemu-devel/patch/1701970793-6865-10-git-send-email-si-wei.liu@oracle.com/
Eugenio Pérez (13):
vdpa: add VhostVDPAShared
vdpa: move iova tree to the shared struct
vdpa: move iova_range to vhost_vdpa_shared
vdpa: move shadow_data to vhost_vdpa_shared
vdpa: use vdpa shared for tracing
vdpa: move file descriptor to vhost_vdpa_shared
vdpa: move iotlb_batch_begin_sent to vhost_vdpa_shared
vdpa: move backend_cap to vhost_vdpa_shared
vdpa: remove msg type of vhost_vdpa
vdpa: move iommu_list to vhost_vdpa_shared
vdpa: use VhostVDPAShared in vdpa_dma_map and unmap
vdpa: use dev_shared in vdpa_iommu
vdpa: move memory listener to vhost_vdpa_shared
include/hw/virtio/vhost-vdpa.h | 36 +++++---
hw/virtio/vdpa-dev.c | 7 +-
hw/virtio/vhost-vdpa.c | 160 +++++++++++++++++----------------
net/vhost-vdpa.c | 116 ++++++++++++------------
hw/virtio/trace-events | 14 +--
5 files changed, 173 insertions(+), 160 deletions(-)
--
2.39.3
- [PATCH 9.0 v2 00/13] Consolidate common vdpa members in VhostVDPAShared,
Eugenio Pérez <=
- [PATCH 9.0 v2 05/13] vdpa: use vdpa shared for tracing, Eugenio Pérez, 2023/12/15
- [PATCH 9.0 v2 04/13] vdpa: move shadow_data to vhost_vdpa_shared, Eugenio Pérez, 2023/12/15
- [PATCH 9.0 v2 01/13] vdpa: add VhostVDPAShared, Eugenio Pérez, 2023/12/15
- [PATCH 9.0 v2 07/13] vdpa: move iotlb_batch_begin_sent to vhost_vdpa_shared, Eugenio Pérez, 2023/12/15
- [PATCH 9.0 v2 06/13] vdpa: move file descriptor to vhost_vdpa_shared, Eugenio Pérez, 2023/12/15
- [PATCH 9.0 v2 08/13] vdpa: move backend_cap to vhost_vdpa_shared, Eugenio Pérez, 2023/12/15
- [PATCH 9.0 v2 09/13] vdpa: remove msg type of vhost_vdpa, Eugenio Pérez, 2023/12/15
- [PATCH 9.0 v2 10/13] vdpa: move iommu_list to vhost_vdpa_shared, Eugenio Pérez, 2023/12/15
- [PATCH 9.0 v2 02/13] vdpa: move iova tree to the shared struct, Eugenio Pérez, 2023/12/15
- [PATCH 9.0 v2 03/13] vdpa: move iova_range to vhost_vdpa_shared, Eugenio Pérez, 2023/12/15