xref: /freebsd-13-stable/sys/contrib/openzfs/module/os/linux/zfs/arc_os.c (revision 330954bdb822af6bc07d487b1ecd7f8fda9c4def)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright (c) 2018, Joyent, Inc.
24  * Copyright (c) 2011, 2019 by Delphix. All rights reserved.
25  * Copyright (c) 2014 by Saso Kiselkov. All rights reserved.
26  * Copyright 2017 Nexenta Systems, Inc.  All rights reserved.
27  */
28 
29 #include <sys/spa.h>
30 #include <sys/zio.h>
31 #include <sys/spa_impl.h>
32 #include <sys/zio_compress.h>
33 #include <sys/zio_checksum.h>
34 #include <sys/zfs_context.h>
35 #include <sys/arc.h>
36 #include <sys/zfs_refcount.h>
37 #include <sys/vdev.h>
38 #include <sys/vdev_trim.h>
39 #include <sys/vdev_impl.h>
40 #include <sys/dsl_pool.h>
41 #include <sys/multilist.h>
42 #include <sys/abd.h>
43 #include <sys/zil.h>
44 #include <sys/fm/fs/zfs.h>
45 #ifdef _KERNEL
46 #include <sys/shrinker.h>
47 #include <sys/vmsystm.h>
48 #include <sys/zpl.h>
49 #include <linux/page_compat.h>
50 #include <linux/notifier.h>
51 #include <linux/memory.h>
52 #endif
53 #include <sys/callb.h>
54 #include <sys/kstat.h>
55 #include <sys/zthr.h>
56 #include <zfs_fletcher.h>
57 #include <sys/arc_impl.h>
58 #include <sys/trace_zfs.h>
59 #include <sys/aggsum.h>
60 
61 /*
62  * This is a limit on how many pages the ARC shrinker makes available for
63  * eviction in response to one page allocation attempt.  Note that in
64  * practice, the kernel's shrinker can ask us to evict up to about 4x this
65  * for one allocation attempt.
66  *
67  * The default limit of 10,000 (in practice, 160MB per allocation attempt
68  * with 4K pages) limits the amount of time spent attempting to reclaim ARC
69  * memory to less than 100ms per allocation attempt, even with a small
70  * average compressed block size of ~8KB.
71  *
72  * See also the comment in arc_shrinker_count().
73  * Set to 0 to disable limit.
74  */
75 int zfs_arc_shrinker_limit = 10000;
76 
77 #ifdef CONFIG_MEMORY_HOTPLUG
78 static struct notifier_block arc_hotplug_callback_mem_nb;
79 #endif
80 
81 /*
82  * Return a default max arc size based on the amount of physical memory.
83  */
84 uint64_t
arc_default_max(uint64_t min,uint64_t allmem)85 arc_default_max(uint64_t min, uint64_t allmem)
86 {
87 	/* Default to 1/2 of all memory. */
88 	return (MAX(allmem / 2, min));
89 }
90 
91 #ifdef _KERNEL
92 /*
93  * Return maximum amount of memory that we could possibly use.  Reduced
94  * to half of all memory in user space which is primarily used for testing.
95  */
96 uint64_t
arc_all_memory(void)97 arc_all_memory(void)
98 {
99 #ifdef CONFIG_HIGHMEM
100 	return (ptob(zfs_totalram_pages - zfs_totalhigh_pages));
101 #else
102 	return (ptob(zfs_totalram_pages));
103 #endif /* CONFIG_HIGHMEM */
104 }
105 
106 /*
107  * Return the amount of memory that is considered free.  In user space
108  * which is primarily used for testing we pretend that free memory ranges
109  * from 0-20% of all memory.
110  */
111 uint64_t
arc_free_memory(void)112 arc_free_memory(void)
113 {
114 #ifdef CONFIG_HIGHMEM
115 	struct sysinfo si;
116 	si_meminfo(&si);
117 	return (ptob(si.freeram - si.freehigh));
118 #else
119 	return (ptob(nr_free_pages() +
120 	    nr_inactive_file_pages()));
121 #endif /* CONFIG_HIGHMEM */
122 }
123 
124 /*
125  * Return the amount of memory that can be consumed before reclaim will be
126  * needed.  Positive if there is sufficient free memory, negative indicates
127  * the amount of memory that needs to be freed up.
128  */
129 int64_t
arc_available_memory(void)130 arc_available_memory(void)
131 {
132 	return (arc_free_memory() - arc_sys_free);
133 }
134 
135 static uint64_t
arc_evictable_memory(void)136 arc_evictable_memory(void)
137 {
138 	int64_t asize = aggsum_value(&arc_sums.arcstat_size);
139 	uint64_t arc_clean =
140 	    zfs_refcount_count(&arc_mru->arcs_esize[ARC_BUFC_DATA]) +
141 	    zfs_refcount_count(&arc_mru->arcs_esize[ARC_BUFC_METADATA]) +
142 	    zfs_refcount_count(&arc_mfu->arcs_esize[ARC_BUFC_DATA]) +
143 	    zfs_refcount_count(&arc_mfu->arcs_esize[ARC_BUFC_METADATA]);
144 	uint64_t arc_dirty = MAX((int64_t)asize - (int64_t)arc_clean, 0);
145 
146 	/*
147 	 * Scale reported evictable memory in proportion to page cache, cap
148 	 * at specified min/max.
149 	 */
150 	uint64_t min = (ptob(nr_file_pages()) / 100) * zfs_arc_pc_percent;
151 	min = MAX(arc_c_min, MIN(arc_c_max, min));
152 
153 	if (arc_dirty >= min)
154 		return (arc_clean);
155 
156 	return (MAX((int64_t)asize - (int64_t)min, 0));
157 }
158 
159 /*
160  * The _count() function returns the number of free-able objects.
161  * The _scan() function returns the number of objects that were freed.
162  */
163 static unsigned long
arc_shrinker_count(struct shrinker * shrink,struct shrink_control * sc)164 arc_shrinker_count(struct shrinker *shrink, struct shrink_control *sc)
165 {
166 	/*
167 	 * __GFP_FS won't be set if we are called from ZFS code (see
168 	 * kmem_flags_convert(), which removes it).  To avoid a deadlock, we
169 	 * don't allow evicting in this case.  We return 0 rather than
170 	 * SHRINK_STOP so that the shrinker logic doesn't accumulate a
171 	 * deficit against us.
172 	 */
173 	if (!(sc->gfp_mask & __GFP_FS)) {
174 		return (0);
175 	}
176 
177 	/*
178 	 * This code is reached in the "direct reclaim" case, where the
179 	 * kernel (outside ZFS) is trying to allocate a page, and the system
180 	 * is low on memory.
181 	 *
182 	 * The kernel's shrinker code doesn't understand how many pages the
183 	 * ARC's callback actually frees, so it may ask the ARC to shrink a
184 	 * lot for one page allocation. This is problematic because it may
185 	 * take a long time, thus delaying the page allocation, and because
186 	 * it may force the ARC to unnecessarily shrink very small.
187 	 *
188 	 * Therefore, we limit the amount of data that we say is evictable,
189 	 * which limits the amount that the shrinker will ask us to evict for
190 	 * one page allocation attempt.
191 	 *
192 	 * In practice, we may be asked to shrink 4x the limit to satisfy one
193 	 * page allocation, before the kernel's shrinker code gives up on us.
194 	 * When that happens, we rely on the kernel code to find the pages
195 	 * that we freed before invoking the OOM killer.  This happens in
196 	 * __alloc_pages_slowpath(), which retries and finds the pages we
197 	 * freed when it calls get_page_from_freelist().
198 	 *
199 	 * See also the comment above zfs_arc_shrinker_limit.
200 	 */
201 	int64_t limit = zfs_arc_shrinker_limit != 0 ?
202 	    zfs_arc_shrinker_limit : INT64_MAX;
203 	return (MIN(limit, btop((int64_t)arc_evictable_memory())));
204 }
205 
206 static unsigned long
arc_shrinker_scan(struct shrinker * shrink,struct shrink_control * sc)207 arc_shrinker_scan(struct shrinker *shrink, struct shrink_control *sc)
208 {
209 	ASSERT((sc->gfp_mask & __GFP_FS) != 0);
210 
211 	/* The arc is considered warm once reclaim has occurred */
212 	if (unlikely(arc_warm == B_FALSE))
213 		arc_warm = B_TRUE;
214 
215 	/*
216 	 * Evict the requested number of pages by reducing arc_c and waiting
217 	 * for the requested amount of data to be evicted.
218 	 */
219 	arc_reduce_target_size(ptob(sc->nr_to_scan));
220 	arc_wait_for_eviction(ptob(sc->nr_to_scan), B_FALSE);
221 	if (current->reclaim_state != NULL)
222 #ifdef	HAVE_RECLAIM_STATE_RECLAIMED
223 		current->reclaim_state->reclaimed += sc->nr_to_scan;
224 #else
225 		current->reclaim_state->reclaimed_slab += sc->nr_to_scan;
226 #endif
227 
228 	/*
229 	 * We are experiencing memory pressure which the arc_evict_zthr was
230 	 * unable to keep up with. Set arc_no_grow to briefly pause arc
231 	 * growth to avoid compounding the memory pressure.
232 	 */
233 	arc_no_grow = B_TRUE;
234 
235 	/*
236 	 * When direct reclaim is observed it usually indicates a rapid
237 	 * increase in memory pressure.  This occurs because the kswapd
238 	 * threads were unable to asynchronously keep enough free memory
239 	 * available.
240 	 */
241 	if (current_is_kswapd()) {
242 		ARCSTAT_BUMP(arcstat_memory_indirect_count);
243 	} else {
244 		ARCSTAT_BUMP(arcstat_memory_direct_count);
245 	}
246 
247 	return (sc->nr_to_scan);
248 }
249 
250 static struct shrinker *arc_shrinker = NULL;
251 
252 int
arc_memory_throttle(spa_t * spa,uint64_t reserve,uint64_t txg)253 arc_memory_throttle(spa_t *spa, uint64_t reserve, uint64_t txg)
254 {
255 	uint64_t free_memory = arc_free_memory();
256 
257 	if (free_memory > arc_all_memory() * arc_lotsfree_percent / 100)
258 		return (0);
259 
260 	if (txg > spa->spa_lowmem_last_txg) {
261 		spa->spa_lowmem_last_txg = txg;
262 		spa->spa_lowmem_page_load = 0;
263 	}
264 	/*
265 	 * If we are in pageout, we know that memory is already tight,
266 	 * the arc is already going to be evicting, so we just want to
267 	 * continue to let page writes occur as quickly as possible.
268 	 */
269 	if (current_is_kswapd()) {
270 		if (spa->spa_lowmem_page_load >
271 		    MAX(arc_sys_free / 4, free_memory) / 4) {
272 			DMU_TX_STAT_BUMP(dmu_tx_memory_reclaim);
273 			return (SET_ERROR(ERESTART));
274 		}
275 		/* Note: reserve is inflated, so we deflate */
276 		atomic_add_64(&spa->spa_lowmem_page_load, reserve / 8);
277 		return (0);
278 	} else if (spa->spa_lowmem_page_load > 0 && arc_reclaim_needed()) {
279 		/* memory is low, delay before restarting */
280 		ARCSTAT_INCR(arcstat_memory_throttle_count, 1);
281 		DMU_TX_STAT_BUMP(dmu_tx_memory_reclaim);
282 		return (SET_ERROR(EAGAIN));
283 	}
284 	spa->spa_lowmem_page_load = 0;
285 	return (0);
286 }
287 
288 static void
arc_set_sys_free(uint64_t allmem)289 arc_set_sys_free(uint64_t allmem)
290 {
291 	/*
292 	 * The ARC tries to keep at least this much memory available for the
293 	 * system.  This gives the ARC time to shrink in response to memory
294 	 * pressure, before running completely out of memory and invoking the
295 	 * direct-reclaim ARC shrinker.
296 	 *
297 	 * This should be more than twice high_wmark_pages(), so that
298 	 * arc_wait_for_eviction() will wait until at least the
299 	 * high_wmark_pages() are free (see arc_evict_state_impl()).
300 	 *
301 	 * Note: Even when the system is very low on memory, the kernel's
302 	 * shrinker code may only ask for one "batch" of pages (512KB) to be
303 	 * evicted.  If concurrent allocations consume these pages, there may
304 	 * still be insufficient free pages, and the OOM killer takes action.
305 	 *
306 	 * By setting arc_sys_free large enough, and having
307 	 * arc_wait_for_eviction() wait until there is at least arc_sys_free/2
308 	 * free memory, it is much less likely that concurrent allocations can
309 	 * consume all the memory that was evicted before checking for
310 	 * OOM.
311 	 *
312 	 * It's hard to iterate the zones from a linux kernel module, which
313 	 * makes it difficult to determine the watermark dynamically. Instead
314 	 * we compute the maximum high watermark for this system, based
315 	 * on the amount of memory, assuming default parameters on Linux kernel
316 	 * 5.3.
317 	 */
318 
319 	/*
320 	 * Base wmark_low is 4 * the square root of Kbytes of RAM.
321 	 */
322 	long wmark = 4 * int_sqrt(allmem/1024) * 1024;
323 
324 	/*
325 	 * Clamp to between 128K and 64MB.
326 	 */
327 	wmark = MAX(wmark, 128 * 1024);
328 	wmark = MIN(wmark, 64 * 1024 * 1024);
329 
330 	/*
331 	 * watermark_boost can increase the wmark by up to 150%.
332 	 */
333 	wmark += wmark * 150 / 100;
334 
335 	/*
336 	 * arc_sys_free needs to be more than 2x the watermark, because
337 	 * arc_wait_for_eviction() waits for half of arc_sys_free.  Bump this up
338 	 * to 3x to ensure we're above it.
339 	 */
340 	arc_sys_free = wmark * 3 + allmem / 32;
341 }
342 
343 void
arc_lowmem_init(void)344 arc_lowmem_init(void)
345 {
346 	uint64_t allmem = arc_all_memory();
347 
348 	/*
349 	 * Register a shrinker to support synchronous (direct) memory
350 	 * reclaim from the arc.  This is done to prevent kswapd from
351 	 * swapping out pages when it is preferable to shrink the arc.
352 	 */
353 	arc_shrinker = spl_register_shrinker("zfs-arc-shrinker",
354 	    arc_shrinker_count, arc_shrinker_scan, DEFAULT_SEEKS);
355 	VERIFY(arc_shrinker);
356 
357 	arc_set_sys_free(allmem);
358 }
359 
360 void
arc_lowmem_fini(void)361 arc_lowmem_fini(void)
362 {
363 	spl_unregister_shrinker(arc_shrinker);
364 	arc_shrinker = NULL;
365 }
366 
367 int
param_set_arc_long(const char * buf,zfs_kernel_param_t * kp)368 param_set_arc_long(const char *buf, zfs_kernel_param_t *kp)
369 {
370 	int error;
371 
372 	error = param_set_long(buf, kp);
373 	if (error < 0)
374 		return (SET_ERROR(error));
375 
376 	arc_tuning_update(B_TRUE);
377 
378 	return (0);
379 }
380 
381 int
param_set_arc_min(const char * buf,zfs_kernel_param_t * kp)382 param_set_arc_min(const char *buf, zfs_kernel_param_t *kp)
383 {
384 	return (param_set_arc_long(buf, kp));
385 }
386 
387 int
param_set_arc_max(const char * buf,zfs_kernel_param_t * kp)388 param_set_arc_max(const char *buf, zfs_kernel_param_t *kp)
389 {
390 	return (param_set_arc_long(buf, kp));
391 }
392 
393 int
param_set_arc_int(const char * buf,zfs_kernel_param_t * kp)394 param_set_arc_int(const char *buf, zfs_kernel_param_t *kp)
395 {
396 	int error;
397 
398 	error = param_set_int(buf, kp);
399 	if (error < 0)
400 		return (SET_ERROR(error));
401 
402 	arc_tuning_update(B_TRUE);
403 
404 	return (0);
405 }
406 
407 #ifdef CONFIG_MEMORY_HOTPLUG
408 /* ARGSUSED */
409 static int
arc_hotplug_callback(struct notifier_block * self,unsigned long action,void * arg)410 arc_hotplug_callback(struct notifier_block *self, unsigned long action,
411     void *arg)
412 {
413 	uint64_t allmem = arc_all_memory();
414 	if (action != MEM_ONLINE)
415 		return (NOTIFY_OK);
416 
417 	arc_set_limits(allmem);
418 
419 #ifdef __LP64__
420 	if (zfs_dirty_data_max_max == 0)
421 		zfs_dirty_data_max_max = MIN(4ULL * 1024 * 1024 * 1024,
422 		    allmem * zfs_dirty_data_max_max_percent / 100);
423 #else
424 	if (zfs_dirty_data_max_max == 0)
425 		zfs_dirty_data_max_max = MIN(1ULL * 1024 * 1024 * 1024,
426 		    allmem * zfs_dirty_data_max_max_percent / 100);
427 #endif
428 
429 	arc_set_sys_free(allmem);
430 	return (NOTIFY_OK);
431 }
432 #endif
433 
434 void
arc_register_hotplug(void)435 arc_register_hotplug(void)
436 {
437 #ifdef CONFIG_MEMORY_HOTPLUG
438 	arc_hotplug_callback_mem_nb.notifier_call = arc_hotplug_callback;
439 	/* There is no significance to the value 100 */
440 	arc_hotplug_callback_mem_nb.priority = 100;
441 	register_memory_notifier(&arc_hotplug_callback_mem_nb);
442 #endif
443 }
444 
445 void
arc_unregister_hotplug(void)446 arc_unregister_hotplug(void)
447 {
448 #ifdef CONFIG_MEMORY_HOTPLUG
449 	unregister_memory_notifier(&arc_hotplug_callback_mem_nb);
450 #endif
451 }
452 #else /* _KERNEL */
453 int64_t
arc_available_memory(void)454 arc_available_memory(void)
455 {
456 	int64_t lowest = INT64_MAX;
457 
458 	/* Every 100 calls, free a small amount */
459 	if (random_in_range(100) == 0)
460 		lowest = -1024;
461 
462 	return (lowest);
463 }
464 
465 int
arc_memory_throttle(spa_t * spa,uint64_t reserve,uint64_t txg)466 arc_memory_throttle(spa_t *spa, uint64_t reserve, uint64_t txg)
467 {
468 	return (0);
469 }
470 
471 uint64_t
arc_all_memory(void)472 arc_all_memory(void)
473 {
474 	return (ptob(physmem) / 2);
475 }
476 
477 uint64_t
arc_free_memory(void)478 arc_free_memory(void)
479 {
480 	return (random_in_range(arc_all_memory() * 20 / 100));
481 }
482 
483 void
arc_register_hotplug(void)484 arc_register_hotplug(void)
485 {
486 }
487 
488 void
arc_unregister_hotplug(void)489 arc_unregister_hotplug(void)
490 {
491 }
492 #endif /* _KERNEL */
493 
494 /* BEGIN CSTYLED */
495 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, shrinker_limit, INT, ZMOD_RW,
496 	"Limit on number of pages that ARC shrinker can reclaim at once");
497 /* END CSTYLED */
498