/Linux-v4.19/net/batman-adv/ |
D | soft-interface.c | 217 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 …]
|
D | fragmentation.c | 51 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()
|
D | send.c | 482 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()
|
D | distributed-arp-table.c | 1366 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()
|
D | send.h | 32 bool dropped);
|
/Linux-v4.19/samples/bpf/ |
D | test_cls_bpf.sh | 7 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"
|
D | xdp_monitor_kern.c | 126 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()
|
D | test_cgrp2_tc.sh | 102 local dropped=$($TC -s qdisc show dev $HOST_IFC | tail -3 | \ 104 if [[ $dropped -eq 0 ]] 109 echo "Successfully filtered $dropped packets"
|
D | xdp_redirect_cpu_kern.c | 31 __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()
|
D | xdp_redirect_cpu_user.c | 116 __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()
|
D | xdp_monitor_user.c | 118 __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/ |
D | sch_sfq.c | 353 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 …]
|
D | sch_pie.c | 65 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()
|
D | sch_codel.c | 138 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()
|
D | sch_fq_codel.c | 52 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()
|
D | sch_choke.c | 391 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/ |
D | sysfs-class-net-statistics | 50 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/ |
D | isight.c | 141 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/ |
D | dev-event.rst | 40 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/ |
D | status.c | 470 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/ |
D | cops.txt | 44 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/ |
D | jbd2.h | 294 __field( __u32, dropped ) 303 __entry->dropped = stats->cs_dropped; 310 __entry->forced_to_close, __entry->written, __entry->dropped)
|
/Linux-v4.19/Documentation/hwmon/ |
D | gl518sm | 37 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/ |
D | a6xx_hfi.h | 22 u32 dropped; member
|
/Linux-v4.19/drivers/net/wireless/ti/wl12xx/ |
D | debugfs.c | 38 WL12XX_DEBUGFS_FWSTATS_FILE(rx, dropped, "%u"); 148 DEBUGFS_FWSTATS_ADD(rx, dropped); in wl12xx_debugfs_add_files()
|