Home
last modified time | relevance | path

Searched refs:l2te (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/dev/cxgbe/tom/
H A Dt4_connect.c305 toep->l2te = t4_l2t_get(vi->pi, rt_ifp, in t4_connect()
307 if (toep->l2te == NULL) in t4_connect()
312 toep->l2te->idx, &toep->params); in t4_connect()
323 ntuple = select_ntuple(vi, toep->l2te); in t4_connect()
422 rc = t4_l2t_send(sc, wr, toep->l2te); in t4_connect()
442 if (toep->l2te) in t4_connect()
443 t4_l2t_release(toep->l2te); in t4_connect()
H A Dt4_tom.c312 __func__, toep, tid, toep->l2te, toep->ce); in release_offload_resources()
314 if (toep->l2te) { in release_offload_resources()
315 t4_l2t_release(toep->l2te); in release_offload_resources()
316 toep->l2te = NULL; in release_offload_resources()
363 MPASS(toep->l2te == NULL); in done_with_toepcb()
H A Dt4_tom.h225 struct l2t_entry *l2te; /* L2 table entry used by this connection */
224 struct l2t_entry *l2te; /* L2 table entry used by this connection */ global() member
H A Dt4_cpl_io.c294 t4_l2t_send(sc, wr, toep->l2te); in send_reset()
489 t4_l2t_send(sc, wr, toep->l2te); in t4_close_conn()
951 t4_l2t_send(sc, wr, toep->l2te); in t4_push_frames()
1531 t4_l2t_send(sc, wr, toep->l2te); in t4_push_pdus()
H A Dt4_tls.c745 t4_l2t_send(sc, wr, toep->l2te); in t4_push_ktls()
H A Dt4_listen.c1678 toep->l2te = &sc->l2t->l2tab[synqe->params.l2t_idx]; in do_pass_establish()
/freebsd/sys/dev/cxgbe/
H A Dt4_filter.c62 struct l2t_entry *l2te; /* L2 table entry for DMAC rewrite */ member
768 set_tcamfilter(struct adapter *sc, struct t4_filter *t, struct l2t_entry *l2te, in set_tcamfilter()
831 f->l2te = l2te; in hashfilter_ntuple()
870 V_FW_FILTER_WR_L2TIX(f->l2te ? f->l2te->idx : 0)); in hashfilter_ntuple()
1112 struct l2t_entry *l2te = NULL; in del_tcamfilter()
1238 l2te = t4_l2t_alloc_switching(sc, t->fs.vlan, t->fs.eport, in t4_filter_rpl()
1240 if (__predict_false(l2te == NULL)) { in t4_filter_rpl()
1259 rc = set_hashfilter(sc, t, ftuple, l2te, sm in t4_filter_rpl()
633 set_tcamfilter(struct adapter * sc,struct t4_filter * t,struct l2t_entry * l2te,struct smt_entry * smt) set_tcamfilter() argument
910 struct l2t_entry *l2te = NULL; set_filter() local
1620 set_hashfilter(struct adapter * sc,struct t4_filter * t,uint64_t ftuple,struct l2t_entry * l2te,struct smt_entry * smt) set_hashfilter() argument
[all...]
/freebsd/sys/dev/cxgbe/crypto/
H A Dt6_kern_tls.c71 struct l2t_entry *l2te; /* L2 table entry used by this connection */ member
1458 tlsp->tid, tlsp->l2te->idx); in ktls_write_tls_wr()
1461 V_TCB_L2T_IX(M_TCB_L2T_IX), V_TCB_L2T_IX(tlsp->l2te->idx)); in ktls_write_tls_wr()
2000 if (tlsp->l2te == NULL || tlsp->l2te->vlan != vlan_tag || in t6_ktls_write_wr()
2001 memcmp(tlsp->l2te->dmac, eh->ether_dhost, ETHER_ADDR_LEN) != 0) { in t6_ktls_write_wr()
2003 if (tlsp->l2te) in t6_ktls_write_wr()
2004 t4_l2t_release(tlsp->l2te); in t6_ktls_write_wr()
2005 tlsp->l2te = t4_l2t_alloc_tls(tlsp->sc, txq, dst, &ndesc, in t6_ktls_write_wr()
2007 if (tlsp->l2te == NULL) in t6_ktls_write_wr()
2083 if (tlsp->l2te) in t6_tls_tag_free()
[all …]
/freebsd/sys/dev/cxgbe/iw_cxgbe/
H A Dcm.c342 ifp = TOEPCB(so)->l2te->ifp; in find_real_listen_ep()