Lines Matching refs:flowc
6569 struct fw_flowc_wr *flowc; in send_etid_flowc_wr() local
6575 flowc = start_wrq_wr(&cst->eo_txq->wrq, ETID_FLOWC_LEN16, &cookie); in send_etid_flowc_wr()
6576 if (__predict_false(flowc == NULL)) in send_etid_flowc_wr()
6579 bzero(flowc, ETID_FLOWC_LEN); in send_etid_flowc_wr()
6580 flowc->op_to_nparams = htobe32(V_FW_WR_OP(FW_FLOWC_WR) | in send_etid_flowc_wr()
6582 flowc->flowid_len16 = htonl(V_FW_WR_LEN16(ETID_FLOWC_LEN16) | in send_etid_flowc_wr()
6584 flowc->mnemval[0].mnemonic = FW_FLOWC_MNEM_PFNVFN; in send_etid_flowc_wr()
6585 flowc->mnemval[0].val = htobe32(pfvf); in send_etid_flowc_wr()
6586 flowc->mnemval[1].mnemonic = FW_FLOWC_MNEM_CH; in send_etid_flowc_wr()
6587 flowc->mnemval[1].val = htobe32(pi->tx_chan); in send_etid_flowc_wr()
6588 flowc->mnemval[2].mnemonic = FW_FLOWC_MNEM_PORT; in send_etid_flowc_wr()
6589 flowc->mnemval[2].val = htobe32(pi->tx_chan); in send_etid_flowc_wr()
6590 flowc->mnemval[3].mnemonic = FW_FLOWC_MNEM_IQID; in send_etid_flowc_wr()
6591 flowc->mnemval[3].val = htobe32(cst->iqid); in send_etid_flowc_wr()
6592 flowc->mnemval[4].mnemonic = FW_FLOWC_MNEM_EOSTATE; in send_etid_flowc_wr()
6593 flowc->mnemval[4].val = htobe32(FW_FLOWC_MNEM_EOSTATE_ESTABLISHED); in send_etid_flowc_wr()
6594 flowc->mnemval[5].mnemonic = FW_FLOWC_MNEM_SCHEDCLASS; in send_etid_flowc_wr()
6595 flowc->mnemval[5].val = htobe32(cst->schedcl); in send_etid_flowc_wr()
6597 commit_wrq_wr(&cst->eo_txq->wrq, flowc, &cookie); in send_etid_flowc_wr()
6613 struct fw_flowc_wr *flowc; in send_etid_flush_wr() local
6618 flowc = start_wrq_wr(&cst->eo_txq->wrq, ETID_FLUSH_LEN16, &cookie); in send_etid_flush_wr()
6619 if (__predict_false(flowc == NULL)) in send_etid_flush_wr()
6622 bzero(flowc, ETID_FLUSH_LEN16 * 16); in send_etid_flush_wr()
6623 flowc->op_to_nparams = htobe32(V_FW_WR_OP(FW_FLOWC_WR) | in send_etid_flush_wr()
6625 flowc->flowid_len16 = htobe32(V_FW_WR_LEN16(ETID_FLUSH_LEN16) | in send_etid_flush_wr()
6628 commit_wrq_wr(&cst->eo_txq->wrq, flowc, &cookie); in send_etid_flush_wr()