[PATCH] iommu: remove read_msi_from_ire hook

Roger Pau Monne posted 1 patch 3 years, 7 months ago
Test gitlab-ci failed
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/20210412104253.54690-1-roger.pau@citrix.com
xen/include/xen/iommu.h | 1 -
1 file changed, 1 deletion(-)
[PATCH] iommu: remove read_msi_from_ire hook
Posted by Roger Pau Monne 3 years, 7 months ago
It's now unused after commit 28fb8cf323dd93f59a9c851c93ba9b79de8b1c4e.

Fixes: 28fb8cf323d ('x86/iommu: remove code to fetch MSI message from remap table')
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
---
 xen/include/xen/iommu.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/xen/include/xen/iommu.h b/xen/include/xen/iommu.h
index d59ed7cbad4..ea0cd0f1a2a 100644
--- a/xen/include/xen/iommu.h
+++ b/xen/include/xen/iommu.h
@@ -244,7 +244,6 @@ struct iommu_ops {
 #ifdef CONFIG_HAS_PCI
     int (*get_device_group_id)(u16 seg, u8 bus, u8 devfn);
     int (*update_ire_from_msi)(struct msi_desc *msi_desc, struct msi_msg *msg);
-    void (*read_msi_from_ire)(struct msi_desc *msi_desc, struct msi_msg *msg);
 #endif /* HAS_PCI */
 
     void (*teardown)(struct domain *d);
-- 
2.30.1


Re: [PATCH] iommu: remove read_msi_from_ire hook
Posted by Jan Beulich 3 years, 7 months ago
On 12.04.2021 12:42, Roger Pau Monne wrote:
> It's now unused after commit 28fb8cf323dd93f59a9c851c93ba9b79de8b1c4e.
> 
> Fixes: 28fb8cf323d ('x86/iommu: remove code to fetch MSI message from remap table')
> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>

Reviewed-by: Jan Beulich <jbeulich@suse.com>