net/cxgbe: remove unused variables
Found with clang static analysis:
drivers/net/cxgbe/sge.c:900:3: warning:
Value stored to 'in_use' is never read
in_use += q->size;
^ ~~~~~~~
Removing "in_use" variable makes "hw_cidx" variable unused, which is
removed too.
Fixes: 4a01078b4f
("cxgbe: add Tx support")
Cc: stable@dpdk.org
Signed-off-by: Emmanuel Roullit <emmanuel.roullit@gmail.com>
Acked-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
This commit is contained in:
parent
3556f25183
commit
3c581421d0
@ -890,15 +890,11 @@ static inline int should_tx_packet_coalesce(struct sge_eth_txq *txq,
|
||||
struct sge_txq *q = &txq->q;
|
||||
unsigned int flits, ndesc;
|
||||
unsigned char type = 0;
|
||||
int credits, hw_cidx = ntohs(q->stat->cidx);
|
||||
int in_use = q->pidx - hw_cidx + flits_to_desc(q->coalesce.flits);
|
||||
int credits;
|
||||
|
||||
/* use coal WR type 1 when no frags are present */
|
||||
type = (mbuf->nb_segs == 1) ? 1 : 0;
|
||||
|
||||
if (in_use < 0)
|
||||
in_use += q->size;
|
||||
|
||||
if (unlikely(type != q->coalesce.type && q->coalesce.idx))
|
||||
ship_tx_pkt_coalesce_wr(adap, txq);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user