函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\net\tcp.h Create Date:2022-07-27 07:40:24
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:We follow the spirit of RFC2861 to validate cwnd but implement a more* flexible approach. The RFC suggests cwnd should not be raised unless* it was fully used previously. And that's exactly what we do in* congestion avoidance mode

函数原型:static inline bool tcp_is_cwnd_limited(const struct sock *sk)

返回类型:bool

参数:

类型参数名称
const struct sock *sk
1257  tp等于tcp_sk(sk)
1260  如果tcp_in_slow_start(tp)则返回: Sending congestion window 小于2乘 max packets_out in last window
1263  返回: forward progress limited by snd_cwnd?