Home
last modified time | relevance | path

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

/linux-4.4.14/net/ipv4/
Dtcp_cong.c377 u32 tcp_slow_start(struct tcp_sock *tp, u32 acked) in tcp_slow_start() argument
379 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); in tcp_slow_start()
381 acked -= cwnd - tp->snd_cwnd; in tcp_slow_start()
384 return acked; in tcp_slow_start()
391 void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked) in tcp_cong_avoid_ai() argument
399 tp->snd_cwnd_cnt += acked; in tcp_cong_avoid_ai()
417 void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_reno_cong_avoid() argument
426 acked = tcp_slow_start(tp, acked); in tcp_reno_cong_avoid()
427 if (!acked) in tcp_reno_cong_avoid()
431 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()
89 ca->acked = pkts_acked; in tcp_illinois_acked()
258 static void tcp_illinois_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_illinois_cong_avoid() argument
272 tcp_slow_start(tp, acked); in tcp_illinois_cong_avoid()
278 tp->snd_cwnd_cnt += ca->acked; in tcp_illinois_cong_avoid()
279 ca->acked = 1; in tcp_illinois_cong_avoid()
Dtcp_cubic.c226 static inline void bictcp_update(struct bictcp *ca, u32 cwnd, u32 acked) in bictcp_update() argument
231 ca->ack_cnt += acked; /* count the number of ACKed packets */ in bictcp_update()
249 ca->ack_cnt = acked; /* start counting */ in bictcp_update()
336 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in bictcp_cong_avoid() argument
347 acked = tcp_slow_start(tp, acked); in bictcp_cong_avoid()
348 if (!acked) in bictcp_cong_avoid()
351 bictcp_update(ca, tp->snd_cwnd, acked); in bictcp_cong_avoid()
352 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.c117 static void tcp_veno_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_veno_cong_avoid() argument
123 tcp_reno_cong_avoid(sk, ack, acked); in tcp_veno_cong_avoid()
136 tcp_reno_cong_avoid(sk, ack, acked); in tcp_veno_cong_avoid()
155 tcp_slow_start(tp, acked); in tcp_veno_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_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.c70 static void tcp_yeah_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_yeah_cong_avoid() argument
79 tcp_slow_start(tp, acked); in tcp_yeah_cong_avoid()
Dtcp_bic.c141 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in bictcp_cong_avoid() argument
150 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.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.c260 static void tcp_cdg_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_cdg_cong_avoid() argument
291 tcp_reno_cong_avoid(sk, ack, acked); in tcp_cdg_cong_avoid()
Dtcp_input.c1831 static void tcp_remove_reno_sacks(struct sock *sk, int acked) in tcp_remove_reno_sacks() argument
1835 if (acked > 0) { in tcp_remove_reno_sacks()
1837 if (acked - 1 >= tp->sacked_out) in tcp_remove_reno_sacks()
1840 tp->sacked_out -= acked - 1; in tcp_remove_reno_sacks()
1842 tcp_check_reno_reordering(sk, acked); in tcp_remove_reno_sacks()
2715 static bool tcp_try_undo_partial(struct sock *sk, const int acked, in tcp_try_undo_partial() argument
2724 tcp_update_reordering(sk, tcp_fackets_out(tp) + acked, 1); in tcp_try_undo_partial()
2759 static void tcp_fastretrans_alert(struct sock *sk, const int acked, in tcp_fastretrans_alert() argument
2824 if (tcp_try_undo_partial(sk, acked, prior_unsacked, flag)) in tcp_fastretrans_alert()
2995 static void tcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) in tcp_cong_avoid() argument
[all …]
Dinet_connection_sock.c501 (!inet_rsk(req)->acked || req->num_timeout >= max_retries); in syn_ack_recalc()
507 *resend = !inet_rsk(req)->acked || in syn_ack_recalc()
608 inet_rsk(req)->acked)) { in reqsk_timer_handler()
Dtcp_minisocks.c757 inet_rsk(req)->acked = 1; in tcp_check_req()
779 inet_rsk(req)->acked = 1; in tcp_check_req()
/linux-4.4.14/net/mac80211/
Dstatus.c454 bool acked, bool dropped) in ieee80211_report_ack_skb() argument
484 cookie, acked, in ieee80211_report_ack_skb()
489 acked, GFP_ATOMIC); in ieee80211_report_ack_skb()
496 skb_complete_wifi_ack(skb, acked); in ieee80211_report_ack_skb()
505 bool acked = info->flags & IEEE80211_TX_STAT_ACK; in ieee80211_report_used_skb() local
508 acked = false; in ieee80211_report_used_skb()
532 acked); in ieee80211_report_used_skb()
537 ieee80211_report_ack_skb(local, info, acked, dropped); in ieee80211_report_used_skb()
626 bool acked, noack_success; in ieee80211_tx_status_noskb() local
632 acked = !!(info->flags & IEEE80211_TX_STAT_ACK); in ieee80211_tx_status_noskb()
[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()
Dmesh.h259 bool tx, bool acked);
Dieee80211_i.h1508 __le16 fc, bool acked);
Dmlme.c3808 __le16 fc, bool acked) in ieee80211_mgd_conn_tx_status() argument
3813 sdata->u.mgd.status_acked = acked; in ieee80211_mgd_conn_tx_status()
/linux-4.4.14/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()
Darcdevice.h210 int (*ack_tx)(struct net_device *dev, int acked);
/linux-4.4.14/net/tipc/
Dlink.c193 rcv_l->acked = snd_l->snd_nxt - 1; in tipc_link_add_bc_peer()
564 u16 bc_acked = l->bc_rcvlink->acked; in tipc_link_timeout()
692 l->acked = 0; in tipc_link_reset()
952 static bool tipc_link_release_pkts(struct tipc_link *l, u16 acked) in tipc_link_release_pkts() argument
958 if (more(buf_seqno(skb), acked)) in tipc_link_release_pkts()
1449 void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked, in tipc_link_bc_ack_rcv() argument
1458 if (!more(acked, l->acked)) in tipc_link_bc_ack_rcv()
1463 if (more(buf_seqno(skb), l->acked)) in tipc_link_bc_ack_rcv()
1469 if (more(buf_seqno(skb), acked)) in tipc_link_bc_ack_rcv()
1476 l->acked = acked; in tipc_link_bc_ack_rcv()
[all …]
Dlink.h213 u16 acked; member
274 void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked,
Dbcast.h58 void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l, u32 acked);
Dbcast.c250 void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l, u32 acked) in tipc_bcast_ack_rcv() argument
258 tipc_link_bc_ack_rcv(l, acked, &xmitq); in tipc_bcast_ack_rcv()
Dnode.c1307 else if (unlikely(n->bc_entry.link->acked != bc_ack)) in tipc_rcv()
/linux-4.4.14/drivers/virtio/
Dvirtio_balloon.c59 wait_queue_head_t acked; member
110 wake_up(&vb->acked); in balloon_ack()
125 wait_event(vb->acked, virtqueue_get_buf(vq, &len)); in tell_host()
505 init_waitqueue_head(&vb->acked); in virtballoon_probe()
/linux-4.4.14/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-4.4.14/drivers/net/wireless/b43legacy/
Dxmit.h101 u8 acked; /* Wireless ACK received */ member
Dxmit.c594 if (!status->acked) in b43legacy_handle_txstatus()
627 status.acked = !!(tmp & 0x02); in b43legacy_handle_hwtxstatus()
Ddebugfs.c172 stat->acked); in txstat_read_file()
Dpio.c514 if (status->acked) in b43legacy_pio_handle_txstatus()
Ddma.c1239 if (status->acked) in b43legacy_dma_handle_txstatus()
Dmain.c755 stat.acked = !!(tmp & 0x0002); in handle_irq_transmit_status()
/linux-4.4.14/include/net/
Dinet_sock.h93 acked : 1, member
Dtcp.h862 void (*cong_avoid)(struct sock *sk, u32 ack, u32 acked);
893 u32 tcp_slow_start(struct tcp_sock *tp, u32 acked);
894 void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked);
897 void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked);
Dcfg80211.h4939 u64 cookie, bool acked, gfp_t gfp);
/linux-4.4.14/net/dccp/
Dminisocks.c254 inet_rsk(req)->acked = 0; in dccp_reqsk_init()
Doutput.c417 if (inet_rsk(req)->acked) /* increase GSS upon retransmission */ in dccp_make_response()
445 inet_rsk(req)->acked = 1; in dccp_make_response()
/linux-4.4.14/Documentation/virtual/kvm/arm/
Dvgic-mapped-irqs.txt55 - The physical interrupt is acked by the host, and becomes active on
59 - LR.Pending will stay set as long as the guest has not acked the interrupt.
126 soon as they are acked by the CPU, they are inactive again.
/linux-4.4.14/arch/x86/kernel/apic/
Dapic.c1218 int i, j, acked = 0; in setup_local_APIC() local
1296 acked++; in setup_local_APIC()
1300 if (acked > 256) { in setup_local_APIC()
1302 acked); in setup_local_APIC()
/linux-4.4.14/Documentation/i2c/
Dslave-interface92 'ret': 0 if the byte should be acked, some errno if the byte should be nacked
104 'val'. Important: This does not mean that the previous byte has been acked, it
/linux-4.4.14/drivers/net/wireless/b43/
Dxmit.h222 u8 acked; /* Wireless ACK received */ member
Dxmit.c860 if (!status->acked) in b43_handle_txstatus()
893 if (status->acked) { in b43_fill_txstatus_report()
Ddebugfs.c395 stat->acked); in txstat_read_file()
Dmain.c1360 stat.acked = !!(tmp & 0x0002); in handle_irq_transmit_status()
/linux-4.4.14/drivers/usb/musb/
Dcppi_dma.c1009 bool acked = false; in cppi_rx_scan() local
1070 acked = true; in cppi_rx_scan()
1087 if (!acked && last) { in cppi_rx_scan()
/linux-4.4.14/Documentation/filesystems/pohmelfs/
Ddesign_notes.txt30 * Write requests are replicated to multiple servers and completed only when all of them are acked.
/linux-4.4.14/net/llc/
Dllc_c_ac.c1173 int acked; in llc_conn_ac_upd_nr_received() local
1179 acked = llc_conn_remove_acked_pdus(sk, llc->last_nr, &unacked); in llc_conn_ac_upd_nr_received()
1181 if (acked > 0 || (llc->dev->flags & IFF_LOOPBACK)) { in llc_conn_ac_upd_nr_received()
/linux-4.4.14/net/wireless/
Dtrace.h2501 bool acked),
2502 TP_ARGS(netdev, addr, cookie, acked),
2507 __field(bool, acked)
2513 __entry->acked = acked;
2517 BOOL_TO_STR(__entry->acked))
Dnl80211.c12855 u64 cookie, bool acked, gfp_t gfp) in cfg80211_probe_status() argument
12862 trace_cfg80211_probe_status(dev, addr, cookie, acked); in cfg80211_probe_status()
12879 (acked && nla_put_flag(msg, NL80211_ATTR_ACK))) in cfg80211_probe_status()
/linux-4.4.14/drivers/net/wireless/ath/wil6210/
Dtxrx.c1725 static inline void wil_consume_skb(struct sk_buff *skb, bool acked) in wil_consume_skb() argument
1728 skb_complete_wifi_ack(skb, acked); in wil_consume_skb()
1730 acked ? dev_consume_skb_any(skb) : dev_kfree_skb_any(skb); in wil_consume_skb()
/linux-4.4.14/Documentation/dmaengine/
Dpxa_dma.txt121 - there are not "acked" transfers (tx0)
Dprovider.txt351 - This can be acked by invoking async_tx_ack()
/linux-4.4.14/Documentation/w1/
Dw1.netlink129 structure) will be 'acked' by the w1 core. Format of the reply is the same
/linux-4.4.14/Documentation/crypto/
Dasync-tx-api.txt83 recycle (or free) the descriptor. A descriptor can be acked by one of the
/linux-4.4.14/Documentation/networking/
Drds.txt213 acked.
/linux-4.4.14/net/core/
Dskbuff.c3752 void skb_complete_wifi_ack(struct sk_buff *skb, bool acked) in skb_complete_wifi_ack() argument
3759 skb->wifi_acked = acked; in skb_complete_wifi_ack()
/linux-4.4.14/include/linux/
Dskbuff.h3097 void skb_complete_wifi_ack(struct sk_buff *skb, bool acked);
/linux-4.4.14/drivers/scsi/aic7xxx/
Daic79xx.seq1718 * some overrun bytes into the data FIFO and acked them
1885 * already seen and acked (REQINIT never comes true).
Daic7xxx.seq1043 * the data FIFO and acked them on the bus. The only