Skip to content

Commit cfe5712

Browse files
rddunlapkuba-moo
authored andcommitted
codel: fix kernel-doc notation warnings
Use '@' before the struct member names in kernel-doc notation to prevent kernel-doc warnings. codel.h:158: warning: Function parameter or member 'ecn_mark' not described in 'codel_stats' codel.h:158: warning: Function parameter or member 'ce_mark' not described in 'codel_stats' Fixes: 76e3cc1 ("codel: Controlled Delay AQM") Signed-off-by: Randy Dunlap <[email protected]> Cc: Jamal Hadi Salim <[email protected]> Cc: Cong Wang <[email protected]> Cc: Jiri Pirko <[email protected]> Cc: Dave Taht <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent a63e404 commit cfe5712

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/net/codel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ struct codel_vars {
145145
* @maxpacket: largest packet we've seen so far
146146
* @drop_count: temp count of dropped packets in dequeue()
147147
* @drop_len: bytes of dropped packets in dequeue()
148-
* ecn_mark: number of packets we ECN marked instead of dropping
149-
* ce_mark: number of packets CE marked because sojourn time was above ce_threshold
148+
* @ecn_mark: number of packets we ECN marked instead of dropping
149+
* @ce_mark: number of packets CE marked because sojourn time was above ce_threshold
150150
*/
151151
struct codel_stats {
152152
u32 maxpacket;

0 commit comments

Comments
 (0)