[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20231023085552.5139-1-bragathemanick0908@gmail.com>
Date: Mon, 23 Oct 2023 14:25:51 +0530
From: Bragatheswaran Manickavel <bragathemanick0908@...il.com>
To: jgg@...pe.ca, kevin.tian@...el.com
Cc: Bragatheswaran Manickavel <bragathemanick0908@...il.com>,
iommu@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: [PATCH] iommufd: fixing build warnings after merging the iommufd tree
After merging the iommufd tree, today's linux-next build (htmldocs)
produced these warnings:
include/uapi/linux/iommufd.h:433: warning: expecting prototype for enum iommufd_hw_info_capabilities. Prototype was for enum iommufd_hw_capabilities instead
include/uapi/linux/iommufd.h:497: warning: Function parameter or member '__reserved' not described in 'iommu_hwpt_set_dirty_tracking'
include/uapi/linux/iommufd.h:512: warning: expecting prototype for enum iommufd_get_dirty_bitmap_flags. Prototype was for enum iommufd_hwpt_get_dirty_bitmap_flags instead
include/uapi/linux/iommufd.h:542: warning: Function parameter or member '__reserved' not described in 'iommu_hwpt_get_dirty_bitmap'
Signed-off-by: Bragatheswaran Manickavel <bragathemanick0908@...il.com>
---
include/uapi/linux/iommufd.h | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/include/uapi/linux/iommufd.h b/include/uapi/linux/iommufd.h
index 50f98f01fe10..5585df5b393e 100644
--- a/include/uapi/linux/iommufd.h
+++ b/include/uapi/linux/iommufd.h
@@ -419,7 +419,7 @@ enum iommu_hw_info_type {
};
/**
- * enum iommufd_hw_info_capabilities
+ * enum iommufd_hw_capabilities
* @IOMMU_HW_CAP_DIRTY_TRACKING: IOMMU hardware support for dirty tracking
* If available, it means the following APIs
* are supported:
@@ -486,6 +486,7 @@ enum iommufd_hwpt_set_dirty_tracking_flags {
* @size: sizeof(struct iommu_hwpt_set_dirty_tracking)
* @flags: Combination of enum iommufd_hwpt_set_dirty_tracking_flags
* @hwpt_id: HW pagetable ID that represents the IOMMU domain
+ * @__reserved: Must be 0
*
* Toggle dirty tracking on an HW pagetable.
*/
@@ -499,8 +500,8 @@ struct iommu_hwpt_set_dirty_tracking {
IOMMUFD_CMD_HWPT_SET_DIRTY_TRACKING)
/**
- * enum iommufd_get_dirty_bitmap_flags - Flags for getting dirty bits
- * @IOMMU_GET_DIRTY_BITMAP_NO_CLEAR: Just read the PTEs without clearing any
+ * enum iommufd_hwpt_get_dirty_bitmap_flags - Flags for getting dirty bits
+ * @IOMMU_HWPT_GET_DIRTY_BITMAP_NO_CLEAR: Just read the PTEs without clearing any
* dirty bits metadata. This flag can be
* passed in the expectation where the next
* operation is an unmap of the same IOVA
@@ -517,6 +518,7 @@ enum iommufd_hwpt_get_dirty_bitmap_flags {
* @hwpt_id: HW pagetable ID that represents the IOMMU domain
* @flags: Combination of enum iommufd_hwpt_get_dirty_bitmap_flags
* @iova: base IOVA of the bitmap first bit
+ * @__reserved: Must be 0
* @length: IOVA range size
* @page_size: page size granularity of each bit in the bitmap
* @data: bitmap where to set the dirty bits. The bitmap bits each
--
2.34.1
Powered by blists - more mailing lists