* refill_fl - refill an SGE Rx buffer ring with mbufs * @adap: the adapter * @q: the ring to refill * @n: the number of new buffers to allocate * * (Re)populate an SGE free-buffer queue with up to @n new packet buffers, * allocated with the supplied gfp flags. The caller must assure that * @n does not exceed the queue's capacity. Returns the number of buffers * allocated. */
| 380 | * allocated. |
| 381 | */ |
| 382 | static unsigned int refill_fl(struct adapter *adap, struct sge_fl *q, int n) |
| 383 | { |
| 384 | return refill_fl_usembufs(adap, q, n); |
| 385 | } |
| 386 | |
| 387 | static inline void __refill_fl(struct adapter *adap, struct sge_fl *fl) |
| 388 | { |
no test coverage detected