| 715 | } |
| 716 | |
| 717 | static 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 |
no outgoing calls
no test coverage detected