Commit 2865500d authored by Randy Dunlap's avatar Randy Dunlap Committed by Leon Romanovsky
Browse files

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: default avatarRandy Dunlap <rdunlap@infradead.org>
Link: https://patch.msgid.link/20260224003149.3175815-1-rdunlap@infradead.org


Signed-off-by: default avatarLeon Romanovsky <leon@kernel.org>
parent 16dc2d72
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;