Lines Matching refs:cpl

296 	struct cpl_rx_phys_dsgl *cpl;  in ccr_write_phys_dsgl()  local
303 cpl = dst; in ccr_write_phys_dsgl()
304 cpl->op_to_tid = htobe32(V_CPL_RX_PHYS_DSGL_OPCODE(CPL_RX_PHYS_DSGL) | in ccr_write_phys_dsgl()
306 cpl->pcirlxorder_to_noofsgentr = htobe32( in ccr_write_phys_dsgl()
311 cpl->rss_hdr_int.opcode = CPL_RX_PHYS_ADDR; in ccr_write_phys_dsgl()
312 cpl->rss_hdr_int.qid = htobe16(sc->rxq->iq.abs_id); in ccr_write_phys_dsgl()
313 cpl->rss_hdr_int.hash_val = 0; in ccr_write_phys_dsgl()
314 sgl = (struct phys_sge_pairs *)(cpl + 1); in ccr_write_phys_dsgl()
336 MPASS(j + 8 * (sgl - (struct phys_sge_pairs *)(cpl + 1)) == nsegs); in ccr_write_phys_dsgl()
562 const struct cpl_fw6_pld *cpl, int error) in ccr_hash_done() argument
569 s->hmac.hash_len, (c_caddr_t)(cpl + 1)); in ccr_hash_done()
749 struct cryptop *crp, const struct cpl_fw6_pld *cpl, int error) in ccr_blkcipher_done() argument
1098 struct cryptop *crp, const struct cpl_fw6_pld *cpl, int error) in ccr_authenc_done() argument
1117 if (error == EBADMSG && !CHK_PAD_ERR_BIT(be64toh(cpl->data[0])) && in ccr_authenc_done()
1120 s->hmac.hash_len, (c_caddr_t)(cpl + 1)); in ccr_authenc_done()
1415 struct cryptop *crp, const struct cpl_fw6_pld *cpl, int error) in ccr_gcm_done() argument
1896 struct cryptop *crp, const struct cpl_fw6_pld *cpl, int error) in ccr_ccm_done() argument
2762 const struct cpl_fw6_pld *cpl; in do_cpl6_fw_pld() local
2768 cpl = mtod(m, const void *); in do_cpl6_fw_pld()
2770 cpl = (const void *)(rss + 1); in do_cpl6_fw_pld()
2772 crp = (struct cryptop *)(uintptr_t)be64toh(cpl->data[1]); in do_cpl6_fw_pld()
2774 status = be64toh(cpl->data[0]); in do_cpl6_fw_pld()
2787 error = ccr_hash_done(sc, s, crp, cpl, error); in do_cpl6_fw_pld()
2790 error = ccr_blkcipher_done(sc, s, crp, cpl, error); in do_cpl6_fw_pld()
2793 error = ccr_authenc_done(sc, s, crp, cpl, error); in do_cpl6_fw_pld()
2796 error = ccr_gcm_done(sc, s, crp, cpl, error); in do_cpl6_fw_pld()
2799 error = ccr_ccm_done(sc, s, crp, cpl, error); in do_cpl6_fw_pld()