Home
last modified time | relevance | path

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

1234

/linux/net/ipv4/
H A Dtcp_veno.c119 static void tcp_veno_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_veno_cong_avoid() argument
125 tcp_reno_cong_avoid(sk, ack, acked); in tcp_veno_cong_avoid()
138 tcp_reno_cong_avoid(sk, ack, acked); in tcp_veno_cong_avoid()
157 acked = tcp_slow_start(tp, acked); in tcp_veno_cong_avoid()
158 if (!acked) in tcp_veno_cong_avoid()
167 tcp_cong_avoid_ai(tp, tcp_snd_cwnd(tp), acked); in tcp_veno_cong_avoid()
181 tp->snd_cwnd_cnt += acked; in tcp_veno_cong_avoid()
H A Dtcp_scalable.c18 static void tcp_scalable_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_scalable_cong_avoid() argument
26 acked = tcp_slow_start(tp, acked); in tcp_scalable_cong_avoid()
27 if (!acked) in tcp_scalable_cong_avoid()
31 acked); in tcp_scalable_cong_avoid()
H A Dtcp_cong.c456 __bpf_kfunc u32 tcp_slow_start(struct tcp_sock *tp, u32 acked) in tcp_slow_start() argument
458 u32 cwnd = min(tcp_snd_cwnd(tp) + acked, tp->snd_ssthresh); in tcp_slow_start()
460 acked -= cwnd - tcp_snd_cwnd(tp); in tcp_slow_start()
463 return acked; in tcp_slow_start()
470 __bpf_kfunc void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked) in tcp_cong_avoid_ai() argument
478 tp->snd_cwnd_cnt += acked; in tcp_cong_avoid_ai()
496 __bpf_kfunc void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_reno_cong_avoid() argument
505 acked = tcp_slow_start(tp, acked); in tcp_reno_cong_avoid()
506 if (!acked) in tcp_reno_cong_avoid()
510 tcp_cong_avoid_ai(tp, tcp_snd_cwnd(tp), acked); in tcp_reno_cong_avoid()
H A Dtcp_yeah.c58 static void tcp_yeah_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_yeah_cong_avoid() argument
67 acked = tcp_slow_start(tp, acked); in tcp_yeah_cong_avoid()
68 if (!acked) in tcp_yeah_cong_avoid()
75 acked); in tcp_yeah_cong_avoid()
78 tcp_cong_avoid_ai(tp, tcp_snd_cwnd(tp), acked); in tcp_yeah_cong_avoid()
H A Dtcp_illinois.c52 u16 acked; /* # packets acked by current ACK */ member
78 ca->acked = 0; in tcp_illinois_init()
91 ca->acked = sample->pkts_acked; in tcp_illinois_acked()
260 static void tcp_illinois_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_illinois_cong_avoid() argument
274 tcp_slow_start(tp, acked); in tcp_illinois_cong_avoid()
280 tp->snd_cwnd_cnt += ca->acked; in tcp_illinois_cong_avoid()
281 ca->acked = 1; in tcp_illinois_cong_avoid()
H A Dtcp_cubic.c214 static inline void bictcp_update(struct bictcp *ca, u32 cwnd, u32 acked) in bictcp_update() argument
219 ca->ack_cnt += acked; /* count the number of ACKed packets */ in bictcp_update()
237 ca->ack_cnt = acked; /* start counting */ in bictcp_update()
324 __bpf_kfunc static void cubictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in cubictcp_cong_avoid() argument
333 acked = tcp_slow_start(tp, acked); in cubictcp_cong_avoid()
334 if (!acked) in cubictcp_cong_avoid()
337 bictcp_update(ca, tcp_snd_cwnd(tp), acked); in cubictcp_cong_avoid()
338 tcp_cong_avoid_ai(tp, ca->cnt, acked); in cubictcp_cong_avoid()
H A Dtcp_vegas.c165 static void tcp_vegas_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_vegas_cong_avoid() argument
171 tcp_reno_cong_avoid(sk, ack, acked); in tcp_vegas_cong_avoid()
196 tcp_reno_cong_avoid(sk, ack, acked); in tcp_vegas_cong_avoid()
247 tcp_slow_start(tp, acked); in tcp_vegas_cong_avoid()
287 tcp_slow_start(tp, acked); in tcp_vegas_cong_avoid()
H A Dtcp_bic.c140 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in bictcp_cong_avoid() argument
149 acked = tcp_slow_start(tp, acked); in bictcp_cong_avoid()
150 if (!acked) in bictcp_cong_avoid()
154 tcp_cong_avoid_ai(tp, ca->cnt, acked); in bictcp_cong_avoid()
H A Dtcp_nv.c180 static void tcpnv_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcpnv_cong_avoid() argument
194 acked = tcp_slow_start(tp, acked); in tcpnv_cong_avoid()
195 if (!acked) in tcpnv_cong_avoid()
201 tcp_cong_avoid_ai(tp, cnt, acked); in tcpnv_cong_avoid()
204 tcp_cong_avoid_ai(tp, cnt, acked); in tcpnv_cong_avoid()
H A Dtcp_highspeed.c112 static void hstcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in hstcp_cong_avoid() argument
121 tcp_slow_start(tp, acked); in hstcp_cong_avoid()
H A Dtcp_bbr.c481 struct sock *sk, const struct rate_sample *rs, u32 acked, u32 *new_cwnd) in bbr_set_cwnd_to_recover_or_restore() argument
500 cwnd = tcp_packets_in_flight(tp) + acked; in bbr_set_cwnd_to_recover_or_restore()
509 *new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked); in bbr_set_cwnd_to_recover_or_restore()
520 u32 acked, u32 bw, int gain) in bbr_set_cwnd() argument
526 if (!acked) in bbr_set_cwnd()
529 if (bbr_set_cwnd_to_recover_or_restore(sk, rs, acked, &cwnd)) in bbr_set_cwnd()
542 cwnd = min(cwnd + acked, target_cwnd); in bbr_set_cwnd()
544 cwnd = cwnd + acked; in bbr_set_cwnd()
H A Dtcp_hybla.c90 static void hybla_cong_avoid(struct sock *sk, u32 ack, u32 acked) in hybla_cong_avoid() argument
107 tcp_reno_cong_avoid(sk, ack, acked); in hybla_cong_avoid()
H A Dtcp_lp.c123 static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_lp_cong_avoid() argument
128 tcp_reno_cong_avoid(sk, ack, acked); in tcp_lp_cong_avoid()
/linux/net/mac80211/
H A Dstatus.c610 bool acked, bool dropped, in ieee80211_report_ack_skb() argument
634 .ack = acked, in ieee80211_report_ack_skb()
653 acked, in ieee80211_report_ack_skb()
657 cookie, acked, in ieee80211_report_ack_skb()
676 skb_complete_wifi_ack(skb, acked); in ieee80211_report_ack_skb()
681 bool acked, u16 status_data) in ieee80211_handle_smps_status() argument
691 if (!acked) in ieee80211_handle_smps_status()
718 bool acked) in ieee80211_handle_teardown_ttlm_status() argument
723 if (!acked) in ieee80211_handle_teardown_ttlm_status()
740 bool acked = info->flags & IEEE80211_TX_STAT_ACK; in ieee80211_report_used_skb() local
[all …]
H A Dmesh_ps.c544 bool tx, bool acked) in ieee80211_mpsp_trigger_process() argument
550 if (rspi && acked) in ieee80211_mpsp_trigger_process()
555 else if (acked && in ieee80211_mpsp_trigger_process()
/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_cubic.c24 extern __u32 tcp_slow_start(struct tcp_sock *tp, __u32 acked) __ksym;
25 extern void tcp_cong_avoid_ai(struct tcp_sock *tp, __u32 w, __u32 acked) __ksym;
265 static void bictcp_update(struct bpf_bictcp *ca, __u32 cwnd, __u32 acked) in bictcp_update() argument
270 ca->ack_cnt += acked; /* count the number of ACKed packets */ in bictcp_update()
288 ca->ack_cnt = acked; /* start counting */ in bictcp_update()
379 void BPF_PROG(bpf_cubic_cong_avoid, struct sock *sk, __u32 ack, __u32 acked) in BPF_PROG() argument
390 acked = tcp_slow_start(tp, acked); in BPF_PROG()
391 if (!acked) in BPF_PROG()
394 bictcp_update(ca, tp->snd_cwnd, acked); in BPF_PROG()
395 tcp_cong_avoid_ai(tp, ca->cnt, acked); in BPF_PROG()
H 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()
H A Dbpf_dctcp.c231 extern void tcp_reno_cong_avoid(struct sock *sk, __u32 ack, __u32 acked) __ksym;
234 void BPF_PROG(bpf_dctcp_cong_avoid, struct sock *sk, __u32 ack, __u32 acked) in BPF_PROG() argument
236 tcp_reno_cong_avoid(sk, ack, acked); in BPF_PROG()
/linux/net/tipc/
H A Dlink.c203 u16 acked; member
259 u16 acked, u16 gap,
370 rcv_l->acked = snd_l->snd_nxt - 1; in tipc_link_add_bc_peer()
439 return l->acked; in tipc_link_acked()
824 u16 bc_acked = l->bc_rcvlink->acked; in tipc_link_timeout()
990 l->acked = 0; in tipc_link_reset()
1212 if (link_is_bc_sndlink(l) && !less(r->acked, msg_seqno(hdr))) in link_retransmit_failure()
1533 u16 acked, u16 gap, in tipc_link_advance_transmq() argument
1543 u16 nacked = acked, ngap = gap, gack_cnt = 0; in tipc_link_advance_transmq()
1547 u16 end = r->acked, start = end, offset = r->last_gap; in tipc_link_advance_transmq()
[all …]
/linux/tools/testing/selftests/net/packetdrill/
H 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.
/linux/drivers/net/arcnet/
H A Dcapmode.c185 static int ack_tx(struct net_device *dev, int acked) in ack_tx() argument
193 lp->outgoing.skb->protocol, acked); in ack_tx()
213 ackpkt->soft.cap.mes.ack = acked; in ack_tx()
/linux/drivers/remoteproc/
H A Dqcom_sysmon.c125 bool acked = false; in sysmon_request_shutdown() local
149 acked = true; in sysmon_request_shutdown()
154 return acked; in sysmon_request_shutdown()
334 bool acked = false; in ssctl_request_shutdown() local
360 acked = true; in ssctl_request_shutdown()
366 return acked; in ssctl_request_shutdown()
/linux/drivers/net/wireless/ath/wil6210/
H A Dtxrx.h623 static inline void wil_consume_skb(struct sk_buff *skb, bool acked) in wil_consume_skb() argument
626 skb_complete_wifi_ack(skb, acked); in wil_consume_skb()
628 acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb); in wil_consume_skb()
/linux/drivers/net/wireless/ath/ath12k/
H A Ddp_tx.h13 bool acked; member
/linux/drivers/net/wireless/ath/ath11k/
H A Ddp_tx.h15 bool acked; member

1234