Home
last modified time | relevance | path

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

12345678910>>...15

/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dringbuf.c66 skel->bss->dropped = 0; in trigger_samples()
139 CHECK(skel->bss->dropped != 0, "err_dropped", "exp %ld, got %ld\n", in test_ringbuf()
140 0L, skel->bss->dropped); in test_ringbuf()
177 CHECK(skel->bss->dropped != 0, "err_dropped", "exp %ld, got %ld\n", in test_ringbuf()
178 0L, skel->bss->dropped); in test_ringbuf()
203 skel->bss->dropped = 0; in test_ringbuf()
234 CHECK(skel->bss->dropped != 0, "err_dropped", "exp %ld, got %ld\n", in test_ringbuf()
235 0L, skel->bss->dropped); in test_ringbuf()
H A Dringbuf_multi.c92 CHECK(skel->bss->dropped != 0, "err_dropped", "exp %ld, got %ld\n", in test_ringbuf_multi()
93 0L, skel->bss->dropped); in test_ringbuf_multi()
/OK3568_Linux_fs/kernel/net/batman-adv/
H A Dsoft-interface.c208 goto dropped; in batadv_interface_tx()
224 goto dropped; in batadv_interface_tx()
236 goto dropped; in batadv_interface_tx()
242 goto dropped; in batadv_interface_tx()
254 goto dropped; in batadv_interface_tx()
267 goto dropped; in batadv_interface_tx()
270 goto dropped; in batadv_interface_tx()
301 goto dropped; in batadv_interface_tx()
309 goto dropped; in batadv_interface_tx()
323 goto dropped; in batadv_interface_tx()
[all …]
H A Dfragmentation.c39 static void batadv_frag_clear_chain(struct hlist_head *head, bool dropped) in batadv_frag_clear_chain() argument
47 if (dropped) in batadv_frag_clear_chain()
255 bool dropped = false; in batadv_frag_merge_packets() local
272 dropped = true; in batadv_frag_merge_packets()
294 batadv_frag_clear_chain(chain, dropped); in batadv_frag_merge_packets()
H A Dsend.c470 bool dropped) in batadv_forw_packet_free() argument
472 if (dropped) in batadv_forw_packet_free()
860 bool dropped = false; in batadv_send_outstanding_bcast_packet() local
872 dropped = true; in batadv_send_outstanding_bcast_packet()
877 dropped = true; in batadv_send_outstanding_bcast_packet()
960 batadv_forw_packet_free(forw_packet, dropped); in batadv_send_outstanding_bcast_packet()
/OK3568_Linux_fs/external/xserver/mi/
H A Dmieq.c84 size_t dropped; /* counter for number of consecutive dropped events */ member
221 miEventQueue.dropped++; in mieqEnqueue()
222 if (miEventQueue.dropped == 1) { in mieqEnqueue()
230 else if (miEventQueue.dropped % QUEUE_DROP_BACKTRACE_FREQUENCY == 0 && in mieqEnqueue()
231 miEventQueue.dropped / QUEUE_DROP_BACKTRACE_FREQUENCY <= in mieqEnqueue()
234 "dropped.\n", miEventQueue.dropped); in mieqEnqueue()
235 if (miEventQueue.dropped / QUEUE_DROP_BACKTRACE_FREQUENCY == in mieqEnqueue()
520 if (miEventQueue.dropped) { in mieqProcessInputEvents()
522 (unsigned long) miEventQueue.dropped); in mieqProcessInputEvents()
525 miEventQueue.dropped = 0; in mieqProcessInputEvents()
/OK3568_Linux_fs/kernel/Documentation/networking/devlink/
H A 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 …]
/OK3568_Linux_fs/kernel/drivers/staging/wfx/
H A Dqueue.c94 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->cab, dropped); in wfx_tx_queue_drop()
110 __wfx_tx_queue_drop(wvif, &queue->normal, dropped); in wfx_tx_queue_drop()
125 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()
H A Ddata_tx.c540 struct sk_buff_head *dropped) in wfx_flush_vif() argument
549 if (dropped) in wfx_flush_vif()
550 wfx_tx_queue_drop(wvif, queue, dropped); in wfx_flush_vif()
570 struct sk_buff_head dropped; in wfx_flush() local
575 skb_queue_head_init(&dropped); in wfx_flush()
578 wfx_flush_vif(wvif, queues, drop ? &dropped : NULL); in wfx_flush()
582 wfx_flush_vif(wvif, queues, drop ? &dropped : NULL); in wfx_flush()
586 wfx_pending_drop(wdev, &dropped); in wfx_flush()
587 while ((skb = skb_dequeue(&dropped)) != NULL) { in wfx_flush()
H A Dqueue.h37 struct sk_buff_head *dropped);
40 void wfx_pending_drop(struct wfx_dev *wdev, struct sk_buff_head *dropped);
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/
H A Dringbuf_bench.c18 long dropped __attribute__((aligned(128))) = 0; variable
44 __sync_add_and_fetch(&dropped, 1); in bench_ringbuf()
56 __sync_add_and_fetch(&dropped, 1); in bench_ringbuf()
H A Dperfbuf_bench.c19 long dropped __attribute__((aligned(128))) = 0; variable
30 __sync_add_and_fetch(&dropped, 1); in bench_perfbuf()
H A Dtest_ringbuf_multi.c41 long dropped = 0; variable
63 dropped += 1; in test_ringbuf()
H A Dtest_ringbuf.c29 long dropped = 0; variable
51 __sync_fetch_and_add(&dropped, 1); in test_ringbuf()
/OK3568_Linux_fs/kernel/samples/bpf/
H A 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"
H A Dxdp_monitor_kern.c126 u64 dropped; member
172 rec->dropped += ctx->drops; in trace_xdp_cpumap_enqueue()
204 rec->dropped += ctx->drops; in trace_xdp_cpumap_kthread()
243 rec->dropped += ctx->drops; in trace_xdp_devmap_xmit()
H A Dtest_cgrp2_tc.sh102 local dropped=$($TC -s qdisc show dev $HOST_IFC | tail -3 | \
104 if [[ $dropped -eq 0 ]]
109 echo "Successfully filtered $dropped packets"
H A Dxdp_redirect_cpu_kern.c31 __u64 dropped; member
264 rec->dropped++; in xdp_prognum1_touch_data()
447 rec->dropped++; in xdp_prognum4_ddos_filter_pktgen()
607 rec->dropped += 1; in xdp_redirect_collect_stat()
649 rec->dropped += 1; in trace_xdp_exception()
680 rec->dropped += ctx->drops; in trace_xdp_cpumap_enqueue()
720 rec->dropped += ctx->drops; in trace_xdp_cpumap_kthread()
H A Dxdp_monitor_user.c153 __u64 dropped; member
206 rec->cpu[i].dropped = values[i].dropped; in map_collect_record()
207 sum_dropped += values[i].dropped; in map_collect_record()
214 rec->total.dropped = sum_dropped; in map_collect_record()
299 packets = r->dropped - p->dropped; in calc_drop()
/OK3568_Linux_fs/kernel/net/core/
H A Ddrop_monitor.c59 u64 dropped; member
533 data->stats.dropped++; in net_dm_packet_trace_kfree_skb_hit()
980 hw_data->stats.dropped++; in net_dm_hw_trap_packet_probe()
1431 u64 dropped; in net_dm_stats_read() local
1435 dropped = cpu_stats->dropped; in net_dm_stats_read()
1438 stats->dropped += dropped; in net_dm_stats_read()
1454 stats.dropped, NET_DM_ATTR_PAD)) in net_dm_stats_put()
1475 u64 dropped; in net_dm_hw_stats_read() local
1479 dropped = cpu_stats->dropped; in net_dm_hw_stats_read()
1482 stats->dropped += dropped; in net_dm_hw_stats_read()
[all …]
/OK3568_Linux_fs/buildroot/package/python-pyqt5/
H A D0004-drop-qttest-qtestmouse-waitforevents.patch3 This method was dropped in Qt 5.11:
10 dropped it unconditionally. This can be verified by diffing PyQt 5.10
17 This patch can be dropped when PyQt5 is bumped to its 5.11 version.
/OK3568_Linux_fs/kernel/net/sched/
H A 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()
628 unsigned int qlen, dropped = 0; in sfq_change() local
691 dropped += sfq_drop(sch, &to_free); in sfq_change()
[all …]
H A Dsch_pie.c122 q->stats.dropped++; in pie_qdisc_enqueue()
143 unsigned int qlen, dropped = 0; in pie_change() local
198 dropped += qdisc_pkt_len(skb); in pie_change()
202 qdisc_tree_reduce_backlog(sch, qlen - sch->q.qlen, dropped); in pie_change()
502 .dropped = q->stats.dropped, in pie_dump_stats()
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A 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.
/OK3568_Linux_fs/kernel/sound/firewire/
H A 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>>...15