This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 70ec81c2e2b4 Merge tag 'linux_kselftest-next-6.10-rc1-fixes' of git://g [...] new af6605f87ca5 MAINTAINERS: Orphan vfio fsl-mc bus driver new 071e7310e693 vfio/pci: Pass eventfd context to IRQ handler new d53053193648 vfio/pci: Pass eventfd context object through irqfd new 82b951e6fbd3 vfio/pci: fix potential memory leak in vfio_intx_enable() new 06fe8fd68085 genirq/msi: Add MSI allocation helper and export MSI functions new 848e447e000c vfio/cdx: add interrupt support new 4fefd69da064 Merge branch 'vfio' of https://git.kernel.org/pub/scm/linu [...] new bb208810b1ab vfio/qat: Add vfio_pci driver for Intel QAT SR-IOV VF devices new f6944d4a0b87 vfio/pci: Collect hot-reset devices to local buffer new dda057ad8c9c vfio: remove an extra semicolon new cbb325e77fbe vfio/pci: Restore zero affected bus reset devices warning new 30aec6e1bb61 Merge tag 'vfio-v6.10-rc1' of https://github.com/awilliam/ [...]
The 12 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/driver-api/vfio.rst | 2 +- MAINTAINERS | 11 +- drivers/vfio/cdx/Makefile | 2 +- drivers/vfio/cdx/intr.c | 217 ++++++++++++ drivers/vfio/cdx/main.c | 63 +++- drivers/vfio/cdx/private.h | 18 + drivers/vfio/pci/Kconfig | 2 + drivers/vfio/pci/Makefile | 2 + drivers/vfio/pci/qat/Kconfig | 12 + drivers/vfio/pci/qat/Makefile | 3 + drivers/vfio/pci/qat/main.c | 702 ++++++++++++++++++++++++++++++++++++++ drivers/vfio/pci/vfio_pci_core.c | 81 +++-- drivers/vfio/pci/vfio_pci_intrs.c | 61 ++-- include/linux/msi.h | 6 + kernel/irq/msi.c | 2 + 15 files changed, 1116 insertions(+), 68 deletions(-) create mode 100644 drivers/vfio/cdx/intr.c create mode 100644 drivers/vfio/pci/qat/Kconfig create mode 100644 drivers/vfio/pci/qat/Makefile create mode 100644 drivers/vfio/pci/qat/main.c