mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:04:41 +01:00
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>
This commit is contained in:
parent
294bfe0343
commit
5c00da851c
1 changed files with 5 additions and 2 deletions
|
|
@ -23,9 +23,9 @@
|
|||
* Original Author:
|
||||
* Aleksandar Kuzmanovic <akuzma@northwestern.edu>
|
||||
* Available from:
|
||||
* http://www.ece.rice.edu/~akuzma/Doc/akuzma/TCP-LP.pdf
|
||||
* https://users.cs.northwestern.edu/~akuzma/doc/TCP-LP-ToN.pdf
|
||||
* Original implementation for 2.4.19:
|
||||
* http://www-ece.rice.edu/networks/TCP-LP/
|
||||
* https://users.cs.northwestern.edu/~akuzma/rice/TCP-LP/linux/tcp-lp-linux.htm
|
||||
*
|
||||
* 2.6.x module Authors:
|
||||
* Wong Hoi Sing, Edison <hswong3i@gmail.com>
|
||||
|
|
@ -113,6 +113,8 @@ static void tcp_lp_init(struct sock *sk)
|
|||
/**
|
||||
* tcp_lp_cong_avoid
|
||||
* @sk: socket to avoid congesting
|
||||
* @ack: current ack sequence number
|
||||
* @acked: number of ACKed packets
|
||||
*
|
||||
* Implementation of cong_avoid.
|
||||
* Will only call newReno CA when away from inference.
|
||||
|
|
@ -261,6 +263,7 @@ static void tcp_lp_rtt_sample(struct sock *sk, u32 rtt)
|
|||
/**
|
||||
* tcp_lp_pkts_acked
|
||||
* @sk: socket requiring congestion avoidance calculations
|
||||
* @sample: ACK sample containing timing and rate information
|
||||
*
|
||||
* Implementation of pkts_acked.
|
||||
* Deal with active drop under Early Congestion Indication.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue