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.c293 toep->l2te = t4_l2t_get(vi->pi, rt_ifp, in t4_connect()
295 if (toep->l2te == NULL) in t4_connect()
300 toep->l2te->idx, &toep->params); in t4_connect()
326 cpl->params = select_ntuple(vi, toep->l2te); in t4_connect()
331 cpl5->params = select_ntuple(vi, toep->l2te); in t4_connect()
337 cpl6->params = select_ntuple(vi, toep->l2te); in t4_connect()
363 cpl->params = select_ntuple(vi, toep->l2te); in t4_connect()
368 cpl5->params = select_ntuple(vi, toep->l2te); in t4_connect()
374 cpl6->params = select_ntuple(vi, toep->l2te); in t4_connect()
398 rc = t4_l2t_send(sc, wr, toep->l2te); in t4_connect()
[all …]
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.h221 struct l2t_entry *l2te; /* L2 table entry used by this connection */ member
H A Dt4_cpl_io.c288 t4_l2t_send(sc, wr, toep->l2te); in send_reset()
483 t4_l2t_send(sc, wr, toep->l2te); in t4_close_conn()
882 t4_l2t_send(sc, wr, toep->l2te); in t4_push_frames()
1223 t4_l2t_send(sc, wr, toep->l2te); in t4_push_pdus()
H A Dt4_tls.c709 t4_l2t_send(sc, wr, toep->l2te); in t4_push_ktls()
H A Dt4_listen.c1671 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
633 set_tcamfilter(struct adapter *sc, struct t4_filter *t, struct l2t_entry *l2te, in set_tcamfilter() argument
696 f->l2te = l2te; in set_tcamfilter()
735 V_FW_FILTER_WR_L2TIX(f->l2te ? f->l2te->idx : 0)); in set_tcamfilter()
910 struct l2t_entry *l2te = NULL; in set_filter() local
1036 l2te = t4_l2t_alloc_switching(sc, t->fs.vlan, t->fs.eport, in set_filter()
1038 if (__predict_false(l2te == NULL)) { in set_filter()
1057 rc = set_hashfilter(sc, t, ftuple, l2te, smt); in set_filter()
1059 rc = set_tcamfilter(sc, t, l2te, smt); in set_filter()
1063 if (l2te) in set_filter()
[all …]
/freebsd/sys/dev/cxgbe/crypto/
H A Dt6_kern_tls.c71 struct l2t_entry *l2te; /* L2 table entry used by this connection */ member
1456 tlsp->tid, tlsp->l2te->idx); in ktls_write_tls_wr()
1459 V_TCB_L2T_IX(M_TCB_L2T_IX), V_TCB_L2T_IX(tlsp->l2te->idx)); in ktls_write_tls_wr()
1995 if (tlsp->l2te == NULL || tlsp->l2te->vlan != vlan_tag || in t6_ktls_write_wr()
1996 memcmp(tlsp->l2te->dmac, eh->ether_dhost, ETHER_ADDR_LEN) != 0) { in t6_ktls_write_wr()
1998 if (tlsp->l2te) in t6_ktls_write_wr()
1999 t4_l2t_release(tlsp->l2te); in t6_ktls_write_wr()
2000 tlsp->l2te = t4_l2t_alloc_tls(tlsp->sc, txq, dst, &ndesc, in t6_ktls_write_wr()
2002 if (tlsp->l2te == NULL) in t6_ktls_write_wr()
2078 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()