On 10/23/2025 4:09 PM, Jason Gunthorpe wrote:
Caution: This message originated from an External Source. Use proper caution
when opening attachments, clicking links, or responding.
Since the core function signature changes it has to flow up to all
drivers.
Signed-off-by: Jason Gunthorpe <[email protected]>
---
.../vfio/pci/hisilicon/hisi_acc_vfio_pci.c | 30 ++---
drivers/vfio/pci/mlx5/main.c | 2 +-
drivers/vfio/pci/nvgrace-gpu/main.c | 51 ++-------
drivers/vfio/pci/pds/vfio_dev.c | 2 +-
drivers/vfio/pci/qat/main.c | 2 +-
drivers/vfio/pci/vfio_pci.c | 2 +-
drivers/vfio/pci/vfio_pci_core.c | 103 +++++++-----------
drivers/vfio/pci/virtio/common.h | 3 +-
drivers/vfio/pci/virtio/legacy_io.c | 26 ++---
drivers/vfio/pci/virtio/main.c | 6 +-
include/linux/vfio_pci_core.h | 3 +-
11 files changed, 80 insertions(+), 150 deletions(-)
<snip>
diff --git a/drivers/vfio/pci/pds/vfio_dev.c b/drivers/vfio/pci/pds/vfio_dev.c
index 1946bc75d99b49..be103c74e96957 100644
--- a/drivers/vfio/pci/pds/vfio_dev.c
+++ b/drivers/vfio/pci/pds/vfio_dev.c
@@ -195,7 +195,7 @@ static const struct vfio_device_ops pds_vfio_ops = {
.open_device = pds_vfio_open_device,
.close_device = pds_vfio_close_device,
.ioctl = vfio_pci_core_ioctl,
- .get_region_info = vfio_pci_ioctl_get_region_info,
+ .get_region_info_caps = vfio_pci_ioctl_get_region_info,
.device_feature = vfio_pci_core_ioctl_feature,
.read = vfio_pci_core_read,
.write = vfio_pci_core_write,
LGTM. Thanks.
Reviewed-by: Brett Creeley <[email protected]>
<snip>