| /linux-6.15/net/ipv4/ |
| H A D | tcp_rate.c | 67 TCP_SKB_CB(skb)->tx.delivered = tp->delivered; in tcp_rate_skb_sent() 95 rs->prior_delivered = scb->tx.delivered; in tcp_rate_skb_delivered() 117 void tcp_rate_gen(struct sock *sk, u32 delivered, u32 lost, in tcp_rate_gen() argument 131 if (delivered) in tcp_rate_gen() 134 rs->acked_sacked = delivered; /* freshly ACKed or SACKed */ in tcp_rate_gen() 142 rs->delivered = -1; in tcp_rate_gen() 146 rs->delivered = tp->delivered - rs->prior_delivered; in tcp_rate_gen() 176 rs->interval_us, rs->delivered, in tcp_rate_gen() 185 ((u64)rs->delivered * tp->rate_interval_us >= in tcp_rate_gen() 187 tp->rate_delivered = rs->delivered; in tcp_rate_gen() [all …]
|
| H A D | tcp_dctcp.c | 85 ca->old_delivered = tp->delivered; in dctcp_reset() 134 u32 delivered = tp->delivered - ca->old_delivered; in dctcp_update_alpha() local 139 if (delivered > 0) { in dctcp_update_alpha() 147 ce_ratio = (delivered_ce << TCP_PLB_SCALE) / delivered; in dctcp_update_alpha() 161 delivered_ce /= max(1U, delivered); in dctcp_update_alpha() 234 (tp->delivered - ca->old_delivered); in dctcp_get_info()
|
| H A D | tcp_bbr.c | 641 bbr->lt_last_delivered = tp->delivered; in bbr_reset_lt_bw_sampling_interval() 692 u32 lost, delivered; in bbr_lt_bw_sampling() local 740 delivered = tp->delivered - bbr->lt_last_delivered; in bbr_lt_bw_sampling() 742 if (!delivered || (lost << BBR_SCALE) < bbr_lt_loss_thresh * delivered) in bbr_lt_bw_sampling() 755 bw = (u64)delivered * BW_UNIT; in bbr_lt_bw_sampling() 768 if (rs->delivered < 0 || rs->interval_us <= 0) in bbr_update_bw() 773 bbr->next_rtt_delivered = tp->delivered; in bbr_update_bw() 825 rs->delivered < 0 || rs->interval_us <= 0) in bbr_update_ack_aggregation() 974 bbr->next_rtt_delivered = tp->delivered; in bbr_update_min_rtt() 983 if (rs->delivered > 0) in bbr_update_min_rtt() [all …]
|
| H A D | tcp_input.c | 430 tp->delivered += delivered; in tcp_count_delivered() 432 tcp_count_delivered_ce(tp, delivered); in tcp_count_delivered() 2096 s32 delivered; in tcp_add_reno_sack() local 2101 if (delivered > 0) in tcp_add_reno_sack() 3926 u32 delivered; in tcp_newly_delivered() local 3928 delivered = tp->delivered - prior_delivered; in tcp_newly_delivered() 3933 return delivered; in tcp_newly_delivered() 3949 u32 delivered = tp->delivered; in tcp_ack() local 4083 delivered = tcp_newly_delivered(sk, delivered, flag); in tcp_ack() 6442 if (tp->delivered > 1) in tcp_rcv_fastopen_synack() [all …]
|
| /linux-6.15/tools/testing/selftests/bpf/prog_tests/ |
| H A D | tcp_rtt.c | 11 __u32 delivered; member 51 __u32 dsack_dups, __u32 delivered, __u32 delivered_ce, in verify_sk() argument 72 if (val.delivered != delivered) { in verify_sk() 74 msg, val.delivered, delivered); in verify_sk()
|
| /linux-6.15/tools/testing/selftests/bpf/progs/ |
| H A D | tcp_rtt.c | 10 __u32 delivered; member 57 storage->delivered = tcp_sk->delivered; in _sockops()
|
| H A D | bpf_dctcp.c | 63 ca->old_delivered = tp->delivered; in dctcp_reset() 139 __u32 delivered = tp->delivered - ca->old_delivered; in BPF_PROG() local 145 delivered_ce /= max(1U, delivered); in BPF_PROG()
|
| H A D | tcp_ca_write_sk_pacing.c | 43 tp->app_limited = (tp->delivered + tcp_packets_in_flight(tp)) ?: 1; in BPF_PROG()
|
| /linux-6.15/Documentation/admin-guide/acpi/ |
| H A D | cppc_sysfs.rst | 15 to request performance levels and to measure per-cpu delivered performance. 53 * feedback_ctrs : Includes both Reference and delivered performance counter. 55 Delivered counter ticks up proportional to processor's delivered performance. 65 Below describes the steps to compute the average performance delivered by
|
| /linux-6.15/Documentation/fb/ |
| H A D | metronomefb.rst | 16 which is then delivered to the AMLCD interface by a host specific method. 23 Metronomefb requires waveform information which is delivered via the AMLCD 25 be delivered from userspace via the firmware class interface. The waveform file
|
| /linux-6.15/Documentation/arch/powerpc/ |
| H A D | pmu-ebb.rst | 29 When a PMU EBB occurs it is delivered to the currently running process. As such 35 EBBs will ever be delivered. 40 delivered to the first process. It's not clear if this is actually useful. 43 When the PMU is configured for EBBs, all PMU interrupts are delivered to the 110 meaningless. Because interrupts are being delivered to the user process the 119 no further PMU EBBs will be delivered.
|
| /linux-6.15/Documentation/virt/kvm/x86/ |
| H A D | msr.rst | 200 /* Used for 'page not present' events delivered via #PF */ 203 /* Used for 'page ready' events delivered via interrupt notification */ 212 cpl == 0. Bit 2 is 1 if asynchronous page faults are delivered to L1 as 218 'Page not present' events are currently always delivered as synthetic 228 next event can be delivered. 236 of these bytes is a token which was previously delivered in CR2 as 248 Note, previously, 'page ready' events were delivered via the same #PF 250 bit 3 (interrupt based delivery) is not set APF events are not delivered. 253 not be delivered. 255 Currently 'page ready' APF events will be always delivered on the
|
| /linux-6.15/Documentation/virt/kvm/devices/ |
| H A D | xics.rst | 58 delivered, and 255 is the lowest priority. 75 priority of 255 will never be delivered. 84 This bit is set to 1 if the interrupt is masked (cannot be delivered
|
| /linux-6.15/net/bridge/ |
| H A D | br_forward.c | 326 goto delivered; in br_multicast_flood() 331 goto delivered; in br_multicast_flood() 342 delivered: in br_multicast_flood()
|
| /linux-6.15/drivers/i2c/busses/ |
| H A D | i2c-imx-lpi2c.c | 178 unsigned int delivered; member 429 remaining = lpi2c_imx->msglen - lpi2c_imx->delivered; in lpi2c_imx_set_rx_watermark() 446 if (lpi2c_imx->delivered == lpi2c_imx->msglen) in lpi2c_imx_write_txfifo() 449 data = lpi2c_imx->tx_buf[lpi2c_imx->delivered++]; in lpi2c_imx_write_txfifo() 454 if (lpi2c_imx->delivered < lpi2c_imx->msglen) in lpi2c_imx_write_txfifo() 470 lpi2c_imx->rx_buf[lpi2c_imx->delivered++] = data & 0xff; in lpi2c_imx_read_rxfifo() 482 remaining = lpi2c_imx->msglen - lpi2c_imx->delivered; in lpi2c_imx_read_rxfifo() 498 } else if (!(lpi2c_imx->delivered & 0xff)) { in lpi2c_imx_read_rxfifo() 972 lpi2c_imx->delivered = 0; in lpi2c_imx_xfer()
|
| /linux-6.15/Documentation/core-api/irq/ |
| H A D | irq-affinity.rst | 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-6.15/samples/bpf/ |
| H A D | tcp_dumpstats_kern.c | 63 tcp_sk->dsack_dups, tcp_sk->delivered); in _sockops()
|
| /linux-6.15/Documentation/filesystems/ |
| H A D | dnotify.rst | 13 being delivered using signals. 32 By default, SIGIO will be delivered to the process and no other useful
|
| /linux-6.15/Documentation/tee/ |
| H A D | op-tee.rst | 77 1. Synchronous notifications delivered with ``OPTEE_RPC_CMD_NOTIFICATION`` 79 2. Asynchronous notifications delivered with a combination of a non-secure 88 An asynchronous notification is delivered via a non-secure edge-triggered
|
| /linux-6.15/Documentation/devicetree/bindings/leds/irled/ |
| H A D | ir-spi-led.yaml | 14 is delivered through that.
|
| /linux-6.15/Documentation/devicetree/bindings/iio/pressure/ |
| H A D | honeywell,mprls0025pa.yaml | 31 The transfer function defines the ranges of numerical values delivered by the 62 Transfer function which defines the range of valid values delivered by the
|
| /linux-6.15/Documentation/bpf/ |
| H A D | prog_sk_lookup.rst | 9 delivered locally. 49 Incoming traffic to established (TCP) and connected (UDP) sockets is delivered
|
| /linux-6.15/drivers/acpi/ |
| H A D | cppc_acpi.c | 197 fb_ctrs.reference, fb_ctrs.delivered); in show_feedback_ctrs() 1414 u64 delivered, reference, ref_perf, ctr_wrap_time; in cppc_get_perf_ctrs() local 1451 cpc_read(cpunum, delivered_reg, &delivered); in cppc_get_perf_ctrs() 1464 if (!delivered || !reference || !ref_perf) { in cppc_get_perf_ctrs() 1469 perf_fb_ctrs->delivered = delivered; in cppc_get_perf_ctrs()
|
| /linux-6.15/tools/testing/selftests/net/packetdrill/ |
| H A D | tcp_slow_start_slow-start-fq-ack-per-2pkt.pkt | 52 // remaining packets are delivered at a constant rate.
|
| /linux-6.15/Documentation/networking/devlink/ |
| H A D | i40e.rst | 50 a fix is delivered as a patch against an older base Option ROM.
|