From: Randy Dunlap Date: Tue, 24 Feb 2026 00:31:49 +0000 (-0800) Subject: RDMA/restrack: fix kernel-doc indicator X-Git-Tag: v7.1-rc1~75^2~113 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=2865500db9339bff85a504c7fbad0047ebbf9331;p=thirdparty%2Flinux.git 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 Link: https://patch.msgid.link/20260224003149.3175815-1-rdunlap@infradead.org Signed-off-by: Leon Romanovsky --- diff --git a/include/rdma/restrack.h b/include/rdma/restrack.h index 8a9bcf77daceb..451f99e3717d8 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;