Home
last modified time | relevance | path

Searched refs:dropped (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/linux-6.12.1/net/batman-adv/
Dsoft-interface.c207 goto dropped; in batadv_interface_tx()
223 goto dropped; in batadv_interface_tx()
235 goto dropped; in batadv_interface_tx()
241 goto dropped; in batadv_interface_tx()
253 goto dropped; in batadv_interface_tx()
266 goto dropped; in batadv_interface_tx()
269 goto dropped; in batadv_interface_tx()
300 goto dropped; in batadv_interface_tx()
316 goto dropped; in batadv_interface_tx()
327 goto dropped; in batadv_interface_tx()
[all …]
Dfragmentation.c37 static void batadv_frag_clear_chain(struct hlist_head *head, bool dropped) in batadv_frag_clear_chain() argument
45 if (dropped) in batadv_frag_clear_chain()
253 bool dropped = false; in batadv_frag_merge_packets() local
270 dropped = true; in batadv_frag_merge_packets()
292 batadv_frag_clear_chain(chain, dropped); in batadv_frag_merge_packets()
Dsend.c466 bool dropped) in batadv_forw_packet_free() argument
468 if (dropped) in batadv_forw_packet_free()
1058 bool dropped = false; in batadv_send_outstanding_bcast_packet() local
1066 dropped = true; in batadv_send_outstanding_bcast_packet()
1071 dropped = true; in batadv_send_outstanding_bcast_packet()
1093 batadv_forw_packet_free(forw_packet, dropped); in batadv_send_outstanding_bcast_packet()
/linux-6.12.1/drivers/thunderbolt/
Dtrace.h164 TP_PROTO(int index, u8 type, const void *data, size_t size, bool dropped),
165 TP_ARGS(index, type, data, size, dropped),
171 __field(bool, dropped)
178 __entry->dropped = dropped;
181 show_type_name(__entry->type), __entry->dropped,
/linux-6.12.1/tools/testing/selftests/bpf/progs/
Dringbuf_bench.c19 long dropped __attribute__((aligned(128))) = 0; variable
45 __sync_add_and_fetch(&dropped, 1); in bench_ringbuf()
57 __sync_add_and_fetch(&dropped, 1); in bench_ringbuf()
Dperfbuf_bench.c20 long dropped __attribute__((aligned(128))) = 0; variable
30 __sync_add_and_fetch(&dropped, 1); in bench_perfbuf()
Dtest_ringbuf.c29 long dropped = 0; variable
50 __sync_fetch_and_add(&dropped, 1); in test_ringbuf()
Dtest_ringbuf_multi.c53 long dropped = 0; variable
74 dropped += 1; in test_ringbuf()
/linux-6.12.1/drivers/net/wireless/silabs/wfx/
Dqueue.c94 struct sk_buff_head *skb_queue, struct sk_buff_head *dropped) in __wfx_tx_queue_drop() argument
101 skb_queue_head(dropped, skb); in __wfx_tx_queue_drop()
107 struct sk_buff_head *dropped) in wfx_tx_queue_drop() argument
109 __wfx_tx_queue_drop(wvif, &queue->normal, dropped); in wfx_tx_queue_drop()
110 __wfx_tx_queue_drop(wvif, &queue->cab, dropped); in wfx_tx_queue_drop()
111 __wfx_tx_queue_drop(wvif, &queue->offchan, dropped); in wfx_tx_queue_drop()
128 void wfx_pending_drop(struct wfx_dev *wdev, struct sk_buff_head *dropped) in wfx_pending_drop() argument
143 skb_queue_head(dropped, skb); in wfx_pending_drop()
Dqueue.h38 struct sk_buff_head *dropped);
41 void wfx_pending_drop(struct wfx_dev *wdev, struct sk_buff_head *dropped);
Ddata_tx.c546 static void wfx_flush_vif(struct wfx_vif *wvif, u32 queues, struct sk_buff_head *dropped) in wfx_flush_vif() argument
555 if (dropped) in wfx_flush_vif()
556 wfx_tx_queue_drop(wvif, queue, dropped); in wfx_flush_vif()
573 struct sk_buff_head dropped; in wfx_flush() local
577 skb_queue_head_init(&dropped); in wfx_flush()
580 wfx_flush_vif(wvif, queues, drop ? &dropped : NULL); in wfx_flush()
584 wfx_flush_vif(wvif, queues, drop ? &dropped : NULL); in wfx_flush()
588 wfx_pending_drop(wdev, &dropped); in wfx_flush()
589 while ((skb = skb_dequeue(&dropped)) != NULL) { in wfx_flush()
/linux-6.12.1/samples/bpf/
Dtest_cls_bpf.sh7 local dropped=`tc -s qdisc show dev $IFC | tail -3 | awk '/drop/{print $7}'`
8 if [ "$dropped" == "0," ]; then
11 echo "Successfully filtered " $dropped " packets"
Dxdp_sample.bpf.c83 NO_TEAR_INC(rec->dropped); in xdp_redirect_collect_stat()
143 NO_TEAR_ADD(rec->dropped, drops); in BPF_PROG()
170 NO_TEAR_ADD(rec->dropped, drops); in BPF_PROG()
200 NO_TEAR_INC(rec->dropped); in BPF_PROG()
226 NO_TEAR_ADD(rec->dropped, drops); in BPF_PROG()
261 NO_TEAR_ADD(rec->dropped, drops); in BPF_PROG()
Dtest_cgrp2_tc.sh104 local dropped=$($TC -s qdisc show dev $HOST_IFC | tail -3 | \
106 if [[ $dropped -eq 0 ]]
111 echo "Successfully filtered $dropped packets"
Dxdp_sample_shared.h7 size_t dropped; member
/linux-6.12.1/Documentation/networking/devlink/
Ddevlink-trap.rst91 * ``drop``: Trapped packets were dropped by the underlying device. Packets
115 * ``drop``: The packet is dropped by the underlying device and a copy is not
239 routed and instead dropped
251 - Traps packets dropped during processing of ingress flow action drop
254 - Traps packets dropped during processing of egress flow action drop
410 - Traps packets dropped due to the RED (Random Early Detection) algorithm
414 - Traps packets dropped due to an error in the VXLAN header parsing which
418 - Traps packets dropped due to an error in the LLC+SNAP header parsing
421 - Traps packets dropped due to an error in the VLAN header parsing. Could
425 - Traps packets dropped due to an error in the PPPoE+PPP header parsing.
[all …]
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/
Dringbuf.c71 skel->bss->dropped = 0; in trigger_samples()
272 CHECK(skel->bss->dropped != 0, "err_dropped", "exp %ld, got %ld\n", in ringbuf_subtest()
273 0L, skel->bss->dropped); in ringbuf_subtest()
310 CHECK(skel->bss->dropped != 0, "err_dropped", "exp %ld, got %ld\n", in ringbuf_subtest()
311 0L, skel->bss->dropped); in ringbuf_subtest()
336 skel->bss->dropped = 0; in ringbuf_subtest()
371 CHECK(skel->bss->dropped != 0, "err_dropped", "exp %ld, got %ld\n", in ringbuf_subtest()
372 0L, skel->bss->dropped); in ringbuf_subtest()
Dringbuf_multi.c135 CHECK(skel->bss->dropped != 0, "err_dropped", "exp %ld, got %ld\n", in test_ringbuf_multi()
136 0L, skel->bss->dropped); in test_ringbuf_multi()
/linux-6.12.1/kernel/printk/
Dnbcon.c950 unsigned long dropped; in nbcon_emit_next_record() local
986 con_dropped = data_race(READ_ONCE(con->dropped)); in nbcon_emit_next_record()
988 dropped = con_dropped + pmsg.dropped; in nbcon_emit_next_record()
989 if (dropped && !is_extended) in nbcon_emit_next_record()
990 console_prepend_dropped(&pmsg, dropped); in nbcon_emit_next_record()
1049 dropped = 0; in nbcon_emit_next_record()
1060 if (dropped != con_dropped) { in nbcon_emit_next_record()
1062 WRITE_ONCE(con->dropped, dropped); in nbcon_emit_next_record()
/linux-6.12.1/net/core/
Ddrop_monitor.c60 u64_stats_t dropped; member
536 u64_stats_inc(&data->stats.dropped); in net_dm_packet_trace_kfree_skb_hit()
1007 u64_stats_inc(&hw_data->stats.dropped); in net_dm_hw_trap_packet_probe()
1450 u64 dropped; in net_dm_stats_read() local
1454 dropped = u64_stats_read(&cpu_stats->dropped); in net_dm_stats_read()
1457 u64_stats_add(&stats->dropped, dropped); in net_dm_stats_read()
1473 u64_stats_read(&stats.dropped), NET_DM_ATTR_PAD)) in net_dm_stats_put()
1494 u64 dropped; in net_dm_hw_stats_read() local
1498 dropped = u64_stats_read(&cpu_stats->dropped); in net_dm_hw_stats_read()
1501 u64_stats_add(&stats->dropped, dropped); in net_dm_hw_stats_read()
[all …]
/linux-6.12.1/Documentation/ABI/testing/
Dsysfs-class-net-statistics50 but dropped, that are not forwarded to the upper layers for
104 Indicates the number of received packets that were dropped on
169 Indicates the number of packets dropped during transmission.
171 dropped.
180 why the packets were dropped.
189 packets were dropped.
198 reasons as to why the packets were dropped.
/linux-6.12.1/net/sched/
Dsch_sfq.c349 unsigned int hash, dropped; in sfq_enqueue() local
465 dropped = sfq_drop(sch, to_free); in sfq_enqueue()
470 qdisc_tree_reduce_backlog(sch, 0, dropped - qdisc_pkt_len(skb)); in sfq_enqueue()
475 qdisc_tree_reduce_backlog(sch, 1, dropped); in sfq_enqueue()
542 int dropped = 0; in sfq_rehash() local
574 dropped++; in sfq_rehash()
601 sch->q.qlen -= dropped; in sfq_rehash()
602 qdisc_tree_reduce_backlog(sch, dropped, drop_len); in sfq_rehash()
636 unsigned int qlen, dropped = 0; in sfq_change() local
699 dropped += sfq_drop(sch, &to_free); in sfq_change()
[all …]
Dsch_pie.c122 q->stats.dropped++; in pie_qdisc_enqueue()
143 unsigned int qlen, dropped = 0; in pie_change() local
197 dropped += qdisc_pkt_len(skb); in pie_change()
201 qdisc_tree_reduce_backlog(sch, qlen - sch->q.qlen, dropped); in pie_change()
505 .dropped = q->stats.dropped, in pie_dump_stats()
Dsch_codel.c108 unsigned int qlen, dropped = 0; in codel_change() local
151 dropped += qdisc_pkt_len(skb); in codel_change()
155 qdisc_tree_reduce_backlog(sch, qlen - sch->q.qlen, dropped); in codel_change()
/linux-6.12.1/sound/firewire/
Disight.c141 u32 dropped; in isight_dropped_samples() local
148 dropped = total - isight->total_samples; in isight_dropped_samples()
149 if (dropped < runtime->buffer_size) { in isight_dropped_samples()
150 if (isight->buffer_pointer + dropped <= runtime->buffer_size) { in isight_dropped_samples()
152 0, dropped * 4); in isight_dropped_samples()
157 memset(runtime->dma_area, 0, (dropped - count1) * 4); in isight_dropped_samples()
159 isight_update_pointers(isight, dropped); in isight_dropped_samples()

12345678910>>...12