/kernel/linux/linux-5.10/include/trace/events/ |
D | xdp.h | 56 int sent, int drops, int err), 58 TP_ARGS(dev, sent, drops, err), 63 __field(int, drops) 71 __entry->drops = drops; 79 __entry->sent, __entry->drops, __entry->err) 179 TP_PROTO(int map_id, unsigned int processed, unsigned int drops, 182 TP_ARGS(map_id, processed, drops, sched, xdp_stats), 188 __field(unsigned int, drops) 200 __entry->drops = drops; 215 __entry->processed, __entry->drops, [all …]
|
/kernel/linux/linux-5.10/samples/bpf/ |
D | xdp_monitor_kern.c | 154 unsigned int drops; // offset:20; size:4; signed:0; member 172 rec->dropped += ctx->drops; in trace_xdp_cpumap_enqueue() 189 unsigned int drops; // offset:20; size:4; signed:0; member 204 rec->dropped += ctx->drops; in trace_xdp_cpumap_kthread() 228 int drops; // offset:20; size:4; signed:1; member 243 rec->dropped += ctx->drops; in trace_xdp_devmap_xmit() 253 if (ctx->drops < 0) in trace_xdp_devmap_xmit()
|
D | xdp_redirect_cpu_kern.c | 662 unsigned int drops; // offset:20; size:4; signed:0; member 680 rec->dropped += ctx->drops; in trace_xdp_cpumap_enqueue() 702 unsigned int drops; // offset:20; size:4; signed:0; member 720 rec->dropped += ctx->drops; in trace_xdp_cpumap_kthread()
|
/kernel/linux/linux-5.10/net/core/ |
D | gen_stats.c | 296 qstats->drops += qcpu->drops; in __gnet_stats_copy_queue_cpu() 312 qstats->drops = q->drops; in __gnet_stats_copy_queue() 345 d->tc_stats.drops = qstats.drops; in gnet_stats_copy_queue()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlxsw/ |
D | spectrum_qdisc.c | 63 u64 drops; member 318 u64 drops, u64 backlog, in mlxsw_sp_qdisc_update_stats() argument 325 drops -= stats_base->drops; in mlxsw_sp_qdisc_update_stats() 329 stats_ptr->qstats->drops += drops; in mlxsw_sp_qdisc_update_stats() 333 stats_base->drops += drops; in mlxsw_sp_qdisc_update_stats() 346 u64 drops = 0; in mlxsw_sp_qdisc_get_tc_stats() local 350 &drops, &backlog); in mlxsw_sp_qdisc_get_tc_stats() 352 tx_bytes, tx_packets, drops, backlog, in mlxsw_sp_qdisc_get_tc_stats() 415 stats_base->drops = red_base->prob_drop + red_base->pdrop; in mlxsw_sp_setup_tc_qdisc_red_clean_stats() 609 u64 drops = 0; in mlxsw_sp_setup_tc_qdisc_leaf_clean_stats() local [all …]
|
/kernel/linux/linux-5.10/kernel/bpf/ |
D | cpumap.c | 313 unsigned int drops = 0, sched = 0; in cpu_map_kthread_run() local 357 drops += nframes; in cpu_map_kthread_run() 376 drops++; in cpu_map_kthread_run() 379 trace_xdp_cpumap_kthread(rcpu->map_id, n, drops, sched, &stats); in cpu_map_kthread_run() 673 unsigned int processed = 0, drops = 0; in bq_flush_to_queue() local 690 drops++; in bq_flush_to_queue() 701 trace_xdp_cpumap_enqueue(rcpu->map_id, processed, drops, to_cpu); in bq_flush_to_queue()
|
D | devmap.c | 347 int sent = 0, drops = 0, err = 0; in bq_xmit_all() local 365 drops = bq->count - sent; in bq_xmit_all() 369 trace_xdp_devmap_xmit(bq->dev_rx, dev, sent, drops, err); in bq_xmit_all() 381 drops++; in bq_xmit_all()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnxt/ |
D | bnxt_xdp.c | 223 int drops = 0; in bnxt_xdp_xmit() local 241 drops++; in bnxt_xdp_xmit() 250 drops++; in bnxt_xdp_xmit() 262 return num_frames - drops; in bnxt_xdp_xmit()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
D | bench.c | 60 drops_per_sec = res->drops / 1000000.0 / (delta_ns / 1000000000.0); in hits_drops_report_progress() 77 drops_mean += res[i].drops / 1000000.0 / (0.0 + res_cnt); in hits_drops_report_final() 85 drops_stddev += (drops_mean - res[i].drops / 1000000.0) * in hits_drops_report_final() 86 (drops_mean - res[i].drops / 1000000.0) / in hits_drops_report_final()
|
D | bench.h | 35 long drops; member
|
/kernel/linux/linux-5.10/include/net/ |
D | flow_offload.h | 393 u64 drops; member 401 u64 drops, u64 lastused, in flow_stats_update() argument 406 flow_stats->drops += drops; in flow_stats_update()
|
D | act_api.h | 234 u64 drops, bool hw); 245 u64 packets, u64 drops, in tcf_action_stats_update() argument 252 a->ops->stats_update(a, bytes, packets, drops, lastuse, hw); in tcf_action_stats_update()
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/ |
D | gen_stats.h | 50 __u32 drops; member
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
D | gen_stats.h | 62 __u32 drops; member
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/ |
D | gen_stats.h | 39 __u32 drops; member
|
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/en/ |
D | xdp.c | 489 int drops = 0; in mlx5e_xdp_xmit() local 520 drops++; in mlx5e_xdp_xmit() 534 drops++; in mlx5e_xdp_xmit() 544 return n - drops; in mlx5e_xdp_xmit()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/benchs/ |
D | bench_ringbufs.c | 132 res->drops = atomic_swap(&ctx->skel->bss->dropped, 0); in ringbuf_libbpf_measure() 223 res->drops = atomic_swap(&ctx->skel->bss->dropped, 0); in ringbuf_custom_measure() 352 res->drops = atomic_swap(&ctx->skel->bss->dropped, 0); in perfbuf_measure()
|
D | run_bench_ringbufs.sh | 12 function drops() function
|
/kernel/linux/linux-5.10/drivers/net/ |
D | veth.c | 342 u64 packets, bytes, drops, xdp_tx_err, peer_tq_xdp_xmit_err; in veth_stats_rx() local 352 drops = stats->vs.rx_drops; in veth_stats_rx() 358 result->rx_drops += drops; in veth_stats_rx() 434 int i, ret = -ENXIO, drops = 0; in veth_xdp_xmit() local 466 drops++; in veth_xdp_xmit() 474 ret = n - drops; in veth_xdp_xmit() 477 rq->stats.vs.peer_tq_xdp_xmit += n - drops; in veth_xdp_xmit() 478 rq->stats.vs.peer_tq_xdp_xmit_err += drops; in veth_xdp_xmit()
|
/kernel/linux/linux-5.10/Documentation/ABI/testing/ |
D | sysfs-class-power-twl4030 | 15 when voltage drops.
|
/kernel/linux/linux-5.10/net/sched/ |
D | sch_skbprio.c | 101 q->qstats[prio].drops++; in skbprio_enqueue() 118 q->qstats[lp].drops++; in skbprio_enqueue()
|
D | sch_mqprio.c | 442 sch->qstats.drops += qdisc->qstats.drops; in mqprio_dump() 572 qstats.drops += qdisc->qstats.drops; in mqprio_dump_class_stats()
|
D | act_gact.c | 173 u64 drops, u64 lastuse, bool hw) in tcf_gact_stats_update() argument 180 action == TC_ACT_SHOT ? packets : drops, hw); in tcf_gact_stats_update()
|
/kernel/linux/linux-5.10/net/dcb/ |
D | Kconfig | 13 requirements (highly reliable, no drops vs. best effort vs. low
|
/kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/abm/ |
D | qdisc.c | 41 parent->drops += child->drops; in nfp_abm_stats_propagate() 469 qstats->drops += new->drops - old->drops; in nfp_abm_stats_calculate()
|