On Mon, 7 Aug 2023 13:57:47 -0700 Brett Creeley <brett.creeley@xxxxxxx> wrote: > Brett Creeley (8): > vfio: Commonize combine_ranges for use in other VFIO drivers > vfio/pds: Initial support for pds VFIO driver > pds_core: Require callers of register/unregister to pass PF drvdata > vfio/pds: register with the pds_core PF > vfio/pds: Add VFIO live migration support > vfio/pds: Add support for dirty page tracking > vfio/pds: Add support for firmware recovery > vfio/pds: Add Kconfig and documentation > > .../ethernet/amd/pds_vfio_pci.rst | 79 +++ > .../device_drivers/ethernet/index.rst | 1 + > MAINTAINERS | 7 + > drivers/net/ethernet/amd/pds_core/auxbus.c | 20 +- > drivers/vfio/pci/Kconfig | 2 + > drivers/vfio/pci/Makefile | 2 + > drivers/vfio/pci/mlx5/cmd.c | 48 +- > drivers/vfio/pci/pds/Kconfig | 19 + > drivers/vfio/pci/pds/Makefile | 11 + > drivers/vfio/pci/pds/cmds.c | 509 ++++++++++++++++ > drivers/vfio/pci/pds/cmds.h | 25 + > drivers/vfio/pci/pds/dirty.c | 564 ++++++++++++++++++ > drivers/vfio/pci/pds/dirty.h | 39 ++ > drivers/vfio/pci/pds/lm.c | 434 ++++++++++++++ > drivers/vfio/pci/pds/lm.h | 41 ++ > drivers/vfio/pci/pds/pci_drv.c | 209 +++++++ > drivers/vfio/pci/pds/pci_drv.h | 9 + > drivers/vfio/pci/pds/vfio_dev.c | 227 +++++++ > drivers/vfio/pci/pds/vfio_dev.h | 39 ++ > drivers/vfio/vfio_main.c | 47 ++ > include/linux/pds/pds_adminq.h | 375 ++++++++++++ > include/linux/pds/pds_common.h | 9 +- > include/linux/vfio.h | 3 + > 23 files changed, 2654 insertions(+), 65 deletions(-) > create mode 100644 Documentation/networking/device_drivers/ethernet/amd/pds_vfio_pci.rst > create mode 100644 drivers/vfio/pci/pds/Kconfig > create mode 100644 drivers/vfio/pci/pds/Makefile > create mode 100644 drivers/vfio/pci/pds/cmds.c > create mode 100644 drivers/vfio/pci/pds/cmds.h > create mode 100644 drivers/vfio/pci/pds/dirty.c > create mode 100644 drivers/vfio/pci/pds/dirty.h > create mode 100644 drivers/vfio/pci/pds/lm.c > create mode 100644 drivers/vfio/pci/pds/lm.h > create mode 100644 drivers/vfio/pci/pds/pci_drv.c > create mode 100644 drivers/vfio/pci/pds/pci_drv.h > create mode 100644 drivers/vfio/pci/pds/vfio_dev.c > create mode 100644 drivers/vfio/pci/pds/vfio_dev.h > Applied to vfio next branch for v6.6. Thanks! Alex