[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/17] vfio queue
From: |
Cédric Le Goater |
Subject: |
[PULL 00/17] vfio queue |
Date: |
Tue, 24 Dec 2024 16:15:30 +0100 |
The following changes since commit aa3a285b5bc56a4208b3b57d4a55291e9c260107:
Merge tag 'mem-2024-12-21' of https://github.com/davidhildenbrand/qemu into
staging (2024-12-22 14:33:27 -0500)
are available in the Git repository at:
https://github.com/legoater/qemu/ tags/pull-vfio-20241224
for you to fetch changes up to 242c3cb9a0b0375515630f11c4ecf277f00d1f37:
migration: Unexport migration_is_active() (2024-12-23 20:15:55 +0100)
----------------------------------------------------------------
vfio queue:
* Add support for IGD passthrough on all Intel Gen 11 and 12 devices
* Refactor dirty tracking engine to include VFIO state in calc-dirty-rate
* Drop usage migration_is_device() and migration_is_active()
----------------------------------------------------------------
Avihai Horon (7):
vfio/container: Add dirty tracking started flag
vfio/migration: Refactor vfio_devices_all_dirty_tracking() logic
vfio/migration: Refactor vfio_devices_all_running_and_mig_active() logic
vfio/migration: Rename vfio_devices_all_dirty_tracking()
system/dirtylimit: Don't use migration_is_active()
migration: Drop migration_is_device()
migration: Unexport migration_is_active()
Tomita Moeko (10):
vfio/igd: fix GTT stolen memory size calculation for gen 8+
vfio/igd: remove unsupported device ids
vfio/igd: align generation with i915 kernel driver
vfio/igd: canonicalize memory size calculations
vfio/igd: add Gemini Lake and Comet Lake device ids
vfio/igd: add Alder/Raptor/Rocket/Ice/Jasper Lake device ids
vfio/igd: add macro for declaring mirrored registers
vfio/igd: emulate GGC register in mmio bar0
vfio/igd: emulate BDSM in mmio bar0 for gen 6-10 devices
vfio/igd: add x-igd-gms option back to set DSM region size for guest
include/hw/vfio/vfio-common.h | 6 +-
include/hw/vfio/vfio-container-base.h | 1 +
include/migration/misc.h | 2 -
hw/vfio/common.c | 57 ++++----
hw/vfio/container-base.c | 12 +-
hw/vfio/container.c | 2 +-
hw/vfio/igd.c | 262 +++++++++++++++++++++-------------
migration/migration.c | 23 ++-
system/dirtylimit.c | 3 +-
9 files changed, 214 insertions(+), 154 deletions(-)
- [PULL 00/17] vfio queue,
Cédric Le Goater <=
- [PULL 01/17] vfio/igd: fix GTT stolen memory size calculation for gen 8+, Cédric Le Goater, 2024/12/24
- [PULL 02/17] vfio/igd: remove unsupported device ids, Cédric Le Goater, 2024/12/24
- [PULL 04/17] vfio/igd: canonicalize memory size calculations, Cédric Le Goater, 2024/12/24
- [PULL 05/17] vfio/igd: add Gemini Lake and Comet Lake device ids, Cédric Le Goater, 2024/12/24
- [PULL 03/17] vfio/igd: align generation with i915 kernel driver, Cédric Le Goater, 2024/12/24
- [PULL 06/17] vfio/igd: add Alder/Raptor/Rocket/Ice/Jasper Lake device ids, Cédric Le Goater, 2024/12/24
- [PULL 08/17] vfio/igd: emulate GGC register in mmio bar0, Cédric Le Goater, 2024/12/24
- [PULL 10/17] vfio/igd: add x-igd-gms option back to set DSM region size for guest, Cédric Le Goater, 2024/12/24
- [PULL 09/17] vfio/igd: emulate BDSM in mmio bar0 for gen 6-10 devices, Cédric Le Goater, 2024/12/24
- [PULL 12/17] vfio/migration: Refactor vfio_devices_all_dirty_tracking() logic, Cédric Le Goater, 2024/12/24