Home
last modified time | relevance | path

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

/xnu-12377.81.4/bsd/skywalk/nexus/flowswitch/flow/
H A Dflow_agg.c1611 struct pktq *rx_pkts, uint32_t rx_bytes, bool is_mbuf) in flow_rx_agg_channel() argument
1633 KPKTQ_LEN(rx_pkts)); in flow_rx_agg_channel()
1634 pp_drop_pktq(rx_pkts, fsw->fsw_ifp, DROPTAP_FLAG_DIR_IN, in flow_rx_agg_channel()
1662 SK_DF(logflags, "Rx input queue len %u", KPKTQ_LEN(rx_pkts)); in flow_rx_agg_channel()
1673 bh_cnt = estimate_buf_cnt(fe, rx_bytes, KPKTQ_LEN(rx_pkts), in flow_rx_agg_channel()
1684 bh_cnt_tmp = bh_cnt = MIN(KPKTQ_LEN(rx_pkts), MAX_BUFLET_COUNT); in flow_rx_agg_channel()
1695 KPKTQ_FOREACH_SAFE(pkt, rx_pkts, tpkt) { in flow_rx_agg_channel()
1717 KPKTQ_REMOVE(rx_pkts, pkt); in flow_rx_agg_channel()
1799 tmp = estimate_buf_cnt(fe, rx_bytes, KPKTQ_LEN(rx_pkts), in flow_rx_agg_channel()
1949 KPKTQ_FINI(rx_pkts); in flow_rx_agg_channel()
[all …]
H A Dflow_var.h1041 struct pktq *rx_pkts, uint32_t rx_bytes, struct mbufq *host_mq,
/xnu-12377.81.4/bsd/skywalk/nexus/flowswitch/
H A Dfsw_dp.c1822 struct pktq *rx_pkts, uint32_t rx_bytes, struct mbufq *host_mq, in dp_flow_rx_process() argument
1832 uint32_t n_pkts = KPKTQ_LEN(rx_pkts); in dp_flow_rx_process()
1847 fsw_snoop_and_dequeue(fe, &dropped_pkts, rx_pkts, true); in dp_flow_rx_process()
1861 fsw_host_rx_enqueue_mbq(fsw, rx_pkts, host_mq); in dp_flow_rx_process()
1869 fsw_snoop_and_dequeue(fe, &dropped_pkts, rx_pkts, true); in dp_flow_rx_process()
1877 fsw_snoop(fsw, fe, rx_pkts, true); in dp_flow_rx_process()
1886 KPKTQ_CONCAT(&dropped_pkts, rx_pkts); in dp_flow_rx_process()
1906 KPKTQ_CONCAT(&dropped_pkts, rx_pkts); in dp_flow_rx_process()
1918 KPKTQ_FOREACH_SAFE(pkt, rx_pkts, tpkt) { in dp_flow_rx_process()
1920 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,