/linux-4.4.14/net/ipv4/ |
D | tcp_cong.c | 377 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()
|
D | tcp_illinois.c | 51 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()
|
D | tcp_cubic.c | 226 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()
|
D | tcp_vegas.c | 164 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()
|
D | tcp_veno.c | 117 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()
|
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 tcp_slow_start(tp, acked); in tcp_scalable_cong_avoid()
|
D | tcp_highspeed.c | 111 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()
|
D | tcp_hybla.c | 89 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()
|
D | tcp_yeah.c | 70 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()
|
D | tcp_bic.c | 141 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()
|
D | tcp_lp.c | 118 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()
|
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()
|
D | tcp_cdg.c | 260 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()
|
D | tcp_input.c | 1831 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 …]
|
D | inet_connection_sock.c | 501 (!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()
|
D | tcp_minisocks.c | 757 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/ |
D | status.c | 454 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 …]
|
D | mesh_ps.c | 537 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()
|
D | mesh.h | 259 bool tx, bool acked);
|
D | ieee80211_i.h | 1508 __le16 fc, bool acked);
|
D | mlme.c | 3808 __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/ |
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()
|
D | arcdevice.h | 210 int (*ack_tx)(struct net_device *dev, int acked);
|
/linux-4.4.14/net/tipc/ |
D | link.c | 193 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 …]
|
D | link.h | 213 u16 acked; member 274 void tipc_link_bc_ack_rcv(struct tipc_link *l, u16 acked,
|
D | bcast.h | 58 void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l, u32 acked);
|
D | bcast.c | 250 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()
|
D | node.c | 1307 else if (unlikely(n->bc_entry.link->acked != bc_ack)) in tipc_rcv()
|
/linux-4.4.14/drivers/virtio/ |
D | virtio_balloon.c | 59 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/ |
D | ccid3.c | 370 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/ |
D | xmit.h | 101 u8 acked; /* Wireless ACK received */ member
|
D | xmit.c | 594 if (!status->acked) in b43legacy_handle_txstatus() 627 status.acked = !!(tmp & 0x02); in b43legacy_handle_hwtxstatus()
|
D | debugfs.c | 172 stat->acked); in txstat_read_file()
|
D | pio.c | 514 if (status->acked) in b43legacy_pio_handle_txstatus()
|
D | dma.c | 1239 if (status->acked) in b43legacy_dma_handle_txstatus()
|
D | main.c | 755 stat.acked = !!(tmp & 0x0002); in handle_irq_transmit_status()
|
/linux-4.4.14/include/net/ |
D | inet_sock.h | 93 acked : 1, member
|
D | tcp.h | 862 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);
|
D | cfg80211.h | 4939 u64 cookie, bool acked, gfp_t gfp);
|
/linux-4.4.14/net/dccp/ |
D | minisocks.c | 254 inet_rsk(req)->acked = 0; in dccp_reqsk_init()
|
D | output.c | 417 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/ |
D | vgic-mapped-irqs.txt | 55 - 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/ |
D | apic.c | 1218 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/ |
D | slave-interface | 92 '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/ |
D | xmit.h | 222 u8 acked; /* Wireless ACK received */ member
|
D | xmit.c | 860 if (!status->acked) in b43_handle_txstatus() 893 if (status->acked) { in b43_fill_txstatus_report()
|
D | debugfs.c | 395 stat->acked); in txstat_read_file()
|
D | main.c | 1360 stat.acked = !!(tmp & 0x0002); in handle_irq_transmit_status()
|
/linux-4.4.14/drivers/usb/musb/ |
D | cppi_dma.c | 1009 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/ |
D | design_notes.txt | 30 * Write requests are replicated to multiple servers and completed only when all of them are acked.
|
/linux-4.4.14/net/llc/ |
D | llc_c_ac.c | 1173 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/ |
D | trace.h | 2501 bool acked), 2502 TP_ARGS(netdev, addr, cookie, acked), 2507 __field(bool, acked) 2513 __entry->acked = acked; 2517 BOOL_TO_STR(__entry->acked))
|
D | nl80211.c | 12855 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/ |
D | txrx.c | 1725 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/ |
D | pxa_dma.txt | 121 - there are not "acked" transfers (tx0)
|
D | provider.txt | 351 - This can be acked by invoking async_tx_ack()
|
/linux-4.4.14/Documentation/w1/ |
D | w1.netlink | 129 structure) will be 'acked' by the w1 core. Format of the reply is the same
|
/linux-4.4.14/Documentation/crypto/ |
D | async-tx-api.txt | 83 recycle (or free) the descriptor. A descriptor can be acked by one of the
|
/linux-4.4.14/Documentation/networking/ |
D | rds.txt | 213 acked.
|
/linux-4.4.14/net/core/ |
D | skbuff.c | 3752 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/ |
D | skbuff.h | 3097 void skb_complete_wifi_ack(struct sk_buff *skb, bool acked);
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
D | aic79xx.seq | 1718 * some overrun bytes into the data FIFO and acked them 1885 * already seen and acked (REQINIT never comes true).
|
D | aic7xxx.seq | 1043 * the data FIFO and acked them on the bus. The only
|