Lines Matching defs:reserve
3154 * Additional reserve of pages for pp_reserve.
3159 * Additional reserve of pages for swapfs.
4807 arc_memory_throttle(uint64_t reserve, uint64_t txg)
4834 /* Note: reserve is inflated, so we deflate */
4835 page_load += reserve / 8;
4848 arc_tempreserve_clear(uint64_t reserve)
4850 atomic_add_64(&arc_tempreserve, -reserve);
4855 arc_tempreserve_space(uint64_t reserve, uint64_t txg)
4860 if (reserve > arc_c/4 && !arc_no_grow)
4861 arc_c = MIN(arc_c_max, reserve * 4);
4862 if (reserve > arc_c)
4878 error = arc_memory_throttle(reserve, txg);
4890 if (reserve + arc_tempreserve + anon_size > arc_c / 2 &&
4897 reserve>>10, arc_c>>10);
4900 atomic_add_64(&arc_tempreserve, reserve);