Lines Matching refs:credit
52 * Convert the AETH credit code into the number of credits.
101 * Set the credit field to the invalid value.
133 * Binary search the credit table to find the code to
166 u32 credit = (aeth >> IB_AETH_CREDIT_SHIFT) & IB_AETH_CREDIT_MASK;
170 * If the credit is invalid, we can send
172 * honor the credit field.
174 if (credit == IB_AETH_CREDIT_INVAL) {
183 /* Compute new LSN (i.e., MSN + credit) */
184 credit = (aeth + credit_table[credit]) & IB_MSN_MASK;
185 if (rvt_cmp_msn(credit, qp->s_lsn) > 0) {
186 qp->s_lsn = credit;