[PATCH] fs/dax: Fix missing kdoc for dax_device

ira.weiny@intel.com posted 1 patch 4 years, 3 months ago
drivers/dax/super.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] fs/dax: Fix missing kdoc for dax_device
Posted by ira.weiny@intel.com 4 years, 3 months ago
From: Ira Weiny <ira.weiny@intel.com>

struct dax_device has a member named ops which was undocumented.

Add the kdoc.

Signed-off-by: Ira Weiny <ira.weiny@intel.com>
---
 drivers/dax/super.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/dax/super.c b/drivers/dax/super.c
index 5c003cc73d04..2fd3a01ba34b 100644
--- a/drivers/dax/super.c
+++ b/drivers/dax/super.c
@@ -22,6 +22,7 @@
  * @cdev: optional character interface for "device dax"
  * @private: dax driver private data
  * @flags: state and boolean properties
+ * @ops: operations for this device
  */
 struct dax_device {
 	struct inode inode;
-- 
2.35.1
Re: [PATCH] fs/dax: Fix missing kdoc for dax_device
Posted by Dan Williams 4 years, 3 months ago
On Fri, Mar 4, 2022 at 12:47 PM <ira.weiny@intel.com> wrote:
>
> From: Ira Weiny <ira.weiny@intel.com>
>
> struct dax_device has a member named ops which was undocumented.
>
> Add the kdoc.
>

Applied, but I fixed up the subject prefix to just "dax:" since this
is shared between the fs-dax and device-dax.