MCPcopy Create free account
hub / github.com/F-Stack/f-stack / txq_advance

Function txq_advance

dpdk/drivers/net/cxgbe/sge.c:717–723  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

715}
716
717static inline void txq_advance(struct sge_txq *q, unsigned int n)
718{
719 q->in_use += n;
720 q->pidx += n;
721 if (q->pidx >= q->size)
722 q->pidx -= q->size;
723}
724
725#define MAX_COALESCE_LEN 64000
726

Callers 3

ship_tx_pkt_coalesce_wrFunction · 0.85
t4_eth_xmitFunction · 0.85
ctrl_xmitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected