Home
last modified time | relevance | path

Searched refs:acked (Results 1 – 8 of 8) sorted by relevance

/tools/testing/selftests/bpf/progs/
A Dbpf_cubic.c31 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 Dtcp_ca_kfunc.c25 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 Dbpf_dctcp.c237 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 Dbpf_cc_cubic.c35 extern void cubictcp_cong_avoid(struct sock *sk, __u32 ack, __u32 acked) __ksym;
/tools/testing/selftests/net/packetdrill/
A Dtcp_timestamping_client-only-last-byte.pkt38 // 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 Dtcp_limited_transmit_limited-transmit-no-sack.pkt33 // We have one packet newly acked (1001:3001 were DUP-ACK'd)
A Dtcp_timestamping_server.pkt24 // is called after when SYN is acked. So, we expect the last byte of the first
/tools/testing/selftests/net/netfilter/packetdrill/
A Dconntrack_ack_loss_stall.pkt1 // check that already-acked (retransmitted) packet is let through rather

Completed in 9 milliseconds