linux-trace-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tracefs: Fix kernel-doc warnings
@ 2023-08-18 20:14 Matthew Wilcox (Oracle)
  2023-08-21 14:01 ` Steven Rostedt
  0 siblings, 1 reply; 4+ messages in thread
From: Matthew Wilcox (Oracle) @ 2023-08-18 20:14 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: Matthew Wilcox (Oracle), linux-trace-kernel, linux-docs

Move the per-member documentation into the header to fix the complaints
from kernel-doc.

Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
---
 fs/tracefs/event_inode.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/fs/tracefs/event_inode.c b/fs/tracefs/event_inode.c
index da8d2e73cc47..7ca3857ddb89 100644
--- a/fs/tracefs/event_inode.c
+++ b/fs/tracefs/event_inode.c
@@ -37,6 +37,9 @@ struct eventfs_inode {
  * @ei:		list of files and directories within directory
  * @fop:	file_operations for file or directory
  * @iop:	inode_operations for file or directory
+ * @del_list:	list of eventfs_file to delete
+ * @rcu:	eventfs_file to delete
+ * @is_freed:	Non-zero if @del_list or @rcu is active
  * @data:	something that the caller will want to get to later on
  * @mode:	the permission that the file or directory should have
  */
@@ -49,9 +52,9 @@ struct eventfs_file {
 	const struct file_operations	*fop;
 	const struct inode_operations	*iop;
 	union {
-		struct list_head	del_list; /* list of eventfs_file to delete */
-		struct rcu_head		rcu; /* eventfs_file to delete */
-		unsigned long		is_freed; /* Freed if one of the above is set */
+		struct list_head	del_list;
+		struct rcu_head		rcu;
+		unsigned long		is_freed;
 	};
 	void				*data;
 	umode_t				mode;
-- 
2.40.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-08-21 14:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-18 20:14 [PATCH] tracefs: Fix kernel-doc warnings Matthew Wilcox (Oracle)
2023-08-21 14:01 ` Steven Rostedt
2023-08-21 14:04   ` Matthew Wilcox
2023-08-21 14:49     ` Steven Rostedt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).