Searched refs:acked (Results 1 - 25 of 62) sorted by relevance

123

/linux-master/net/ipv4/
H A Dtcp_scalable.c18 static void tcp_scalable_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
26 acked = tcp_slow_start(tp, acked);
27 if (!acked)
31 acked);
H A Dtcp_veno.c119 static void tcp_veno_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
125 tcp_reno_cong_avoid(sk, ack, acked);
138 tcp_reno_cong_avoid(sk, ack, acked);
157 acked = tcp_slow_start(tp, acked);
158 if (!acked)
167 tcp_cong_avoid_ai(tp, tcp_snd_cwnd(tp), acked);
181 tp->snd_cwnd_cnt += acked;
H A Dtcp_yeah.c58 static void tcp_yeah_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
67 acked = tcp_slow_start(tp, acked);
68 if (!acked)
75 acked);
78 tcp_cong_avoid_ai(tp, tcp_snd_cwnd(tp), acked);
H A Dtcp_illinois.c52 u16 acked; /* # packets acked by current ACK */ member in struct:illinois
78 ca->acked = 0;
91 ca->acked = sample->pkts_acked;
260 static void tcp_illinois_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
274 tcp_slow_start(tp, acked);
280 tp->snd_cwnd_cnt += ca->acked;
281 ca->acked = 1;
H A Dtcp_cong.c448 * something better;) a packet is only considered (s)acked in its entirety to
454 __bpf_kfunc u32 tcp_slow_start(struct tcp_sock *tp, u32 acked) argument
456 u32 cwnd = min(tcp_snd_cwnd(tp) + acked, tp->snd_ssthresh);
458 acked -= cwnd - tcp_snd_cwnd(tp);
461 return acked;
468 __bpf_kfunc void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked) argument
476 tp->snd_cwnd_cnt += acked;
494 __bpf_kfunc void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
503 acked = tcp_slow_start(tp, acked);
[all...]
H A Dtcp_highspeed.c112 static void hstcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
121 tcp_slow_start(tp, acked);
H A Dtcp_cubic.c214 static inline void bictcp_update(struct bictcp *ca, u32 cwnd, u32 acked) argument
219 ca->ack_cnt += acked; /* count the number of ACKed packets */
237 ca->ack_cnt = acked; /* start counting */
324 __bpf_kfunc static void cubictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
333 acked = tcp_slow_start(tp, acked);
334 if (!acked)
337 bictcp_update(ca, tcp_snd_cwnd(tp), acked);
338 tcp_cong_avoid_ai(tp, ca->cnt, acked);
H A Dtcp_vegas.c165 static void tcp_vegas_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
171 tcp_reno_cong_avoid(sk, ack, acked);
196 tcp_reno_cong_avoid(sk, ack, acked);
247 tcp_slow_start(tp, acked);
287 tcp_slow_start(tp, acked);
H A Dtcp_bic.c140 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
149 acked = tcp_slow_start(tp, acked);
150 if (!acked)
154 tcp_cong_avoid_ai(tp, ca->cnt, acked);
H A Dtcp_nv.c113 * used to determine bytes acked since last
180 static void tcpnv_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
194 acked = tcp_slow_start(tp, acked);
195 if (!acked)
201 tcp_cong_avoid_ai(tp, cnt, acked);
204 tcp_cong_avoid_ai(tp, cnt, acked);
H A Dtcp_hybla.c90 static void hybla_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
107 tcp_reno_cong_avoid(sk, ack, acked);
H A Dtcp_lp.c121 static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 acked) argument
126 tcp_reno_cong_avoid(sk, ack, acked);
H A Dtcp_bbr.c230 /* Return maximum extra acked in past k-2k round trips,
473 * follow the packet conservation principle: send P packets per P packets acked.
474 * After that, we slow-start and send at most 2*P packets per P packets acked.
481 struct sock *sk, const struct rate_sample *rs, u32 acked, u32 *new_cwnd)
500 cwnd = tcp_packets_in_flight(tp) + acked;
509 *new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked);
520 u32 acked, u32 bw, int gain)
526 if (!acked)
529 if (bbr_set_cwnd_to_recover_or_restore(sk, rs, acked, &cwnd))
542 cwnd = min(cwnd + acked, target_cwn
480 bbr_set_cwnd_to_recover_or_restore( struct sock *sk, const struct rate_sample *rs, u32 acked, u32 *new_cwnd) argument
519 bbr_set_cwnd(struct sock *sk, const struct rate_sample *rs, u32 acked, u32 bw, int gain) argument
[all...]
/linux-master/drivers/net/wireless/ath/ath12k/
H A Ddp_tx.h14 bool acked; member in struct:ath12k_dp_htt_wbm_tx_status
/linux-master/drivers/net/wireless/ath/ath11k/
H A Ddp_tx.h15 bool acked; member in struct:ath11k_dp_htt_wbm_tx_status
/linux-master/tools/testing/selftests/bpf/progs/
H A Dbpf_cubic.c267 __u32 acked)
272 ca->ack_cnt += acked; /* count the number of ACKed packets */
290 ca->ack_cnt = acked; /* start counting */
381 void BPF_STRUCT_OPS(bpf_cubic_cong_avoid, struct sock *sk, __u32 ack, __u32 acked) argument
392 acked = tcp_slow_start(tp, acked);
393 if (!acked)
396 bictcp_update(ca, tp->snd_cwnd, acked);
397 tcp_cong_avoid_ai(tp, ca->cnt, acked);
266 bictcp_update(struct bictcp *ca, __u32 cwnd, __u32 acked) argument
H A Dbpf_dctcp.c231 extern void tcp_reno_cong_avoid(struct sock *sk, __u32 ack, __u32 acked) __ksym;
234 void BPF_PROG(dctcp_cong_avoid, struct sock *sk, __u32 ack, __u32 acked) argument
236 tcp_reno_cong_avoid(sk, ack, acked);
/linux-master/net/mac80211/
H A Dstatus.c593 bool acked, bool dropped,
617 .ack = acked,
636 acked,
640 cookie, acked,
659 skb_complete_wifi_ack(skb, acked);
664 bool acked, u16 status_data)
674 if (!acked)
706 bool acked = info->flags & IEEE80211_TX_STAT_ACK; local
709 acked = false;
741 if (!acked) {
591 ieee80211_report_ack_skb(struct ieee80211_local *local, struct sk_buff *orig_skb, bool acked, bool dropped, ktime_t ack_hwtstamp) argument
663 ieee80211_handle_smps_status(struct ieee80211_sub_if_data *sdata, bool acked, u16 status_data) argument
945 bool acked; local
966 ieee80211_get_qos_ctl(hdr), sta, true, acked); local
1125 bool acked, noack_success, ack_signal_valid; local
1169 acked, info->status.tx_time); local
[all...]
/linux-master/net/tipc/
H A Dlink.c101 * @acked: # last packet acked by a certain peer. Used for broadcast.
121 * @rcv_unacked: # messages read by user, but not yet acked back to peer
135 * @bc_peer_is_up: peer has acked the bcast init msg
203 u16 acked; member in struct:tipc_link
266 u16 acked, u16 gap,
377 rcv_l->acked = snd_l->snd_nxt - 1;
446 return l->acked;
834 u16 bc_acked = l->bc_rcvlink->acked;
1000 l->acked
1541 tipc_link_advance_transmq(struct tipc_link *l, struct tipc_link *r, u16 acked, u16 gap, struct tipc_gap_ack_blks *ga, struct sk_buff_head *xmitq, bool *retransmitted, int *rc) argument
2469 tipc_link_bc_ack_rcv(struct tipc_link *r, u16 acked, u16 gap, struct tipc_gap_ack_blks *ga, struct sk_buff_head *xmitq, struct sk_buff_head *retrq) argument
2509 u16 acked = msg_bcast_ack(hdr); local
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Dbpf_tcp_helpers.h80 syn_data_acked:1,/* data in SYN is acked by SYN-ACK */
171 void (*cong_avoid)(struct sock *sk, __u32 ack, __u32 acked);
230 extern __u32 tcp_slow_start(struct tcp_sock *tp, __u32 acked) __ksym;
231 extern void tcp_cong_avoid_ai(struct tcp_sock *tp, __u32 w, __u32 acked) __ksym;
/linux-master/drivers/net/arcnet/
H A Dcapmode.c185 static int ack_tx(struct net_device *dev, int acked) argument
193 lp->outgoing.skb->protocol, acked);
213 ackpkt->soft.cap.mes.ack = acked;
/linux-master/drivers/remoteproc/
H A Dqcom_sysmon.c125 bool acked = false; local
149 acked = true;
154 return acked;
334 bool acked = false; local
360 acked = true;
366 return acked;
/linux-master/net/dccp/ccids/
H A Dccid3.c362 struct tfrc_tx_hist_entry *acked; local
379 acked = tfrc_tx_hist_find_entry(hc->tx_hist, dccp_hdr_ack_seq(skb));
380 if (acked == NULL)
383 tfrc_tx_hist_purge(&acked->next);
387 r_sample = dccp_sample_rtt(sk, ktime_us_delta(now, acked->stamp));
/linux-master/net/rxrpc/
H A Drecvmsg.c113 int acked; local
138 acked = atomic_add_return(call->rx_consumed - old_consumed,
140 if (acked > 8 &&
/linux-master/drivers/net/wireless/ath/wil6210/
H A Dtxrx.h623 static inline void wil_consume_skb(struct sk_buff *skb, bool acked) argument
626 skb_complete_wifi_ack(skb, acked);
628 acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb);

Completed in 206 milliseconds

123