Lines Matching defs:reclaim
77 * Period of the Tx buffer reclaim timer. This timer does not need to run
279 * @q: the Tx queue to reclaim descriptors from
280 * @n: the number of descriptors to reclaim
317 * @q: the Tx queue to reclaim completed descriptors from
318 * @chunk: maximum number of descriptors to reclaim
328 unsigned int reclaim = q->processed - q->cleaned;
330 reclaim = min(chunk, reclaim);
331 if (reclaim) {
332 free_tx_desc(adapter, q, reclaim);
333 q->cleaned += reclaim;
334 q->in_use -= reclaim;
1448 * reclaim_completed_tx_imm - reclaim completed control-queue Tx descs
1457 unsigned int reclaim = q->processed - q->cleaned;
1459 q->in_use -= reclaim;
1460 q->cleaned += reclaim;
2915 * best effort attempt to reclaim descriptors, in that we don't wait