summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2026-02-24 03:31:49 +0300
committerLeon Romanovsky <leon@kernel.org>2026-02-24 13:39:21 +0300
commit2865500db9339bff85a504c7fbad0047ebbf9331 (patch)
tree01195d1e46343bfe7a6abbb565d12e85c5fa1e26 /include
parent16dc2d72de577de4b413ba01b1b4a80d31832022 (diff)
downloadlinux-2865500db9339bff85a504c7fbad0047ebbf9331.tar.xz
RDMA/restrack: fix kernel-doc indicator
Use "/**" to begin kernel-doc comments. This eliminates these kernel-doc warnings: Warning: include/rdma/restrack.h:123 struct member 'kref' not described in 'rdma_restrack_entry' Warning: include/rdma/restrack.h:123 struct member 'comp' not described in 'rdma_restrack_entry' (not adding missing return value kernel-doc descriptions) Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Link: https://patch.msgid.link/20260224003149.3175815-1-rdunlap@infradead.org Signed-off-by: Leon Romanovsky <leon@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/rdma/restrack.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rdma/restrack.h b/include/rdma/restrack.h
index 8a9bcf77dace..451f99e3717d 100644
--- a/include/rdma/restrack.h
+++ b/include/rdma/restrack.h
@@ -87,11 +87,11 @@ struct rdma_restrack_entry {
* query stage.
*/
u8 no_track : 1;
- /*
+ /**
* @kref: Protect destroy of the resource
*/
struct kref kref;
- /*
+ /**
* @comp: Signal that all consumers of resource are completed their work
*/
struct completion comp;