Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

net: tcp_lp: fix kernel-doc warnings and update outdated reference links

Fix kernel-doc warnings in tcp_lp.c by adding missing parameter
descriptions for tcp_lp_cong_avoid() and tcp_lp_pkts_acked() when
building with W=1.

Also replace invalid URLs in the file header comment with the currently
valid links to the TCP-LP paper and implementation page.

No functional changes.

Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20251025-net_ipv4_tcp_lp_c-v1-1-058cc221499e@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Rakuram Eswaran and committed by
Jakub Kicinski
5c00da85 294bfe03

+5 -2
+5 -2
net/ipv4/tcp_lp.c
··· 23 23 * Original Author: 24 24 * Aleksandar Kuzmanovic <akuzma@northwestern.edu> 25 25 * Available from: 26 - * http://www.ece.rice.edu/~akuzma/Doc/akuzma/TCP-LP.pdf 26 + * https://users.cs.northwestern.edu/~akuzma/doc/TCP-LP-ToN.pdf 27 27 * Original implementation for 2.4.19: 28 - * http://www-ece.rice.edu/networks/TCP-LP/ 28 + * https://users.cs.northwestern.edu/~akuzma/rice/TCP-LP/linux/tcp-lp-linux.htm 29 29 * 30 30 * 2.6.x module Authors: 31 31 * Wong Hoi Sing, Edison <hswong3i@gmail.com> ··· 113 113 /** 114 114 * tcp_lp_cong_avoid 115 115 * @sk: socket to avoid congesting 116 + * @ack: current ack sequence number 117 + * @acked: number of ACKed packets 116 118 * 117 119 * Implementation of cong_avoid. 118 120 * Will only call newReno CA when away from inference. ··· 263 261 /** 264 262 * tcp_lp_pkts_acked 265 263 * @sk: socket requiring congestion avoidance calculations 264 + * @sample: ACK sample containing timing and rate information 266 265 * 267 266 * Implementation of pkts_acked. 268 267 * Deal with active drop under Early Congestion Indication.