Searched refs:reclaimable (Results 1 - 11 of 11) sorted by last modified time

/linux-master/include/trace/events/
H A Doom.h38 unsigned long reclaimable,
44 TP_ARGS(zoneref, order, reclaimable, available, min_wmark, no_progress_loops, wmark_check),
50 __field( unsigned long, reclaimable)
61 __entry->reclaimable = reclaimable;
68 TP_printk("node=%d zone=%-8s order=%d reclaimable=%lu available=%lu min_wmark=%lu no_progress_loops=%d wmark_check=%d",
71 __entry->reclaimable, __entry->available, __entry->min_wmark,
/linux-master/fs/xfs/
H A Dxfs_icache.c186 * Queue background inode reclaim work if there are reclaimable inodes and there
297 * When we recycle a reclaimable inode, we need to re-initialise the VFS inode
514 * reclaimable state, wait for the initialisation to complete
1014 * Return the number of reclaimable inodes in the filesystem for
1023 long reclaimable = 0; local
1027 reclaimable += pag->pag_ici_reclaimable;
1030 return reclaimable;
2161 * it does make inodes reclaimable, which eventually frees memory.
/linux-master/net/mptcp/
H A Dprotocol.c177 int reclaimable; local
180 reclaimable = msk->rmem_fwd_alloc - sk_unused_reserved_mem(sk);
183 if (unlikely(reclaimable >= PAGE_SIZE))
184 __mptcp_rmem_reclaim(sk, reclaimable);
/linux-master/mm/
H A Dvmscan.c136 /* There is easily reclaimable cold cache in the current node */
468 int reclaimable = 0, write_pending = 0; local
489 reclaimable += zone_reclaimable_pages(zone);
493 if (2 * write_pending <= reclaimable)
840 * The supposedly reclaimable folio was found to be in a VM_LOCKED vma.
4903 unsigned long reclaimable; local
4912 reclaimable = node_page_state(pgdat, NR_INACTIVE_FILE);
4914 reclaimable += node_page_state(pgdat, NR_INACTIVE_ANON);
4916 /* round down reclaimable and round up sc->nr_to_reclaim */
4917 priority = fls_long(reclaimable)
5907 bool reclaimable = false; local
[all...]
H A Dshow_mem.c37 unsigned long reclaimable; local
60 * Part of the reclaimable slab and other kernel memory consists of
64 reclaimable = global_node_page_state_pages(NR_SLAB_RECLAIMABLE_B) +
66 reclaimable -= min(reclaimable / 2, wmark_low);
67 available += reclaimable;
H A Dpage_alloc.c600 * This might let an unmovable request use a reclaimable pageblock
1772 * reclaimable and unmovable allocations, we steal regardless of page size,
1774 * is worse than movable allocations stealing from unmovable and reclaimable
2569 * We only track unmovable, reclaimable and movable on pcp lists.
4051 * request even if all reclaimable pages are considered then we are
4057 unsigned long reclaimable; local
4061 available = reclaimable = zone_reclaimable_pages(zone);
4066 * reclaimable pages?
4070 trace_reclaim_retry_zone(z, order, reclaimable,
H A Dpage-writeback.c250 * free and reclaimable pages, minus some zone reserves to protect
2106 unsigned long reclaimable; local
2122 reclaimable = wb_stat_sum(wb, WB_RECLAIMABLE);
2124 reclaimable = wb_stat(wb, WB_RECLAIMABLE);
2126 if (reclaimable > thresh)
2142 reclaimable = wb_stat_sum(wb, WB_RECLAIMABLE);
2144 reclaimable = wb_stat(wb, WB_RECLAIMABLE);
2146 if (reclaimable > thresh)
/linux-master/include/net/
H A Dsock.h259 * @sk_reserved_mem: space reserved and non-reclaimable for the socket
1541 int reclaimable; local
1546 reclaimable = sk->sk_forward_alloc - sk_unused_reserved_mem(sk);
1548 if (reclaimable >= (int)PAGE_SIZE)
1549 __sk_mem_reclaim(sk, reclaimable);
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dsge.c339 * Return the number of reclaimable descriptors in a Tx queue.
341 static inline int reclaimable(const struct sge_txq *q) function
362 int reclaim = reclaimable(q);
4290 avail = reclaimable(&q->q);
4313 /* If we found too many reclaimable packets schedule a timer
4318 /* We reclaimed all reclaimable TX Descriptors, so reschedule
/linux-master/drivers/md/
H A Draid5-cache.c28 * log->max_free_space is min(1/4 disk size, 10G reclaimable space).
1502 sector_t reclaimable; local
1511 * reclaimable/unreclaimable io_unit can be mixed in the list, we
1515 reclaimable = r5l_reclaimable_space(log);
1516 if (reclaimable >= reclaim_target ||
1525 r5l_reclaimable_space(log) > reclaimable,
1532 if (reclaimable == 0 || !write_super)
/linux-master/drivers/net/ethernet/chelsio/cxgb4vf/
H A Dsge.c409 * Return the number of reclaimable descriptors in a TX queue.
411 static inline int reclaimable(const struct sge_txq *tq) function
414 int reclaimable = hw_cidx - tq->cidx; local
415 if (reclaimable < 0)
416 reclaimable += tq->size;
417 return reclaimable;
434 int avail = reclaimable(tq);
2133 if (reclaimable(&txq->q) && __netif_tx_trylock(txq->txq)) {
2134 int avail = reclaimable(&txq->q);
2155 * If we found too many reclaimable packet
[all...]

Completed in 262 milliseconds