Searched refs:acked (Results 1 – 8 of 8) sorted by relevance
| /tools/testing/selftests/bpf/progs/ |
| A D | bpf_cubic.c | 31 extern __u32 tcp_slow_start(struct tcp_sock *tp, __u32 acked) __ksym; 32 extern void tcp_cong_avoid_ai(struct tcp_sock *tp, __u32 w, __u32 acked) __ksym; 272 static void bictcp_update(struct bpf_bictcp *ca, __u32 cwnd, __u32 acked) in bictcp_update() argument 277 ca->ack_cnt += acked; /* count the number of ACKed packets */ in bictcp_update() 295 ca->ack_cnt = acked; /* start counting */ in bictcp_update() 386 void BPF_PROG(bpf_cubic_cong_avoid, struct sock *sk, __u32 ack, __u32 acked) in BPF_PROG() argument 397 acked = tcp_slow_start(tp, acked); in BPF_PROG() 398 if (!acked) in BPF_PROG() 401 bictcp_update(ca, tp->snd_cwnd, acked); in BPF_PROG() 402 tcp_cong_avoid_ai(tp, ca->cnt, acked); in BPF_PROG()
|
| A D | tcp_ca_kfunc.c | 25 extern void cubictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) __ksym; 51 void BPF_PROG(cong_avoid, struct sock *sk, u32 ack, u32 acked) in BPF_PROG() argument 53 cubictcp_cong_avoid(sk, ack, acked); in BPF_PROG()
|
| A D | bpf_dctcp.c | 237 extern void tcp_reno_cong_avoid(struct sock *sk, __u32 ack, __u32 acked) __ksym; 240 void BPF_PROG(bpf_dctcp_cong_avoid, struct sock *sk, __u32 ack, __u32 acked) in BPF_PROG() argument 242 tcp_reno_cong_avoid(sk, ack, acked); in BPF_PROG()
|
| A D | bpf_cc_cubic.c | 35 extern void cubictcp_cong_avoid(struct sock *sk, __u32 ack, __u32 acked) __ksym;
|
| /tools/testing/selftests/net/packetdrill/ |
| A D | tcp_timestamping_client-only-last-byte.pkt | 38 // once 10001 is acked at t=20ms. 40 // is called after when SYN is acked. So, we expect the last byte of the first 59 // once 10001 is acked at t=20ms.
|
| A D | tcp_limited_transmit_limited-transmit-no-sack.pkt | 33 // We have one packet newly acked (1001:3001 were DUP-ACK'd)
|
| A D | tcp_timestamping_server.pkt | 24 // is called after when SYN is acked. So, we expect the last byte of the first
|
| /tools/testing/selftests/net/netfilter/packetdrill/ |
| A D | conntrack_ack_loss_stall.pkt | 1 // check that already-acked (retransmitted) packet is let through rather
|
Completed in 9 milliseconds