cxgbe/t4_tom: Limit work requests with immediate payload to a single

descriptor.  The per-tid tx credits are in demand during active Tx and
it's best not to use too many just for payload.

Sponsored by:	Chelsio Communications
This commit is contained in:
Navdeep Parhar 2019-08-27 01:16:02 +00:00
parent b2e60773c6
commit 241c83909c

View File

@ -540,7 +540,7 @@ t4_close_conn(struct adapter *sc, struct toepcb *toep)
static inline int
max_imm_payload(int tx_credits)
{
const int n = 2; /* Use only up to 2 desc for imm. data WR */
const int n = 1; /* Use no more than one desc for imm. data WR */
KASSERT(tx_credits >= 0 &&
tx_credits <= MAX_OFLD_TX_CREDITS,