Searched refs:epoch_start (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
H A D | bpf_cubic.c | 82 __u32 epoch_start; /* beginning of an epoch */ member 103 ca->epoch_start = 0; in bictcp_reset() 205 * Shift epoch_start to keep cwnd growth to cubic curve. in BPF_PROG() 207 if (ca->epoch_start && delta > 0) { in BPF_PROG() 208 ca->epoch_start += delta; in BPF_PROG() 209 if (after(ca->epoch_start, now)) in BPF_PROG() 210 ca->epoch_start = now; in BPF_PROG() 285 * On all cwnd reduction events, ca->epoch_start is set to 0, in bictcp_update() 288 if (ca->epoch_start && tcp_jiffies32 == ca->last_time) in bictcp_update() 294 if (ca->epoch_start in bictcp_update() [all...] |
/kernel/linux/linux-5.10/net/ipv4/ |
H A D | tcp_cubic.c | 93 u32 epoch_start; /* beginning of an epoch */ member 114 ca->epoch_start = 0; in bictcp_reset() 159 * Shift epoch_start to keep cwnd growth to cubic curve. in bictcp_cwnd_event() 161 if (ca->epoch_start && delta > 0) { in bictcp_cwnd_event() 162 ca->epoch_start += delta; in bictcp_cwnd_event() 163 if (after(ca->epoch_start, now)) in bictcp_cwnd_event() 164 ca->epoch_start = now; in bictcp_cwnd_event() 233 * On all cwnd reduction events, ca->epoch_start is set to 0, in bictcp_update() 236 if (ca->epoch_start && tcp_jiffies32 == ca->last_time) in bictcp_update() 242 if (ca->epoch_start in bictcp_update() [all...] |
H A D | tcp_bic.c | 55 u32 epoch_start; /* beginning of an epoch */ member 66 ca->epoch_start = 0; in bictcp_reset() 92 if (ca->epoch_start == 0) /* record the beginning of an epoch */ in bictcp_update() 93 ca->epoch_start = tcp_jiffies32; in bictcp_update() 166 ca->epoch_start = 0; /* end of epoch */ in bictcp_recalc_ssthresh()
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | bpf_cubic.c | 82 __u32 epoch_start; /* beginning of an epoch */ member 103 ca->epoch_start = 0; in bictcp_reset() 199 * Shift epoch_start to keep cwnd growth to cubic curve. in BPF_PROG() 201 if (ca->epoch_start && delta > 0) { in BPF_PROG() 202 ca->epoch_start += delta; in BPF_PROG() 203 if (after(ca->epoch_start, now)) in BPF_PROG() 204 ca->epoch_start = now; in BPF_PROG() 279 * On all cwnd reduction events, ca->epoch_start is set to 0, in bictcp_update() 282 if (ca->epoch_start && tcp_jiffies32 == ca->last_time) in bictcp_update() 288 if (ca->epoch_start in bictcp_update() [all...] |
/kernel/linux/linux-6.6/net/ipv4/ |
H A D | tcp_cubic.c | 95 u32 epoch_start; /* beginning of an epoch */ member 152 * Shift epoch_start to keep cwnd growth to cubic curve. in cubictcp_cwnd_event() 154 if (ca->epoch_start && delta > 0) { in cubictcp_cwnd_event() 155 ca->epoch_start += delta; in cubictcp_cwnd_event() 156 if (after(ca->epoch_start, now)) in cubictcp_cwnd_event() 157 ca->epoch_start = now; in cubictcp_cwnd_event() 226 * On all cwnd reduction events, ca->epoch_start is set to 0, in bictcp_update() 229 if (ca->epoch_start && tcp_jiffies32 == ca->last_time) in bictcp_update() 235 if (ca->epoch_start == 0) { in bictcp_update() 236 ca->epoch_start in bictcp_update() [all...] |
H A D | tcp_bic.c | 55 u32 epoch_start; /* beginning of an epoch */ member 66 ca->epoch_start = 0; in bictcp_reset() 92 if (ca->epoch_start == 0) /* record the beginning of an epoch */ in bictcp_update() 93 ca->epoch_start = tcp_jiffies32; in bictcp_update() 166 ca->epoch_start = 0; /* end of epoch */ in bictcp_recalc_ssthresh()
|
Completed in 5 milliseconds