Home
last modified time | relevance | path

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

123

/Linux-v4.19/net/ipv4/
Dtcp_cong.c393 u32 tcp_slow_start(struct tcp_sock *tp, u32 acked) in tcp_slow_start() argument
395 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); in tcp_slow_start()
397 acked -= cwnd - tp->snd_cwnd; in tcp_slow_start()
400 return acked; in tcp_slow_start()
407 void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked) in tcp_cong_avoid_ai() argument
415 tp->snd_cwnd_cnt += acked; in tcp_cong_avoid_ai()
433 void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_reno_cong_avoid() argument
442 acked = tcp_slow_start(tp, acked); in tcp_reno_cong_avoid()
443 if (!acked) in tcp_reno_cong_avoid()
447 tcp_cong_avoid_ai(tp, tp->snd_cwnd, acked); in tcp_reno_cong_avoid()
Dtcp_illinois.c51 u16 acked; /* # packets acked by current ACK */ member
77 ca->acked = 0; in tcp_illinois_init()
90 ca->acked = sample->pkts_acked; in tcp_illinois_acked()
259 static void tcp_illinois_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_illinois_cong_avoid() argument
273 tcp_slow_start(tp, acked); in tcp_illinois_cong_avoid()
279 tp->snd_cwnd_cnt += ca->acked; in tcp_illinois_cong_avoid()
280 ca->acked = 1; in tcp_illinois_cong_avoid()
Dtcp_cubic.c224 static inline void bictcp_update(struct bictcp *ca, u32 cwnd, u32 acked) in bictcp_update() argument
229 ca->ack_cnt += acked; /* count the number of ACKed packets */ in bictcp_update()
247 ca->ack_cnt = acked; /* start counting */ in bictcp_update()
334 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in bictcp_cong_avoid() argument
345 acked = tcp_slow_start(tp, acked); in bictcp_cong_avoid()
346 if (!acked) in bictcp_cong_avoid()
349 bictcp_update(ca, tp->snd_cwnd, acked); in bictcp_cong_avoid()
350 tcp_cong_avoid_ai(tp, ca->cnt, acked); in bictcp_cong_avoid()
Dtcp_vegas.c164 static void tcp_vegas_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_vegas_cong_avoid() argument
170 tcp_reno_cong_avoid(sk, ack, acked); in tcp_vegas_cong_avoid()
195 tcp_reno_cong_avoid(sk, ack, acked); in tcp_vegas_cong_avoid()
245 tcp_slow_start(tp, acked); in tcp_vegas_cong_avoid()
285 tcp_slow_start(tp, acked); in tcp_vegas_cong_avoid()
Dtcp_veno.c118 static void tcp_veno_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_veno_cong_avoid() argument
124 tcp_reno_cong_avoid(sk, ack, acked); in tcp_veno_cong_avoid()
137 tcp_reno_cong_avoid(sk, ack, acked); in tcp_veno_cong_avoid()
156 tcp_slow_start(tp, acked); in tcp_veno_cong_avoid()
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()
Dtcp_scalable.c18 static void tcp_scalable_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_scalable_cong_avoid() argument
26 tcp_slow_start(tp, acked); in tcp_scalable_cong_avoid()
Dtcp_highspeed.c111 static void hstcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in hstcp_cong_avoid() argument
120 tcp_slow_start(tp, acked); in hstcp_cong_avoid()
Dtcp_bbr.c380 struct sock *sk, const struct rate_sample *rs, u32 acked, u32 *new_cwnd) in bbr_set_cwnd_to_recover_or_restore() argument
399 cwnd = tcp_packets_in_flight(tp) + acked; in bbr_set_cwnd_to_recover_or_restore()
408 *new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked); in bbr_set_cwnd_to_recover_or_restore()
419 u32 acked, u32 bw, int gain) in bbr_set_cwnd() argument
425 if (!acked) in bbr_set_cwnd()
428 if (bbr_set_cwnd_to_recover_or_restore(sk, rs, acked, &cwnd)) in bbr_set_cwnd()
434 cwnd = min(cwnd + acked, target_cwnd); in bbr_set_cwnd()
436 cwnd = cwnd + acked; in bbr_set_cwnd()
Dtcp_hybla.c89 static void hybla_cong_avoid(struct sock *sk, u32 ack, u32 acked) in hybla_cong_avoid() argument
106 tcp_reno_cong_avoid(sk, ack, acked); in hybla_cong_avoid()
Dtcp_yeah.c71 static void tcp_yeah_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_yeah_cong_avoid() argument
80 tcp_slow_start(tp, acked); in tcp_yeah_cong_avoid()
Dtcp_bic.c139 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in bictcp_cong_avoid() argument
148 tcp_slow_start(tp, acked); in bictcp_cong_avoid()
Dtcp_lp.c118 static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_lp_cong_avoid() argument
123 tcp_reno_cong_avoid(sk, ack, acked); in tcp_lp_cong_avoid()
Dtcp_htcp.c230 static void htcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in htcp_cong_avoid() argument
239 tcp_slow_start(tp, acked); in htcp_cong_avoid()
Dtcp_cdg.c261 static void tcp_cdg_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_cdg_cong_avoid() argument
292 tcp_reno_cong_avoid(sk, ack, acked); in tcp_cdg_cong_avoid()
/Linux-v4.19/net/mac80211/
Dstatus.c470 bool acked, bool dropped) in ieee80211_report_ack_skb() argument
493 cookie, acked, in ieee80211_report_ack_skb()
500 acked, GFP_ATOMIC); in ieee80211_report_ack_skb()
509 skb_complete_wifi_ack(skb, acked); in ieee80211_report_ack_skb()
518 bool acked = info->flags & IEEE80211_TX_STAT_ACK; in ieee80211_report_used_skb() local
521 acked = false; in ieee80211_report_used_skb()
545 acked); in ieee80211_report_used_skb()
550 ieee80211_report_ack_skb(local, info, acked, dropped); in ieee80211_report_used_skb()
555 skb->wifi_acked = acked; in ieee80211_report_used_skb()
714 bool acked; in __ieee80211_tx_status() local
[all …]
Dmesh_ps.c537 bool tx, bool acked) in ieee80211_mpsp_trigger_process() argument
543 if (rspi && acked) in ieee80211_mpsp_trigger_process()
548 else if (acked && in ieee80211_mpsp_trigger_process()
/Linux-v4.19/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-v4.19/net/tipc/
Dlink.c186 u16 acked; member
347 rcv_l->acked = snd_l->snd_nxt - 1; in tipc_link_add_bc_peer()
405 return l->acked; in tipc_link_acked()
756 u16 bc_acked = l->bc_rcvlink->acked; in tipc_link_timeout()
881 l->acked = 0; in tipc_link_reset()
1176 static bool tipc_link_release_pkts(struct tipc_link *l, u16 acked) in tipc_link_release_pkts() argument
1182 if (more(buf_seqno(skb), acked)) in tipc_link_release_pkts()
1840 void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked, in tipc_link_bc_ack_rcv() argument
1849 if (!more(acked, l->acked)) in tipc_link_bc_ack_rcv()
1854 if (more(buf_seqno(skb), l->acked)) in tipc_link_bc_ack_rcv()
[all …]
Dbcast.c368 u16 acked = msg_bcast_ack(hdr); in tipc_bcast_ack_rcv() local
378 tipc_link_bc_ack_rcv(l, acked, &xmitq); in tipc_bcast_ack_rcv()
Dlink.h141 void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked,
/Linux-v4.19/drivers/net/wireless/ath/wil6210/
Dtxrx.h571 static inline void wil_consume_skb(struct sk_buff *skb, bool acked) in wil_consume_skb() argument
574 skb_complete_wifi_ack(skb, acked); in wil_consume_skb()
576 acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb); in wil_consume_skb()
/Linux-v4.19/net/dccp/ccids/
Dccid3.c370 struct tfrc_tx_hist_entry *acked; in ccid3_hc_tx_packet_recv() local
387 acked = tfrc_tx_hist_find_entry(hc->tx_hist, dccp_hdr_ack_seq(skb)); in ccid3_hc_tx_packet_recv()
388 if (acked == NULL) in ccid3_hc_tx_packet_recv()
391 tfrc_tx_hist_purge(&acked->next); in ccid3_hc_tx_packet_recv()
395 r_sample = dccp_sample_rtt(sk, ktime_us_delta(now, acked->stamp)); in ccid3_hc_tx_packet_recv()
/Linux-v4.19/drivers/virtio/
Dvirtio_balloon.c61 wait_queue_head_t acked; member
105 wake_up(&vb->acked); in balloon_ack()
120 wait_event(vb->acked, virtqueue_get_buf(vq, &len)); in tell_host()
582 init_waitqueue_head(&vb->acked); in virtballoon_probe()
/Linux-v4.19/drivers/net/wireless/broadcom/b43legacy/
Dxmit.h102 u8 acked; /* Wireless ACK received */ member

123