47 lines
1.7 KiB
Diff
47 lines
1.7 KiB
Diff
|
|
From 56e5b9cf8e4041a023daca1ce439ca14619afa97 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Joao Martins <joao.m.martins@oracle.com>
|
||
|
|
Date: Fri, 19 Jul 2024 13:04:52 +0100
|
||
|
|
Subject: [PATCH] vfio/iommufd: Return errno in iommufd_cdev_attach_ioas_hwpt()
|
||
|
|
MIME-Version: 1.0
|
||
|
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
Content-Transfer-Encoding: 8bit
|
||
|
|
|
||
|
|
In preparation to implement auto domains have the attach function
|
||
|
|
return the errno it got during domain attach instead of a bool.
|
||
|
|
|
||
|
|
-EINVAL is tracked to track domain incompatibilities, and decide whether
|
||
|
|
to create a new IOMMU domain.
|
||
|
|
|
||
|
|
Signed-off-by: Joao Martins <joao.m.martins@oracle.com>
|
||
|
|
Reviewed-by: Cédric Le Goater <clg@redhat.com>
|
||
|
|
Reviewed-by: Eric Auger <eric.auger@redhat.com>
|
||
|
|
Reviewed-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
|
||
|
|
---
|
||
|
|
hw/vfio/iommufd.c | 9 +++++----
|
||
|
|
1 file changed, 5 insertions(+), 4 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/hw/vfio/iommufd.c b/hw/vfio/iommufd.c
|
||
|
|
index d5b923ca83..5e7788ed59 100644
|
||
|
|
--- a/hw/vfio/iommufd.c
|
||
|
|
+++ b/hw/vfio/iommufd.c
|
||
|
|
@@ -200,11 +200,12 @@ static int iommufd_cdev_attach_ioas_hwpt(VFIODevice *vbasedev, uint32_t id,
|
||
|
|
error_setg_errno(errp, errno,
|
||
|
|
"[iommufd=%d] error attach %s (%d) to id=%d",
|
||
|
|
iommufd, vbasedev->name, vbasedev->fd, id);
|
||
|
|
- } else {
|
||
|
|
- trace_iommufd_cdev_attach_ioas_hwpt(iommufd, vbasedev->name,
|
||
|
|
- vbasedev->fd, id);
|
||
|
|
+ return -errno;
|
||
|
|
}
|
||
|
|
- return ret;
|
||
|
|
+
|
||
|
|
+ trace_iommufd_cdev_attach_ioas_hwpt(iommufd, vbasedev->name,
|
||
|
|
+ vbasedev->fd, id);
|
||
|
|
+ return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
static int iommufd_cdev_detach_ioas_hwpt(VFIODevice *vbasedev, Error **errp)
|
||
|
|
--
|
||
|
|
2.41.0.windows.1
|
||
|
|
|