Home
last modified time | relevance | path

Searched refs:initial_ssthresh (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.10/net/ipv4/
Dtcp_bic.c33 static int initial_ssthresh; variable
44 module_param(initial_ssthresh, int, 0644);
45 MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold");
76 if (initial_ssthresh) in bictcp_init()
77 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init()
Dtcp_cubic.c49 static int initial_ssthresh __read_mostly;
67 module_param(initial_ssthresh, int, 0644);
68 MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold");
145 if (!hystart && initial_ssthresh) in bictcp_init()
146 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init()
/Linux-v5.10/tools/testing/selftests/bpf/progs/
Dbpf_cubic.c43 static int initial_ssthresh; variable
187 if (!hystart && initial_ssthresh) in BPF_PROG()
188 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in BPF_PROG()