| /linux/net/ipv4/ |
| H A D | tcp_veno.c | 119 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 D | tcp_scalable.c | 18 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 D | tcp_yeah.c | 58 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 D | tcp_illinois.c | 52 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 D | tcp_bic.c | 140 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 D | tcp_vegas.c | 165 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 D | tcp_nv.c | 180 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 D | tcp_highspeed.c | 112 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 D | tcp_bbr.c | 481 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 D | tcp_hybla.c | 90 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 D | tcp_lp.c | 117 * @acked: number of ACKed packets 123 static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_lp_cong_avoid() 128 tcp_reno_cong_avoid(sk, ack, acked); 121 tcp_lp_cong_avoid(struct sock * sk,u32 ack,u32 acked) tcp_lp_cong_avoid() argument
|
| H A D | tcp_htcp.c | 231 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()
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | bpf_cubic.c | 24 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; in before() 265 static void bictcp_update(struct bpf_bictcp *ca, __u32 cwnd, __u32 acked) in cubic_root() 270 ca->ack_cnt += acked; /* count the number of ACKed packets */ 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 bictcp_update() 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() 272 bictcp_update(struct bpf_bictcp * ca,__u32 cwnd,__u32 acked) bictcp_update() argument 386 BPF_PROG(bpf_cubic_cong_avoid,struct sock * sk,__u32 ack,__u32 acked) BPF_PROG() argument [all...] |
| H A D | tcp_ca_kfunc.c | 25 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 D | bpf_dctcp.c | 231 extern void tcp_reno_cong_avoid(struct sock *sk, __u32 ack, __u32 acked) __ksym; in BPF_PROG() 234 void BPF_PROG(bpf_dctcp_cong_avoid, struct sock *sk, __u32 ack, __u32 acked) in BPF_PROG() 236 tcp_reno_cong_avoid(sk, ack, acked); 240 BPF_PROG(bpf_dctcp_cong_avoid,struct sock * sk,__u32 ack,__u32 acked) BPF_PROG() argument
|
| /linux/drivers/gpu/drm/panthor/ |
| H A D | panthor_fw.c | 1300 u32 req_mask, u32 *acked, in panthor_fw_wait_acks() argument 1307 *acked = req_mask; in panthor_fw_wait_acks() 1324 *acked = ~(req ^ ack) & req_mask; in panthor_fw_wait_acks() 1339 u32 req_mask, u32 *acked, in panthor_fw_glb_wait_acks() argument 1351 req_mask, acked, timeout_ms); in panthor_fw_glb_wait_acks() 1366 u32 req_mask, u32 *acked, u32 timeout_ms) in panthor_fw_csg_wait_acks() argument 1377 req_mask, acked, timeout_ms); in panthor_fw_csg_wait_acks() 1385 if ((*acked & CSG_STATE_MASK) != CSG_STATE_MASK) in panthor_fw_csg_wait_acks() 1386 *acked &= ~CSG_STATE_MASK; in panthor_fw_csg_wait_acks() 1413 u32 acked; in panthor_fw_ping_work() local [all …]
|
| H A D | panthor_fw.h | 498 u32 *acked, u32 timeout_ms); 500 int panthor_fw_glb_wait_acks(struct panthor_device *ptdev, u32 req_mask, u32 *acked,
|
| /linux/drivers/net/arcnet/ |
| H A D | capmode.c | 185 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/net/dccp/ccids/ |
| H A D | ccid3.c | |
| /linux/drivers/net/wireless/ath/ath11k/ |
| H A D | dp_tx.h | 15 bool acked; member
|
| /linux/drivers/virtio/ |
| H A D | virtio_balloon.c | 91 wait_queue_head_t acked; member 180 wake_up(&vb->acked); in balloon_ack() 195 wait_event(vb->acked, virtqueue_get_buf(vq, &len)); in tell_host() 221 wait_event(vb->acked, virtqueue_get_buf(vq, &unused)); in virtballoon_free_page_report() 964 init_waitqueue_head(&vb->acked); in virtballoon_probe()
|
| /linux/net/rxrpc/ |
| H A D | recvmsg.c | 117 int acked; in rxrpc_rotate_rx_window() local 142 acked = atomic_add_return(call->rx_consumed - old_consumed, in rxrpc_rotate_rx_window() 144 if (acked > 8 && in rxrpc_rotate_rx_window()
|
| /linux/drivers/hv/ |
| H A D | mshv_eventfd.c | 50 bool acked = false; in mshv_notify_acked_gsi() local 57 acked = true; in mshv_notify_acked_gsi() 62 return acked; in mshv_notify_acked_gsi()
|
| /linux/drivers/net/wireless/broadcom/b43legacy/ |
| H A D | xmit.h | 102 u8 acked; /* Wireless ACK received */ member
|
| /linux/net/tipc/ |
| H A D | link.h | 147 int tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked, u16 gap,
|