Home
last modified time | relevance | path

Searched refs:fecn (Results 1 – 8 of 8) sorted by relevance

/kernel/linux/linux-5.10/drivers/infiniband/hw/hfi1/
Dtrace_ibhdrs.h116 u8 *ack, bool *becn, bool *fecn, u8 *mig,
127 u8 *age, bool *becn, bool *fecn,
133 u8 age, bool becn, bool fecn, u8 l4,
139 u8 ack, bool becn, bool fecn, u8 mig,
166 __field(bool, fecn)
203 &__entry->fecn,
242 &__entry->fecn,
269 __entry->fecn,
288 __entry->fecn,
326 __field(bool, fecn)
[all …]
Dtrace.c160 u8 *ack, bool *becn, bool *fecn, u8 *mig, in hfi1_trace_parse_9b_bth() argument
166 *fecn = ib_bth_get_fecn(ohdr); in hfi1_trace_parse_9b_bth()
206 u8 *age, bool *becn, bool *fecn, in hfi1_trace_parse_16b_hdr() argument
213 *fecn = hfi1_16B_get_fecn(hdr); in hfi1_trace_parse_16b_hdr()
229 u8 age, bool becn, bool fecn, u8 l4, in hfi1_trace_fmt_lrh() argument
240 age, becn, fecn, l4, rc, sc, pkey, entropy); in hfi1_trace_fmt_lrh()
259 u8 ack, bool becn, bool fecn, u8 mig, in hfi1_trace_fmt_rest() argument
278 se, mig, pad, tver, pkey, fecn, becn, in hfi1_trace_fmt_rest()
Dtid_rdma.c130 struct rvt_qp *qp, u32 psn, int diff, bool fecn);
135 bool fecn);
2232 bool fecn; in hfi1_rc_rcv_tid_rdma_read_req() local
2242 fecn = process_ecn(qp, packet); in hfi1_rc_rcv_tid_rdma_read_req()
2261 tid_rdma_rcv_err(packet, ohdr, qp, psn, diff, fecn); in hfi1_rc_rcv_tid_rdma_read_req()
2314 if (fecn) in hfi1_rc_rcv_tid_rdma_read_req()
2451 bool fecn; in hfi1_rc_rcv_tid_rdma_read_resp() local
2456 fecn = process_ecn(qp, packet); in hfi1_rc_rcv_tid_rdma_read_resp()
2470 update_r_next_psn_fecn(packet, priv, rcd, flow, fecn); in hfi1_rc_rcv_tid_rdma_read_resp()
2482 if (fecn && packet->etype == RHF_RCV_TYPE_EAGER) { in hfi1_rc_rcv_tid_rdma_read_resp()
[all …]
Dhfi.h2006 bool fecn, becn; in hfi1_may_ecn() local
2009 fecn = hfi1_16B_get_fecn(pkt->hdr); in hfi1_may_ecn()
2012 fecn = ib_bth_get_fecn(pkt->ohdr); in hfi1_may_ecn()
2015 return fecn || becn; in hfi1_may_ecn()
2673 bool becn, bool fecn, u8 l4, in hfi1_make_16b_hdr() argument
2684 lrh1 = (lrh1 & ~OPA_16B_FECN_MASK) | (fecn << OPA_16B_FECN_SHIFT); in hfi1_make_16b_hdr()
Ddriver.c460 fecn, becn; in hfi1_process_ecn_slowpath() local
471 fecn = hfi1_16B_get_fecn(pkt->hdr); in hfi1_process_ecn_slowpath()
483 fecn = ib_bth_get_fecn(ohdr); in hfi1_process_ecn_slowpath()
526 if (!ignore_fecn && do_cnp && fecn) in hfi1_process_ecn_slowpath()
536 return !ignore_fecn && fecn; in hfi1_process_ecn_slowpath()
Drc.c2823 bool copy_last = false, fecn; in hfi1_rc_rcv() local
2832 fecn = process_ecn(qp, packet); in hfi1_rc_rcv()
3116 if (fecn) in hfi1_rc_rcv()
3187 if (fecn) in hfi1_rc_rcv()
3204 if (psn & IB_BTH_REQ_ACK || fecn) { in hfi1_rc_rcv()
3205 if (packet->numpkt == 0 || fecn || in hfi1_rc_rcv()
3247 hfi1_send_rc_ack(packet, fecn); in hfi1_rc_rcv()
/kernel/linux/linux-5.10/drivers/net/wan/
Dhdlc_fr.c99 unsigned fecn: 1; member
107 unsigned fecn: 1;
128 unsigned int fecn: 1; member
442 if (pvc->state.fecn) /* TX Congestion counter */ in pvc_xmit()
911 if (pvc->state.fecn != fh->fecn) { in fr_rx()
914 dlci, fh->fecn ? "N" : "FF"); in fr_rx()
916 pvc->state.fecn ^= 1; in fr_rx()
/kernel/linux/linux-5.10/drivers/infiniband/sw/rxe/
Drxe_hdr.h200 static inline void __bth_set_fecn(void *arg, int fecn) in __bth_set_fecn() argument
204 if (fecn) in __bth_set_fecn()
356 static inline void bth_set_fecn(struct rxe_pkt_info *pkt, int fecn) in bth_set_fecn() argument
358 __bth_set_fecn(pkt->hdr + pkt->offset, fecn); in bth_set_fecn()