Home
last modified time | relevance | path

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

123

/Linux-v5.4/net/ipv4/
Dtcp_cong.c394 u32 tcp_slow_start(struct tcp_sock *tp, u32 acked) in tcp_slow_start() argument
396 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); in tcp_slow_start()
398 acked -= cwnd - tp->snd_cwnd; in tcp_slow_start()
401 return acked; in tcp_slow_start()
408 void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked) in tcp_cong_avoid_ai() argument
416 tp->snd_cwnd_cnt += acked; in tcp_cong_avoid_ai()
434 void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_reno_cong_avoid() argument
443 acked = tcp_slow_start(tp, acked); in tcp_reno_cong_avoid()
444 if (!acked) in tcp_reno_cong_avoid()
448 tcp_cong_avoid_ai(tp, tp->snd_cwnd, acked); in tcp_reno_cong_avoid()
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()
Dtcp_cubic.c225 static inline void bictcp_update(struct bictcp *ca, u32 cwnd, u32 acked) in bictcp_update() argument
230 ca->ack_cnt += acked; /* count the number of ACKed packets */ in bictcp_update()
248 ca->ack_cnt = acked; /* start counting */ in bictcp_update()
335 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in bictcp_cong_avoid() argument
346 acked = tcp_slow_start(tp, acked); in bictcp_cong_avoid()
347 if (!acked) in bictcp_cong_avoid()
350 bictcp_update(ca, tp->snd_cwnd, acked); in bictcp_cong_avoid()
351 tcp_cong_avoid_ai(tp, ca->cnt, acked); in bictcp_cong_avoid()
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()
246 tcp_slow_start(tp, acked); in tcp_vegas_cong_avoid()
286 tcp_slow_start(tp, acked); in tcp_vegas_cong_avoid()
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 tcp_slow_start(tp, acked); in tcp_veno_cong_avoid()
Dtcp_nv.c181 static void tcpnv_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcpnv_cong_avoid() argument
195 acked = tcp_slow_start(tp, acked); in tcpnv_cong_avoid()
196 if (!acked) in tcpnv_cong_avoid()
202 tcp_cong_avoid_ai(tp, cnt, acked); in tcpnv_cong_avoid()
205 tcp_cong_avoid_ai(tp, cnt, acked); in tcpnv_cong_avoid()
Dtcp_scalable.c19 static void tcp_scalable_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_scalable_cong_avoid() argument
27 tcp_slow_start(tp, acked); in tcp_scalable_cong_avoid()
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()
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()
Dtcp_bbr.c477 struct sock *sk, const struct rate_sample *rs, u32 acked, u32 *new_cwnd) in bbr_set_cwnd_to_recover_or_restore() argument
496 cwnd = tcp_packets_in_flight(tp) + acked; in bbr_set_cwnd_to_recover_or_restore()
505 *new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked); in bbr_set_cwnd_to_recover_or_restore()
516 u32 acked, u32 bw, int gain) in bbr_set_cwnd() argument
522 if (!acked) in bbr_set_cwnd()
525 if (bbr_set_cwnd_to_recover_or_restore(sk, rs, acked, &cwnd)) in bbr_set_cwnd()
538 cwnd = min(cwnd + acked, target_cwnd); in bbr_set_cwnd()
540 cwnd = cwnd + acked; in bbr_set_cwnd()
Dtcp_yeah.c72 static void tcp_yeah_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_yeah_cong_avoid() argument
81 tcp_slow_start(tp, acked); in tcp_yeah_cong_avoid()
Dtcp_bic.c140 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in bictcp_cong_avoid() argument
149 tcp_slow_start(tp, acked); in bictcp_cong_avoid()
Dtcp_lp.c119 static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_lp_cong_avoid() argument
124 tcp_reno_cong_avoid(sk, ack, acked); in tcp_lp_cong_avoid()
Dtcp_htcp.c231 static void htcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in htcp_cong_avoid() argument
240 tcp_slow_start(tp, acked); in htcp_cong_avoid()
Dtcp_cdg.c262 static void tcp_cdg_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_cdg_cong_avoid() argument
293 tcp_reno_cong_avoid(sk, ack, acked); in tcp_cdg_cong_avoid()
/Linux-v5.4/net/mac80211/
Dstatus.c626 bool acked, bool dropped) in ieee80211_report_ack_skb() argument
649 cookie, acked, in ieee80211_report_ack_skb()
656 acked, GFP_ATOMIC); in ieee80211_report_ack_skb()
665 skb_complete_wifi_ack(skb, acked); in ieee80211_report_ack_skb()
674 bool acked = info->flags & IEEE80211_TX_STAT_ACK; in ieee80211_report_used_skb() local
677 acked = false; in ieee80211_report_used_skb()
701 acked); in ieee80211_report_used_skb()
706 ieee80211_report_ack_skb(local, info, acked, dropped); in ieee80211_report_used_skb()
711 skb->wifi_acked = acked; in ieee80211_report_used_skb()
876 bool acked; in __ieee80211_tx_status() local
[all …]
Dmesh_ps.c534 bool tx, bool acked) in ieee80211_mpsp_trigger_process() argument
540 if (rspi && acked) in ieee80211_mpsp_trigger_process()
545 else if (acked && in ieee80211_mpsp_trigger_process()
/Linux-v5.4/net/tipc/
Dlink.c184 u16 acked; member
248 static int tipc_link_advance_transmq(struct tipc_link *l, u16 acked, u16 gap,
347 rcv_l->acked = snd_l->snd_nxt - 1; in tipc_link_add_bc_peer()
407 return l->acked; in tipc_link_acked()
775 u16 bc_acked = l->bc_rcvlink->acked; in tipc_link_timeout()
921 l->acked = 0; in tipc_link_reset()
1091 if (link_is_bc_sndlink(l) && !less(r->acked, msg_seqno(hdr))) in link_retransmit_failure()
1328 static bool tipc_link_release_pkts(struct tipc_link *l, u16 acked) in tipc_link_release_pkts() argument
1334 if (more(buf_seqno(skb), acked)) in tipc_link_release_pkts()
1400 static int tipc_link_advance_transmq(struct tipc_link *l, u16 acked, u16 gap, in tipc_link_advance_transmq() argument
[all …]
Dlink.h144 void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked,
/Linux-v5.4/drivers/net/arcnet/
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-v5.4/drivers/net/wireless/ath/wil6210/
Dtxrx.h632 static inline void wil_consume_skb(struct sk_buff *skb, bool acked) in wil_consume_skb() argument
635 skb_complete_wifi_ack(skb, acked); in wil_consume_skb()
637 acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb); in wil_consume_skb()
/Linux-v5.4/net/dccp/ccids/
Dccid3.c357 struct tfrc_tx_hist_entry *acked; in ccid3_hc_tx_packet_recv() local
374 acked = tfrc_tx_hist_find_entry(hc->tx_hist, dccp_hdr_ack_seq(skb)); in ccid3_hc_tx_packet_recv()
375 if (acked == NULL) in ccid3_hc_tx_packet_recv()
378 tfrc_tx_hist_purge(&acked->next); in ccid3_hc_tx_packet_recv()
382 r_sample = dccp_sample_rtt(sk, ktime_us_delta(now, acked->stamp)); in ccid3_hc_tx_packet_recv()
/Linux-v5.4/drivers/virtio/
Dvirtio_balloon.c92 wait_queue_head_t acked; member
136 wake_up(&vb->acked); in balloon_ack()
151 wait_event(vb->acked, virtqueue_get_buf(vq, &len)); in tell_host()
870 init_waitqueue_head(&vb->acked); in virtballoon_probe()
/Linux-v5.4/drivers/net/wireless/realtek/rtw88/
Dtx.c182 struct sk_buff *skb, bool acked) in rtw_tx_report_tx_status() argument
188 if (acked) in rtw_tx_report_tx_status()
/Linux-v5.4/drivers/net/wireless/broadcom/b43legacy/
Dxmit.h102 u8 acked; /* Wireless ACK received */ member

123