[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 00/17] vfio/migration: Implement VFIO migration protocol v2
From: |
Avihai Horon |
Subject: |
[PATCH v3 00/17] vfio/migration: Implement VFIO migration protocol v2 |
Date: |
Thu, 3 Nov 2022 18:16:03 +0200 |
Hello,
A long time has passed since v2 of this series was posted. During this
time we had several KVM calls discussing the problems that were needed
to be solved in order to move forward.
This version of the series includes quite some changes, and I believe
that it addresses all the major problems we have discussed. Please see
below the updated patch list and change log from v2.
Following VFIO migration protocol v2 acceptance in kernel, this series
implements VFIO migration according to the new v2 protocol and replaces
the now deprecated v1 implementation.
The main differences between v1 and v2 migration protocols are:
1. VFIO device state is represented as a finite state machine instead of
a bitmap.
2. The migration interface with kernel is done using VFIO_DEVICE_FEATURE
ioctl and normal read() and write() instead of the migration region
used in v1.
3. Migration protocol v2 currently doesn't support the pre-copy phase of
migration.
Full description of the v2 protocol and the differences from v1 can be
found here [1].
Patch list:
Patches 1-4 are patches taken from Juan's RFC [2].
As discussed in the KVM call, since we are going to add a new ioctl to
get device data size while it's RUNNING, we don't need the stop and
resume VM functionality from the RFC.
Patches 5-11 are prep patches fixing bugs, adding QEMUFile function
that will be used later and refactoring v1 protocol code to make it
easier to add v2 protocol.
Patches 12-16 implement v2 protocol and remove v1 protocol.
Patch 17 is a preview patch (which is not for merging yet) that
demonstrates how the new ioctl to get device state size will work once
added.
Thanks.
Changes from v2 [3]:
- Rebased on top of latest master branch.
- Added relevant patches from Juan's RFC [2] with minor changes:
1. Added Reviewed-by tag to patch #3 in the RFC.
2. Adjusted patch #6 to work without patch #4 in the RFC.
- Added a new patch "vfio/migration: Fix wrong enum usage" that fixes a
small bug in v1 code. This patch has been sent a few weeks ago [4] but
wasn't taken yet.
- Patch #2 (vfio/migration: Skip pre-copy if dirty page tracking is not
supported):
1. Dropped this patch and replaced it with
"vfio/migration: Allow migration without VFIO IOMMU dirty tracking
support".
The new patch uses a different approach ??? instead of skipping
pre-copy phase completely, QEMU VFIO code will mark RAM dirty
(instead of kernel). This ensures that current migration behavior
is not changed and SLA is taken into account.
- Patch #4 (vfio/common: Change vfio_devices_all_running_and_saving() logic to
equivalent one):
1. Improved commit message to better explain the change.
- Patch #7 (vfio/migration: Implement VFIO migration protocol v2):
1. Enhanced vfio_migration_set_state() error reporting.
2. In vfio_save_complete_precopy() of v2 protocol - when changing
device state to STOP, set recover state to ERROR instead of STOP as
suggested by Joao.
3. Constify SaveVMHandlers of v2 protocol.
4. Modified trace_vfio_vmstate_change and trace_vfio_migration_set_state
to print device state string instead of enum.
5. Replaced qemu_put_buffer_async() with qemu_put_buffer() in
vfio_save_block(), as requested by Juan.
6. Implemented v2 protocol version of vfio_save_pending() as requested
by Juan. Until ioctl to get device state size is added, we just
report some big hard coded value, as agreed in KVM call.
- Patch #9 (vfio/migration: Reset device if setting recover state fails):
1. Enhanced error reporting.
2. Set VFIOMigration->device_state to RUNNING after device reset.
- Patch #11 (docs/devel: Align vfio-migration docs to VFIO migration v2):
1. Adjusted vfio migration documentation to the added vfio_save_pending()
- Added the last patch (which is not for merging yet) that demonstrates
how the new ioctl to get device state size will work once added.
Changes from v1 [5]:
- Split the big patch that replaced v1 with v2 into several patches as
suggested by Joao, to make review easier.
- Change warn_report to warn_report_once when container doesn't support
dirty tracking.
- Add Reviewed-by tag.
[1]
https://lore.kernel.org/all/20220224142024.147653-10-yishaih@nvidia.com/
[2]
https://lore.kernel.org/qemu-devel/20221003031600.20084-1-quintela@redhat.com/T/
[3]
https://lore.kernel.org/all/20220530170739.19072-1-avihaih@nvidia.com/
[4]
https://lore.kernel.org/all/20221016085752.32740-1-avihaih@nvidia.com/
[5]
https://lore.kernel.org/all/20220512154320.19697-1-avihaih@nvidia.com/
Avihai Horon (13):
vfio/migration: Fix wrong enum usage
vfio/migration: Fix NULL pointer dereference bug
vfio/migration: Allow migration without VFIO IOMMU dirty tracking
support
migration/qemu-file: Add qemu_file_get_to_fd()
vfio/common: Change vfio_devices_all_running_and_saving() logic to
equivalent one
vfio/migration: Move migration v1 logic to vfio_migration_init()
vfio/migration: Rename functions/structs related to v1 protocol
vfio/migration: Implement VFIO migration protocol v2
vfio/migration: Remove VFIO migration protocol v1
vfio/migration: Reset device if setting recover state fails
vfio: Alphabetize migration section of VFIO trace-events file
docs/devel: Align vfio-migration docs to VFIO migration v2
vfio/migration: Query device data size in vfio_save_pending()
Juan Quintela (4):
migration: Remove res_compatible parameter
migration: No save_live_pending() method uses the QEMUFile parameter
migration: Block migration comment or code is wrong
migration: Simplify migration_iteration_run()
docs/devel/vfio-migration.rst | 68 ++--
hw/s390x/s390-stattrib.c | 8 +-
hw/vfio/common.c | 103 +++--
hw/vfio/migration.c | 669 +++++++++------------------------
hw/vfio/trace-events | 28 +-
include/hw/vfio/vfio-common.h | 8 +-
include/migration/register.h | 22 +-
linux-headers/linux/vfio.h | 13 +
migration/block-dirty-bitmap.c | 10 +-
migration/block.c | 13 +-
migration/migration.c | 35 +-
migration/qemu-file.c | 34 ++
migration/qemu-file.h | 1 +
migration/ram.c | 10 +-
migration/savevm.c | 17 +-
migration/savevm.h | 6 +-
migration/trace-events | 2 +-
17 files changed, 402 insertions(+), 645 deletions(-)
--
2.21.3
- [PATCH v3 00/17] vfio/migration: Implement VFIO migration protocol v2,
Avihai Horon <=