]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
tcp: move tcp_rate_check_app_limited() to tcp.c
authorEric Dumazet <edumazet@google.com>
Wed, 21 Jan 2026 09:59:23 +0000 (09:59 +0000)
committerJakub Kicinski <kuba@kernel.org>
Fri, 23 Jan 2026 02:28:48 +0000 (18:28 -0800)
commitbc1f0b1c98f518867efc5cc9c22181722be14532
treef99f7e79688f7a3d096d100caf04010deb82db44
parentb814bdcecd7990d85d42e19cff6ce0c12f146330
tcp: move tcp_rate_check_app_limited() to tcp.c

tcp_rate_check_app_limited() is used from tcp_sendmsg_locked()
fast path and from other callers.

Move it to tcp.c so that it can be inlined in tcp_sendmsg_locked().

Small increase of code, for better TCP performance.

$ scripts/bloat-o-meter -t vmlinux.old vmlinux.new
add/remove: 0/0 grow/shrink: 1/0 up/down: 87/0 (87)
Function                                     old     new   delta
tcp_sendmsg_locked                          4217    4304     +87
Total: Before=22566462, After=22566549, chg +0.00%

Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Neal Cardwell <ncardwell@google.com>
Link: https://patch.msgid.link/20260121095923.3134639-3-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
include/net/tcp.h
net/ipv4/Makefile
net/ipv4/tcp.c
net/ipv4/tcp_rate.c [deleted file]