Home
last modified time | relevance | path

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

12345678

/Linux-v4.19/net/batman-adv/
Dsoft-interface.c217 goto dropped; in batadv_interface_tx()
238 goto dropped; in batadv_interface_tx()
244 goto dropped; in batadv_interface_tx()
256 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()
307 goto dropped; in batadv_interface_tx()
320 goto dropped; in batadv_interface_tx()
330 goto dropped; in batadv_interface_tx()
[all …]
Dfragmentation.c51 static void batadv_frag_clear_chain(struct hlist_head *head, bool dropped) in batadv_frag_clear_chain() argument
59 if (dropped) in batadv_frag_clear_chain()
267 bool dropped = false; in batadv_frag_merge_packets() local
284 dropped = true; in batadv_frag_merge_packets()
306 batadv_frag_clear_chain(chain, dropped); in batadv_frag_merge_packets()
Dsend.c482 bool dropped) in batadv_forw_packet_free() argument
484 if (dropped) in batadv_forw_packet_free()
872 bool dropped = false; in batadv_send_outstanding_bcast_packet() local
884 dropped = true; in batadv_send_outstanding_bcast_packet()
889 dropped = true; in batadv_send_outstanding_bcast_packet()
972 batadv_forw_packet_free(forw_packet, dropped); in batadv_send_outstanding_bcast_packet()
Ddistributed-arp-table.c1366 bool dropped = false; in batadv_dat_snoop_incoming_arp_reply() local
1396 dropped = true; in batadv_dat_snoop_incoming_arp_reply()
1416 dropped = true; in batadv_dat_snoop_incoming_arp_reply()
1423 dropped = !batadv_is_my_client(bat_priv, hw_dst, vid); in batadv_dat_snoop_incoming_arp_reply()
1428 dropped |= batadv_is_my_client(bat_priv, hw_src, vid); in batadv_dat_snoop_incoming_arp_reply()
1430 if (dropped) in batadv_dat_snoop_incoming_arp_reply()
1435 return dropped; in batadv_dat_snoop_incoming_arp_reply()
Dsend.h32 bool dropped);
/Linux-v4.19/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_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()
245 rec->dropped += ctx->drops; in trace_xdp_devmap_xmit()
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"
Dxdp_redirect_cpu_kern.c31 __u64 dropped; member
261 rec->dropped++; in xdp_prognum1_touch_data()
444 rec->dropped++; in xdp_prognum4_ddos_filter_pktgen()
604 rec->dropped += 1; in xdp_redirect_collect_stat()
646 rec->dropped += 1; in trace_xdp_exception()
677 rec->dropped += ctx->drops; in trace_xdp_cpumap_enqueue()
714 rec->dropped += ctx->drops; in trace_xdp_cpumap_kthread()
Dxdp_redirect_cpu_user.c116 __u64 dropped; member
154 rec->cpu[i].dropped = values[i].dropped; in map_collect_percpu()
155 sum_dropped += values[i].dropped; in map_collect_percpu()
160 rec->total.dropped = sum_dropped; in map_collect_percpu()
245 packets = r->dropped - p->dropped; in calc_drop_pps()
Dxdp_monitor_user.c118 __u64 dropped; member
171 rec->cpu[i].dropped = values[i].dropped; in map_collect_record()
172 sum_dropped += values[i].dropped; in map_collect_record()
179 rec->total.dropped = sum_dropped; in map_collect_record()
264 packets = r->dropped - p->dropped; in calc_drop()
/Linux-v4.19/net/sched/
Dsch_sfq.c353 unsigned int hash, dropped; in sfq_enqueue() local
469 dropped = sfq_drop(sch, to_free); in sfq_enqueue()
474 qdisc_tree_reduce_backlog(sch, 0, dropped - qdisc_pkt_len(skb)); in sfq_enqueue()
479 qdisc_tree_reduce_backlog(sch, 1, dropped); in sfq_enqueue()
546 int dropped = 0; in sfq_rehash() local
578 dropped++; in sfq_rehash()
605 sch->q.qlen -= dropped; in sfq_rehash()
606 qdisc_tree_reduce_backlog(sch, dropped, drop_len); in sfq_rehash()
630 unsigned int qlen, dropped = 0; in sfq_change() local
684 dropped += sfq_drop(sch, &to_free); in sfq_change()
[all …]
Dsch_pie.c65 u32 dropped; /* packets dropped due to pie_action */ member
170 q->stats.dropped++; in pie_qdisc_enqueue()
189 unsigned int qlen, dropped = 0; in pie_change() local
238 dropped += qdisc_pkt_len(skb); in pie_change()
242 qdisc_tree_reduce_backlog(sch, qlen - sch->q.qlen, dropped); in pie_change()
508 .dropped = q->stats.dropped, in pie_dump_stats()
Dsch_codel.c138 unsigned int qlen, dropped = 0; in codel_change() local
178 dropped += qdisc_pkt_len(skb); in codel_change()
182 qdisc_tree_reduce_backlog(sch, qlen - sch->q.qlen, dropped); in codel_change()
Dsch_fq_codel.c52 u32 dropped; /* number of drops (or ECN marks) on this flow */ member
180 flow->dropped += i; in fq_codel_drop()
218 flow->dropped = 0; in fq_codel_enqueue()
317 flow->dropped += q->cstats.drop_count - prev_drop_count; in fq_codel_dequeue()
318 flow->dropped += q->cstats.ecn_mark - prev_ecn_mark; in fq_codel_dequeue()
667 qs.drops = flow->dropped; in fq_codel_dump_class_stats()
Dsch_choke.c391 unsigned dropped = 0; in choke_change() local
403 dropped += qdisc_pkt_len(skb); in choke_change()
408 qdisc_tree_reduce_backlog(sch, oqlen - sch->q.qlen, dropped); in choke_change()
/Linux-v4.19/Documentation/ABI/testing/
Dsysfs-class-net-statistics50 but dropped, that are not forwarded to the upper layers for
153 Indicates the number of packets dropped during transmission.
155 dropped.
164 why the packets were dropped.
173 packets were dropped.
182 reasons as to why the packets were dropped.
/Linux-v4.19/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()
/Linux-v4.19/Documentation/media/uapi/v4l/
Ddev-event.rst40 full, then the oldest event in that queue will be dropped.
43 the oldest event that is about to be dropped will be merged with the
/Linux-v4.19/net/mac80211/
Dstatus.c470 bool acked, bool dropped) in ieee80211_report_ack_skb() argument
505 } else if (dropped) { in ieee80211_report_ack_skb()
514 struct sk_buff *skb, bool dropped) in ieee80211_report_used_skb() argument
520 if (dropped) in ieee80211_report_used_skb()
550 ieee80211_report_ack_skb(local, info, acked, dropped); in ieee80211_report_used_skb()
553 if (!dropped && skb->destructor) { in ieee80211_report_used_skb()
/Linux-v4.19/Documentation/networking/
Dcops.txt44 RX packets:0 errors:0 dropped:0 overruns:0 frame:0
45 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 coll:0
/Linux-v4.19/include/trace/events/
Djbd2.h294 __field( __u32, dropped )
303 __entry->dropped = stats->cs_dropped;
310 __entry->forced_to_close, __entry->written, __entry->dropped)
/Linux-v4.19/Documentation/hwmon/
Dgl518sm37 temperature is above the over temperature limit, and has not yet dropped
43 triggered if the rotation speed has dropped below a programmable limit. In
/Linux-v4.19/drivers/gpu/drm/msm/adreno/
Da6xx_hfi.h22 u32 dropped; member
/Linux-v4.19/drivers/net/wireless/ti/wl12xx/
Ddebugfs.c38 WL12XX_DEBUGFS_FWSTATS_FILE(rx, dropped, "%u");
148 DEBUGFS_FWSTATS_ADD(rx, dropped); in wl12xx_debugfs_add_files()

12345678