| tag | line | file | source code |
| cong_window | 225 | include/net/sock.h | volatile unsigned short cong_window; |
| cong_window | 657 | net/ipv4/af_inet.c | sk->cong_window = 1; /* start with only sending one packet at a time. */ |
| cong_window | 93 | net/ipv4/raw.c | if (sk->cong_window > 1) sk->cong_window = sk->cong_window/2; |
| cong_window | 537 | net/ipv4/tcp.c | if (sk->cong_window > 4) |
| cong_window | 538 | net/ipv4/tcp.c | sk->cong_window--; |
| cong_window | 405 | net/ipv4/tcp_input.c | newsk->cong_window = 1; |
| cong_window | 677 | net/ipv4/tcp_input.c | sk->cong_window < 2048 && after(ack, sk->rcv_ack_seq)) |
| cong_window | 689 | net/ipv4/tcp_input.c | if (sk->cong_window < sk->ssthresh) |
| cong_window | 693 | net/ipv4/tcp_input.c | sk->cong_window++; |
| cong_window | 700 | net/ipv4/tcp_input.c | if (sk->cong_count >= sk->cong_window) |
| cong_window | 702 | net/ipv4/tcp_input.c | sk->cong_window++; |
| cong_window | 865 | net/ipv4/tcp_input.c | && sk->packets_out < sk->cong_window) |
| cong_window | 88 | net/ipv4/tcp_output.c | sk->packets_out >= sk->cong_window) |
| cong_window | 237 | net/ipv4/tcp_output.c | && sk->packets_out < sk->cong_window) |
| cong_window | 483 | net/ipv4/tcp_output.c | if (ct >= sk->cong_window) |
| cong_window | 96 | net/ipv4/tcp_timer.c | sk->ssthresh = sk->cong_window >> 1; /* remember window where we lost */ |
| cong_window | 100 | net/ipv4/tcp_timer.c | sk->cong_window = 1; |
| cong_window | 173 | net/ipv4/udp.c | if (sk->cong_window > 1) |
| cong_window | 174 | net/ipv4/udp.c | sk->cong_window = sk->cong_window/2; |