Home
last modified time | relevance | path

Searched refs:pkt_count (Results 1 – 4 of 4) sorted by relevance

/xnu-12377.81.4/bsd/skywalk/nexus/netif/
H A Dnx_netif_vp.c496 uint32_t pkt_count = 0, byte_count = 0; in netif_vp_send_pkt_chain_low_latency() local
527 nif->nif_nx, drvq->nq_ctx, &ph, &pkt_count, &byte_count); in netif_vp_send_pkt_chain_low_latency()
529 STATS_ADD(nifs, NETIF_STATS_VP_LL_SENT, pkt_count); in netif_vp_send_pkt_chain_low_latency()
531 uint32_t, pkt_count, uint32_t, byte_count); in netif_vp_send_pkt_chain_low_latency()
533 kern_netif_increment_queue_stats(drvq, pkt_count, byte_count); in netif_vp_send_pkt_chain_low_latency()
H A Dnx_netif.c4409 uint32_t pkt_count, uint32_t byte_count) argument
4414 os_atomic_add(&ifp->if_data.ifi_opackets, pkt_count, relaxed);
4417 os_atomic_add(&ifp->if_data.ifi_ipackets, pkt_count, relaxed);
4433 if (__improbable(pkt_count == 0)) {
4439 stats->nq_total_pkts += pkt_count;
4440 if (pkt_count > stats->nq_max_pkts) {
4441 stats->nq_max_pkts = pkt_count;
4444 pkt_count < stats->nq_min_pkts) {
4445 stats->nq_min_pkts = pkt_count;
4481 queue->nq_accumulated_pkts += pkt_count;
/xnu-12377.81.4/bsd/net/pktsched/
H A Dpktsched_netem.c1086 int pkt_count = 1; in nlc_enqueue() local
1114 pkt_count++; in nlc_enqueue()
1132 } while (--pkt_count > 0 && in nlc_enqueue()
/xnu-12377.81.4/bsd/skywalk/nexus/
H A Dos_nexus.h882 uint32_t *pkt_count, uint32_t *byte_count);