Home
last modified time | relevance | path

Searched refs:mf (Results 1 – 14 of 14) sorted by relevance

/f-stack/freebsd/net/
H A Dif_fwsubr.c339 struct mbuf *mf, *mprev; in firewire_input_fragment() local
375 for (mf = r->fr_frags; mf; mf = mf->m_nextpkt) { in firewire_input_fragment()
376 enc = mtod(mf, union fw_encap *); in firewire_input_fragment()
402 for (mf = r->fr_frags, mprev = NULL; mf; in firewire_input_fragment()
403 mprev = mf, mf = mf->m_nextpkt) { in firewire_input_fragment()
404 enc = mtod(mf, union fw_encap *); in firewire_input_fragment()
454 mf = m->m_nextpkt; in firewire_input_fragment()
456 m = mf; in firewire_input_fragment()
489 mf = r->fr_frags; in firewire_input_fragment()
490 r->fr_frags = mf->m_nextpkt; in firewire_input_fragment()
[all …]
H A Diflib.c2887 struct mbuf *m, *mh, *mt, *mf; in iflib_rxeof() local
2967 mt = mf = NULL; in iflib_rxeof()
2980 if (lro_possible && mf != NULL) { in iflib_rxeof()
2981 ifp->if_input(ifp, mf); in iflib_rxeof()
2983 mt = mf = NULL; in iflib_rxeof()
2999 if (mf == NULL) in iflib_rxeof()
3000 mf = m; in iflib_rxeof()
3005 if (mf != NULL) { in iflib_rxeof()
3006 ifp->if_input(ifp, mf); in iflib_rxeof()
/f-stack/dpdk/drivers/net/bnxt/
H A Dbnxt_flow.c750 struct bnxt_filter_info *mf, *f0; in bnxt_find_matching_l2_filter() local
769 if (mf->matching_l2_fltr_ptr) in bnxt_find_matching_l2_filter()
781 return mf; in bnxt_find_matching_l2_filter()
1568 struct bnxt_filter_info *mf; in bnxt_match_filter() local
1579 mf = flow->filter; in bnxt_match_filter()
1582 mf->flags == nf->flags && in bnxt_match_filter()
1590 mf->vni == nf->vni && in bnxt_match_filter()
1612 if (mf->dst_id == nf->dst_id) in bnxt_match_filter()
1617 bnxt_update_filter(bp, mf, nf); in bnxt_match_filter()
1618 STAILQ_REMOVE(&vnic->filter, mf, in bnxt_match_filter()
[all …]
/f-stack/dpdk/lib/librte_pipeline/
H A Drte_swx_ctl.c128 first = &table->mf[0]; in table_params_get()
135 f = &table->mf[i]; in table_params_get()
161 f = &table->mf[i]; in table_params_get()
619 free(table->mf); in table_free()
820 if (!t->mf) in rte_swx_ctl_pipeline_create()
827 &t->mf[j]); in rte_swx_ctl_pipeline_create()
1401 struct rte_swx_ctl_table_match_field_info *mf = &table->mf[i]; in rte_swx_ctl_pipeline_table_entry_read() local
1410 if (mf->is_header) in rte_swx_ctl_pipeline_table_entry_read()
1411 val = field_hton(val, mf->n_bits); in rte_swx_ctl_pipeline_table_entry_read()
1414 memcpy(&entry->key[(mf->offset - table->mf[0].offset) / 8], in rte_swx_ctl_pipeline_table_entry_read()
[all …]
H A Drte_swx_pipeline.c6436 struct field *hf, *mf; in rte_swx_pipeline_table_config() local
6442 mf = metadata_field_parse(p, field->name); in rte_swx_pipeline_table_config()
6443 CHECK(hf || mf, EINVAL); in rte_swx_pipeline_table_config()
6445 offset = hf ? hf->offset : mf->offset; in rte_swx_pipeline_table_config()
6456 (!is_header && mf), EINVAL); in rte_swx_pipeline_table_config()
/f-stack/dpdk/lib/librte_ip_frag/
H A Drte_ipv6_fragmentation.c23 uint32_t mf) in __fill_ipv6hdr_frag() argument
34 fh->frag_data = rte_cpu_to_be_16(RTE_IPV6_SET_FRAG_DATA(fofs, mf)); in __fill_ipv6hdr_frag()
H A Drte_ipv4_fragmentation.c27 uint16_t dofs, uint32_t mf) in __fill_ipv4hdr_frag() argument
31 fofs = (uint16_t)(fofs | mf << RTE_IPV4_HDR_MF_SHIFT); in __fill_ipv4hdr_frag()
/f-stack/tools/compat/include/sys/
H A Dbitset.h205 #define BITSET_ALLOC(_s, mt, mf) \ argument
206 malloc(__bitset_words(_s) * sizeof(long), mt, (mf))
/f-stack/freebsd/contrib/device-tree/Bindings/clock/
H A Dprima2-clock.txt25 mf 10
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmip.h169 uint32_t mf : 1; member
/f-stack/dpdk/lib/librte_net/
H A Drte_ip.h493 #define RTE_IPV6_SET_FRAG_DATA(fo, mf) \ argument
494 (((fo) & RTE_IPV6_EHDR_FO_MASK) | ((mf) & RTE_IPV6_EHDR_MF_MASK))
/f-stack/freebsd/sys/
H A Dbitset.h285 #define BITSET_ALLOC(_s, mt, mf) malloc(BITSET_SIZE((_s)), mt, (mf)) argument
/f-stack/dpdk/drivers/bus/dpaa/base/qbman/
H A Dqman.h450 static inline void qm_dqrr_set_maxfill(struct qm_portal *portal, u8 mf) in qm_dqrr_set_maxfill() argument
453 ((mf & (QM_DQRR_SIZE - 1)) << 20)); in qm_dqrr_set_maxfill()
/f-stack/freebsd/contrib/ncsw/Peripherals/QM/
H A Dqman_low.h470 static __inline__ void qm_dqrr_set_maxfill(struct qm_portal *portal, uint8_t mf) in qm_dqrr_set_maxfill() argument
473 ((mf & (QM_DQRR_SIZE - 1)) << 20)); in qm_dqrr_set_maxfill()