Failed in applying to current master (
apply log)
MAINTAINERS | 1 +
docs/igd-assign.txt | 265 +++++++++----
hw/vfio/migration-multifd.h | 2 +-
hw/vfio/pci.h | 4 +-
hw/vfio/vfio-cpr.h | 15 +
hw/vfio/vfio-display.h | 42 ++
hw/vfio/vfio-helpers.h | 35 ++
hw/vfio/vfio-iommufd.h | 34 ++
hw/vfio/vfio-listener.h | 15 +
hw/vfio/vfio-migration-internal.h | 74 ++++
include/hw/s390x/vfio-ccw.h | 2 +-
include/hw/vfio/vfio-common.h | 346 -----------------
include/hw/vfio/vfio-container-base.h | 15 +-
include/hw/vfio/vfio-container.h | 36 ++
include/hw/vfio/vfio-device.h | 150 ++++++++
include/hw/vfio/vfio-migration.h | 16 +
include/hw/vfio/vfio-platform.h | 4 +-
include/hw/vfio/vfio-region.h | 47 +++
backends/iommufd.c | 2 +-
hw/core/sysbus-fdt.c | 1 +
hw/ppc/spapr_pci_vfio.c | 6 +-
hw/s390x/s390-pci-vfio.c | 3 +-
hw/vfio/ap.c | 14 +-
hw/vfio/ccw.c | 30 +-
hw/vfio/container-base.c | 192 +++++++++-
hw/vfio/container.c | 144 +++----
hw/vfio/cpr.c | 3 +-
hw/vfio/device.c | 400 +++++++++++++++++++
hw/vfio/display.c | 10 +-
hw/vfio/helpers.c | 702 ++++------------------------------
hw/vfio/igd.c | 10 +-
hw/vfio/iommufd.c | 55 +--
hw/vfio/{common.c => listener.c} | 510 +++---------------------
hw/vfio/migration-multifd.c | 7 +-
hw/vfio/migration.c | 108 +++++-
hw/vfio/pci.c | 283 +++++++-------
hw/vfio/platform.c | 15 +-
hw/vfio/region.c | 395 +++++++++++++++++++
hw/vfio/spapr.c | 79 ++--
migration/target.c | 8 +-
hw/vfio/meson.build | 10 +-
hw/vfio/trace-events | 36 +-
42 files changed, 2290 insertions(+), 1836 deletions(-)
create mode 100644 hw/vfio/vfio-cpr.h
create mode 100644 hw/vfio/vfio-display.h
create mode 100644 hw/vfio/vfio-helpers.h
create mode 100644 hw/vfio/vfio-iommufd.h
create mode 100644 hw/vfio/vfio-listener.h
create mode 100644 hw/vfio/vfio-migration-internal.h
delete mode 100644 include/hw/vfio/vfio-common.h
create mode 100644 include/hw/vfio/vfio-container.h
create mode 100644 include/hw/vfio/vfio-device.h
create mode 100644 include/hw/vfio/vfio-migration.h
create mode 100644 include/hw/vfio/vfio-region.h
create mode 100644 hw/vfio/device.c
rename hw/vfio/{common.c => listener.c} (74%)
create mode 100644 hw/vfio/region.c