/Linux-v4.19/net/ipv4/ |
D | tcp_rate.c | 64 TCP_SKB_CB(skb)->tx.delivered = tp->delivered; in tcp_rate_skb_sent() 85 after(scb->tx.delivered, rs->prior_delivered)) { in tcp_rate_skb_delivered() 86 rs->prior_delivered = scb->tx.delivered; in tcp_rate_skb_delivered() 108 void tcp_rate_gen(struct sock *sk, u32 delivered, u32 lost, in tcp_rate_gen() argument 115 if (tp->app_limited && after(tp->delivered, tp->app_limited)) in tcp_rate_gen() 122 if (delivered) in tcp_rate_gen() 125 rs->acked_sacked = delivered; /* freshly ACKed or SACKed */ in tcp_rate_gen() 133 rs->delivered = -1; in tcp_rate_gen() 137 rs->delivered = tp->delivered - rs->prior_delivered; in tcp_rate_gen() 163 rs->interval_us, rs->delivered, in tcp_rate_gen() [all …]
|
D | tcp_bbr.c | 397 bbr->next_rtt_delivered = tp->delivered; /* start round now */ in bbr_set_cwnd_to_recover_or_restore() 435 else if (cwnd < target_cwnd || tp->delivered < TCP_INIT_CWND) in bbr_set_cwnd() 539 bbr->lt_last_delivered = tp->delivered; in bbr_reset_lt_bw_sampling_interval() 590 u32 lost, delivered; in bbr_lt_bw_sampling() local 638 delivered = tp->delivered - bbr->lt_last_delivered; in bbr_lt_bw_sampling() 640 if (!delivered || (lost << BBR_SCALE) < bbr_lt_loss_thresh * delivered) in bbr_lt_bw_sampling() 653 bw = (u64)delivered * BW_UNIT; in bbr_lt_bw_sampling() 666 if (rs->delivered < 0 || rs->interval_us <= 0) in bbr_update_bw() 671 bbr->next_rtt_delivered = tp->delivered; in bbr_update_bw() 683 bw = (u64)rs->delivered * BW_UNIT; in bbr_update_bw() [all …]
|
D | tcp_input.c | 1265 tp->delivered += pcount; /* Out-of-order packets delivered */ in tcp_sacktag_one() 1680 tp->delivered++; /* A spurious retransmission is delivered */ in tcp_sacktag_write_queue() 1895 tp->delivered++; /* Some out-of-order packet is delivered */ in tcp_add_reno_sack() 1907 tp->delivered += max_t(int, acked - tp->sacked_out, 1); in tcp_remove_reno_sacks() 3121 tp->delivered += acked_pcount; in tcp_clean_rtx_queue() 3173 sack->rate->prior_delivered + 1 == tp->delivered && in tcp_clean_rtx_queue() 3559 u32 delivered; in tcp_newly_delivered() local 3561 delivered = tp->delivered - prior_delivered; in tcp_newly_delivered() 3562 NET_ADD_STATS(net, LINUX_MIB_TCPDELIVERED, delivered); in tcp_newly_delivered() 3564 tp->delivered_ce += delivered; in tcp_newly_delivered() [all …]
|
/Linux-v4.19/Documentation/acpi/ |
D | cppc_sysfs.txt | 7 to request performance levels and to measure per-cpu delivered performance. 48 * feedback_ctrs : Includes both Reference and delivered performance counter. 50 Delivered counter ticks up proportional to processor's delivered performance. 59 Below describes the steps to compute the average performance delivered by taking
|
/Linux-v4.19/drivers/i2c/busses/ |
D | i2c-imx-lpi2c.c | 109 unsigned int delivered; member 349 remaining = lpi2c_imx->msglen - lpi2c_imx->delivered; in lpi2c_imx_set_rx_watermark() 366 if (lpi2c_imx->delivered == lpi2c_imx->msglen) in lpi2c_imx_write_txfifo() 369 data = lpi2c_imx->tx_buf[lpi2c_imx->delivered++]; in lpi2c_imx_write_txfifo() 374 if (lpi2c_imx->delivered < lpi2c_imx->msglen) in lpi2c_imx_write_txfifo() 390 lpi2c_imx->rx_buf[lpi2c_imx->delivered++] = data & 0xff; in lpi2c_imx_read_rxfifo() 402 remaining = lpi2c_imx->msglen - lpi2c_imx->delivered; in lpi2c_imx_read_rxfifo() 418 } else if (!(lpi2c_imx->delivered & 0xff)) { in lpi2c_imx_read_rxfifo() 471 lpi2c_imx->delivered = 0; in lpi2c_imx_xfer()
|
/Linux-v4.19/Documentation/fb/ |
D | metronomefb.txt | 13 which is then delivered to the AMLCD interface by a host specific method. 20 Metronomefb requires waveform information which is delivered via the AMLCD 22 be delivered from userspace via the firmware class interface. The waveform file
|
/Linux-v4.19/Documentation/powerpc/ |
D | pmu-ebb.txt | 28 When a PMU EBB occurs it is delivered to the currently running process. As such 34 EBBs will ever be delivered. 39 delivered to the first process. It's not clear if this is actually useful. 42 When the PMU is configured for EBBs, all PMU interrupts are delivered to the 109 meaningless. Because interrupts are being delivered to the user process the 118 no further PMU EBBs will be delivered.
|
/Linux-v4.19/Documentation/virtual/kvm/devices/ |
D | xics.txt | 37 delivered, and 255 is the lowest priority. 52 priority of 255 will never be delivered. 59 This bit is set to 1 if the interrupt is masked (cannot be delivered
|
/Linux-v4.19/Documentation/ |
D | IRQ-affinity.txt | 41 As can be seen from the line above IRQ44 was delivered only to the first four 60 This time around IRQ44 was delivered only to the last four processors.
|
/Linux-v4.19/Documentation/ia64/ |
D | mca.txt | 32 * Because MCA/INIT can be delivered at any time, including when the cpu 125 * x86 NMI typically gets delivered to one cpu. MCA/INIT gets sent to 146 What happens when MCA/INIT is delivered what a cpu is running user 163 was delivered? 178 delivered? 194 delivered.
|
/Linux-v4.19/drivers/acpi/ |
D | cppc_acpi.c | 178 fb_ctrs.reference, fb_ctrs.delivered); in show_feedback_ctrs() 1148 u64 delivered, reference, ref_perf, ctr_wrap_time; in cppc_get_perf_ctrs() local 1185 cpc_read(cpunum, delivered_reg, &delivered); in cppc_get_perf_ctrs() 1198 if (!delivered || !reference || !ref_perf) { in cppc_get_perf_ctrs() 1203 perf_fb_ctrs->delivered = delivered; in cppc_get_perf_ctrs()
|
/Linux-v4.19/Documentation/filesystems/ |
D | dnotify.txt | 10 being delivered using signals. 27 By default, SIGIO will be delivered to the process and no other useful
|
/Linux-v4.19/include/acpi/ |
D | cppc_acpi.h | 123 u64 delivered; member
|
/Linux-v4.19/Documentation/devicetree/bindings/leds/irled/ |
D | spi-ir-led.txt | 5 are delivered thourgh that.
|
/Linux-v4.19/net/bridge/ |
D | br_forward.c | 300 goto delivered; in br_multicast_flood() 307 delivered: in br_multicast_flood()
|
/Linux-v4.19/drivers/cpufreq/ |
D | cppc_cpufreq.c | 318 delta_delivered = get_delta(fb_ctrs_t1.delivered, in cppc_get_rate_from_fbctrs() 319 fb_ctrs_t0.delivered); in cppc_get_rate_from_fbctrs()
|
/Linux-v4.19/Documentation/networking/ |
D | strparser.txt | 17 callback of a TCP socket. Messages are parsed and delivered as they are 21 outside source. Message are parsed and delivered as the sequence is 49 and no new messages are delivered to the upper layer.
|
D | rxrpc.txt | 252 (*) Aborts, busy notifications and challenge packets are delivered by recvmsg, 270 is done, the first part of the request data will be delivered by recvmsg. 344 (SRT = usable in Sendmsg / delivered by Recvmsg / Terminal message) 357 sendmsg, or it can be delivered by recvmsg to indicate a remote abort was 364 This is delivered to a server application to indicate that the final ACK 370 This is delivered to an application to indicate that an ICMP error message 378 This is delivered to a client application to indicate that a call was 384 This is delivered to an application to indicate that a local error was 392 This is delivered to indicate to a server application that a new call has 618 All data will be delivered with the following control message attached: [all …]
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | armada-xp-db-xc3-24g4xg.dts | 13 * boards were delivered with an older version of the bootloader that
|
D | armada-xp-db-dxbc2.dts | 13 * boards were delivered with an older version of the bootloader that
|
/Linux-v4.19/net/netlink/ |
D | genetlink.c | 1086 bool delivered = false; in genlmsg_mcast() local 1099 delivered = true; in genlmsg_mcast() 1109 delivered = true; in genlmsg_mcast() 1112 return delivered ? 0 : -ESRCH; in genlmsg_mcast()
|
/Linux-v4.19/drivers/net/wireless/ath/ath6kl/ |
D | Kconfig | 51 messages and commands are delivered to using individually
|
/Linux-v4.19/drivers/media/platform/marvell-ccic/ |
D | mcam-core.h | 89 unsigned int delivered; member
|
/Linux-v4.19/Documentation/input/devices/ |
D | edt-ft5x06.rst | 43 mode regular events don't get delivered and the options described
|
/Linux-v4.19/Documentation/virtual/kvm/ |
D | msr.txt | 173 are delivered to L1 as #PF vmexits. Bit 2 can be set only if 198 not be delivered. 200 Currently type 2 APF will be always delivered on the same vcpu as
|