Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/skywalk/nexus/flowswitch/flow/
H A Dflow_agg.c1609 struct pktq *rx_pkts, uint32_t rx_bytes, bool is_mbuf) in flow_rx_agg_channel() argument
1631 KPKTQ_LEN(rx_pkts)); in flow_rx_agg_channel()
1632 pp_drop_pktq(rx_pkts, fsw->fsw_ifp, DROPTAP_FLAG_DIR_IN, in flow_rx_agg_channel()
1660 SK_DF(logflags, "Rx input queue len %u", KPKTQ_LEN(rx_pkts)); in flow_rx_agg_channel()
1671 bh_cnt = estimate_buf_cnt(fe, rx_bytes, KPKTQ_LEN(rx_pkts), in flow_rx_agg_channel()
1682 bh_cnt_tmp = bh_cnt = MIN(KPKTQ_LEN(rx_pkts), MAX_BUFLET_COUNT); in flow_rx_agg_channel()
1693 KPKTQ_FOREACH_SAFE(pkt, rx_pkts, tpkt) { in flow_rx_agg_channel()
1715 KPKTQ_REMOVE(rx_pkts, pkt); in flow_rx_agg_channel()
1797 tmp = estimate_buf_cnt(fe, rx_bytes, KPKTQ_LEN(rx_pkts), in flow_rx_agg_channel()
1947 KPKTQ_FINI(rx_pkts); in flow_rx_agg_channel()
[all …]
H A Dflow_var.h1040 struct pktq *rx_pkts, uint32_t rx_bytes, struct mbufq *host_mq,
/xnu-12377.1.9/bsd/skywalk/nexus/flowswitch/
H A Dfsw_dp.c1814 struct pktq *rx_pkts, uint32_t rx_bytes, struct mbufq *host_mq, in dp_flow_rx_process() argument
1824 uint32_t n_pkts = KPKTQ_LEN(rx_pkts); in dp_flow_rx_process()
1839 fsw_snoop_and_dequeue(fe, &dropped_pkts, rx_pkts, true); in dp_flow_rx_process()
1853 fsw_host_rx_enqueue_mbq(fsw, rx_pkts, host_mq); in dp_flow_rx_process()
1861 fsw_snoop_and_dequeue(fe, &dropped_pkts, rx_pkts, true); in dp_flow_rx_process()
1869 fsw_snoop(fsw, fe, rx_pkts, true); in dp_flow_rx_process()
1878 KPKTQ_CONCAT(&dropped_pkts, rx_pkts); in dp_flow_rx_process()
1898 KPKTQ_CONCAT(&dropped_pkts, rx_pkts); in dp_flow_rx_process()
1910 KPKTQ_FOREACH_SAFE(pkt, rx_pkts, tpkt) { in dp_flow_rx_process()
1912 KPKTQ_REMOVE(rx_pkts, pkt); in dp_flow_rx_process()
[all …]
H A Dfsw_var.h168 struct flow_entry *fe, struct pktq *rx_pkts, uint32_t rx_bytes,