]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/arc.c
Only wakeup waiters if we've actually done work
[mirror_zfs.git] / module / zfs / arc.c
CommitLineData
34dc7c2f
BB
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/*
428870ff 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
36da08ef 23 * Copyright (c) 2012, Joyent, Inc. All rights reserved.
c30e58c4 24 * Copyright (c) 2011, 2017 by Delphix. All rights reserved.
36da08ef 25 * Copyright (c) 2014 by Saso Kiselkov. All rights reserved.
d3c2ae1c 26 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
34dc7c2f
BB
27 */
28
34dc7c2f
BB
29/*
30 * DVA-based Adjustable Replacement Cache
31 *
32 * While much of the theory of operation used here is
33 * based on the self-tuning, low overhead replacement cache
34 * presented by Megiddo and Modha at FAST 2003, there are some
35 * significant differences:
36 *
37 * 1. The Megiddo and Modha model assumes any page is evictable.
38 * Pages in its cache cannot be "locked" into memory. This makes
39 * the eviction algorithm simple: evict the last page in the list.
40 * This also make the performance characteristics easy to reason
41 * about. Our cache is not so simple. At any given moment, some
42 * subset of the blocks in the cache are un-evictable because we
43 * have handed out a reference to them. Blocks are only evictable
44 * when there are no external references active. This makes
45 * eviction far more problematic: we choose to evict the evictable
46 * blocks that are the "lowest" in the list.
47 *
48 * There are times when it is not possible to evict the requested
49 * space. In these circumstances we are unable to adjust the cache
50 * size. To prevent the cache growing unbounded at these times we
51 * implement a "cache throttle" that slows the flow of new data
52 * into the cache until we can make space available.
53 *
54 * 2. The Megiddo and Modha model assumes a fixed cache size.
55 * Pages are evicted when the cache is full and there is a cache
56 * miss. Our model has a variable sized cache. It grows with
57 * high use, but also tries to react to memory pressure from the
58 * operating system: decreasing its size when system memory is
59 * tight.
60 *
61 * 3. The Megiddo and Modha model assumes a fixed page size. All
d3cc8b15 62 * elements of the cache are therefore exactly the same size. So
34dc7c2f
BB
63 * when adjusting the cache size following a cache miss, its simply
64 * a matter of choosing a single page to evict. In our model, we
65 * have variable sized cache blocks (rangeing from 512 bytes to
d3cc8b15 66 * 128K bytes). We therefore choose a set of blocks to evict to make
34dc7c2f
BB
67 * space for a cache miss that approximates as closely as possible
68 * the space used by the new block.
69 *
70 * See also: "ARC: A Self-Tuning, Low Overhead Replacement Cache"
71 * by N. Megiddo & D. Modha, FAST 2003
72 */
73
74/*
75 * The locking model:
76 *
77 * A new reference to a cache buffer can be obtained in two
78 * ways: 1) via a hash table lookup using the DVA as a key,
79 * or 2) via one of the ARC lists. The arc_read() interface
2aa34383 80 * uses method 1, while the internal ARC algorithms for
d3cc8b15 81 * adjusting the cache use method 2. We therefore provide two
34dc7c2f 82 * types of locks: 1) the hash table lock array, and 2) the
2aa34383 83 * ARC list locks.
34dc7c2f 84 *
5c839890
BC
85 * Buffers do not have their own mutexes, rather they rely on the
86 * hash table mutexes for the bulk of their protection (i.e. most
87 * fields in the arc_buf_hdr_t are protected by these mutexes).
34dc7c2f
BB
88 *
89 * buf_hash_find() returns the appropriate mutex (held) when it
90 * locates the requested buffer in the hash table. It returns
91 * NULL for the mutex if the buffer was not in the table.
92 *
93 * buf_hash_remove() expects the appropriate hash mutex to be
94 * already held before it is invoked.
95 *
2aa34383 96 * Each ARC state also has a mutex which is used to protect the
34dc7c2f 97 * buffer list associated with the state. When attempting to
2aa34383 98 * obtain a hash table lock while holding an ARC list lock you
34dc7c2f
BB
99 * must use: mutex_tryenter() to avoid deadlock. Also note that
100 * the active state mutex must be held before the ghost state mutex.
101 *
ab26409d
BB
102 * It as also possible to register a callback which is run when the
103 * arc_meta_limit is reached and no buffers can be safely evicted. In
104 * this case the arc user should drop a reference on some arc buffers so
105 * they can be reclaimed and the arc_meta_limit honored. For example,
106 * when using the ZPL each dentry holds a references on a znode. These
107 * dentries must be pruned before the arc buffer holding the znode can
108 * be safely evicted.
109 *
34dc7c2f
BB
110 * Note that the majority of the performance stats are manipulated
111 * with atomic operations.
112 *
b9541d6b 113 * The L2ARC uses the l2ad_mtx on each vdev for the following:
34dc7c2f
BB
114 *
115 * - L2ARC buflist creation
116 * - L2ARC buflist eviction
117 * - L2ARC write completion, which walks L2ARC buflists
118 * - ARC header destruction, as it removes from L2ARC buflists
119 * - ARC header release, as it removes from L2ARC buflists
120 */
121
d3c2ae1c
GW
122/*
123 * ARC operation:
124 *
125 * Every block that is in the ARC is tracked by an arc_buf_hdr_t structure.
126 * This structure can point either to a block that is still in the cache or to
127 * one that is only accessible in an L2 ARC device, or it can provide
128 * information about a block that was recently evicted. If a block is
129 * only accessible in the L2ARC, then the arc_buf_hdr_t only has enough
130 * information to retrieve it from the L2ARC device. This information is
131 * stored in the l2arc_buf_hdr_t sub-structure of the arc_buf_hdr_t. A block
132 * that is in this state cannot access the data directly.
133 *
134 * Blocks that are actively being referenced or have not been evicted
135 * are cached in the L1ARC. The L1ARC (l1arc_buf_hdr_t) is a structure within
136 * the arc_buf_hdr_t that will point to the data block in memory. A block can
137 * only be read by a consumer if it has an l1arc_buf_hdr_t. The L1ARC
2aa34383 138 * caches data in two ways -- in a list of ARC buffers (arc_buf_t) and
a6255b7f 139 * also in the arc_buf_hdr_t's private physical data block pointer (b_pabd).
2aa34383
DK
140 *
141 * The L1ARC's data pointer may or may not be uncompressed. The ARC has the
a6255b7f
DQ
142 * ability to store the physical data (b_pabd) associated with the DVA of the
143 * arc_buf_hdr_t. Since the b_pabd is a copy of the on-disk physical block,
2aa34383
DK
144 * it will match its on-disk compression characteristics. This behavior can be
145 * disabled by setting 'zfs_compressed_arc_enabled' to B_FALSE. When the
a6255b7f 146 * compressed ARC functionality is disabled, the b_pabd will point to an
2aa34383
DK
147 * uncompressed version of the on-disk data.
148 *
149 * Data in the L1ARC is not accessed by consumers of the ARC directly. Each
150 * arc_buf_hdr_t can have multiple ARC buffers (arc_buf_t) which reference it.
151 * Each ARC buffer (arc_buf_t) is being actively accessed by a specific ARC
152 * consumer. The ARC will provide references to this data and will keep it
153 * cached until it is no longer in use. The ARC caches only the L1ARC's physical
154 * data block and will evict any arc_buf_t that is no longer referenced. The
155 * amount of memory consumed by the arc_buf_ts' data buffers can be seen via the
d3c2ae1c
GW
156 * "overhead_size" kstat.
157 *
2aa34383
DK
158 * Depending on the consumer, an arc_buf_t can be requested in uncompressed or
159 * compressed form. The typical case is that consumers will want uncompressed
160 * data, and when that happens a new data buffer is allocated where the data is
161 * decompressed for them to use. Currently the only consumer who wants
162 * compressed arc_buf_t's is "zfs send", when it streams data exactly as it
163 * exists on disk. When this happens, the arc_buf_t's data buffer is shared
164 * with the arc_buf_hdr_t.
d3c2ae1c 165 *
2aa34383
DK
166 * Here is a diagram showing an arc_buf_hdr_t referenced by two arc_buf_t's. The
167 * first one is owned by a compressed send consumer (and therefore references
168 * the same compressed data buffer as the arc_buf_hdr_t) and the second could be
169 * used by any other consumer (and has its own uncompressed copy of the data
170 * buffer).
d3c2ae1c 171 *
2aa34383
DK
172 * arc_buf_hdr_t
173 * +-----------+
174 * | fields |
175 * | common to |
176 * | L1- and |
177 * | L2ARC |
178 * +-----------+
179 * | l2arc_buf_hdr_t
180 * | |
181 * +-----------+
182 * | l1arc_buf_hdr_t
183 * | | arc_buf_t
184 * | b_buf +------------>+-----------+ arc_buf_t
a6255b7f 185 * | b_pabd +-+ |b_next +---->+-----------+
2aa34383
DK
186 * +-----------+ | |-----------| |b_next +-->NULL
187 * | |b_comp = T | +-----------+
188 * | |b_data +-+ |b_comp = F |
189 * | +-----------+ | |b_data +-+
190 * +->+------+ | +-----------+ |
191 * compressed | | | |
192 * data | |<--------------+ | uncompressed
193 * +------+ compressed, | data
194 * shared +-->+------+
195 * data | |
196 * | |
197 * +------+
d3c2ae1c
GW
198 *
199 * When a consumer reads a block, the ARC must first look to see if the
2aa34383
DK
200 * arc_buf_hdr_t is cached. If the hdr is cached then the ARC allocates a new
201 * arc_buf_t and either copies uncompressed data into a new data buffer from an
a6255b7f
DQ
202 * existing uncompressed arc_buf_t, decompresses the hdr's b_pabd buffer into a
203 * new data buffer, or shares the hdr's b_pabd buffer, depending on whether the
2aa34383
DK
204 * hdr is compressed and the desired compression characteristics of the
205 * arc_buf_t consumer. If the arc_buf_t ends up sharing data with the
206 * arc_buf_hdr_t and both of them are uncompressed then the arc_buf_t must be
207 * the last buffer in the hdr's b_buf list, however a shared compressed buf can
208 * be anywhere in the hdr's list.
d3c2ae1c
GW
209 *
210 * The diagram below shows an example of an uncompressed ARC hdr that is
2aa34383
DK
211 * sharing its data with an arc_buf_t (note that the shared uncompressed buf is
212 * the last element in the buf list):
d3c2ae1c
GW
213 *
214 * arc_buf_hdr_t
215 * +-----------+
216 * | |
217 * | |
218 * | |
219 * +-----------+
220 * l2arc_buf_hdr_t| |
221 * | |
222 * +-----------+
223 * l1arc_buf_hdr_t| |
224 * | | arc_buf_t (shared)
225 * | b_buf +------------>+---------+ arc_buf_t
226 * | | |b_next +---->+---------+
a6255b7f 227 * | b_pabd +-+ |---------| |b_next +-->NULL
d3c2ae1c
GW
228 * +-----------+ | | | +---------+
229 * | |b_data +-+ | |
230 * | +---------+ | |b_data +-+
231 * +->+------+ | +---------+ |
232 * | | | |
233 * uncompressed | | | |
234 * data +------+ | |
235 * ^ +->+------+ |
236 * | uncompressed | | |
237 * | data | | |
238 * | +------+ |
239 * +---------------------------------+
240 *
a6255b7f 241 * Writing to the ARC requires that the ARC first discard the hdr's b_pabd
d3c2ae1c 242 * since the physical block is about to be rewritten. The new data contents
2aa34383
DK
243 * will be contained in the arc_buf_t. As the I/O pipeline performs the write,
244 * it may compress the data before writing it to disk. The ARC will be called
245 * with the transformed data and will bcopy the transformed on-disk block into
a6255b7f 246 * a newly allocated b_pabd. Writes are always done into buffers which have
2aa34383
DK
247 * either been loaned (and hence are new and don't have other readers) or
248 * buffers which have been released (and hence have their own hdr, if there
249 * were originally other readers of the buf's original hdr). This ensures that
250 * the ARC only needs to update a single buf and its hdr after a write occurs.
d3c2ae1c 251 *
a6255b7f
DQ
252 * When the L2ARC is in use, it will also take advantage of the b_pabd. The
253 * L2ARC will always write the contents of b_pabd to the L2ARC. This means
2aa34383 254 * that when compressed ARC is enabled that the L2ARC blocks are identical
d3c2ae1c
GW
255 * to the on-disk block in the main data pool. This provides a significant
256 * advantage since the ARC can leverage the bp's checksum when reading from the
257 * L2ARC to determine if the contents are valid. However, if the compressed
2aa34383 258 * ARC is disabled, then the L2ARC's block must be transformed to look
d3c2ae1c
GW
259 * like the physical block in the main data pool before comparing the
260 * checksum and determining its validity.
261 */
262
34dc7c2f
BB
263#include <sys/spa.h>
264#include <sys/zio.h>
d3c2ae1c 265#include <sys/spa_impl.h>
3a17a7a9 266#include <sys/zio_compress.h>
d3c2ae1c 267#include <sys/zio_checksum.h>
34dc7c2f
BB
268#include <sys/zfs_context.h>
269#include <sys/arc.h>
36da08ef 270#include <sys/refcount.h>
b128c09f 271#include <sys/vdev.h>
9babb374 272#include <sys/vdev_impl.h>
e8b96c60 273#include <sys/dsl_pool.h>
a6255b7f 274#include <sys/zio_checksum.h>
ca0bf58d 275#include <sys/multilist.h>
a6255b7f 276#include <sys/abd.h>
34dc7c2f
BB
277#ifdef _KERNEL
278#include <sys/vmsystm.h>
279#include <vm/anon.h>
280#include <sys/fs/swapnode.h>
ab26409d 281#include <sys/zpl.h>
aaed7c40 282#include <linux/mm_compat.h>
34dc7c2f
BB
283#endif
284#include <sys/callb.h>
285#include <sys/kstat.h>
570827e1 286#include <sys/dmu_tx.h>
428870ff 287#include <zfs_fletcher.h>
59ec819a 288#include <sys/arc_impl.h>
49ee64e5 289#include <sys/trace_arc.h>
34dc7c2f 290
498877ba
MA
291#ifndef _KERNEL
292/* set with ZFS_DEBUG=watch, to enable watchpoints on frozen buffers */
293boolean_t arc_watch = B_FALSE;
294#endif
295
ca0bf58d
PS
296static kmutex_t arc_reclaim_lock;
297static kcondvar_t arc_reclaim_thread_cv;
298static boolean_t arc_reclaim_thread_exit;
299static kcondvar_t arc_reclaim_waiters_cv;
300
e8b96c60 301/*
ca0bf58d
PS
302 * The number of headers to evict in arc_evict_state_impl() before
303 * dropping the sublist lock and evicting from another sublist. A lower
304 * value means we're more likely to evict the "correct" header (i.e. the
305 * oldest header in the arc state), but comes with higher overhead
306 * (i.e. more invocations of arc_evict_state_impl()).
307 */
308int zfs_arc_evict_batch_limit = 10;
309
34dc7c2f 310/* number of seconds before growing cache again */
ca67b33a 311static int arc_grow_retry = 5;
34dc7c2f 312
a6255b7f 313/* shift of arc_c for calculating overflow limit in arc_get_data_impl */
ca67b33a 314int zfs_arc_overflow_shift = 8;
62422785 315
728d6ae9
BB
316/* shift of arc_c for calculating both min and max arc_p */
317static int arc_p_min_shift = 4;
318
d164b209 319/* log2(fraction of arc to reclaim) */
ca67b33a 320static int arc_shrink_shift = 7;
d164b209 321
34dc7c2f 322/*
ca67b33a
MA
323 * log2(fraction of ARC which must be free to allow growing).
324 * I.e. If there is less than arc_c >> arc_no_grow_shift free memory,
325 * when reading a new block into the ARC, we will evict an equal-sized block
326 * from the ARC.
327 *
328 * This must be less than arc_shrink_shift, so that when we shrink the ARC,
329 * we will still not allow it to grow.
34dc7c2f 330 */
ca67b33a 331int arc_no_grow_shift = 5;
bce45ec9 332
49ddb315 333
ca0bf58d
PS
334/*
335 * minimum lifespan of a prefetch block in clock ticks
336 * (initialized in arc_init())
337 */
ca67b33a 338static int arc_min_prefetch_lifespan;
ca0bf58d 339
e8b96c60
MA
340/*
341 * If this percent of memory is free, don't throttle.
342 */
343int arc_lotsfree_percent = 10;
344
34dc7c2f
BB
345static int arc_dead;
346
b128c09f
BB
347/*
348 * The arc has filled available memory and has now warmed up.
349 */
350static boolean_t arc_warm;
351
d3c2ae1c
GW
352/*
353 * log2 fraction of the zio arena to keep free.
354 */
355int arc_zio_arena_free_shift = 2;
356
34dc7c2f
BB
357/*
358 * These tunables are for performance analysis.
359 */
c28b2279
BB
360unsigned long zfs_arc_max = 0;
361unsigned long zfs_arc_min = 0;
362unsigned long zfs_arc_meta_limit = 0;
ca0bf58d 363unsigned long zfs_arc_meta_min = 0;
25458cbe
TC
364unsigned long zfs_arc_dnode_limit = 0;
365unsigned long zfs_arc_dnode_reduce_percent = 10;
ca67b33a
MA
366int zfs_arc_grow_retry = 0;
367int zfs_arc_shrink_shift = 0;
728d6ae9 368int zfs_arc_p_min_shift = 0;
ca67b33a 369int zfs_arc_average_blocksize = 8 * 1024; /* 8KB */
34dc7c2f 370
d3c2ae1c
GW
371int zfs_compressed_arc_enabled = B_TRUE;
372
9907cc1c
G
373/*
374 * ARC will evict meta buffers that exceed arc_meta_limit. This
375 * tunable make arc_meta_limit adjustable for different workloads.
376 */
377unsigned long zfs_arc_meta_limit_percent = 75;
378
379/*
380 * Percentage that can be consumed by dnodes of ARC meta buffers.
381 */
382unsigned long zfs_arc_dnode_limit_percent = 10;
383
bc888666 384/*
ca67b33a 385 * These tunables are Linux specific
bc888666 386 */
11f552fa 387unsigned long zfs_arc_sys_free = 0;
ca67b33a
MA
388int zfs_arc_min_prefetch_lifespan = 0;
389int zfs_arc_p_aggressive_disable = 1;
390int zfs_arc_p_dampener_disable = 1;
391int zfs_arc_meta_prune = 10000;
392int zfs_arc_meta_strategy = ARC_STRATEGY_META_BALANCED;
393int zfs_arc_meta_adjust_restarts = 4096;
7e8bddd0 394int zfs_arc_lotsfree_percent = 10;
bc888666 395
34dc7c2f
BB
396/* The 6 states: */
397static arc_state_t ARC_anon;
398static arc_state_t ARC_mru;
399static arc_state_t ARC_mru_ghost;
400static arc_state_t ARC_mfu;
401static arc_state_t ARC_mfu_ghost;
402static arc_state_t ARC_l2c_only;
403
404typedef struct arc_stats {
405 kstat_named_t arcstat_hits;
406 kstat_named_t arcstat_misses;
407 kstat_named_t arcstat_demand_data_hits;
408 kstat_named_t arcstat_demand_data_misses;
409 kstat_named_t arcstat_demand_metadata_hits;
410 kstat_named_t arcstat_demand_metadata_misses;
411 kstat_named_t arcstat_prefetch_data_hits;
412 kstat_named_t arcstat_prefetch_data_misses;
413 kstat_named_t arcstat_prefetch_metadata_hits;
414 kstat_named_t arcstat_prefetch_metadata_misses;
415 kstat_named_t arcstat_mru_hits;
416 kstat_named_t arcstat_mru_ghost_hits;
417 kstat_named_t arcstat_mfu_hits;
418 kstat_named_t arcstat_mfu_ghost_hits;
419 kstat_named_t arcstat_deleted;
e49f1e20
WA
420 /*
421 * Number of buffers that could not be evicted because the hash lock
422 * was held by another thread. The lock may not necessarily be held
423 * by something using the same buffer, since hash locks are shared
424 * by multiple buffers.
425 */
34dc7c2f 426 kstat_named_t arcstat_mutex_miss;
e49f1e20
WA
427 /*
428 * Number of buffers skipped because they have I/O in progress, are
429 * indrect prefetch buffers that have not lived long enough, or are
430 * not from the spa we're trying to evict from.
431 */
34dc7c2f 432 kstat_named_t arcstat_evict_skip;
ca0bf58d
PS
433 /*
434 * Number of times arc_evict_state() was unable to evict enough
435 * buffers to reach its target amount.
436 */
437 kstat_named_t arcstat_evict_not_enough;
428870ff
BB
438 kstat_named_t arcstat_evict_l2_cached;
439 kstat_named_t arcstat_evict_l2_eligible;
440 kstat_named_t arcstat_evict_l2_ineligible;
ca0bf58d 441 kstat_named_t arcstat_evict_l2_skip;
34dc7c2f
BB
442 kstat_named_t arcstat_hash_elements;
443 kstat_named_t arcstat_hash_elements_max;
444 kstat_named_t arcstat_hash_collisions;
445 kstat_named_t arcstat_hash_chains;
446 kstat_named_t arcstat_hash_chain_max;
447 kstat_named_t arcstat_p;
448 kstat_named_t arcstat_c;
449 kstat_named_t arcstat_c_min;
450 kstat_named_t arcstat_c_max;
451 kstat_named_t arcstat_size;
d3c2ae1c 452 /*
a6255b7f 453 * Number of compressed bytes stored in the arc_buf_hdr_t's b_pabd.
d3c2ae1c
GW
454 * Note that the compressed bytes may match the uncompressed bytes
455 * if the block is either not compressed or compressed arc is disabled.
456 */
457 kstat_named_t arcstat_compressed_size;
458 /*
a6255b7f 459 * Uncompressed size of the data stored in b_pabd. If compressed
d3c2ae1c
GW
460 * arc is disabled then this value will be identical to the stat
461 * above.
462 */
463 kstat_named_t arcstat_uncompressed_size;
464 /*
465 * Number of bytes stored in all the arc_buf_t's. This is classified
466 * as "overhead" since this data is typically short-lived and will
467 * be evicted from the arc when it becomes unreferenced unless the
468 * zfs_keep_uncompressed_metadata or zfs_keep_uncompressed_level
469 * values have been set (see comment in dbuf.c for more information).
470 */
471 kstat_named_t arcstat_overhead_size;
500445c0
PS
472 /*
473 * Number of bytes consumed by internal ARC structures necessary
474 * for tracking purposes; these structures are not actually
475 * backed by ARC buffers. This includes arc_buf_hdr_t structures
476 * (allocated via arc_buf_hdr_t_full and arc_buf_hdr_t_l2only
477 * caches), and arc_buf_t structures (allocated via arc_buf_t
478 * cache).
479 */
34dc7c2f 480 kstat_named_t arcstat_hdr_size;
500445c0
PS
481 /*
482 * Number of bytes consumed by ARC buffers of type equal to
483 * ARC_BUFC_DATA. This is generally consumed by buffers backing
484 * on disk user data (e.g. plain file contents).
485 */
d164b209 486 kstat_named_t arcstat_data_size;
500445c0
PS
487 /*
488 * Number of bytes consumed by ARC buffers of type equal to
489 * ARC_BUFC_METADATA. This is generally consumed by buffers
490 * backing on disk data that is used for internal ZFS
491 * structures (e.g. ZAP, dnode, indirect blocks, etc).
492 */
493 kstat_named_t arcstat_metadata_size;
494 /*
25458cbe 495 * Number of bytes consumed by dmu_buf_impl_t objects.
500445c0 496 */
25458cbe
TC
497 kstat_named_t arcstat_dbuf_size;
498 /*
499 * Number of bytes consumed by dnode_t objects.
500 */
501 kstat_named_t arcstat_dnode_size;
502 /*
503 * Number of bytes consumed by bonus buffers.
504 */
505 kstat_named_t arcstat_bonus_size;
500445c0
PS
506 /*
507 * Total number of bytes consumed by ARC buffers residing in the
508 * arc_anon state. This includes *all* buffers in the arc_anon
509 * state; e.g. data, metadata, evictable, and unevictable buffers
510 * are all included in this value.
511 */
13be560d 512 kstat_named_t arcstat_anon_size;
500445c0
PS
513 /*
514 * Number of bytes consumed by ARC buffers that meet the
515 * following criteria: backing buffers of type ARC_BUFC_DATA,
516 * residing in the arc_anon state, and are eligible for eviction
517 * (e.g. have no outstanding holds on the buffer).
518 */
519 kstat_named_t arcstat_anon_evictable_data;
520 /*
521 * Number of bytes consumed by ARC buffers that meet the
522 * following criteria: backing buffers of type ARC_BUFC_METADATA,
523 * residing in the arc_anon state, and are eligible for eviction
524 * (e.g. have no outstanding holds on the buffer).
525 */
526 kstat_named_t arcstat_anon_evictable_metadata;
527 /*
528 * Total number of bytes consumed by ARC buffers residing in the
529 * arc_mru state. This includes *all* buffers in the arc_mru
530 * state; e.g. data, metadata, evictable, and unevictable buffers
531 * are all included in this value.
532 */
13be560d 533 kstat_named_t arcstat_mru_size;
500445c0
PS
534 /*
535 * Number of bytes consumed by ARC buffers that meet the
536 * following criteria: backing buffers of type ARC_BUFC_DATA,
537 * residing in the arc_mru state, and are eligible for eviction
538 * (e.g. have no outstanding holds on the buffer).
539 */
540 kstat_named_t arcstat_mru_evictable_data;
541 /*
542 * Number of bytes consumed by ARC buffers that meet the
543 * following criteria: backing buffers of type ARC_BUFC_METADATA,
544 * residing in the arc_mru state, and are eligible for eviction
545 * (e.g. have no outstanding holds on the buffer).
546 */
547 kstat_named_t arcstat_mru_evictable_metadata;
548 /*
549 * Total number of bytes that *would have been* consumed by ARC
550 * buffers in the arc_mru_ghost state. The key thing to note
551 * here, is the fact that this size doesn't actually indicate
552 * RAM consumption. The ghost lists only consist of headers and
553 * don't actually have ARC buffers linked off of these headers.
554 * Thus, *if* the headers had associated ARC buffers, these
555 * buffers *would have* consumed this number of bytes.
556 */
13be560d 557 kstat_named_t arcstat_mru_ghost_size;
500445c0
PS
558 /*
559 * Number of bytes that *would have been* consumed by ARC
560 * buffers that are eligible for eviction, of type
561 * ARC_BUFC_DATA, and linked off the arc_mru_ghost state.
562 */
563 kstat_named_t arcstat_mru_ghost_evictable_data;
564 /*
565 * Number of bytes that *would have been* consumed by ARC
566 * buffers that are eligible for eviction, of type
567 * ARC_BUFC_METADATA, and linked off the arc_mru_ghost state.
568 */
569 kstat_named_t arcstat_mru_ghost_evictable_metadata;
570 /*
571 * Total number of bytes consumed by ARC buffers residing in the
572 * arc_mfu state. This includes *all* buffers in the arc_mfu
573 * state; e.g. data, metadata, evictable, and unevictable buffers
574 * are all included in this value.
575 */
13be560d 576 kstat_named_t arcstat_mfu_size;
500445c0
PS
577 /*
578 * Number of bytes consumed by ARC buffers that are eligible for
579 * eviction, of type ARC_BUFC_DATA, and reside in the arc_mfu
580 * state.
581 */
582 kstat_named_t arcstat_mfu_evictable_data;
583 /*
584 * Number of bytes consumed by ARC buffers that are eligible for
585 * eviction, of type ARC_BUFC_METADATA, and reside in the
586 * arc_mfu state.
587 */
588 kstat_named_t arcstat_mfu_evictable_metadata;
589 /*
590 * Total number of bytes that *would have been* consumed by ARC
591 * buffers in the arc_mfu_ghost state. See the comment above
592 * arcstat_mru_ghost_size for more details.
593 */
13be560d 594 kstat_named_t arcstat_mfu_ghost_size;
500445c0
PS
595 /*
596 * Number of bytes that *would have been* consumed by ARC
597 * buffers that are eligible for eviction, of type
598 * ARC_BUFC_DATA, and linked off the arc_mfu_ghost state.
599 */
600 kstat_named_t arcstat_mfu_ghost_evictable_data;
601 /*
602 * Number of bytes that *would have been* consumed by ARC
603 * buffers that are eligible for eviction, of type
604 * ARC_BUFC_METADATA, and linked off the arc_mru_ghost state.
605 */
606 kstat_named_t arcstat_mfu_ghost_evictable_metadata;
34dc7c2f
BB
607 kstat_named_t arcstat_l2_hits;
608 kstat_named_t arcstat_l2_misses;
609 kstat_named_t arcstat_l2_feeds;
610 kstat_named_t arcstat_l2_rw_clash;
d164b209
BB
611 kstat_named_t arcstat_l2_read_bytes;
612 kstat_named_t arcstat_l2_write_bytes;
34dc7c2f
BB
613 kstat_named_t arcstat_l2_writes_sent;
614 kstat_named_t arcstat_l2_writes_done;
615 kstat_named_t arcstat_l2_writes_error;
ca0bf58d 616 kstat_named_t arcstat_l2_writes_lock_retry;
34dc7c2f
BB
617 kstat_named_t arcstat_l2_evict_lock_retry;
618 kstat_named_t arcstat_l2_evict_reading;
b9541d6b 619 kstat_named_t arcstat_l2_evict_l1cached;
34dc7c2f
BB
620 kstat_named_t arcstat_l2_free_on_write;
621 kstat_named_t arcstat_l2_abort_lowmem;
622 kstat_named_t arcstat_l2_cksum_bad;
623 kstat_named_t arcstat_l2_io_error;
624 kstat_named_t arcstat_l2_size;
3a17a7a9 625 kstat_named_t arcstat_l2_asize;
34dc7c2f
BB
626 kstat_named_t arcstat_l2_hdr_size;
627 kstat_named_t arcstat_memory_throttle_count;
7cb67b45
BB
628 kstat_named_t arcstat_memory_direct_count;
629 kstat_named_t arcstat_memory_indirect_count;
1834f2d8
BB
630 kstat_named_t arcstat_no_grow;
631 kstat_named_t arcstat_tempreserve;
632 kstat_named_t arcstat_loaned_bytes;
ab26409d 633 kstat_named_t arcstat_prune;
1834f2d8
BB
634 kstat_named_t arcstat_meta_used;
635 kstat_named_t arcstat_meta_limit;
25458cbe 636 kstat_named_t arcstat_dnode_limit;
1834f2d8 637 kstat_named_t arcstat_meta_max;
ca0bf58d 638 kstat_named_t arcstat_meta_min;
7f60329a
MA
639 kstat_named_t arcstat_sync_wait_for_async;
640 kstat_named_t arcstat_demand_hit_predictive_prefetch;
11f552fa
BB
641 kstat_named_t arcstat_need_free;
642 kstat_named_t arcstat_sys_free;
34dc7c2f
BB
643} arc_stats_t;
644
645static arc_stats_t arc_stats = {
646 { "hits", KSTAT_DATA_UINT64 },
647 { "misses", KSTAT_DATA_UINT64 },
648 { "demand_data_hits", KSTAT_DATA_UINT64 },
649 { "demand_data_misses", KSTAT_DATA_UINT64 },
650 { "demand_metadata_hits", KSTAT_DATA_UINT64 },
651 { "demand_metadata_misses", KSTAT_DATA_UINT64 },
652 { "prefetch_data_hits", KSTAT_DATA_UINT64 },
653 { "prefetch_data_misses", KSTAT_DATA_UINT64 },
654 { "prefetch_metadata_hits", KSTAT_DATA_UINT64 },
655 { "prefetch_metadata_misses", KSTAT_DATA_UINT64 },
656 { "mru_hits", KSTAT_DATA_UINT64 },
657 { "mru_ghost_hits", KSTAT_DATA_UINT64 },
658 { "mfu_hits", KSTAT_DATA_UINT64 },
659 { "mfu_ghost_hits", KSTAT_DATA_UINT64 },
660 { "deleted", KSTAT_DATA_UINT64 },
34dc7c2f
BB
661 { "mutex_miss", KSTAT_DATA_UINT64 },
662 { "evict_skip", KSTAT_DATA_UINT64 },
ca0bf58d 663 { "evict_not_enough", KSTAT_DATA_UINT64 },
428870ff
BB
664 { "evict_l2_cached", KSTAT_DATA_UINT64 },
665 { "evict_l2_eligible", KSTAT_DATA_UINT64 },
666 { "evict_l2_ineligible", KSTAT_DATA_UINT64 },
ca0bf58d 667 { "evict_l2_skip", KSTAT_DATA_UINT64 },
34dc7c2f
BB
668 { "hash_elements", KSTAT_DATA_UINT64 },
669 { "hash_elements_max", KSTAT_DATA_UINT64 },
670 { "hash_collisions", KSTAT_DATA_UINT64 },
671 { "hash_chains", KSTAT_DATA_UINT64 },
672 { "hash_chain_max", KSTAT_DATA_UINT64 },
673 { "p", KSTAT_DATA_UINT64 },
674 { "c", KSTAT_DATA_UINT64 },
675 { "c_min", KSTAT_DATA_UINT64 },
676 { "c_max", KSTAT_DATA_UINT64 },
677 { "size", KSTAT_DATA_UINT64 },
d3c2ae1c
GW
678 { "compressed_size", KSTAT_DATA_UINT64 },
679 { "uncompressed_size", KSTAT_DATA_UINT64 },
680 { "overhead_size", KSTAT_DATA_UINT64 },
34dc7c2f 681 { "hdr_size", KSTAT_DATA_UINT64 },
d164b209 682 { "data_size", KSTAT_DATA_UINT64 },
500445c0 683 { "metadata_size", KSTAT_DATA_UINT64 },
25458cbe
TC
684 { "dbuf_size", KSTAT_DATA_UINT64 },
685 { "dnode_size", KSTAT_DATA_UINT64 },
686 { "bonus_size", KSTAT_DATA_UINT64 },
13be560d 687 { "anon_size", KSTAT_DATA_UINT64 },
500445c0
PS
688 { "anon_evictable_data", KSTAT_DATA_UINT64 },
689 { "anon_evictable_metadata", KSTAT_DATA_UINT64 },
13be560d 690 { "mru_size", KSTAT_DATA_UINT64 },
500445c0
PS
691 { "mru_evictable_data", KSTAT_DATA_UINT64 },
692 { "mru_evictable_metadata", KSTAT_DATA_UINT64 },
13be560d 693 { "mru_ghost_size", KSTAT_DATA_UINT64 },
500445c0
PS
694 { "mru_ghost_evictable_data", KSTAT_DATA_UINT64 },
695 { "mru_ghost_evictable_metadata", KSTAT_DATA_UINT64 },
13be560d 696 { "mfu_size", KSTAT_DATA_UINT64 },
500445c0
PS
697 { "mfu_evictable_data", KSTAT_DATA_UINT64 },
698 { "mfu_evictable_metadata", KSTAT_DATA_UINT64 },
13be560d 699 { "mfu_ghost_size", KSTAT_DATA_UINT64 },
500445c0
PS
700 { "mfu_ghost_evictable_data", KSTAT_DATA_UINT64 },
701 { "mfu_ghost_evictable_metadata", KSTAT_DATA_UINT64 },
34dc7c2f
BB
702 { "l2_hits", KSTAT_DATA_UINT64 },
703 { "l2_misses", KSTAT_DATA_UINT64 },
704 { "l2_feeds", KSTAT_DATA_UINT64 },
705 { "l2_rw_clash", KSTAT_DATA_UINT64 },
d164b209
BB
706 { "l2_read_bytes", KSTAT_DATA_UINT64 },
707 { "l2_write_bytes", KSTAT_DATA_UINT64 },
34dc7c2f
BB
708 { "l2_writes_sent", KSTAT_DATA_UINT64 },
709 { "l2_writes_done", KSTAT_DATA_UINT64 },
710 { "l2_writes_error", KSTAT_DATA_UINT64 },
ca0bf58d 711 { "l2_writes_lock_retry", KSTAT_DATA_UINT64 },
34dc7c2f
BB
712 { "l2_evict_lock_retry", KSTAT_DATA_UINT64 },
713 { "l2_evict_reading", KSTAT_DATA_UINT64 },
b9541d6b 714 { "l2_evict_l1cached", KSTAT_DATA_UINT64 },
34dc7c2f
BB
715 { "l2_free_on_write", KSTAT_DATA_UINT64 },
716 { "l2_abort_lowmem", KSTAT_DATA_UINT64 },
717 { "l2_cksum_bad", KSTAT_DATA_UINT64 },
718 { "l2_io_error", KSTAT_DATA_UINT64 },
719 { "l2_size", KSTAT_DATA_UINT64 },
3a17a7a9 720 { "l2_asize", KSTAT_DATA_UINT64 },
34dc7c2f 721 { "l2_hdr_size", KSTAT_DATA_UINT64 },
1834f2d8 722 { "memory_throttle_count", KSTAT_DATA_UINT64 },
7cb67b45
BB
723 { "memory_direct_count", KSTAT_DATA_UINT64 },
724 { "memory_indirect_count", KSTAT_DATA_UINT64 },
1834f2d8
BB
725 { "arc_no_grow", KSTAT_DATA_UINT64 },
726 { "arc_tempreserve", KSTAT_DATA_UINT64 },
727 { "arc_loaned_bytes", KSTAT_DATA_UINT64 },
ab26409d 728 { "arc_prune", KSTAT_DATA_UINT64 },
1834f2d8
BB
729 { "arc_meta_used", KSTAT_DATA_UINT64 },
730 { "arc_meta_limit", KSTAT_DATA_UINT64 },
25458cbe 731 { "arc_dnode_limit", KSTAT_DATA_UINT64 },
1834f2d8 732 { "arc_meta_max", KSTAT_DATA_UINT64 },
11f552fa 733 { "arc_meta_min", KSTAT_DATA_UINT64 },
7f60329a
MA
734 { "sync_wait_for_async", KSTAT_DATA_UINT64 },
735 { "demand_hit_predictive_prefetch", KSTAT_DATA_UINT64 },
11f552fa
BB
736 { "arc_need_free", KSTAT_DATA_UINT64 },
737 { "arc_sys_free", KSTAT_DATA_UINT64 }
34dc7c2f
BB
738};
739
740#define ARCSTAT(stat) (arc_stats.stat.value.ui64)
741
742#define ARCSTAT_INCR(stat, val) \
d3cc8b15 743 atomic_add_64(&arc_stats.stat.value.ui64, (val))
34dc7c2f 744
428870ff 745#define ARCSTAT_BUMP(stat) ARCSTAT_INCR(stat, 1)
34dc7c2f
BB
746#define ARCSTAT_BUMPDOWN(stat) ARCSTAT_INCR(stat, -1)
747
748#define ARCSTAT_MAX(stat, val) { \
749 uint64_t m; \
750 while ((val) > (m = arc_stats.stat.value.ui64) && \
751 (m != atomic_cas_64(&arc_stats.stat.value.ui64, m, (val)))) \
752 continue; \
753}
754
755#define ARCSTAT_MAXSTAT(stat) \
756 ARCSTAT_MAX(stat##_max, arc_stats.stat.value.ui64)
757
758/*
759 * We define a macro to allow ARC hits/misses to be easily broken down by
760 * two separate conditions, giving a total of four different subtypes for
761 * each of hits and misses (so eight statistics total).
762 */
763#define ARCSTAT_CONDSTAT(cond1, stat1, notstat1, cond2, stat2, notstat2, stat) \
764 if (cond1) { \
765 if (cond2) { \
766 ARCSTAT_BUMP(arcstat_##stat1##_##stat2##_##stat); \
767 } else { \
768 ARCSTAT_BUMP(arcstat_##stat1##_##notstat2##_##stat); \
769 } \
770 } else { \
771 if (cond2) { \
772 ARCSTAT_BUMP(arcstat_##notstat1##_##stat2##_##stat); \
773 } else { \
774 ARCSTAT_BUMP(arcstat_##notstat1##_##notstat2##_##stat);\
775 } \
776 }
777
778kstat_t *arc_ksp;
428870ff 779static arc_state_t *arc_anon;
34dc7c2f
BB
780static arc_state_t *arc_mru;
781static arc_state_t *arc_mru_ghost;
782static arc_state_t *arc_mfu;
783static arc_state_t *arc_mfu_ghost;
784static arc_state_t *arc_l2c_only;
785
786/*
787 * There are several ARC variables that are critical to export as kstats --
788 * but we don't want to have to grovel around in the kstat whenever we wish to
789 * manipulate them. For these variables, we therefore define them to be in
790 * terms of the statistic variable. This assures that we are not introducing
791 * the possibility of inconsistency by having shadow copies of the variables,
792 * while still allowing the code to be readable.
793 */
794#define arc_size ARCSTAT(arcstat_size) /* actual total arc size */
795#define arc_p ARCSTAT(arcstat_p) /* target size of MRU */
796#define arc_c ARCSTAT(arcstat_c) /* target size of cache */
797#define arc_c_min ARCSTAT(arcstat_c_min) /* min target cache size */
798#define arc_c_max ARCSTAT(arcstat_c_max) /* max target cache size */
d3c2ae1c 799#define arc_no_grow ARCSTAT(arcstat_no_grow) /* do not grow cache size */
1834f2d8
BB
800#define arc_tempreserve ARCSTAT(arcstat_tempreserve)
801#define arc_loaned_bytes ARCSTAT(arcstat_loaned_bytes)
23c0a133 802#define arc_meta_limit ARCSTAT(arcstat_meta_limit) /* max size for metadata */
25458cbe 803#define arc_dnode_limit ARCSTAT(arcstat_dnode_limit) /* max size for dnodes */
ca0bf58d 804#define arc_meta_min ARCSTAT(arcstat_meta_min) /* min size for metadata */
23c0a133
GW
805#define arc_meta_used ARCSTAT(arcstat_meta_used) /* size of metadata */
806#define arc_meta_max ARCSTAT(arcstat_meta_max) /* max size of metadata */
25458cbe
TC
807#define arc_dbuf_size ARCSTAT(arcstat_dbuf_size) /* dbuf metadata */
808#define arc_dnode_size ARCSTAT(arcstat_dnode_size) /* dnode metadata */
809#define arc_bonus_size ARCSTAT(arcstat_bonus_size) /* bonus buffer metadata */
11f552fa
BB
810#define arc_need_free ARCSTAT(arcstat_need_free) /* bytes to be freed */
811#define arc_sys_free ARCSTAT(arcstat_sys_free) /* target system free bytes */
34dc7c2f 812
d3c2ae1c
GW
813/* compressed size of entire arc */
814#define arc_compressed_size ARCSTAT(arcstat_compressed_size)
815/* uncompressed size of entire arc */
816#define arc_uncompressed_size ARCSTAT(arcstat_uncompressed_size)
817/* number of bytes in the arc from arc_buf_t's */
818#define arc_overhead_size ARCSTAT(arcstat_overhead_size)
3a17a7a9 819
ab26409d
BB
820static list_t arc_prune_list;
821static kmutex_t arc_prune_mtx;
f6046738 822static taskq_t *arc_prune_taskq;
428870ff 823
34dc7c2f
BB
824#define GHOST_STATE(state) \
825 ((state) == arc_mru_ghost || (state) == arc_mfu_ghost || \
826 (state) == arc_l2c_only)
827
2a432414
GW
828#define HDR_IN_HASH_TABLE(hdr) ((hdr)->b_flags & ARC_FLAG_IN_HASH_TABLE)
829#define HDR_IO_IN_PROGRESS(hdr) ((hdr)->b_flags & ARC_FLAG_IO_IN_PROGRESS)
830#define HDR_IO_ERROR(hdr) ((hdr)->b_flags & ARC_FLAG_IO_ERROR)
831#define HDR_PREFETCH(hdr) ((hdr)->b_flags & ARC_FLAG_PREFETCH)
d3c2ae1c
GW
832#define HDR_COMPRESSION_ENABLED(hdr) \
833 ((hdr)->b_flags & ARC_FLAG_COMPRESSED_ARC)
b9541d6b 834
2a432414
GW
835#define HDR_L2CACHE(hdr) ((hdr)->b_flags & ARC_FLAG_L2CACHE)
836#define HDR_L2_READING(hdr) \
d3c2ae1c
GW
837 (((hdr)->b_flags & ARC_FLAG_IO_IN_PROGRESS) && \
838 ((hdr)->b_flags & ARC_FLAG_HAS_L2HDR))
2a432414
GW
839#define HDR_L2_WRITING(hdr) ((hdr)->b_flags & ARC_FLAG_L2_WRITING)
840#define HDR_L2_EVICTED(hdr) ((hdr)->b_flags & ARC_FLAG_L2_EVICTED)
841#define HDR_L2_WRITE_HEAD(hdr) ((hdr)->b_flags & ARC_FLAG_L2_WRITE_HEAD)
d3c2ae1c 842#define HDR_SHARED_DATA(hdr) ((hdr)->b_flags & ARC_FLAG_SHARED_DATA)
34dc7c2f 843
b9541d6b 844#define HDR_ISTYPE_METADATA(hdr) \
d3c2ae1c 845 ((hdr)->b_flags & ARC_FLAG_BUFC_METADATA)
b9541d6b
CW
846#define HDR_ISTYPE_DATA(hdr) (!HDR_ISTYPE_METADATA(hdr))
847
848#define HDR_HAS_L1HDR(hdr) ((hdr)->b_flags & ARC_FLAG_HAS_L1HDR)
849#define HDR_HAS_L2HDR(hdr) ((hdr)->b_flags & ARC_FLAG_HAS_L2HDR)
850
d3c2ae1c
GW
851/* For storing compression mode in b_flags */
852#define HDR_COMPRESS_OFFSET (highbit64(ARC_FLAG_COMPRESS_0) - 1)
853
854#define HDR_GET_COMPRESS(hdr) ((enum zio_compress)BF32_GET((hdr)->b_flags, \
855 HDR_COMPRESS_OFFSET, SPA_COMPRESSBITS))
856#define HDR_SET_COMPRESS(hdr, cmp) BF32_SET((hdr)->b_flags, \
857 HDR_COMPRESS_OFFSET, SPA_COMPRESSBITS, (cmp));
858
859#define ARC_BUF_LAST(buf) ((buf)->b_next == NULL)
524b4217
DK
860#define ARC_BUF_SHARED(buf) ((buf)->b_flags & ARC_BUF_FLAG_SHARED)
861#define ARC_BUF_COMPRESSED(buf) ((buf)->b_flags & ARC_BUF_FLAG_COMPRESSED)
d3c2ae1c 862
34dc7c2f
BB
863/*
864 * Other sizes
865 */
866
b9541d6b
CW
867#define HDR_FULL_SIZE ((int64_t)sizeof (arc_buf_hdr_t))
868#define HDR_L2ONLY_SIZE ((int64_t)offsetof(arc_buf_hdr_t, b_l1hdr))
34dc7c2f
BB
869
870/*
871 * Hash table routines
872 */
873
00b46022
BB
874#define HT_LOCK_ALIGN 64
875#define HT_LOCK_PAD (P2NPHASE(sizeof (kmutex_t), (HT_LOCK_ALIGN)))
34dc7c2f
BB
876
877struct ht_lock {
878 kmutex_t ht_lock;
879#ifdef _KERNEL
00b46022 880 unsigned char pad[HT_LOCK_PAD];
34dc7c2f
BB
881#endif
882};
883
b31d8ea7 884#define BUF_LOCKS 8192
34dc7c2f
BB
885typedef struct buf_hash_table {
886 uint64_t ht_mask;
887 arc_buf_hdr_t **ht_table;
888 struct ht_lock ht_locks[BUF_LOCKS];
889} buf_hash_table_t;
890
891static buf_hash_table_t buf_hash_table;
892
893#define BUF_HASH_INDEX(spa, dva, birth) \
894 (buf_hash(spa, dva, birth) & buf_hash_table.ht_mask)
895#define BUF_HASH_LOCK_NTRY(idx) (buf_hash_table.ht_locks[idx & (BUF_LOCKS-1)])
896#define BUF_HASH_LOCK(idx) (&(BUF_HASH_LOCK_NTRY(idx).ht_lock))
428870ff
BB
897#define HDR_LOCK(hdr) \
898 (BUF_HASH_LOCK(BUF_HASH_INDEX(hdr->b_spa, &hdr->b_dva, hdr->b_birth)))
34dc7c2f
BB
899
900uint64_t zfs_crc64_table[256];
901
902/*
903 * Level 2 ARC
904 */
905
906#define L2ARC_WRITE_SIZE (8 * 1024 * 1024) /* initial write max */
3a17a7a9 907#define L2ARC_HEADROOM 2 /* num of writes */
8a09d5fd 908
3a17a7a9
SK
909/*
910 * If we discover during ARC scan any buffers to be compressed, we boost
911 * our headroom for the next scanning cycle by this percentage multiple.
912 */
913#define L2ARC_HEADROOM_BOOST 200
d164b209
BB
914#define L2ARC_FEED_SECS 1 /* caching interval secs */
915#define L2ARC_FEED_MIN_MS 200 /* min caching interval ms */
34dc7c2f 916
4aafab91
G
917/*
918 * We can feed L2ARC from two states of ARC buffers, mru and mfu,
919 * and each of the state has two types: data and metadata.
920 */
921#define L2ARC_FEED_TYPES 4
922
34dc7c2f
BB
923#define l2arc_writes_sent ARCSTAT(arcstat_l2_writes_sent)
924#define l2arc_writes_done ARCSTAT(arcstat_l2_writes_done)
925
d3cc8b15 926/* L2ARC Performance Tunables */
abd8610c
BB
927unsigned long l2arc_write_max = L2ARC_WRITE_SIZE; /* def max write size */
928unsigned long l2arc_write_boost = L2ARC_WRITE_SIZE; /* extra warmup write */
929unsigned long l2arc_headroom = L2ARC_HEADROOM; /* # of dev writes */
3a17a7a9 930unsigned long l2arc_headroom_boost = L2ARC_HEADROOM_BOOST;
abd8610c
BB
931unsigned long l2arc_feed_secs = L2ARC_FEED_SECS; /* interval seconds */
932unsigned long l2arc_feed_min_ms = L2ARC_FEED_MIN_MS; /* min interval msecs */
933int l2arc_noprefetch = B_TRUE; /* don't cache prefetch bufs */
934int l2arc_feed_again = B_TRUE; /* turbo warmup */
c93504f0 935int l2arc_norw = B_FALSE; /* no reads during writes */
34dc7c2f
BB
936
937/*
938 * L2ARC Internals
939 */
34dc7c2f
BB
940static list_t L2ARC_dev_list; /* device list */
941static list_t *l2arc_dev_list; /* device list pointer */
942static kmutex_t l2arc_dev_mtx; /* device list mutex */
943static l2arc_dev_t *l2arc_dev_last; /* last device used */
34dc7c2f
BB
944static list_t L2ARC_free_on_write; /* free after write buf list */
945static list_t *l2arc_free_on_write; /* free after write list ptr */
946static kmutex_t l2arc_free_on_write_mtx; /* mutex for list */
947static uint64_t l2arc_ndev; /* number of devices */
948
949typedef struct l2arc_read_callback {
2aa34383 950 arc_buf_hdr_t *l2rcb_hdr; /* read header */
3a17a7a9 951 blkptr_t l2rcb_bp; /* original blkptr */
5dbd68a3 952 zbookmark_phys_t l2rcb_zb; /* original bookmark */
3a17a7a9 953 int l2rcb_flags; /* original flags */
34dc7c2f
BB
954} l2arc_read_callback_t;
955
34dc7c2f
BB
956typedef struct l2arc_data_free {
957 /* protected by l2arc_free_on_write_mtx */
a6255b7f 958 abd_t *l2df_abd;
34dc7c2f 959 size_t l2df_size;
d3c2ae1c 960 arc_buf_contents_t l2df_type;
34dc7c2f
BB
961 list_node_t l2df_list_node;
962} l2arc_data_free_t;
963
964static kmutex_t l2arc_feed_thr_lock;
965static kcondvar_t l2arc_feed_thr_cv;
966static uint8_t l2arc_thread_exit;
967
a6255b7f 968static abd_t *arc_get_data_abd(arc_buf_hdr_t *, uint64_t, void *);
d3c2ae1c 969static void *arc_get_data_buf(arc_buf_hdr_t *, uint64_t, void *);
a6255b7f
DQ
970static void arc_get_data_impl(arc_buf_hdr_t *, uint64_t, void *);
971static void arc_free_data_abd(arc_buf_hdr_t *, abd_t *, uint64_t, void *);
d3c2ae1c 972static void arc_free_data_buf(arc_buf_hdr_t *, void *, uint64_t, void *);
a6255b7f
DQ
973static void arc_free_data_impl(arc_buf_hdr_t *hdr, uint64_t size, void *tag);
974static void arc_hdr_free_pabd(arc_buf_hdr_t *);
975static void arc_hdr_alloc_pabd(arc_buf_hdr_t *);
2a432414 976static void arc_access(arc_buf_hdr_t *, kmutex_t *);
ca0bf58d 977static boolean_t arc_is_overflowing(void);
2a432414 978static void arc_buf_watch(arc_buf_t *);
ca67b33a 979static void arc_tuning_update(void);
25458cbe 980static void arc_prune_async(int64_t);
9edb3695 981static uint64_t arc_all_memory(void);
2a432414 982
b9541d6b
CW
983static arc_buf_contents_t arc_buf_type(arc_buf_hdr_t *);
984static uint32_t arc_bufc_to_flags(arc_buf_contents_t);
d3c2ae1c
GW
985static inline void arc_hdr_set_flags(arc_buf_hdr_t *hdr, arc_flags_t flags);
986static inline void arc_hdr_clear_flags(arc_buf_hdr_t *hdr, arc_flags_t flags);
b9541d6b 987
2a432414
GW
988static boolean_t l2arc_write_eligible(uint64_t, arc_buf_hdr_t *);
989static void l2arc_read_done(zio_t *);
34dc7c2f
BB
990
991static uint64_t
d164b209 992buf_hash(uint64_t spa, const dva_t *dva, uint64_t birth)
34dc7c2f 993{
34dc7c2f
BB
994 uint8_t *vdva = (uint8_t *)dva;
995 uint64_t crc = -1ULL;
996 int i;
997
998 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
999
1000 for (i = 0; i < sizeof (dva_t); i++)
1001 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF];
1002
d164b209 1003 crc ^= (spa>>8) ^ birth;
34dc7c2f
BB
1004
1005 return (crc);
1006}
1007
d3c2ae1c
GW
1008#define HDR_EMPTY(hdr) \
1009 ((hdr)->b_dva.dva_word[0] == 0 && \
1010 (hdr)->b_dva.dva_word[1] == 0)
34dc7c2f 1011
d3c2ae1c
GW
1012#define HDR_EQUAL(spa, dva, birth, hdr) \
1013 ((hdr)->b_dva.dva_word[0] == (dva)->dva_word[0]) && \
1014 ((hdr)->b_dva.dva_word[1] == (dva)->dva_word[1]) && \
1015 ((hdr)->b_birth == birth) && ((hdr)->b_spa == spa)
34dc7c2f 1016
428870ff
BB
1017static void
1018buf_discard_identity(arc_buf_hdr_t *hdr)
1019{
1020 hdr->b_dva.dva_word[0] = 0;
1021 hdr->b_dva.dva_word[1] = 0;
1022 hdr->b_birth = 0;
428870ff
BB
1023}
1024
34dc7c2f 1025static arc_buf_hdr_t *
9b67f605 1026buf_hash_find(uint64_t spa, const blkptr_t *bp, kmutex_t **lockp)
34dc7c2f 1027{
9b67f605
MA
1028 const dva_t *dva = BP_IDENTITY(bp);
1029 uint64_t birth = BP_PHYSICAL_BIRTH(bp);
34dc7c2f
BB
1030 uint64_t idx = BUF_HASH_INDEX(spa, dva, birth);
1031 kmutex_t *hash_lock = BUF_HASH_LOCK(idx);
2a432414 1032 arc_buf_hdr_t *hdr;
34dc7c2f
BB
1033
1034 mutex_enter(hash_lock);
2a432414
GW
1035 for (hdr = buf_hash_table.ht_table[idx]; hdr != NULL;
1036 hdr = hdr->b_hash_next) {
d3c2ae1c 1037 if (HDR_EQUAL(spa, dva, birth, hdr)) {
34dc7c2f 1038 *lockp = hash_lock;
2a432414 1039 return (hdr);
34dc7c2f
BB
1040 }
1041 }
1042 mutex_exit(hash_lock);
1043 *lockp = NULL;
1044 return (NULL);
1045}
1046
1047/*
1048 * Insert an entry into the hash table. If there is already an element
1049 * equal to elem in the hash table, then the already existing element
1050 * will be returned and the new element will not be inserted.
1051 * Otherwise returns NULL.
b9541d6b 1052 * If lockp == NULL, the caller is assumed to already hold the hash lock.
34dc7c2f
BB
1053 */
1054static arc_buf_hdr_t *
2a432414 1055buf_hash_insert(arc_buf_hdr_t *hdr, kmutex_t **lockp)
34dc7c2f 1056{
2a432414 1057 uint64_t idx = BUF_HASH_INDEX(hdr->b_spa, &hdr->b_dva, hdr->b_birth);
34dc7c2f 1058 kmutex_t *hash_lock = BUF_HASH_LOCK(idx);
2a432414 1059 arc_buf_hdr_t *fhdr;
34dc7c2f
BB
1060 uint32_t i;
1061
2a432414
GW
1062 ASSERT(!DVA_IS_EMPTY(&hdr->b_dva));
1063 ASSERT(hdr->b_birth != 0);
1064 ASSERT(!HDR_IN_HASH_TABLE(hdr));
b9541d6b
CW
1065
1066 if (lockp != NULL) {
1067 *lockp = hash_lock;
1068 mutex_enter(hash_lock);
1069 } else {
1070 ASSERT(MUTEX_HELD(hash_lock));
1071 }
1072
2a432414
GW
1073 for (fhdr = buf_hash_table.ht_table[idx], i = 0; fhdr != NULL;
1074 fhdr = fhdr->b_hash_next, i++) {
d3c2ae1c 1075 if (HDR_EQUAL(hdr->b_spa, &hdr->b_dva, hdr->b_birth, fhdr))
2a432414 1076 return (fhdr);
34dc7c2f
BB
1077 }
1078
2a432414
GW
1079 hdr->b_hash_next = buf_hash_table.ht_table[idx];
1080 buf_hash_table.ht_table[idx] = hdr;
d3c2ae1c 1081 arc_hdr_set_flags(hdr, ARC_FLAG_IN_HASH_TABLE);
34dc7c2f
BB
1082
1083 /* collect some hash table performance data */
1084 if (i > 0) {
1085 ARCSTAT_BUMP(arcstat_hash_collisions);
1086 if (i == 1)
1087 ARCSTAT_BUMP(arcstat_hash_chains);
1088
1089 ARCSTAT_MAX(arcstat_hash_chain_max, i);
1090 }
1091
1092 ARCSTAT_BUMP(arcstat_hash_elements);
1093 ARCSTAT_MAXSTAT(arcstat_hash_elements);
1094
1095 return (NULL);
1096}
1097
1098static void
2a432414 1099buf_hash_remove(arc_buf_hdr_t *hdr)
34dc7c2f 1100{
2a432414
GW
1101 arc_buf_hdr_t *fhdr, **hdrp;
1102 uint64_t idx = BUF_HASH_INDEX(hdr->b_spa, &hdr->b_dva, hdr->b_birth);
34dc7c2f
BB
1103
1104 ASSERT(MUTEX_HELD(BUF_HASH_LOCK(idx)));
2a432414 1105 ASSERT(HDR_IN_HASH_TABLE(hdr));
34dc7c2f 1106
2a432414
GW
1107 hdrp = &buf_hash_table.ht_table[idx];
1108 while ((fhdr = *hdrp) != hdr) {
d3c2ae1c 1109 ASSERT3P(fhdr, !=, NULL);
2a432414 1110 hdrp = &fhdr->b_hash_next;
34dc7c2f 1111 }
2a432414
GW
1112 *hdrp = hdr->b_hash_next;
1113 hdr->b_hash_next = NULL;
d3c2ae1c 1114 arc_hdr_clear_flags(hdr, ARC_FLAG_IN_HASH_TABLE);
34dc7c2f
BB
1115
1116 /* collect some hash table performance data */
1117 ARCSTAT_BUMPDOWN(arcstat_hash_elements);
1118
1119 if (buf_hash_table.ht_table[idx] &&
1120 buf_hash_table.ht_table[idx]->b_hash_next == NULL)
1121 ARCSTAT_BUMPDOWN(arcstat_hash_chains);
1122}
1123
1124/*
1125 * Global data structures and functions for the buf kmem cache.
1126 */
b9541d6b
CW
1127static kmem_cache_t *hdr_full_cache;
1128static kmem_cache_t *hdr_l2only_cache;
34dc7c2f
BB
1129static kmem_cache_t *buf_cache;
1130
1131static void
1132buf_fini(void)
1133{
1134 int i;
1135
00b46022 1136#if defined(_KERNEL) && defined(HAVE_SPL)
d1d7e268
MK
1137 /*
1138 * Large allocations which do not require contiguous pages
1139 * should be using vmem_free() in the linux kernel\
1140 */
00b46022
BB
1141 vmem_free(buf_hash_table.ht_table,
1142 (buf_hash_table.ht_mask + 1) * sizeof (void *));
1143#else
34dc7c2f
BB
1144 kmem_free(buf_hash_table.ht_table,
1145 (buf_hash_table.ht_mask + 1) * sizeof (void *));
00b46022 1146#endif
34dc7c2f
BB
1147 for (i = 0; i < BUF_LOCKS; i++)
1148 mutex_destroy(&buf_hash_table.ht_locks[i].ht_lock);
b9541d6b
CW
1149 kmem_cache_destroy(hdr_full_cache);
1150 kmem_cache_destroy(hdr_l2only_cache);
34dc7c2f
BB
1151 kmem_cache_destroy(buf_cache);
1152}
1153
1154/*
1155 * Constructor callback - called when the cache is empty
1156 * and a new buf is requested.
1157 */
1158/* ARGSUSED */
1159static int
b9541d6b
CW
1160hdr_full_cons(void *vbuf, void *unused, int kmflag)
1161{
1162 arc_buf_hdr_t *hdr = vbuf;
1163
1164 bzero(hdr, HDR_FULL_SIZE);
1165 cv_init(&hdr->b_l1hdr.b_cv, NULL, CV_DEFAULT, NULL);
1166 refcount_create(&hdr->b_l1hdr.b_refcnt);
1167 mutex_init(&hdr->b_l1hdr.b_freeze_lock, NULL, MUTEX_DEFAULT, NULL);
1168 list_link_init(&hdr->b_l1hdr.b_arc_node);
1169 list_link_init(&hdr->b_l2hdr.b_l2node);
ca0bf58d 1170 multilist_link_init(&hdr->b_l1hdr.b_arc_node);
b9541d6b
CW
1171 arc_space_consume(HDR_FULL_SIZE, ARC_SPACE_HDRS);
1172
1173 return (0);
1174}
1175
1176/* ARGSUSED */
1177static int
1178hdr_l2only_cons(void *vbuf, void *unused, int kmflag)
34dc7c2f 1179{
2a432414
GW
1180 arc_buf_hdr_t *hdr = vbuf;
1181
b9541d6b
CW
1182 bzero(hdr, HDR_L2ONLY_SIZE);
1183 arc_space_consume(HDR_L2ONLY_SIZE, ARC_SPACE_L2HDRS);
34dc7c2f 1184
34dc7c2f
BB
1185 return (0);
1186}
1187
b128c09f
BB
1188/* ARGSUSED */
1189static int
1190buf_cons(void *vbuf, void *unused, int kmflag)
1191{
1192 arc_buf_t *buf = vbuf;
1193
1194 bzero(buf, sizeof (arc_buf_t));
428870ff 1195 mutex_init(&buf->b_evict_lock, NULL, MUTEX_DEFAULT, NULL);
d164b209
BB
1196 arc_space_consume(sizeof (arc_buf_t), ARC_SPACE_HDRS);
1197
b128c09f
BB
1198 return (0);
1199}
1200
34dc7c2f
BB
1201/*
1202 * Destructor callback - called when a cached buf is
1203 * no longer required.
1204 */
1205/* ARGSUSED */
1206static void
b9541d6b 1207hdr_full_dest(void *vbuf, void *unused)
34dc7c2f 1208{
2a432414 1209 arc_buf_hdr_t *hdr = vbuf;
34dc7c2f 1210
d3c2ae1c 1211 ASSERT(HDR_EMPTY(hdr));
b9541d6b
CW
1212 cv_destroy(&hdr->b_l1hdr.b_cv);
1213 refcount_destroy(&hdr->b_l1hdr.b_refcnt);
1214 mutex_destroy(&hdr->b_l1hdr.b_freeze_lock);
ca0bf58d 1215 ASSERT(!multilist_link_active(&hdr->b_l1hdr.b_arc_node));
b9541d6b
CW
1216 arc_space_return(HDR_FULL_SIZE, ARC_SPACE_HDRS);
1217}
1218
1219/* ARGSUSED */
1220static void
1221hdr_l2only_dest(void *vbuf, void *unused)
1222{
1223 ASSERTV(arc_buf_hdr_t *hdr = vbuf);
1224
d3c2ae1c 1225 ASSERT(HDR_EMPTY(hdr));
b9541d6b 1226 arc_space_return(HDR_L2ONLY_SIZE, ARC_SPACE_L2HDRS);
34dc7c2f
BB
1227}
1228
b128c09f
BB
1229/* ARGSUSED */
1230static void
1231buf_dest(void *vbuf, void *unused)
1232{
1233 arc_buf_t *buf = vbuf;
1234
428870ff 1235 mutex_destroy(&buf->b_evict_lock);
d164b209 1236 arc_space_return(sizeof (arc_buf_t), ARC_SPACE_HDRS);
b128c09f
BB
1237}
1238
8c8af9d8
BB
1239/*
1240 * Reclaim callback -- invoked when memory is low.
1241 */
1242/* ARGSUSED */
1243static void
1244hdr_recl(void *unused)
1245{
1246 dprintf("hdr_recl called\n");
1247 /*
1248 * umem calls the reclaim func when we destroy the buf cache,
1249 * which is after we do arc_fini().
1250 */
1251 if (!arc_dead)
1252 cv_signal(&arc_reclaim_thread_cv);
1253}
1254
34dc7c2f
BB
1255static void
1256buf_init(void)
1257{
2db28197 1258 uint64_t *ct = NULL;
34dc7c2f
BB
1259 uint64_t hsize = 1ULL << 12;
1260 int i, j;
1261
1262 /*
1263 * The hash table is big enough to fill all of physical memory
49ddb315
MA
1264 * with an average block size of zfs_arc_average_blocksize (default 8K).
1265 * By default, the table will take up
1266 * totalmem * sizeof(void*) / 8K (1MB per GB with 8-byte pointers).
34dc7c2f 1267 */
9edb3695 1268 while (hsize * zfs_arc_average_blocksize < arc_all_memory())
34dc7c2f
BB
1269 hsize <<= 1;
1270retry:
1271 buf_hash_table.ht_mask = hsize - 1;
00b46022 1272#if defined(_KERNEL) && defined(HAVE_SPL)
d1d7e268
MK
1273 /*
1274 * Large allocations which do not require contiguous pages
1275 * should be using vmem_alloc() in the linux kernel
1276 */
00b46022
BB
1277 buf_hash_table.ht_table =
1278 vmem_zalloc(hsize * sizeof (void*), KM_SLEEP);
1279#else
34dc7c2f
BB
1280 buf_hash_table.ht_table =
1281 kmem_zalloc(hsize * sizeof (void*), KM_NOSLEEP);
00b46022 1282#endif
34dc7c2f
BB
1283 if (buf_hash_table.ht_table == NULL) {
1284 ASSERT(hsize > (1ULL << 8));
1285 hsize >>= 1;
1286 goto retry;
1287 }
1288
b9541d6b 1289 hdr_full_cache = kmem_cache_create("arc_buf_hdr_t_full", HDR_FULL_SIZE,
8c8af9d8 1290 0, hdr_full_cons, hdr_full_dest, hdr_recl, NULL, NULL, 0);
b9541d6b 1291 hdr_l2only_cache = kmem_cache_create("arc_buf_hdr_t_l2only",
8c8af9d8 1292 HDR_L2ONLY_SIZE, 0, hdr_l2only_cons, hdr_l2only_dest, hdr_recl,
b9541d6b 1293 NULL, NULL, 0);
34dc7c2f 1294 buf_cache = kmem_cache_create("arc_buf_t", sizeof (arc_buf_t),
b128c09f 1295 0, buf_cons, buf_dest, NULL, NULL, NULL, 0);
34dc7c2f
BB
1296
1297 for (i = 0; i < 256; i++)
1298 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--)
1299 *ct = (*ct >> 1) ^ (-(*ct & 1) & ZFS_CRC64_POLY);
1300
1301 for (i = 0; i < BUF_LOCKS; i++) {
1302 mutex_init(&buf_hash_table.ht_locks[i].ht_lock,
40d06e3c 1303 NULL, MUTEX_DEFAULT, NULL);
34dc7c2f
BB
1304 }
1305}
1306
d3c2ae1c 1307#define ARC_MINTIME (hz>>4) /* 62 ms */
ca0bf58d 1308
2aa34383
DK
1309/*
1310 * This is the size that the buf occupies in memory. If the buf is compressed,
1311 * it will correspond to the compressed size. You should use this method of
1312 * getting the buf size unless you explicitly need the logical size.
1313 */
1314uint64_t
1315arc_buf_size(arc_buf_t *buf)
1316{
1317 return (ARC_BUF_COMPRESSED(buf) ?
1318 HDR_GET_PSIZE(buf->b_hdr) : HDR_GET_LSIZE(buf->b_hdr));
1319}
1320
1321uint64_t
1322arc_buf_lsize(arc_buf_t *buf)
1323{
1324 return (HDR_GET_LSIZE(buf->b_hdr));
1325}
1326
1327enum zio_compress
1328arc_get_compression(arc_buf_t *buf)
1329{
1330 return (ARC_BUF_COMPRESSED(buf) ?
1331 HDR_GET_COMPRESS(buf->b_hdr) : ZIO_COMPRESS_OFF);
1332}
1333
d3c2ae1c
GW
1334static inline boolean_t
1335arc_buf_is_shared(arc_buf_t *buf)
1336{
1337 boolean_t shared = (buf->b_data != NULL &&
a6255b7f
DQ
1338 buf->b_hdr->b_l1hdr.b_pabd != NULL &&
1339 abd_is_linear(buf->b_hdr->b_l1hdr.b_pabd) &&
1340 buf->b_data == abd_to_buf(buf->b_hdr->b_l1hdr.b_pabd));
d3c2ae1c 1341 IMPLY(shared, HDR_SHARED_DATA(buf->b_hdr));
2aa34383
DK
1342 IMPLY(shared, ARC_BUF_SHARED(buf));
1343 IMPLY(shared, ARC_BUF_COMPRESSED(buf) || ARC_BUF_LAST(buf));
524b4217
DK
1344
1345 /*
1346 * It would be nice to assert arc_can_share() too, but the "hdr isn't
1347 * already being shared" requirement prevents us from doing that.
1348 */
1349
d3c2ae1c
GW
1350 return (shared);
1351}
ca0bf58d 1352
a7004725
DK
1353/*
1354 * Free the checksum associated with this header. If there is no checksum, this
1355 * is a no-op.
1356 */
d3c2ae1c
GW
1357static inline void
1358arc_cksum_free(arc_buf_hdr_t *hdr)
1359{
1360 ASSERT(HDR_HAS_L1HDR(hdr));
1361 mutex_enter(&hdr->b_l1hdr.b_freeze_lock);
1362 if (hdr->b_l1hdr.b_freeze_cksum != NULL) {
1363 kmem_free(hdr->b_l1hdr.b_freeze_cksum, sizeof (zio_cksum_t));
1364 hdr->b_l1hdr.b_freeze_cksum = NULL;
b9541d6b 1365 }
d3c2ae1c 1366 mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
b9541d6b
CW
1367}
1368
a7004725
DK
1369/*
1370 * Return true iff at least one of the bufs on hdr is not compressed.
1371 */
1372static boolean_t
1373arc_hdr_has_uncompressed_buf(arc_buf_hdr_t *hdr)
1374{
1375 for (arc_buf_t *b = hdr->b_l1hdr.b_buf; b != NULL; b = b->b_next) {
1376 if (!ARC_BUF_COMPRESSED(b)) {
1377 return (B_TRUE);
1378 }
1379 }
1380 return (B_FALSE);
1381}
1382
1383
524b4217
DK
1384/*
1385 * If we've turned on the ZFS_DEBUG_MODIFY flag, verify that the buf's data
1386 * matches the checksum that is stored in the hdr. If there is no checksum,
1387 * or if the buf is compressed, this is a no-op.
1388 */
34dc7c2f
BB
1389static void
1390arc_cksum_verify(arc_buf_t *buf)
1391{
d3c2ae1c 1392 arc_buf_hdr_t *hdr = buf->b_hdr;
34dc7c2f
BB
1393 zio_cksum_t zc;
1394
1395 if (!(zfs_flags & ZFS_DEBUG_MODIFY))
1396 return;
1397
524b4217 1398 if (ARC_BUF_COMPRESSED(buf)) {
a7004725
DK
1399 ASSERT(hdr->b_l1hdr.b_freeze_cksum == NULL ||
1400 arc_hdr_has_uncompressed_buf(hdr));
524b4217
DK
1401 return;
1402 }
1403
d3c2ae1c
GW
1404 ASSERT(HDR_HAS_L1HDR(hdr));
1405
1406 mutex_enter(&hdr->b_l1hdr.b_freeze_lock);
1407 if (hdr->b_l1hdr.b_freeze_cksum == NULL || HDR_IO_ERROR(hdr)) {
1408 mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
34dc7c2f
BB
1409 return;
1410 }
2aa34383 1411
3c67d83a 1412 fletcher_2_native(buf->b_data, arc_buf_size(buf), NULL, &zc);
d3c2ae1c 1413 if (!ZIO_CHECKSUM_EQUAL(*hdr->b_l1hdr.b_freeze_cksum, zc))
34dc7c2f 1414 panic("buffer modified while frozen!");
d3c2ae1c 1415 mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
34dc7c2f
BB
1416}
1417
d3c2ae1c
GW
1418static boolean_t
1419arc_cksum_is_equal(arc_buf_hdr_t *hdr, zio_t *zio)
34dc7c2f 1420{
d3c2ae1c
GW
1421 enum zio_compress compress = BP_GET_COMPRESS(zio->io_bp);
1422 boolean_t valid_cksum;
34dc7c2f 1423
d3c2ae1c
GW
1424 ASSERT(!BP_IS_EMBEDDED(zio->io_bp));
1425 VERIFY3U(BP_GET_PSIZE(zio->io_bp), ==, HDR_GET_PSIZE(hdr));
34dc7c2f 1426
d3c2ae1c
GW
1427 /*
1428 * We rely on the blkptr's checksum to determine if the block
1429 * is valid or not. When compressed arc is enabled, the l2arc
1430 * writes the block to the l2arc just as it appears in the pool.
1431 * This allows us to use the blkptr's checksum to validate the
1432 * data that we just read off of the l2arc without having to store
1433 * a separate checksum in the arc_buf_hdr_t. However, if compressed
1434 * arc is disabled, then the data written to the l2arc is always
1435 * uncompressed and won't match the block as it exists in the main
1436 * pool. When this is the case, we must first compress it if it is
1437 * compressed on the main pool before we can validate the checksum.
1438 */
1439 if (!HDR_COMPRESSION_ENABLED(hdr) && compress != ZIO_COMPRESS_OFF) {
1440 uint64_t lsize;
1441 uint64_t csize;
1442 void *cbuf;
1443 ASSERT3U(HDR_GET_COMPRESS(hdr), ==, ZIO_COMPRESS_OFF);
1444
1445 cbuf = zio_buf_alloc(HDR_GET_PSIZE(hdr));
1446 lsize = HDR_GET_LSIZE(hdr);
a6255b7f
DQ
1447 csize = zio_compress_data(compress, zio->io_abd, cbuf, lsize);
1448
d3c2ae1c
GW
1449 ASSERT3U(csize, <=, HDR_GET_PSIZE(hdr));
1450 if (csize < HDR_GET_PSIZE(hdr)) {
1451 /*
1452 * Compressed blocks are always a multiple of the
1453 * smallest ashift in the pool. Ideally, we would
1454 * like to round up the csize to the next
1455 * spa_min_ashift but that value may have changed
1456 * since the block was last written. Instead,
1457 * we rely on the fact that the hdr's psize
1458 * was set to the psize of the block when it was
1459 * last written. We set the csize to that value
1460 * and zero out any part that should not contain
1461 * data.
1462 */
1463 bzero((char *)cbuf + csize, HDR_GET_PSIZE(hdr) - csize);
1464 csize = HDR_GET_PSIZE(hdr);
1465 }
1466 zio_push_transform(zio, cbuf, csize, HDR_GET_PSIZE(hdr), NULL);
1467 }
1468
1469 /*
1470 * Block pointers always store the checksum for the logical data.
1471 * If the block pointer has the gang bit set, then the checksum
1472 * it represents is for the reconstituted data and not for an
1473 * individual gang member. The zio pipeline, however, must be able to
1474 * determine the checksum of each of the gang constituents so it
1475 * treats the checksum comparison differently than what we need
1476 * for l2arc blocks. This prevents us from using the
1477 * zio_checksum_error() interface directly. Instead we must call the
1478 * zio_checksum_error_impl() so that we can ensure the checksum is
1479 * generated using the correct checksum algorithm and accounts for the
1480 * logical I/O size and not just a gang fragment.
1481 */
1482 valid_cksum = (zio_checksum_error_impl(zio->io_spa, zio->io_bp,
a6255b7f 1483 BP_GET_CHECKSUM(zio->io_bp), zio->io_abd, zio->io_size,
d3c2ae1c
GW
1484 zio->io_offset, NULL) == 0);
1485 zio_pop_transforms(zio);
1486 return (valid_cksum);
34dc7c2f
BB
1487}
1488
524b4217
DK
1489/*
1490 * Given a buf full of data, if ZFS_DEBUG_MODIFY is enabled this computes a
1491 * checksum and attaches it to the buf's hdr so that we can ensure that the buf
1492 * isn't modified later on. If buf is compressed or there is already a checksum
1493 * on the hdr, this is a no-op (we only checksum uncompressed bufs).
1494 */
34dc7c2f 1495static void
d3c2ae1c 1496arc_cksum_compute(arc_buf_t *buf)
34dc7c2f 1497{
d3c2ae1c
GW
1498 arc_buf_hdr_t *hdr = buf->b_hdr;
1499
1500 if (!(zfs_flags & ZFS_DEBUG_MODIFY))
34dc7c2f
BB
1501 return;
1502
d3c2ae1c 1503 ASSERT(HDR_HAS_L1HDR(hdr));
2aa34383 1504
b9541d6b 1505 mutex_enter(&buf->b_hdr->b_l1hdr.b_freeze_lock);
d3c2ae1c 1506 if (hdr->b_l1hdr.b_freeze_cksum != NULL) {
a7004725 1507 ASSERT(arc_hdr_has_uncompressed_buf(hdr));
2aa34383
DK
1508 mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
1509 return;
1510 } else if (ARC_BUF_COMPRESSED(buf)) {
d3c2ae1c 1511 mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
34dc7c2f
BB
1512 return;
1513 }
2aa34383
DK
1514
1515 ASSERT(!ARC_BUF_COMPRESSED(buf));
d3c2ae1c
GW
1516 hdr->b_l1hdr.b_freeze_cksum = kmem_alloc(sizeof (zio_cksum_t),
1517 KM_SLEEP);
3c67d83a 1518 fletcher_2_native(buf->b_data, arc_buf_size(buf), NULL,
d3c2ae1c
GW
1519 hdr->b_l1hdr.b_freeze_cksum);
1520 mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
498877ba
MA
1521 arc_buf_watch(buf);
1522}
1523
1524#ifndef _KERNEL
1525void
1526arc_buf_sigsegv(int sig, siginfo_t *si, void *unused)
1527{
02730c33 1528 panic("Got SIGSEGV at address: 0x%lx\n", (long)si->si_addr);
498877ba
MA
1529}
1530#endif
1531
1532/* ARGSUSED */
1533static void
1534arc_buf_unwatch(arc_buf_t *buf)
1535{
1536#ifndef _KERNEL
1537 if (arc_watch) {
a7004725 1538 ASSERT0(mprotect(buf->b_data, arc_buf_size(buf),
498877ba
MA
1539 PROT_READ | PROT_WRITE));
1540 }
1541#endif
1542}
1543
1544/* ARGSUSED */
1545static void
1546arc_buf_watch(arc_buf_t *buf)
1547{
1548#ifndef _KERNEL
1549 if (arc_watch)
2aa34383 1550 ASSERT0(mprotect(buf->b_data, arc_buf_size(buf),
d3c2ae1c 1551 PROT_READ));
498877ba 1552#endif
34dc7c2f
BB
1553}
1554
b9541d6b
CW
1555static arc_buf_contents_t
1556arc_buf_type(arc_buf_hdr_t *hdr)
1557{
d3c2ae1c 1558 arc_buf_contents_t type;
b9541d6b 1559 if (HDR_ISTYPE_METADATA(hdr)) {
d3c2ae1c 1560 type = ARC_BUFC_METADATA;
b9541d6b 1561 } else {
d3c2ae1c 1562 type = ARC_BUFC_DATA;
b9541d6b 1563 }
d3c2ae1c
GW
1564 VERIFY3U(hdr->b_type, ==, type);
1565 return (type);
b9541d6b
CW
1566}
1567
2aa34383
DK
1568boolean_t
1569arc_is_metadata(arc_buf_t *buf)
1570{
1571 return (HDR_ISTYPE_METADATA(buf->b_hdr) != 0);
1572}
1573
b9541d6b
CW
1574static uint32_t
1575arc_bufc_to_flags(arc_buf_contents_t type)
1576{
1577 switch (type) {
1578 case ARC_BUFC_DATA:
1579 /* metadata field is 0 if buffer contains normal data */
1580 return (0);
1581 case ARC_BUFC_METADATA:
1582 return (ARC_FLAG_BUFC_METADATA);
1583 default:
1584 break;
1585 }
1586 panic("undefined ARC buffer type!");
1587 return ((uint32_t)-1);
1588}
1589
34dc7c2f
BB
1590void
1591arc_buf_thaw(arc_buf_t *buf)
1592{
d3c2ae1c
GW
1593 arc_buf_hdr_t *hdr = buf->b_hdr;
1594
2aa34383
DK
1595 ASSERT3P(hdr->b_l1hdr.b_state, ==, arc_anon);
1596 ASSERT(!HDR_IO_IN_PROGRESS(hdr));
1597
524b4217 1598 arc_cksum_verify(buf);
34dc7c2f 1599
2aa34383
DK
1600 /*
1601 * Compressed buffers do not manipulate the b_freeze_cksum or
1602 * allocate b_thawed.
1603 */
1604 if (ARC_BUF_COMPRESSED(buf)) {
a7004725
DK
1605 ASSERT(hdr->b_l1hdr.b_freeze_cksum == NULL ||
1606 arc_hdr_has_uncompressed_buf(hdr));
2aa34383
DK
1607 return;
1608 }
1609
d3c2ae1c
GW
1610 ASSERT(HDR_HAS_L1HDR(hdr));
1611 arc_cksum_free(hdr);
498877ba 1612 arc_buf_unwatch(buf);
34dc7c2f
BB
1613}
1614
1615void
1616arc_buf_freeze(arc_buf_t *buf)
1617{
d3c2ae1c 1618 arc_buf_hdr_t *hdr = buf->b_hdr;
428870ff
BB
1619 kmutex_t *hash_lock;
1620
34dc7c2f
BB
1621 if (!(zfs_flags & ZFS_DEBUG_MODIFY))
1622 return;
1623
2aa34383 1624 if (ARC_BUF_COMPRESSED(buf)) {
a7004725
DK
1625 ASSERT(hdr->b_l1hdr.b_freeze_cksum == NULL ||
1626 arc_hdr_has_uncompressed_buf(hdr));
2aa34383
DK
1627 return;
1628 }
1629
d3c2ae1c 1630 hash_lock = HDR_LOCK(hdr);
428870ff
BB
1631 mutex_enter(hash_lock);
1632
d3c2ae1c
GW
1633 ASSERT(HDR_HAS_L1HDR(hdr));
1634 ASSERT(hdr->b_l1hdr.b_freeze_cksum != NULL ||
1635 hdr->b_l1hdr.b_state == arc_anon);
1636 arc_cksum_compute(buf);
428870ff 1637 mutex_exit(hash_lock);
34dc7c2f
BB
1638}
1639
d3c2ae1c
GW
1640/*
1641 * The arc_buf_hdr_t's b_flags should never be modified directly. Instead,
1642 * the following functions should be used to ensure that the flags are
1643 * updated in a thread-safe way. When manipulating the flags either
1644 * the hash_lock must be held or the hdr must be undiscoverable. This
1645 * ensures that we're not racing with any other threads when updating
1646 * the flags.
1647 */
1648static inline void
1649arc_hdr_set_flags(arc_buf_hdr_t *hdr, arc_flags_t flags)
1650{
1651 ASSERT(MUTEX_HELD(HDR_LOCK(hdr)) || HDR_EMPTY(hdr));
1652 hdr->b_flags |= flags;
1653}
1654
1655static inline void
1656arc_hdr_clear_flags(arc_buf_hdr_t *hdr, arc_flags_t flags)
1657{
1658 ASSERT(MUTEX_HELD(HDR_LOCK(hdr)) || HDR_EMPTY(hdr));
1659 hdr->b_flags &= ~flags;
1660}
1661
1662/*
1663 * Setting the compression bits in the arc_buf_hdr_t's b_flags is
1664 * done in a special way since we have to clear and set bits
1665 * at the same time. Consumers that wish to set the compression bits
1666 * must use this function to ensure that the flags are updated in
1667 * thread-safe manner.
1668 */
1669static void
1670arc_hdr_set_compress(arc_buf_hdr_t *hdr, enum zio_compress cmp)
1671{
1672 ASSERT(MUTEX_HELD(HDR_LOCK(hdr)) || HDR_EMPTY(hdr));
1673
1674 /*
1675 * Holes and embedded blocks will always have a psize = 0 so
1676 * we ignore the compression of the blkptr and set the
d3c2ae1c
GW
1677 * want to uncompress them. Mark them as uncompressed.
1678 */
1679 if (!zfs_compressed_arc_enabled || HDR_GET_PSIZE(hdr) == 0) {
1680 arc_hdr_clear_flags(hdr, ARC_FLAG_COMPRESSED_ARC);
1681 HDR_SET_COMPRESS(hdr, ZIO_COMPRESS_OFF);
1682 ASSERT(!HDR_COMPRESSION_ENABLED(hdr));
1683 ASSERT3U(HDR_GET_COMPRESS(hdr), ==, ZIO_COMPRESS_OFF);
1684 } else {
1685 arc_hdr_set_flags(hdr, ARC_FLAG_COMPRESSED_ARC);
1686 HDR_SET_COMPRESS(hdr, cmp);
1687 ASSERT3U(HDR_GET_COMPRESS(hdr), ==, cmp);
1688 ASSERT(HDR_COMPRESSION_ENABLED(hdr));
1689 }
1690}
1691
524b4217
DK
1692/*
1693 * Looks for another buf on the same hdr which has the data decompressed, copies
1694 * from it, and returns true. If no such buf exists, returns false.
1695 */
1696static boolean_t
1697arc_buf_try_copy_decompressed_data(arc_buf_t *buf)
1698{
1699 arc_buf_hdr_t *hdr = buf->b_hdr;
524b4217
DK
1700 boolean_t copied = B_FALSE;
1701
1702 ASSERT(HDR_HAS_L1HDR(hdr));
1703 ASSERT3P(buf->b_data, !=, NULL);
1704 ASSERT(!ARC_BUF_COMPRESSED(buf));
1705
a7004725 1706 for (arc_buf_t *from = hdr->b_l1hdr.b_buf; from != NULL;
524b4217
DK
1707 from = from->b_next) {
1708 /* can't use our own data buffer */
1709 if (from == buf) {
1710 continue;
1711 }
1712
1713 if (!ARC_BUF_COMPRESSED(from)) {
1714 bcopy(from->b_data, buf->b_data, arc_buf_size(buf));
1715 copied = B_TRUE;
1716 break;
1717 }
1718 }
1719
1720 /*
1721 * There were no decompressed bufs, so there should not be a
1722 * checksum on the hdr either.
1723 */
1724 EQUIV(!copied, hdr->b_l1hdr.b_freeze_cksum == NULL);
1725
1726 return (copied);
1727}
1728
1729/*
1730 * Given a buf that has a data buffer attached to it, this function will
1731 * efficiently fill the buf with data of the specified compression setting from
1732 * the hdr and update the hdr's b_freeze_cksum if necessary. If the buf and hdr
1733 * are already sharing a data buf, no copy is performed.
1734 *
1735 * If the buf is marked as compressed but uncompressed data was requested, this
1736 * will allocate a new data buffer for the buf, remove that flag, and fill the
1737 * buf with uncompressed data. You can't request a compressed buf on a hdr with
1738 * uncompressed data, and (since we haven't added support for it yet) if you
1739 * want compressed data your buf must already be marked as compressed and have
1740 * the correct-sized data buffer.
1741 */
1742static int
1743arc_buf_fill(arc_buf_t *buf, boolean_t compressed)
d3c2ae1c
GW
1744{
1745 arc_buf_hdr_t *hdr = buf->b_hdr;
524b4217 1746 boolean_t hdr_compressed = (HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF);
d3c2ae1c 1747 dmu_object_byteswap_t bswap = hdr->b_l1hdr.b_byteswap;
d3c2ae1c 1748
524b4217
DK
1749 ASSERT3P(buf->b_data, !=, NULL);
1750 IMPLY(compressed, hdr_compressed);
1751 IMPLY(compressed, ARC_BUF_COMPRESSED(buf));
1752
1753 if (hdr_compressed == compressed) {
2aa34383 1754 if (!arc_buf_is_shared(buf)) {
a6255b7f 1755 abd_copy_to_buf(buf->b_data, hdr->b_l1hdr.b_pabd,
524b4217 1756 arc_buf_size(buf));
2aa34383 1757 }
d3c2ae1c 1758 } else {
524b4217
DK
1759 ASSERT(hdr_compressed);
1760 ASSERT(!compressed);
d3c2ae1c 1761 ASSERT3U(HDR_GET_LSIZE(hdr), !=, HDR_GET_PSIZE(hdr));
2aa34383
DK
1762
1763 /*
524b4217
DK
1764 * If the buf is sharing its data with the hdr, unlink it and
1765 * allocate a new data buffer for the buf.
2aa34383 1766 */
524b4217
DK
1767 if (arc_buf_is_shared(buf)) {
1768 ASSERT(ARC_BUF_COMPRESSED(buf));
1769
1770 /* We need to give the buf it's own b_data */
1771 buf->b_flags &= ~ARC_BUF_FLAG_SHARED;
2aa34383
DK
1772 buf->b_data =
1773 arc_get_data_buf(hdr, HDR_GET_LSIZE(hdr), buf);
1774 arc_hdr_clear_flags(hdr, ARC_FLAG_SHARED_DATA);
1775
524b4217 1776 /* Previously overhead was 0; just add new overhead */
2aa34383 1777 ARCSTAT_INCR(arcstat_overhead_size, HDR_GET_LSIZE(hdr));
524b4217
DK
1778 } else if (ARC_BUF_COMPRESSED(buf)) {
1779 /* We need to reallocate the buf's b_data */
1780 arc_free_data_buf(hdr, buf->b_data, HDR_GET_PSIZE(hdr),
1781 buf);
1782 buf->b_data =
1783 arc_get_data_buf(hdr, HDR_GET_LSIZE(hdr), buf);
1784
1785 /* We increased the size of b_data; update overhead */
1786 ARCSTAT_INCR(arcstat_overhead_size,
1787 HDR_GET_LSIZE(hdr) - HDR_GET_PSIZE(hdr));
2aa34383
DK
1788 }
1789
524b4217
DK
1790 /*
1791 * Regardless of the buf's previous compression settings, it
1792 * should not be compressed at the end of this function.
1793 */
1794 buf->b_flags &= ~ARC_BUF_FLAG_COMPRESSED;
1795
1796 /*
1797 * Try copying the data from another buf which already has a
1798 * decompressed version. If that's not possible, it's time to
1799 * bite the bullet and decompress the data from the hdr.
1800 */
1801 if (arc_buf_try_copy_decompressed_data(buf)) {
1802 /* Skip byteswapping and checksumming (already done) */
1803 ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, !=, NULL);
1804 return (0);
1805 } else {
1806 int error = zio_decompress_data(HDR_GET_COMPRESS(hdr),
a6255b7f 1807 hdr->b_l1hdr.b_pabd, buf->b_data,
524b4217
DK
1808 HDR_GET_PSIZE(hdr), HDR_GET_LSIZE(hdr));
1809
1810 /*
1811 * Absent hardware errors or software bugs, this should
1812 * be impossible, but log it anyway so we can debug it.
1813 */
1814 if (error != 0) {
1815 zfs_dbgmsg(
1816 "hdr %p, compress %d, psize %d, lsize %d",
1817 hdr, HDR_GET_COMPRESS(hdr),
1818 HDR_GET_PSIZE(hdr), HDR_GET_LSIZE(hdr));
1819 return (SET_ERROR(EIO));
1820 }
d3c2ae1c
GW
1821 }
1822 }
524b4217
DK
1823
1824 /* Byteswap the buf's data if necessary */
d3c2ae1c
GW
1825 if (bswap != DMU_BSWAP_NUMFUNCS) {
1826 ASSERT(!HDR_SHARED_DATA(hdr));
1827 ASSERT3U(bswap, <, DMU_BSWAP_NUMFUNCS);
1828 dmu_ot_byteswap[bswap].ob_func(buf->b_data, HDR_GET_LSIZE(hdr));
1829 }
524b4217
DK
1830
1831 /* Compute the hdr's checksum if necessary */
d3c2ae1c 1832 arc_cksum_compute(buf);
524b4217 1833
d3c2ae1c
GW
1834 return (0);
1835}
1836
524b4217
DK
1837int
1838arc_decompress(arc_buf_t *buf)
1839{
1840 return (arc_buf_fill(buf, B_FALSE));
1841}
1842
d3c2ae1c 1843/*
a6255b7f 1844 * Return the size of the block, b_pabd, that is stored in the arc_buf_hdr_t.
d3c2ae1c
GW
1845 */
1846static uint64_t
1847arc_hdr_size(arc_buf_hdr_t *hdr)
1848{
1849 uint64_t size;
1850
1851 if (HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF &&
1852 HDR_GET_PSIZE(hdr) > 0) {
1853 size = HDR_GET_PSIZE(hdr);
1854 } else {
1855 ASSERT3U(HDR_GET_LSIZE(hdr), !=, 0);
1856 size = HDR_GET_LSIZE(hdr);
1857 }
1858 return (size);
1859}
1860
1861/*
1862 * Increment the amount of evictable space in the arc_state_t's refcount.
1863 * We account for the space used by the hdr and the arc buf individually
1864 * so that we can add and remove them from the refcount individually.
1865 */
34dc7c2f 1866static void
d3c2ae1c
GW
1867arc_evictable_space_increment(arc_buf_hdr_t *hdr, arc_state_t *state)
1868{
1869 arc_buf_contents_t type = arc_buf_type(hdr);
d3c2ae1c
GW
1870 arc_buf_t *buf;
1871
1872 ASSERT(HDR_HAS_L1HDR(hdr));
1873
1874 if (GHOST_STATE(state)) {
1875 ASSERT0(hdr->b_l1hdr.b_bufcnt);
1876 ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
a6255b7f 1877 ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
2aa34383
DK
1878 (void) refcount_add_many(&state->arcs_esize[type],
1879 HDR_GET_LSIZE(hdr), hdr);
d3c2ae1c
GW
1880 return;
1881 }
1882
1883 ASSERT(!GHOST_STATE(state));
a6255b7f 1884 if (hdr->b_l1hdr.b_pabd != NULL) {
d3c2ae1c
GW
1885 (void) refcount_add_many(&state->arcs_esize[type],
1886 arc_hdr_size(hdr), hdr);
1887 }
1888 for (buf = hdr->b_l1hdr.b_buf; buf != NULL; buf = buf->b_next) {
2aa34383 1889 if (arc_buf_is_shared(buf))
d3c2ae1c 1890 continue;
2aa34383
DK
1891 (void) refcount_add_many(&state->arcs_esize[type],
1892 arc_buf_size(buf), buf);
d3c2ae1c
GW
1893 }
1894}
1895
1896/*
1897 * Decrement the amount of evictable space in the arc_state_t's refcount.
1898 * We account for the space used by the hdr and the arc buf individually
1899 * so that we can add and remove them from the refcount individually.
1900 */
1901static void
2aa34383 1902arc_evictable_space_decrement(arc_buf_hdr_t *hdr, arc_state_t *state)
d3c2ae1c
GW
1903{
1904 arc_buf_contents_t type = arc_buf_type(hdr);
d3c2ae1c
GW
1905 arc_buf_t *buf;
1906
1907 ASSERT(HDR_HAS_L1HDR(hdr));
1908
1909 if (GHOST_STATE(state)) {
1910 ASSERT0(hdr->b_l1hdr.b_bufcnt);
1911 ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
a6255b7f 1912 ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
d3c2ae1c 1913 (void) refcount_remove_many(&state->arcs_esize[type],
2aa34383 1914 HDR_GET_LSIZE(hdr), hdr);
d3c2ae1c
GW
1915 return;
1916 }
1917
1918 ASSERT(!GHOST_STATE(state));
a6255b7f 1919 if (hdr->b_l1hdr.b_pabd != NULL) {
d3c2ae1c
GW
1920 (void) refcount_remove_many(&state->arcs_esize[type],
1921 arc_hdr_size(hdr), hdr);
1922 }
1923 for (buf = hdr->b_l1hdr.b_buf; buf != NULL; buf = buf->b_next) {
2aa34383 1924 if (arc_buf_is_shared(buf))
d3c2ae1c 1925 continue;
d3c2ae1c 1926 (void) refcount_remove_many(&state->arcs_esize[type],
2aa34383 1927 arc_buf_size(buf), buf);
d3c2ae1c
GW
1928 }
1929}
1930
1931/*
1932 * Add a reference to this hdr indicating that someone is actively
1933 * referencing that memory. When the refcount transitions from 0 to 1,
1934 * we remove it from the respective arc_state_t list to indicate that
1935 * it is not evictable.
1936 */
1937static void
1938add_reference(arc_buf_hdr_t *hdr, void *tag)
34dc7c2f 1939{
b9541d6b
CW
1940 arc_state_t *state;
1941
1942 ASSERT(HDR_HAS_L1HDR(hdr));
d3c2ae1c
GW
1943 if (!MUTEX_HELD(HDR_LOCK(hdr))) {
1944 ASSERT(hdr->b_l1hdr.b_state == arc_anon);
1945 ASSERT(refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
1946 ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
1947 }
34dc7c2f 1948
b9541d6b
CW
1949 state = hdr->b_l1hdr.b_state;
1950
1951 if ((refcount_add(&hdr->b_l1hdr.b_refcnt, tag) == 1) &&
1952 (state != arc_anon)) {
1953 /* We don't use the L2-only state list. */
1954 if (state != arc_l2c_only) {
64fc7762 1955 multilist_remove(state->arcs_list[arc_buf_type(hdr)],
d3c2ae1c 1956 hdr);
2aa34383 1957 arc_evictable_space_decrement(hdr, state);
34dc7c2f 1958 }
b128c09f 1959 /* remove the prefetch flag if we get a reference */
d3c2ae1c 1960 arc_hdr_clear_flags(hdr, ARC_FLAG_PREFETCH);
34dc7c2f
BB
1961 }
1962}
1963
d3c2ae1c
GW
1964/*
1965 * Remove a reference from this hdr. When the reference transitions from
1966 * 1 to 0 and we're not anonymous, then we add this hdr to the arc_state_t's
1967 * list making it eligible for eviction.
1968 */
34dc7c2f 1969static int
2a432414 1970remove_reference(arc_buf_hdr_t *hdr, kmutex_t *hash_lock, void *tag)
34dc7c2f
BB
1971{
1972 int cnt;
b9541d6b 1973 arc_state_t *state = hdr->b_l1hdr.b_state;
34dc7c2f 1974
b9541d6b 1975 ASSERT(HDR_HAS_L1HDR(hdr));
34dc7c2f
BB
1976 ASSERT(state == arc_anon || MUTEX_HELD(hash_lock));
1977 ASSERT(!GHOST_STATE(state));
1978
b9541d6b
CW
1979 /*
1980 * arc_l2c_only counts as a ghost state so we don't need to explicitly
1981 * check to prevent usage of the arc_l2c_only list.
1982 */
1983 if (((cnt = refcount_remove(&hdr->b_l1hdr.b_refcnt, tag)) == 0) &&
34dc7c2f 1984 (state != arc_anon)) {
64fc7762 1985 multilist_insert(state->arcs_list[arc_buf_type(hdr)], hdr);
d3c2ae1c
GW
1986 ASSERT3U(hdr->b_l1hdr.b_bufcnt, >, 0);
1987 arc_evictable_space_increment(hdr, state);
34dc7c2f
BB
1988 }
1989 return (cnt);
1990}
1991
e0b0ca98
BB
1992/*
1993 * Returns detailed information about a specific arc buffer. When the
1994 * state_index argument is set the function will calculate the arc header
1995 * list position for its arc state. Since this requires a linear traversal
1996 * callers are strongly encourage not to do this. However, it can be helpful
1997 * for targeted analysis so the functionality is provided.
1998 */
1999void
2000arc_buf_info(arc_buf_t *ab, arc_buf_info_t *abi, int state_index)
2001{
2002 arc_buf_hdr_t *hdr = ab->b_hdr;
b9541d6b
CW
2003 l1arc_buf_hdr_t *l1hdr = NULL;
2004 l2arc_buf_hdr_t *l2hdr = NULL;
2005 arc_state_t *state = NULL;
2006
8887c7d7
TC
2007 memset(abi, 0, sizeof (arc_buf_info_t));
2008
2009 if (hdr == NULL)
2010 return;
2011
2012 abi->abi_flags = hdr->b_flags;
2013
b9541d6b
CW
2014 if (HDR_HAS_L1HDR(hdr)) {
2015 l1hdr = &hdr->b_l1hdr;
2016 state = l1hdr->b_state;
2017 }
2018 if (HDR_HAS_L2HDR(hdr))
2019 l2hdr = &hdr->b_l2hdr;
e0b0ca98 2020
b9541d6b 2021 if (l1hdr) {
d3c2ae1c 2022 abi->abi_bufcnt = l1hdr->b_bufcnt;
b9541d6b
CW
2023 abi->abi_access = l1hdr->b_arc_access;
2024 abi->abi_mru_hits = l1hdr->b_mru_hits;
2025 abi->abi_mru_ghost_hits = l1hdr->b_mru_ghost_hits;
2026 abi->abi_mfu_hits = l1hdr->b_mfu_hits;
2027 abi->abi_mfu_ghost_hits = l1hdr->b_mfu_ghost_hits;
2028 abi->abi_holds = refcount_count(&l1hdr->b_refcnt);
2029 }
2030
2031 if (l2hdr) {
2032 abi->abi_l2arc_dattr = l2hdr->b_daddr;
b9541d6b
CW
2033 abi->abi_l2arc_hits = l2hdr->b_hits;
2034 }
2035
e0b0ca98 2036 abi->abi_state_type = state ? state->arcs_state : ARC_STATE_ANON;
b9541d6b 2037 abi->abi_state_contents = arc_buf_type(hdr);
d3c2ae1c 2038 abi->abi_size = arc_hdr_size(hdr);
e0b0ca98
BB
2039}
2040
34dc7c2f 2041/*
ca0bf58d 2042 * Move the supplied buffer to the indicated state. The hash lock
34dc7c2f
BB
2043 * for the buffer must be held by the caller.
2044 */
2045static void
2a432414
GW
2046arc_change_state(arc_state_t *new_state, arc_buf_hdr_t *hdr,
2047 kmutex_t *hash_lock)
34dc7c2f 2048{
b9541d6b
CW
2049 arc_state_t *old_state;
2050 int64_t refcnt;
d3c2ae1c
GW
2051 uint32_t bufcnt;
2052 boolean_t update_old, update_new;
b9541d6b
CW
2053 arc_buf_contents_t buftype = arc_buf_type(hdr);
2054
2055 /*
2056 * We almost always have an L1 hdr here, since we call arc_hdr_realloc()
2057 * in arc_read() when bringing a buffer out of the L2ARC. However, the
2058 * L1 hdr doesn't always exist when we change state to arc_anon before
2059 * destroying a header, in which case reallocating to add the L1 hdr is
2060 * pointless.
2061 */
2062 if (HDR_HAS_L1HDR(hdr)) {
2063 old_state = hdr->b_l1hdr.b_state;
2064 refcnt = refcount_count(&hdr->b_l1hdr.b_refcnt);
d3c2ae1c 2065 bufcnt = hdr->b_l1hdr.b_bufcnt;
a6255b7f 2066 update_old = (bufcnt > 0 || hdr->b_l1hdr.b_pabd != NULL);
b9541d6b
CW
2067 } else {
2068 old_state = arc_l2c_only;
2069 refcnt = 0;
d3c2ae1c
GW
2070 bufcnt = 0;
2071 update_old = B_FALSE;
b9541d6b 2072 }
d3c2ae1c 2073 update_new = update_old;
34dc7c2f
BB
2074
2075 ASSERT(MUTEX_HELD(hash_lock));
e8b96c60 2076 ASSERT3P(new_state, !=, old_state);
d3c2ae1c
GW
2077 ASSERT(!GHOST_STATE(new_state) || bufcnt == 0);
2078 ASSERT(old_state != arc_anon || bufcnt <= 1);
34dc7c2f
BB
2079
2080 /*
2081 * If this buffer is evictable, transfer it from the
2082 * old state list to the new state list.
2083 */
2084 if (refcnt == 0) {
b9541d6b 2085 if (old_state != arc_anon && old_state != arc_l2c_only) {
b9541d6b 2086 ASSERT(HDR_HAS_L1HDR(hdr));
64fc7762 2087 multilist_remove(old_state->arcs_list[buftype], hdr);
34dc7c2f 2088
d3c2ae1c
GW
2089 if (GHOST_STATE(old_state)) {
2090 ASSERT0(bufcnt);
2091 ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
2092 update_old = B_TRUE;
34dc7c2f 2093 }
2aa34383 2094 arc_evictable_space_decrement(hdr, old_state);
34dc7c2f 2095 }
b9541d6b 2096 if (new_state != arc_anon && new_state != arc_l2c_only) {
b9541d6b
CW
2097 /*
2098 * An L1 header always exists here, since if we're
2099 * moving to some L1-cached state (i.e. not l2c_only or
2100 * anonymous), we realloc the header to add an L1hdr
2101 * beforehand.
2102 */
2103 ASSERT(HDR_HAS_L1HDR(hdr));
64fc7762 2104 multilist_insert(new_state->arcs_list[buftype], hdr);
34dc7c2f 2105
34dc7c2f 2106 if (GHOST_STATE(new_state)) {
d3c2ae1c
GW
2107 ASSERT0(bufcnt);
2108 ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
2109 update_new = B_TRUE;
34dc7c2f 2110 }
d3c2ae1c 2111 arc_evictable_space_increment(hdr, new_state);
34dc7c2f
BB
2112 }
2113 }
2114
d3c2ae1c 2115 ASSERT(!HDR_EMPTY(hdr));
2a432414
GW
2116 if (new_state == arc_anon && HDR_IN_HASH_TABLE(hdr))
2117 buf_hash_remove(hdr);
34dc7c2f 2118
b9541d6b 2119 /* adjust state sizes (ignore arc_l2c_only) */
36da08ef 2120
d3c2ae1c 2121 if (update_new && new_state != arc_l2c_only) {
36da08ef
PS
2122 ASSERT(HDR_HAS_L1HDR(hdr));
2123 if (GHOST_STATE(new_state)) {
d3c2ae1c 2124 ASSERT0(bufcnt);
36da08ef
PS
2125
2126 /*
d3c2ae1c 2127 * When moving a header to a ghost state, we first
36da08ef 2128 * remove all arc buffers. Thus, we'll have a
d3c2ae1c 2129 * bufcnt of zero, and no arc buffer to use for
36da08ef
PS
2130 * the reference. As a result, we use the arc
2131 * header pointer for the reference.
2132 */
2133 (void) refcount_add_many(&new_state->arcs_size,
d3c2ae1c 2134 HDR_GET_LSIZE(hdr), hdr);
a6255b7f 2135 ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
36da08ef
PS
2136 } else {
2137 arc_buf_t *buf;
d3c2ae1c 2138 uint32_t buffers = 0;
36da08ef
PS
2139
2140 /*
2141 * Each individual buffer holds a unique reference,
2142 * thus we must remove each of these references one
2143 * at a time.
2144 */
2145 for (buf = hdr->b_l1hdr.b_buf; buf != NULL;
2146 buf = buf->b_next) {
d3c2ae1c
GW
2147 ASSERT3U(bufcnt, !=, 0);
2148 buffers++;
2149
2150 /*
2151 * When the arc_buf_t is sharing the data
2152 * block with the hdr, the owner of the
2153 * reference belongs to the hdr. Only
2154 * add to the refcount if the arc_buf_t is
2155 * not shared.
2156 */
2aa34383 2157 if (arc_buf_is_shared(buf))
d3c2ae1c 2158 continue;
d3c2ae1c 2159
36da08ef 2160 (void) refcount_add_many(&new_state->arcs_size,
2aa34383 2161 arc_buf_size(buf), buf);
d3c2ae1c
GW
2162 }
2163 ASSERT3U(bufcnt, ==, buffers);
2164
a6255b7f 2165 if (hdr->b_l1hdr.b_pabd != NULL) {
d3c2ae1c
GW
2166 (void) refcount_add_many(&new_state->arcs_size,
2167 arc_hdr_size(hdr), hdr);
2168 } else {
2169 ASSERT(GHOST_STATE(old_state));
36da08ef
PS
2170 }
2171 }
2172 }
2173
d3c2ae1c 2174 if (update_old && old_state != arc_l2c_only) {
36da08ef
PS
2175 ASSERT(HDR_HAS_L1HDR(hdr));
2176 if (GHOST_STATE(old_state)) {
d3c2ae1c 2177 ASSERT0(bufcnt);
a6255b7f 2178 ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
d3c2ae1c 2179
36da08ef
PS
2180 /*
2181 * When moving a header off of a ghost state,
d3c2ae1c
GW
2182 * the header will not contain any arc buffers.
2183 * We use the arc header pointer for the reference
2184 * which is exactly what we did when we put the
2185 * header on the ghost state.
36da08ef
PS
2186 */
2187
36da08ef 2188 (void) refcount_remove_many(&old_state->arcs_size,
d3c2ae1c 2189 HDR_GET_LSIZE(hdr), hdr);
36da08ef
PS
2190 } else {
2191 arc_buf_t *buf;
d3c2ae1c 2192 uint32_t buffers = 0;
36da08ef
PS
2193
2194 /*
2195 * Each individual buffer holds a unique reference,
2196 * thus we must remove each of these references one
2197 * at a time.
2198 */
2199 for (buf = hdr->b_l1hdr.b_buf; buf != NULL;
2200 buf = buf->b_next) {
d3c2ae1c
GW
2201 ASSERT3U(bufcnt, !=, 0);
2202 buffers++;
2203
2204 /*
2205 * When the arc_buf_t is sharing the data
2206 * block with the hdr, the owner of the
2207 * reference belongs to the hdr. Only
2208 * add to the refcount if the arc_buf_t is
2209 * not shared.
2210 */
2aa34383 2211 if (arc_buf_is_shared(buf))
d3c2ae1c 2212 continue;
d3c2ae1c 2213
36da08ef 2214 (void) refcount_remove_many(
2aa34383 2215 &old_state->arcs_size, arc_buf_size(buf),
d3c2ae1c 2216 buf);
36da08ef 2217 }
d3c2ae1c 2218 ASSERT3U(bufcnt, ==, buffers);
a6255b7f 2219 ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
d3c2ae1c
GW
2220 (void) refcount_remove_many(
2221 &old_state->arcs_size, arc_hdr_size(hdr), hdr);
36da08ef 2222 }
34dc7c2f 2223 }
36da08ef 2224
b9541d6b
CW
2225 if (HDR_HAS_L1HDR(hdr))
2226 hdr->b_l1hdr.b_state = new_state;
34dc7c2f 2227
b9541d6b
CW
2228 /*
2229 * L2 headers should never be on the L2 state list since they don't
2230 * have L1 headers allocated.
2231 */
64fc7762
MA
2232 ASSERT(multilist_is_empty(arc_l2c_only->arcs_list[ARC_BUFC_DATA]) &&
2233 multilist_is_empty(arc_l2c_only->arcs_list[ARC_BUFC_METADATA]));
34dc7c2f
BB
2234}
2235
2236void
d164b209 2237arc_space_consume(uint64_t space, arc_space_type_t type)
34dc7c2f 2238{
d164b209
BB
2239 ASSERT(type >= 0 && type < ARC_SPACE_NUMTYPES);
2240
2241 switch (type) {
e75c13c3
BB
2242 default:
2243 break;
d164b209
BB
2244 case ARC_SPACE_DATA:
2245 ARCSTAT_INCR(arcstat_data_size, space);
2246 break;
cc7f677c 2247 case ARC_SPACE_META:
500445c0 2248 ARCSTAT_INCR(arcstat_metadata_size, space);
cc7f677c 2249 break;
25458cbe
TC
2250 case ARC_SPACE_BONUS:
2251 ARCSTAT_INCR(arcstat_bonus_size, space);
2252 break;
2253 case ARC_SPACE_DNODE:
2254 ARCSTAT_INCR(arcstat_dnode_size, space);
2255 break;
2256 case ARC_SPACE_DBUF:
2257 ARCSTAT_INCR(arcstat_dbuf_size, space);
d164b209
BB
2258 break;
2259 case ARC_SPACE_HDRS:
2260 ARCSTAT_INCR(arcstat_hdr_size, space);
2261 break;
2262 case ARC_SPACE_L2HDRS:
2263 ARCSTAT_INCR(arcstat_l2_hdr_size, space);
2264 break;
2265 }
2266
500445c0 2267 if (type != ARC_SPACE_DATA)
cc7f677c
PS
2268 ARCSTAT_INCR(arcstat_meta_used, space);
2269
34dc7c2f
BB
2270 atomic_add_64(&arc_size, space);
2271}
2272
2273void
d164b209 2274arc_space_return(uint64_t space, arc_space_type_t type)
34dc7c2f 2275{
d164b209
BB
2276 ASSERT(type >= 0 && type < ARC_SPACE_NUMTYPES);
2277
2278 switch (type) {
e75c13c3
BB
2279 default:
2280 break;
d164b209
BB
2281 case ARC_SPACE_DATA:
2282 ARCSTAT_INCR(arcstat_data_size, -space);
2283 break;
cc7f677c 2284 case ARC_SPACE_META:
500445c0 2285 ARCSTAT_INCR(arcstat_metadata_size, -space);
cc7f677c 2286 break;
25458cbe
TC
2287 case ARC_SPACE_BONUS:
2288 ARCSTAT_INCR(arcstat_bonus_size, -space);
2289 break;
2290 case ARC_SPACE_DNODE:
2291 ARCSTAT_INCR(arcstat_dnode_size, -space);
2292 break;
2293 case ARC_SPACE_DBUF:
2294 ARCSTAT_INCR(arcstat_dbuf_size, -space);
d164b209
BB
2295 break;
2296 case ARC_SPACE_HDRS:
2297 ARCSTAT_INCR(arcstat_hdr_size, -space);
2298 break;
2299 case ARC_SPACE_L2HDRS:
2300 ARCSTAT_INCR(arcstat_l2_hdr_size, -space);
2301 break;
2302 }
2303
cc7f677c
PS
2304 if (type != ARC_SPACE_DATA) {
2305 ASSERT(arc_meta_used >= space);
500445c0
PS
2306 if (arc_meta_max < arc_meta_used)
2307 arc_meta_max = arc_meta_used;
cc7f677c
PS
2308 ARCSTAT_INCR(arcstat_meta_used, -space);
2309 }
2310
34dc7c2f
BB
2311 ASSERT(arc_size >= space);
2312 atomic_add_64(&arc_size, -space);
2313}
2314
d3c2ae1c 2315/*
524b4217 2316 * Given a hdr and a buf, returns whether that buf can share its b_data buffer
a6255b7f 2317 * with the hdr's b_pabd.
d3c2ae1c 2318 */
524b4217
DK
2319static boolean_t
2320arc_can_share(arc_buf_hdr_t *hdr, arc_buf_t *buf)
2321{
524b4217
DK
2322 /*
2323 * The criteria for sharing a hdr's data are:
2324 * 1. the hdr's compression matches the buf's compression
2325 * 2. the hdr doesn't need to be byteswapped
2326 * 3. the hdr isn't already being shared
2327 * 4. the buf is either compressed or it is the last buf in the hdr list
2328 *
2329 * Criterion #4 maintains the invariant that shared uncompressed
2330 * bufs must be the final buf in the hdr's b_buf list. Reading this, you
2331 * might ask, "if a compressed buf is allocated first, won't that be the
2332 * last thing in the list?", but in that case it's impossible to create
2333 * a shared uncompressed buf anyway (because the hdr must be compressed
2334 * to have the compressed buf). You might also think that #3 is
2335 * sufficient to make this guarantee, however it's possible
2336 * (specifically in the rare L2ARC write race mentioned in
2337 * arc_buf_alloc_impl()) there will be an existing uncompressed buf that
2338 * is sharable, but wasn't at the time of its allocation. Rather than
2339 * allow a new shared uncompressed buf to be created and then shuffle
2340 * the list around to make it the last element, this simply disallows
2341 * sharing if the new buf isn't the first to be added.
2342 */
2343 ASSERT3P(buf->b_hdr, ==, hdr);
a7004725
DK
2344 boolean_t hdr_compressed = HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF;
2345 boolean_t buf_compressed = ARC_BUF_COMPRESSED(buf) != 0;
524b4217
DK
2346 return (buf_compressed == hdr_compressed &&
2347 hdr->b_l1hdr.b_byteswap == DMU_BSWAP_NUMFUNCS &&
2348 !HDR_SHARED_DATA(hdr) &&
2349 (ARC_BUF_LAST(buf) || ARC_BUF_COMPRESSED(buf)));
2350}
2351
2352/*
2353 * Allocate a buf for this hdr. If you care about the data that's in the hdr,
2354 * or if you want a compressed buffer, pass those flags in. Returns 0 if the
2355 * copy was made successfully, or an error code otherwise.
2356 */
2357static int
2358arc_buf_alloc_impl(arc_buf_hdr_t *hdr, void *tag, boolean_t compressed,
2359 boolean_t fill, arc_buf_t **ret)
34dc7c2f 2360{
34dc7c2f
BB
2361 arc_buf_t *buf;
2362
d3c2ae1c
GW
2363 ASSERT(HDR_HAS_L1HDR(hdr));
2364 ASSERT3U(HDR_GET_LSIZE(hdr), >, 0);
2365 VERIFY(hdr->b_type == ARC_BUFC_DATA ||
2366 hdr->b_type == ARC_BUFC_METADATA);
524b4217
DK
2367 ASSERT3P(ret, !=, NULL);
2368 ASSERT3P(*ret, ==, NULL);
d3c2ae1c 2369
b9541d6b
CW
2370 hdr->b_l1hdr.b_mru_hits = 0;
2371 hdr->b_l1hdr.b_mru_ghost_hits = 0;
2372 hdr->b_l1hdr.b_mfu_hits = 0;
2373 hdr->b_l1hdr.b_mfu_ghost_hits = 0;
2374 hdr->b_l1hdr.b_l2_hits = 0;
2375
524b4217 2376 buf = *ret = kmem_cache_alloc(buf_cache, KM_PUSHPAGE);
34dc7c2f
BB
2377 buf->b_hdr = hdr;
2378 buf->b_data = NULL;
2aa34383 2379 buf->b_next = hdr->b_l1hdr.b_buf;
524b4217 2380 buf->b_flags = 0;
b9541d6b 2381
d3c2ae1c
GW
2382 add_reference(hdr, tag);
2383
2384 /*
2385 * We're about to change the hdr's b_flags. We must either
2386 * hold the hash_lock or be undiscoverable.
2387 */
2388 ASSERT(MUTEX_HELD(HDR_LOCK(hdr)) || HDR_EMPTY(hdr));
2389
2390 /*
524b4217
DK
2391 * Only honor requests for compressed bufs if the hdr is actually
2392 * compressed.
2393 */
2394 if (compressed && HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF)
2395 buf->b_flags |= ARC_BUF_FLAG_COMPRESSED;
2396
524b4217
DK
2397 /*
2398 * If the hdr's data can be shared then we share the data buffer and
2399 * set the appropriate bit in the hdr's b_flags to indicate the hdr is
2aa34383 2400 * allocate a new buffer to store the buf's data.
524b4217 2401 *
a6255b7f
DQ
2402 * There are two additional restrictions here because we're sharing
2403 * hdr -> buf instead of the usual buf -> hdr. First, the hdr can't be
2404 * actively involved in an L2ARC write, because if this buf is used by
2405 * an arc_write() then the hdr's data buffer will be released when the
524b4217 2406 * write completes, even though the L2ARC write might still be using it.
a6255b7f
DQ
2407 * Second, the hdr's ABD must be linear so that the buf's user doesn't
2408 * need to be ABD-aware.
d3c2ae1c 2409 */
a7004725 2410 boolean_t can_share = arc_can_share(hdr, buf) && !HDR_L2_WRITING(hdr) &&
a6255b7f 2411 abd_is_linear(hdr->b_l1hdr.b_pabd);
524b4217
DK
2412
2413 /* Set up b_data and sharing */
2414 if (can_share) {
a6255b7f 2415 buf->b_data = abd_to_buf(hdr->b_l1hdr.b_pabd);
524b4217 2416 buf->b_flags |= ARC_BUF_FLAG_SHARED;
d3c2ae1c
GW
2417 arc_hdr_set_flags(hdr, ARC_FLAG_SHARED_DATA);
2418 } else {
524b4217
DK
2419 buf->b_data =
2420 arc_get_data_buf(hdr, arc_buf_size(buf), buf);
2421 ARCSTAT_INCR(arcstat_overhead_size, arc_buf_size(buf));
d3c2ae1c
GW
2422 }
2423 VERIFY3P(buf->b_data, !=, NULL);
b9541d6b
CW
2424
2425 hdr->b_l1hdr.b_buf = buf;
d3c2ae1c 2426 hdr->b_l1hdr.b_bufcnt += 1;
b9541d6b 2427
524b4217
DK
2428 /*
2429 * If the user wants the data from the hdr, we need to either copy or
2430 * decompress the data.
2431 */
2432 if (fill) {
2433 return (arc_buf_fill(buf, ARC_BUF_COMPRESSED(buf) != 0));
2434 }
d3c2ae1c 2435
524b4217 2436 return (0);
34dc7c2f
BB
2437}
2438
9babb374
BB
2439static char *arc_onloan_tag = "onloan";
2440
a7004725
DK
2441static inline void
2442arc_loaned_bytes_update(int64_t delta)
2443{
2444 atomic_add_64(&arc_loaned_bytes, delta);
2445
2446 /* assert that it did not wrap around */
2447 ASSERT3S(atomic_add_64_nv(&arc_loaned_bytes, 0), >=, 0);
2448}
2449
9babb374
BB
2450/*
2451 * Loan out an anonymous arc buffer. Loaned buffers are not counted as in
2452 * flight data by arc_tempreserve_space() until they are "returned". Loaned
2453 * buffers must be returned to the arc before they can be used by the DMU or
2454 * freed.
2455 */
2456arc_buf_t *
2aa34383 2457arc_loan_buf(spa_t *spa, boolean_t is_metadata, int size)
9babb374 2458{
2aa34383
DK
2459 arc_buf_t *buf = arc_alloc_buf(spa, arc_onloan_tag,
2460 is_metadata ? ARC_BUFC_METADATA : ARC_BUFC_DATA, size);
9babb374 2461
a7004725
DK
2462 arc_loaned_bytes_update(size);
2463
9babb374
BB
2464 return (buf);
2465}
2466
2aa34383
DK
2467arc_buf_t *
2468arc_loan_compressed_buf(spa_t *spa, uint64_t psize, uint64_t lsize,
2469 enum zio_compress compression_type)
2470{
2471 arc_buf_t *buf = arc_alloc_compressed_buf(spa, arc_onloan_tag,
2472 psize, lsize, compression_type);
2473
a7004725
DK
2474 arc_loaned_bytes_update(psize);
2475
2aa34383
DK
2476 return (buf);
2477}
2478
2479
9babb374
BB
2480/*
2481 * Return a loaned arc buffer to the arc.
2482 */
2483void
2484arc_return_buf(arc_buf_t *buf, void *tag)
2485{
2486 arc_buf_hdr_t *hdr = buf->b_hdr;
2487
d3c2ae1c 2488 ASSERT3P(buf->b_data, !=, NULL);
b9541d6b
CW
2489 ASSERT(HDR_HAS_L1HDR(hdr));
2490 (void) refcount_add(&hdr->b_l1hdr.b_refcnt, tag);
2491 (void) refcount_remove(&hdr->b_l1hdr.b_refcnt, arc_onloan_tag);
9babb374 2492
a7004725 2493 arc_loaned_bytes_update(-arc_buf_size(buf));
9babb374
BB
2494}
2495
428870ff
BB
2496/* Detach an arc_buf from a dbuf (tag) */
2497void
2498arc_loan_inuse_buf(arc_buf_t *buf, void *tag)
2499{
b9541d6b 2500 arc_buf_hdr_t *hdr = buf->b_hdr;
428870ff 2501
d3c2ae1c 2502 ASSERT3P(buf->b_data, !=, NULL);
b9541d6b
CW
2503 ASSERT(HDR_HAS_L1HDR(hdr));
2504 (void) refcount_add(&hdr->b_l1hdr.b_refcnt, arc_onloan_tag);
2505 (void) refcount_remove(&hdr->b_l1hdr.b_refcnt, tag);
428870ff 2506
a7004725 2507 arc_loaned_bytes_update(arc_buf_size(buf));
428870ff
BB
2508}
2509
d3c2ae1c 2510static void
a6255b7f 2511l2arc_free_abd_on_write(abd_t *abd, size_t size, arc_buf_contents_t type)
34dc7c2f 2512{
d3c2ae1c 2513 l2arc_data_free_t *df = kmem_alloc(sizeof (*df), KM_SLEEP);
34dc7c2f 2514
a6255b7f 2515 df->l2df_abd = abd;
d3c2ae1c
GW
2516 df->l2df_size = size;
2517 df->l2df_type = type;
2518 mutex_enter(&l2arc_free_on_write_mtx);
2519 list_insert_head(l2arc_free_on_write, df);
2520 mutex_exit(&l2arc_free_on_write_mtx);
2521}
428870ff 2522
d3c2ae1c
GW
2523static void
2524arc_hdr_free_on_write(arc_buf_hdr_t *hdr)
2525{
2526 arc_state_t *state = hdr->b_l1hdr.b_state;
2527 arc_buf_contents_t type = arc_buf_type(hdr);
2528 uint64_t size = arc_hdr_size(hdr);
1eb5bfa3 2529
d3c2ae1c
GW
2530 /* protected by hash lock, if in the hash table */
2531 if (multilist_link_active(&hdr->b_l1hdr.b_arc_node)) {
2532 ASSERT(refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
2533 ASSERT(state != arc_anon && state != arc_l2c_only);
2534
2535 (void) refcount_remove_many(&state->arcs_esize[type],
2536 size, hdr);
1eb5bfa3 2537 }
d3c2ae1c 2538 (void) refcount_remove_many(&state->arcs_size, size, hdr);
423e7b62
AG
2539 if (type == ARC_BUFC_METADATA) {
2540 arc_space_return(size, ARC_SPACE_META);
2541 } else {
2542 ASSERT(type == ARC_BUFC_DATA);
2543 arc_space_return(size, ARC_SPACE_DATA);
2544 }
d3c2ae1c 2545
a6255b7f 2546 l2arc_free_abd_on_write(hdr->b_l1hdr.b_pabd, size, type);
34dc7c2f
BB
2547}
2548
d3c2ae1c
GW
2549/*
2550 * Share the arc_buf_t's data with the hdr. Whenever we are sharing the
2551 * data buffer, we transfer the refcount ownership to the hdr and update
2552 * the appropriate kstats.
2553 */
2554static void
2555arc_share_buf(arc_buf_hdr_t *hdr, arc_buf_t *buf)
34dc7c2f 2556{
524b4217 2557 ASSERT(arc_can_share(hdr, buf));
a6255b7f 2558 ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
d3c2ae1c 2559 ASSERT(MUTEX_HELD(HDR_LOCK(hdr)) || HDR_EMPTY(hdr));
34dc7c2f
BB
2560
2561 /*
d3c2ae1c
GW
2562 * Start sharing the data buffer. We transfer the
2563 * refcount ownership to the hdr since it always owns
2564 * the refcount whenever an arc_buf_t is shared.
34dc7c2f 2565 */
d3c2ae1c 2566 refcount_transfer_ownership(&hdr->b_l1hdr.b_state->arcs_size, buf, hdr);
a6255b7f
DQ
2567 hdr->b_l1hdr.b_pabd = abd_get_from_buf(buf->b_data, arc_buf_size(buf));
2568 abd_take_ownership_of_buf(hdr->b_l1hdr.b_pabd,
2569 HDR_ISTYPE_METADATA(hdr));
d3c2ae1c 2570 arc_hdr_set_flags(hdr, ARC_FLAG_SHARED_DATA);
524b4217 2571 buf->b_flags |= ARC_BUF_FLAG_SHARED;
34dc7c2f 2572
d3c2ae1c
GW
2573 /*
2574 * Since we've transferred ownership to the hdr we need
2575 * to increment its compressed and uncompressed kstats and
2576 * decrement the overhead size.
2577 */
2578 ARCSTAT_INCR(arcstat_compressed_size, arc_hdr_size(hdr));
2579 ARCSTAT_INCR(arcstat_uncompressed_size, HDR_GET_LSIZE(hdr));
2aa34383 2580 ARCSTAT_INCR(arcstat_overhead_size, -arc_buf_size(buf));
34dc7c2f
BB
2581}
2582
ca0bf58d 2583static void
d3c2ae1c 2584arc_unshare_buf(arc_buf_hdr_t *hdr, arc_buf_t *buf)
ca0bf58d 2585{
d3c2ae1c 2586 ASSERT(arc_buf_is_shared(buf));
a6255b7f 2587 ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
d3c2ae1c 2588 ASSERT(MUTEX_HELD(HDR_LOCK(hdr)) || HDR_EMPTY(hdr));
ca0bf58d 2589
d3c2ae1c
GW
2590 /*
2591 * We are no longer sharing this buffer so we need
2592 * to transfer its ownership to the rightful owner.
2593 */
2594 refcount_transfer_ownership(&hdr->b_l1hdr.b_state->arcs_size, hdr, buf);
2595 arc_hdr_clear_flags(hdr, ARC_FLAG_SHARED_DATA);
a6255b7f
DQ
2596 abd_release_ownership_of_buf(hdr->b_l1hdr.b_pabd);
2597 abd_put(hdr->b_l1hdr.b_pabd);
2598 hdr->b_l1hdr.b_pabd = NULL;
524b4217 2599 buf->b_flags &= ~ARC_BUF_FLAG_SHARED;
d3c2ae1c
GW
2600
2601 /*
2602 * Since the buffer is no longer shared between
2603 * the arc buf and the hdr, count it as overhead.
2604 */
2605 ARCSTAT_INCR(arcstat_compressed_size, -arc_hdr_size(hdr));
2606 ARCSTAT_INCR(arcstat_uncompressed_size, -HDR_GET_LSIZE(hdr));
2aa34383 2607 ARCSTAT_INCR(arcstat_overhead_size, arc_buf_size(buf));
ca0bf58d
PS
2608}
2609
34dc7c2f 2610/*
2aa34383
DK
2611 * Remove an arc_buf_t from the hdr's buf list and return the last
2612 * arc_buf_t on the list. If no buffers remain on the list then return
2613 * NULL.
2614 */
2615static arc_buf_t *
2616arc_buf_remove(arc_buf_hdr_t *hdr, arc_buf_t *buf)
2617{
2aa34383
DK
2618 ASSERT(HDR_HAS_L1HDR(hdr));
2619 ASSERT(MUTEX_HELD(HDR_LOCK(hdr)) || HDR_EMPTY(hdr));
2620
a7004725
DK
2621 arc_buf_t **bufp = &hdr->b_l1hdr.b_buf;
2622 arc_buf_t *lastbuf = NULL;
2623
2aa34383
DK
2624 /*
2625 * Remove the buf from the hdr list and locate the last
2626 * remaining buffer on the list.
2627 */
2628 while (*bufp != NULL) {
2629 if (*bufp == buf)
2630 *bufp = buf->b_next;
2631
2632 /*
2633 * If we've removed a buffer in the middle of
2634 * the list then update the lastbuf and update
2635 * bufp.
2636 */
2637 if (*bufp != NULL) {
2638 lastbuf = *bufp;
2639 bufp = &(*bufp)->b_next;
2640 }
2641 }
2642 buf->b_next = NULL;
2643 ASSERT3P(lastbuf, !=, buf);
2644 IMPLY(hdr->b_l1hdr.b_bufcnt > 0, lastbuf != NULL);
2645 IMPLY(hdr->b_l1hdr.b_bufcnt > 0, hdr->b_l1hdr.b_buf != NULL);
2646 IMPLY(lastbuf != NULL, ARC_BUF_LAST(lastbuf));
2647
2648 return (lastbuf);
2649}
2650
2651/*
2652 * Free up buf->b_data and pull the arc_buf_t off of the the arc_buf_hdr_t's
2653 * list and free it.
34dc7c2f
BB
2654 */
2655static void
2aa34383 2656arc_buf_destroy_impl(arc_buf_t *buf)
34dc7c2f 2657{
498877ba 2658 arc_buf_hdr_t *hdr = buf->b_hdr;
ca0bf58d
PS
2659
2660 /*
524b4217
DK
2661 * Free up the data associated with the buf but only if we're not
2662 * sharing this with the hdr. If we are sharing it with the hdr, the
2663 * hdr is responsible for doing the free.
ca0bf58d 2664 */
d3c2ae1c
GW
2665 if (buf->b_data != NULL) {
2666 /*
2667 * We're about to change the hdr's b_flags. We must either
2668 * hold the hash_lock or be undiscoverable.
2669 */
2670 ASSERT(MUTEX_HELD(HDR_LOCK(hdr)) || HDR_EMPTY(hdr));
2671
524b4217 2672 arc_cksum_verify(buf);
d3c2ae1c
GW
2673 arc_buf_unwatch(buf);
2674
2aa34383 2675 if (arc_buf_is_shared(buf)) {
d3c2ae1c
GW
2676 arc_hdr_clear_flags(hdr, ARC_FLAG_SHARED_DATA);
2677 } else {
2aa34383 2678 uint64_t size = arc_buf_size(buf);
d3c2ae1c
GW
2679 arc_free_data_buf(hdr, buf->b_data, size, buf);
2680 ARCSTAT_INCR(arcstat_overhead_size, -size);
2681 }
2682 buf->b_data = NULL;
2683
2684 ASSERT(hdr->b_l1hdr.b_bufcnt > 0);
2685 hdr->b_l1hdr.b_bufcnt -= 1;
2686 }
2687
a7004725 2688 arc_buf_t *lastbuf = arc_buf_remove(hdr, buf);
d3c2ae1c 2689
524b4217 2690 if (ARC_BUF_SHARED(buf) && !ARC_BUF_COMPRESSED(buf)) {
2aa34383 2691 /*
524b4217 2692 * If the current arc_buf_t is sharing its data buffer with the
a6255b7f 2693 * hdr, then reassign the hdr's b_pabd to share it with the new
524b4217
DK
2694 * buffer at the end of the list. The shared buffer is always
2695 * the last one on the hdr's buffer list.
2696 *
2697 * There is an equivalent case for compressed bufs, but since
2698 * they aren't guaranteed to be the last buf in the list and
2699 * that is an exceedingly rare case, we just allow that space be
2700 * wasted temporarily.
2aa34383
DK
2701 */
2702 if (lastbuf != NULL) {
524b4217 2703 /* Only one buf can be shared at once */
2aa34383 2704 VERIFY(!arc_buf_is_shared(lastbuf));
524b4217
DK
2705 /* hdr is uncompressed so can't have compressed buf */
2706 VERIFY(!ARC_BUF_COMPRESSED(lastbuf));
d3c2ae1c 2707
a6255b7f
DQ
2708 ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
2709 arc_hdr_free_pabd(hdr);
d3c2ae1c 2710
2aa34383
DK
2711 /*
2712 * We must setup a new shared block between the
2713 * last buffer and the hdr. The data would have
2714 * been allocated by the arc buf so we need to transfer
2715 * ownership to the hdr since it's now being shared.
2716 */
2717 arc_share_buf(hdr, lastbuf);
2718 }
2719 } else if (HDR_SHARED_DATA(hdr)) {
d3c2ae1c 2720 /*
2aa34383
DK
2721 * Uncompressed shared buffers are always at the end
2722 * of the list. Compressed buffers don't have the
2723 * same requirements. This makes it hard to
2724 * simply assert that the lastbuf is shared so
2725 * we rely on the hdr's compression flags to determine
2726 * if we have a compressed, shared buffer.
d3c2ae1c 2727 */
2aa34383
DK
2728 ASSERT3P(lastbuf, !=, NULL);
2729 ASSERT(arc_buf_is_shared(lastbuf) ||
2730 HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF);
ca0bf58d
PS
2731 }
2732
a7004725
DK
2733 /*
2734 * Free the checksum if we're removing the last uncompressed buf from
2735 * this hdr.
2736 */
2737 if (!arc_hdr_has_uncompressed_buf(hdr)) {
d3c2ae1c 2738 arc_cksum_free(hdr);
a7004725 2739 }
d3c2ae1c
GW
2740
2741 /* clean up the buf */
2742 buf->b_hdr = NULL;
2743 kmem_cache_free(buf_cache, buf);
2744}
2745
2746static void
a6255b7f 2747arc_hdr_alloc_pabd(arc_buf_hdr_t *hdr)
d3c2ae1c
GW
2748{
2749 ASSERT3U(HDR_GET_LSIZE(hdr), >, 0);
2750 ASSERT(HDR_HAS_L1HDR(hdr));
2751 ASSERT(!HDR_SHARED_DATA(hdr));
2752
a6255b7f
DQ
2753 ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
2754 hdr->b_l1hdr.b_pabd = arc_get_data_abd(hdr, arc_hdr_size(hdr), hdr);
d3c2ae1c 2755 hdr->b_l1hdr.b_byteswap = DMU_BSWAP_NUMFUNCS;
a6255b7f 2756 ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
d3c2ae1c
GW
2757
2758 ARCSTAT_INCR(arcstat_compressed_size, arc_hdr_size(hdr));
2759 ARCSTAT_INCR(arcstat_uncompressed_size, HDR_GET_LSIZE(hdr));
2760}
2761
2762static void
a6255b7f 2763arc_hdr_free_pabd(arc_buf_hdr_t *hdr)
d3c2ae1c
GW
2764{
2765 ASSERT(HDR_HAS_L1HDR(hdr));
a6255b7f 2766 ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
d3c2ae1c 2767
ca0bf58d 2768 /*
d3c2ae1c
GW
2769 * If the hdr is currently being written to the l2arc then
2770 * we defer freeing the data by adding it to the l2arc_free_on_write
2771 * list. The l2arc will free the data once it's finished
2772 * writing it to the l2arc device.
ca0bf58d 2773 */
d3c2ae1c
GW
2774 if (HDR_L2_WRITING(hdr)) {
2775 arc_hdr_free_on_write(hdr);
2776 ARCSTAT_BUMP(arcstat_l2_free_on_write);
2777 } else {
a6255b7f 2778 arc_free_data_abd(hdr, hdr->b_l1hdr.b_pabd,
d3c2ae1c 2779 arc_hdr_size(hdr), hdr);
ca0bf58d 2780 }
a6255b7f 2781 hdr->b_l1hdr.b_pabd = NULL;
d3c2ae1c 2782 hdr->b_l1hdr.b_byteswap = DMU_BSWAP_NUMFUNCS;
ca0bf58d 2783
d3c2ae1c
GW
2784 ARCSTAT_INCR(arcstat_compressed_size, -arc_hdr_size(hdr));
2785 ARCSTAT_INCR(arcstat_uncompressed_size, -HDR_GET_LSIZE(hdr));
2786}
2787
2788static arc_buf_hdr_t *
2789arc_hdr_alloc(uint64_t spa, int32_t psize, int32_t lsize,
2aa34383 2790 enum zio_compress compression_type, arc_buf_contents_t type)
d3c2ae1c
GW
2791{
2792 arc_buf_hdr_t *hdr;
2793
d3c2ae1c
GW
2794 VERIFY(type == ARC_BUFC_DATA || type == ARC_BUFC_METADATA);
2795
2796 hdr = kmem_cache_alloc(hdr_full_cache, KM_PUSHPAGE);
2797 ASSERT(HDR_EMPTY(hdr));
2798 ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, ==, NULL);
2799 HDR_SET_PSIZE(hdr, psize);
2800 HDR_SET_LSIZE(hdr, lsize);
2801 hdr->b_spa = spa;
2802 hdr->b_type = type;
2803 hdr->b_flags = 0;
2804 arc_hdr_set_flags(hdr, arc_bufc_to_flags(type) | ARC_FLAG_HAS_L1HDR);
2aa34383 2805 arc_hdr_set_compress(hdr, compression_type);
ca0bf58d 2806
d3c2ae1c
GW
2807 hdr->b_l1hdr.b_state = arc_anon;
2808 hdr->b_l1hdr.b_arc_access = 0;
2809 hdr->b_l1hdr.b_bufcnt = 0;
2810 hdr->b_l1hdr.b_buf = NULL;
ca0bf58d 2811
d3c2ae1c
GW
2812 /*
2813 * Allocate the hdr's buffer. This will contain either
2814 * the compressed or uncompressed data depending on the block
2815 * it references and compressed arc enablement.
2816 */
a6255b7f 2817 arc_hdr_alloc_pabd(hdr);
d3c2ae1c 2818 ASSERT(refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
ca0bf58d 2819
d3c2ae1c 2820 return (hdr);
ca0bf58d
PS
2821}
2822
bd089c54 2823/*
d3c2ae1c
GW
2824 * Transition between the two allocation states for the arc_buf_hdr struct.
2825 * The arc_buf_hdr struct can be allocated with (hdr_full_cache) or without
2826 * (hdr_l2only_cache) the fields necessary for the L1 cache - the smaller
2827 * version is used when a cache buffer is only in the L2ARC in order to reduce
2828 * memory usage.
bd089c54 2829 */
d3c2ae1c
GW
2830static arc_buf_hdr_t *
2831arc_hdr_realloc(arc_buf_hdr_t *hdr, kmem_cache_t *old, kmem_cache_t *new)
34dc7c2f 2832{
d3c2ae1c
GW
2833 arc_buf_hdr_t *nhdr;
2834 l2arc_dev_t *dev = hdr->b_l2hdr.b_dev;
34dc7c2f 2835
d3c2ae1c
GW
2836 ASSERT(HDR_HAS_L2HDR(hdr));
2837 ASSERT((old == hdr_full_cache && new == hdr_l2only_cache) ||
2838 (old == hdr_l2only_cache && new == hdr_full_cache));
34dc7c2f 2839
d3c2ae1c 2840 nhdr = kmem_cache_alloc(new, KM_PUSHPAGE);
428870ff 2841
d3c2ae1c
GW
2842 ASSERT(MUTEX_HELD(HDR_LOCK(hdr)));
2843 buf_hash_remove(hdr);
ca0bf58d 2844
d3c2ae1c 2845 bcopy(hdr, nhdr, HDR_L2ONLY_SIZE);
34dc7c2f 2846
d3c2ae1c
GW
2847 if (new == hdr_full_cache) {
2848 arc_hdr_set_flags(nhdr, ARC_FLAG_HAS_L1HDR);
2849 /*
2850 * arc_access and arc_change_state need to be aware that a
2851 * header has just come out of L2ARC, so we set its state to
2852 * l2c_only even though it's about to change.
2853 */
2854 nhdr->b_l1hdr.b_state = arc_l2c_only;
34dc7c2f 2855
d3c2ae1c 2856 /* Verify previous threads set to NULL before freeing */
a6255b7f 2857 ASSERT3P(nhdr->b_l1hdr.b_pabd, ==, NULL);
d3c2ae1c
GW
2858 } else {
2859 ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
2860 ASSERT0(hdr->b_l1hdr.b_bufcnt);
2861 ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, ==, NULL);
36da08ef 2862
d3c2ae1c
GW
2863 /*
2864 * If we've reached here, We must have been called from
2865 * arc_evict_hdr(), as such we should have already been
2866 * removed from any ghost list we were previously on
2867 * (which protects us from racing with arc_evict_state),
2868 * thus no locking is needed during this check.
2869 */
2870 ASSERT(!multilist_link_active(&hdr->b_l1hdr.b_arc_node));
1eb5bfa3
GW
2871
2872 /*
d3c2ae1c
GW
2873 * A buffer must not be moved into the arc_l2c_only
2874 * state if it's not finished being written out to the
a6255b7f 2875 * l2arc device. Otherwise, the b_l1hdr.b_pabd field
d3c2ae1c 2876 * might try to be accessed, even though it was removed.
1eb5bfa3 2877 */
d3c2ae1c 2878 VERIFY(!HDR_L2_WRITING(hdr));
a6255b7f 2879 VERIFY3P(hdr->b_l1hdr.b_pabd, ==, NULL);
d3c2ae1c
GW
2880
2881 arc_hdr_clear_flags(nhdr, ARC_FLAG_HAS_L1HDR);
34dc7c2f 2882 }
d3c2ae1c
GW
2883 /*
2884 * The header has been reallocated so we need to re-insert it into any
2885 * lists it was on.
2886 */
2887 (void) buf_hash_insert(nhdr, NULL);
34dc7c2f 2888
d3c2ae1c 2889 ASSERT(list_link_active(&hdr->b_l2hdr.b_l2node));
34dc7c2f 2890
d3c2ae1c
GW
2891 mutex_enter(&dev->l2ad_mtx);
2892
2893 /*
2894 * We must place the realloc'ed header back into the list at
2895 * the same spot. Otherwise, if it's placed earlier in the list,
2896 * l2arc_write_buffers() could find it during the function's
2897 * write phase, and try to write it out to the l2arc.
2898 */
2899 list_insert_after(&dev->l2ad_buflist, hdr, nhdr);
2900 list_remove(&dev->l2ad_buflist, hdr);
34dc7c2f 2901
d3c2ae1c 2902 mutex_exit(&dev->l2ad_mtx);
34dc7c2f 2903
d3c2ae1c
GW
2904 /*
2905 * Since we're using the pointer address as the tag when
2906 * incrementing and decrementing the l2ad_alloc refcount, we
2907 * must remove the old pointer (that we're about to destroy) and
2908 * add the new pointer to the refcount. Otherwise we'd remove
2909 * the wrong pointer address when calling arc_hdr_destroy() later.
2910 */
2911
2912 (void) refcount_remove_many(&dev->l2ad_alloc, arc_hdr_size(hdr), hdr);
2913 (void) refcount_add_many(&dev->l2ad_alloc, arc_hdr_size(nhdr), nhdr);
2914
2915 buf_discard_identity(hdr);
2916 kmem_cache_free(old, hdr);
2917
2918 return (nhdr);
2919}
2920
2921/*
2922 * Allocate a new arc_buf_hdr_t and arc_buf_t and return the buf to the caller.
2923 * The buf is returned thawed since we expect the consumer to modify it.
2924 */
2925arc_buf_t *
2aa34383 2926arc_alloc_buf(spa_t *spa, void *tag, arc_buf_contents_t type, int32_t size)
d3c2ae1c 2927{
d3c2ae1c
GW
2928 arc_buf_hdr_t *hdr = arc_hdr_alloc(spa_load_guid(spa), size, size,
2929 ZIO_COMPRESS_OFF, type);
2930 ASSERT(!MUTEX_HELD(HDR_LOCK(hdr)));
2aa34383 2931
a7004725 2932 arc_buf_t *buf = NULL;
524b4217 2933 VERIFY0(arc_buf_alloc_impl(hdr, tag, B_FALSE, B_FALSE, &buf));
d3c2ae1c 2934 arc_buf_thaw(buf);
2aa34383
DK
2935
2936 return (buf);
2937}
2938
2939/*
2940 * Allocate a compressed buf in the same manner as arc_alloc_buf. Don't use this
2941 * for bufs containing metadata.
2942 */
2943arc_buf_t *
2944arc_alloc_compressed_buf(spa_t *spa, void *tag, uint64_t psize, uint64_t lsize,
2945 enum zio_compress compression_type)
2946{
2aa34383
DK
2947 ASSERT3U(lsize, >, 0);
2948 ASSERT3U(lsize, >=, psize);
2949 ASSERT(compression_type > ZIO_COMPRESS_OFF);
2950 ASSERT(compression_type < ZIO_COMPRESS_FUNCTIONS);
2951
a7004725 2952 arc_buf_hdr_t *hdr = arc_hdr_alloc(spa_load_guid(spa), psize, lsize,
2aa34383
DK
2953 compression_type, ARC_BUFC_DATA);
2954 ASSERT(!MUTEX_HELD(HDR_LOCK(hdr)));
2955
a7004725 2956 arc_buf_t *buf = NULL;
524b4217 2957 VERIFY0(arc_buf_alloc_impl(hdr, tag, B_TRUE, B_FALSE, &buf));
2aa34383
DK
2958 arc_buf_thaw(buf);
2959 ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, ==, NULL);
2960
a6255b7f
DQ
2961 if (!arc_buf_is_shared(buf)) {
2962 /*
2963 * To ensure that the hdr has the correct data in it if we call
2964 * arc_decompress() on this buf before it's been written to
2965 * disk, it's easiest if we just set up sharing between the
2966 * buf and the hdr.
2967 */
2968 ASSERT(!abd_is_linear(hdr->b_l1hdr.b_pabd));
2969 arc_hdr_free_pabd(hdr);
2970 arc_share_buf(hdr, buf);
2971 }
2972
d3c2ae1c 2973 return (buf);
34dc7c2f
BB
2974}
2975
d962d5da
PS
2976static void
2977arc_hdr_l2hdr_destroy(arc_buf_hdr_t *hdr)
2978{
2979 l2arc_buf_hdr_t *l2hdr = &hdr->b_l2hdr;
2980 l2arc_dev_t *dev = l2hdr->b_dev;
d3c2ae1c 2981 uint64_t asize = arc_hdr_size(hdr);
d962d5da
PS
2982
2983 ASSERT(MUTEX_HELD(&dev->l2ad_mtx));
2984 ASSERT(HDR_HAS_L2HDR(hdr));
2985
2986 list_remove(&dev->l2ad_buflist, hdr);
2987
d3c2ae1c
GW
2988 ARCSTAT_INCR(arcstat_l2_asize, -asize);
2989 ARCSTAT_INCR(arcstat_l2_size, -HDR_GET_LSIZE(hdr));
d962d5da 2990
d3c2ae1c 2991 vdev_space_update(dev->l2ad_vdev, -asize, 0, 0);
d962d5da 2992
d3c2ae1c
GW
2993 (void) refcount_remove_many(&dev->l2ad_alloc, asize, hdr);
2994 arc_hdr_clear_flags(hdr, ARC_FLAG_HAS_L2HDR);
d962d5da
PS
2995}
2996
34dc7c2f
BB
2997static void
2998arc_hdr_destroy(arc_buf_hdr_t *hdr)
2999{
b9541d6b
CW
3000 if (HDR_HAS_L1HDR(hdr)) {
3001 ASSERT(hdr->b_l1hdr.b_buf == NULL ||
d3c2ae1c 3002 hdr->b_l1hdr.b_bufcnt > 0);
b9541d6b
CW
3003 ASSERT(refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
3004 ASSERT3P(hdr->b_l1hdr.b_state, ==, arc_anon);
3005 }
34dc7c2f 3006 ASSERT(!HDR_IO_IN_PROGRESS(hdr));
b9541d6b
CW
3007 ASSERT(!HDR_IN_HASH_TABLE(hdr));
3008
d3c2ae1c
GW
3009 if (!HDR_EMPTY(hdr))
3010 buf_discard_identity(hdr);
3011
b9541d6b 3012 if (HDR_HAS_L2HDR(hdr)) {
d962d5da
PS
3013 l2arc_dev_t *dev = hdr->b_l2hdr.b_dev;
3014 boolean_t buflist_held = MUTEX_HELD(&dev->l2ad_mtx);
428870ff 3015
d962d5da
PS
3016 if (!buflist_held)
3017 mutex_enter(&dev->l2ad_mtx);
b9541d6b 3018
ca0bf58d 3019 /*
d962d5da
PS
3020 * Even though we checked this conditional above, we
3021 * need to check this again now that we have the
3022 * l2ad_mtx. This is because we could be racing with
3023 * another thread calling l2arc_evict() which might have
3024 * destroyed this header's L2 portion as we were waiting
3025 * to acquire the l2ad_mtx. If that happens, we don't
3026 * want to re-destroy the header's L2 portion.
ca0bf58d 3027 */
d962d5da
PS
3028 if (HDR_HAS_L2HDR(hdr))
3029 arc_hdr_l2hdr_destroy(hdr);
428870ff
BB
3030
3031 if (!buflist_held)
d962d5da 3032 mutex_exit(&dev->l2ad_mtx);
34dc7c2f
BB
3033 }
3034
d3c2ae1c
GW
3035 if (HDR_HAS_L1HDR(hdr)) {
3036 arc_cksum_free(hdr);
b9541d6b 3037
d3c2ae1c 3038 while (hdr->b_l1hdr.b_buf != NULL)
2aa34383 3039 arc_buf_destroy_impl(hdr->b_l1hdr.b_buf);
34dc7c2f 3040
a6255b7f
DQ
3041 if (hdr->b_l1hdr.b_pabd != NULL)
3042 arc_hdr_free_pabd(hdr);
b9541d6b
CW
3043 }
3044
34dc7c2f 3045 ASSERT3P(hdr->b_hash_next, ==, NULL);
b9541d6b 3046 if (HDR_HAS_L1HDR(hdr)) {
ca0bf58d 3047 ASSERT(!multilist_link_active(&hdr->b_l1hdr.b_arc_node));
b9541d6b
CW
3048 ASSERT3P(hdr->b_l1hdr.b_acb, ==, NULL);
3049 kmem_cache_free(hdr_full_cache, hdr);
3050 } else {
3051 kmem_cache_free(hdr_l2only_cache, hdr);
3052 }
34dc7c2f
BB
3053}
3054
3055void
d3c2ae1c 3056arc_buf_destroy(arc_buf_t *buf, void* tag)
34dc7c2f
BB
3057{
3058 arc_buf_hdr_t *hdr = buf->b_hdr;
96c080cb 3059 kmutex_t *hash_lock = HDR_LOCK(hdr);
34dc7c2f 3060
b9541d6b 3061 if (hdr->b_l1hdr.b_state == arc_anon) {
d3c2ae1c
GW
3062 ASSERT3U(hdr->b_l1hdr.b_bufcnt, ==, 1);
3063 ASSERT(!HDR_IO_IN_PROGRESS(hdr));
3064 VERIFY0(remove_reference(hdr, NULL, tag));
3065 arc_hdr_destroy(hdr);
3066 return;
34dc7c2f
BB
3067 }
3068
3069 mutex_enter(hash_lock);
d3c2ae1c
GW
3070 ASSERT3P(hdr, ==, buf->b_hdr);
3071 ASSERT(hdr->b_l1hdr.b_bufcnt > 0);
428870ff 3072 ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
d3c2ae1c
GW
3073 ASSERT3P(hdr->b_l1hdr.b_state, !=, arc_anon);
3074 ASSERT3P(buf->b_data, !=, NULL);
34dc7c2f
BB
3075
3076 (void) remove_reference(hdr, hash_lock, tag);
2aa34383 3077 arc_buf_destroy_impl(buf);
34dc7c2f 3078 mutex_exit(hash_lock);
34dc7c2f
BB
3079}
3080
34dc7c2f 3081/*
ca0bf58d
PS
3082 * Evict the arc_buf_hdr that is provided as a parameter. The resultant
3083 * state of the header is dependent on its state prior to entering this
3084 * function. The following transitions are possible:
34dc7c2f 3085 *
ca0bf58d
PS
3086 * - arc_mru -> arc_mru_ghost
3087 * - arc_mfu -> arc_mfu_ghost
3088 * - arc_mru_ghost -> arc_l2c_only
3089 * - arc_mru_ghost -> deleted
3090 * - arc_mfu_ghost -> arc_l2c_only
3091 * - arc_mfu_ghost -> deleted
34dc7c2f 3092 */
ca0bf58d
PS
3093static int64_t
3094arc_evict_hdr(arc_buf_hdr_t *hdr, kmutex_t *hash_lock)
34dc7c2f 3095{
ca0bf58d
PS
3096 arc_state_t *evicted_state, *state;
3097 int64_t bytes_evicted = 0;
34dc7c2f 3098
ca0bf58d
PS
3099 ASSERT(MUTEX_HELD(hash_lock));
3100 ASSERT(HDR_HAS_L1HDR(hdr));
e8b96c60 3101
ca0bf58d
PS
3102 state = hdr->b_l1hdr.b_state;
3103 if (GHOST_STATE(state)) {
3104 ASSERT(!HDR_IO_IN_PROGRESS(hdr));
d3c2ae1c 3105 ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
e8b96c60
MA
3106
3107 /*
ca0bf58d 3108 * l2arc_write_buffers() relies on a header's L1 portion
a6255b7f 3109 * (i.e. its b_pabd field) during it's write phase.
ca0bf58d
PS
3110 * Thus, we cannot push a header onto the arc_l2c_only
3111 * state (removing its L1 piece) until the header is
3112 * done being written to the l2arc.
e8b96c60 3113 */
ca0bf58d
PS
3114 if (HDR_HAS_L2HDR(hdr) && HDR_L2_WRITING(hdr)) {
3115 ARCSTAT_BUMP(arcstat_evict_l2_skip);
3116 return (bytes_evicted);
e8b96c60
MA
3117 }
3118
ca0bf58d 3119 ARCSTAT_BUMP(arcstat_deleted);
d3c2ae1c 3120 bytes_evicted += HDR_GET_LSIZE(hdr);
428870ff 3121
ca0bf58d 3122 DTRACE_PROBE1(arc__delete, arc_buf_hdr_t *, hdr);
428870ff 3123
ca0bf58d 3124 if (HDR_HAS_L2HDR(hdr)) {
a6255b7f 3125 ASSERT(hdr->b_l1hdr.b_pabd == NULL);
ca0bf58d
PS
3126 /*
3127 * This buffer is cached on the 2nd Level ARC;
3128 * don't destroy the header.
3129 */
3130 arc_change_state(arc_l2c_only, hdr, hash_lock);
3131 /*
3132 * dropping from L1+L2 cached to L2-only,
3133 * realloc to remove the L1 header.
3134 */
3135 hdr = arc_hdr_realloc(hdr, hdr_full_cache,
3136 hdr_l2only_cache);
34dc7c2f 3137 } else {
ca0bf58d
PS
3138 arc_change_state(arc_anon, hdr, hash_lock);
3139 arc_hdr_destroy(hdr);
34dc7c2f 3140 }
ca0bf58d 3141 return (bytes_evicted);
34dc7c2f
BB
3142 }
3143
ca0bf58d
PS
3144 ASSERT(state == arc_mru || state == arc_mfu);
3145 evicted_state = (state == arc_mru) ? arc_mru_ghost : arc_mfu_ghost;
34dc7c2f 3146
ca0bf58d
PS
3147 /* prefetch buffers have a minimum lifespan */
3148 if (HDR_IO_IN_PROGRESS(hdr) ||
3149 ((hdr->b_flags & (ARC_FLAG_PREFETCH | ARC_FLAG_INDIRECT)) &&
3150 ddi_get_lbolt() - hdr->b_l1hdr.b_arc_access <
3151 arc_min_prefetch_lifespan)) {
3152 ARCSTAT_BUMP(arcstat_evict_skip);
3153 return (bytes_evicted);
da8ccd0e
PS
3154 }
3155
ca0bf58d 3156 ASSERT0(refcount_count(&hdr->b_l1hdr.b_refcnt));
ca0bf58d
PS
3157 while (hdr->b_l1hdr.b_buf) {
3158 arc_buf_t *buf = hdr->b_l1hdr.b_buf;
3159 if (!mutex_tryenter(&buf->b_evict_lock)) {
3160 ARCSTAT_BUMP(arcstat_mutex_miss);
3161 break;
3162 }
3163 if (buf->b_data != NULL)
d3c2ae1c
GW
3164 bytes_evicted += HDR_GET_LSIZE(hdr);
3165 mutex_exit(&buf->b_evict_lock);
2aa34383 3166 arc_buf_destroy_impl(buf);
ca0bf58d 3167 }
34dc7c2f 3168
ca0bf58d 3169 if (HDR_HAS_L2HDR(hdr)) {
d3c2ae1c 3170 ARCSTAT_INCR(arcstat_evict_l2_cached, HDR_GET_LSIZE(hdr));
ca0bf58d 3171 } else {
d3c2ae1c
GW
3172 if (l2arc_write_eligible(hdr->b_spa, hdr)) {
3173 ARCSTAT_INCR(arcstat_evict_l2_eligible,
3174 HDR_GET_LSIZE(hdr));
3175 } else {
3176 ARCSTAT_INCR(arcstat_evict_l2_ineligible,
3177 HDR_GET_LSIZE(hdr));
3178 }
ca0bf58d 3179 }
34dc7c2f 3180
d3c2ae1c
GW
3181 if (hdr->b_l1hdr.b_bufcnt == 0) {
3182 arc_cksum_free(hdr);
3183
3184 bytes_evicted += arc_hdr_size(hdr);
3185
3186 /*
3187 * If this hdr is being evicted and has a compressed
3188 * buffer then we discard it here before we change states.
3189 * This ensures that the accounting is updated correctly
a6255b7f 3190 * in arc_free_data_impl().
d3c2ae1c 3191 */
a6255b7f 3192 arc_hdr_free_pabd(hdr);
d3c2ae1c 3193
ca0bf58d
PS
3194 arc_change_state(evicted_state, hdr, hash_lock);
3195 ASSERT(HDR_IN_HASH_TABLE(hdr));
d3c2ae1c 3196 arc_hdr_set_flags(hdr, ARC_FLAG_IN_HASH_TABLE);
ca0bf58d
PS
3197 DTRACE_PROBE1(arc__evict, arc_buf_hdr_t *, hdr);
3198 }
34dc7c2f 3199
ca0bf58d 3200 return (bytes_evicted);
34dc7c2f
BB
3201}
3202
ca0bf58d
PS
3203static uint64_t
3204arc_evict_state_impl(multilist_t *ml, int idx, arc_buf_hdr_t *marker,
3205 uint64_t spa, int64_t bytes)
34dc7c2f 3206{
ca0bf58d
PS
3207 multilist_sublist_t *mls;
3208 uint64_t bytes_evicted = 0;
3209 arc_buf_hdr_t *hdr;
34dc7c2f 3210 kmutex_t *hash_lock;
ca0bf58d 3211 int evict_count = 0;
34dc7c2f 3212
ca0bf58d 3213 ASSERT3P(marker, !=, NULL);
96c080cb 3214 IMPLY(bytes < 0, bytes == ARC_EVICT_ALL);
ca0bf58d
PS
3215
3216 mls = multilist_sublist_lock(ml, idx);
572e2857 3217
ca0bf58d
PS
3218 for (hdr = multilist_sublist_prev(mls, marker); hdr != NULL;
3219 hdr = multilist_sublist_prev(mls, marker)) {
3220 if ((bytes != ARC_EVICT_ALL && bytes_evicted >= bytes) ||
3221 (evict_count >= zfs_arc_evict_batch_limit))
3222 break;
3223
3224 /*
3225 * To keep our iteration location, move the marker
3226 * forward. Since we're not holding hdr's hash lock, we
3227 * must be very careful and not remove 'hdr' from the
3228 * sublist. Otherwise, other consumers might mistake the
3229 * 'hdr' as not being on a sublist when they call the
3230 * multilist_link_active() function (they all rely on
3231 * the hash lock protecting concurrent insertions and
3232 * removals). multilist_sublist_move_forward() was
3233 * specifically implemented to ensure this is the case
3234 * (only 'marker' will be removed and re-inserted).
3235 */
3236 multilist_sublist_move_forward(mls, marker);
3237
3238 /*
3239 * The only case where the b_spa field should ever be
3240 * zero, is the marker headers inserted by
3241 * arc_evict_state(). It's possible for multiple threads
3242 * to be calling arc_evict_state() concurrently (e.g.
3243 * dsl_pool_close() and zio_inject_fault()), so we must
3244 * skip any markers we see from these other threads.
3245 */
2a432414 3246 if (hdr->b_spa == 0)
572e2857
BB
3247 continue;
3248
ca0bf58d
PS
3249 /* we're only interested in evicting buffers of a certain spa */
3250 if (spa != 0 && hdr->b_spa != spa) {
3251 ARCSTAT_BUMP(arcstat_evict_skip);
428870ff 3252 continue;
ca0bf58d
PS
3253 }
3254
3255 hash_lock = HDR_LOCK(hdr);
e8b96c60
MA
3256
3257 /*
ca0bf58d
PS
3258 * We aren't calling this function from any code path
3259 * that would already be holding a hash lock, so we're
3260 * asserting on this assumption to be defensive in case
3261 * this ever changes. Without this check, it would be
3262 * possible to incorrectly increment arcstat_mutex_miss
3263 * below (e.g. if the code changed such that we called
3264 * this function with a hash lock held).
e8b96c60 3265 */
ca0bf58d
PS
3266 ASSERT(!MUTEX_HELD(hash_lock));
3267
34dc7c2f 3268 if (mutex_tryenter(hash_lock)) {
ca0bf58d
PS
3269 uint64_t evicted = arc_evict_hdr(hdr, hash_lock);
3270 mutex_exit(hash_lock);
34dc7c2f 3271
ca0bf58d 3272 bytes_evicted += evicted;
34dc7c2f 3273
572e2857 3274 /*
ca0bf58d
PS
3275 * If evicted is zero, arc_evict_hdr() must have
3276 * decided to skip this header, don't increment
3277 * evict_count in this case.
572e2857 3278 */
ca0bf58d
PS
3279 if (evicted != 0)
3280 evict_count++;
3281
3282 /*
3283 * If arc_size isn't overflowing, signal any
3284 * threads that might happen to be waiting.
3285 *
3286 * For each header evicted, we wake up a single
3287 * thread. If we used cv_broadcast, we could
3288 * wake up "too many" threads causing arc_size
3289 * to significantly overflow arc_c; since
a6255b7f 3290 * arc_get_data_impl() doesn't check for overflow
ca0bf58d
PS
3291 * when it's woken up (it doesn't because it's
3292 * possible for the ARC to be overflowing while
3293 * full of un-evictable buffers, and the
3294 * function should proceed in this case).
3295 *
3296 * If threads are left sleeping, due to not
3297 * using cv_broadcast, they will be woken up
3298 * just before arc_reclaim_thread() sleeps.
3299 */
3300 mutex_enter(&arc_reclaim_lock);
3301 if (!arc_is_overflowing())
3302 cv_signal(&arc_reclaim_waiters_cv);
3303 mutex_exit(&arc_reclaim_lock);
e8b96c60 3304 } else {
ca0bf58d 3305 ARCSTAT_BUMP(arcstat_mutex_miss);
e8b96c60 3306 }
34dc7c2f 3307 }
34dc7c2f 3308
ca0bf58d 3309 multilist_sublist_unlock(mls);
34dc7c2f 3310
ca0bf58d 3311 return (bytes_evicted);
34dc7c2f
BB
3312}
3313
ca0bf58d
PS
3314/*
3315 * Evict buffers from the given arc state, until we've removed the
3316 * specified number of bytes. Move the removed buffers to the
3317 * appropriate evict state.
3318 *
3319 * This function makes a "best effort". It skips over any buffers
3320 * it can't get a hash_lock on, and so, may not catch all candidates.
3321 * It may also return without evicting as much space as requested.
3322 *
3323 * If bytes is specified using the special value ARC_EVICT_ALL, this
3324 * will evict all available (i.e. unlocked and evictable) buffers from
3325 * the given arc state; which is used by arc_flush().
3326 */
3327static uint64_t
3328arc_evict_state(arc_state_t *state, uint64_t spa, int64_t bytes,
3329 arc_buf_contents_t type)
34dc7c2f 3330{
ca0bf58d 3331 uint64_t total_evicted = 0;
64fc7762 3332 multilist_t *ml = state->arcs_list[type];
ca0bf58d
PS
3333 int num_sublists;
3334 arc_buf_hdr_t **markers;
3335 int i;
3336
96c080cb 3337 IMPLY(bytes < 0, bytes == ARC_EVICT_ALL);
ca0bf58d
PS
3338
3339 num_sublists = multilist_get_num_sublists(ml);
d164b209
BB
3340
3341 /*
ca0bf58d
PS
3342 * If we've tried to evict from each sublist, made some
3343 * progress, but still have not hit the target number of bytes
3344 * to evict, we want to keep trying. The markers allow us to
3345 * pick up where we left off for each individual sublist, rather
3346 * than starting from the tail each time.
d164b209 3347 */
ca0bf58d
PS
3348 markers = kmem_zalloc(sizeof (*markers) * num_sublists, KM_SLEEP);
3349 for (i = 0; i < num_sublists; i++) {
3350 multilist_sublist_t *mls;
34dc7c2f 3351
ca0bf58d
PS
3352 markers[i] = kmem_cache_alloc(hdr_full_cache, KM_SLEEP);
3353
3354 /*
3355 * A b_spa of 0 is used to indicate that this header is
3356 * a marker. This fact is used in arc_adjust_type() and
3357 * arc_evict_state_impl().
3358 */
3359 markers[i]->b_spa = 0;
34dc7c2f 3360
ca0bf58d
PS
3361 mls = multilist_sublist_lock(ml, i);
3362 multilist_sublist_insert_tail(mls, markers[i]);
3363 multilist_sublist_unlock(mls);
34dc7c2f
BB
3364 }
3365
d164b209 3366 /*
ca0bf58d
PS
3367 * While we haven't hit our target number of bytes to evict, or
3368 * we're evicting all available buffers.
d164b209 3369 */
ca0bf58d 3370 while (total_evicted < bytes || bytes == ARC_EVICT_ALL) {
25458cbe
TC
3371 int sublist_idx = multilist_get_random_index(ml);
3372 uint64_t scan_evicted = 0;
3373
3374 /*
3375 * Try to reduce pinned dnodes with a floor of arc_dnode_limit.
3376 * Request that 10% of the LRUs be scanned by the superblock
3377 * shrinker.
3378 */
3379 if (type == ARC_BUFC_DATA && arc_dnode_size > arc_dnode_limit)
3380 arc_prune_async((arc_dnode_size - arc_dnode_limit) /
3381 sizeof (dnode_t) / zfs_arc_dnode_reduce_percent);
3382
ca0bf58d
PS
3383 /*
3384 * Start eviction using a randomly selected sublist,
3385 * this is to try and evenly balance eviction across all
3386 * sublists. Always starting at the same sublist
3387 * (e.g. index 0) would cause evictions to favor certain
3388 * sublists over others.
3389 */
ca0bf58d
PS
3390 for (i = 0; i < num_sublists; i++) {
3391 uint64_t bytes_remaining;
3392 uint64_t bytes_evicted;
d164b209 3393
ca0bf58d
PS
3394 if (bytes == ARC_EVICT_ALL)
3395 bytes_remaining = ARC_EVICT_ALL;
3396 else if (total_evicted < bytes)
3397 bytes_remaining = bytes - total_evicted;
3398 else
3399 break;
34dc7c2f 3400
ca0bf58d
PS
3401 bytes_evicted = arc_evict_state_impl(ml, sublist_idx,
3402 markers[sublist_idx], spa, bytes_remaining);
3403
3404 scan_evicted += bytes_evicted;
3405 total_evicted += bytes_evicted;
3406
3407 /* we've reached the end, wrap to the beginning */
3408 if (++sublist_idx >= num_sublists)
3409 sublist_idx = 0;
3410 }
3411
3412 /*
3413 * If we didn't evict anything during this scan, we have
3414 * no reason to believe we'll evict more during another
3415 * scan, so break the loop.
3416 */
3417 if (scan_evicted == 0) {
3418 /* This isn't possible, let's make that obvious */
3419 ASSERT3S(bytes, !=, 0);
34dc7c2f 3420
ca0bf58d
PS
3421 /*
3422 * When bytes is ARC_EVICT_ALL, the only way to
3423 * break the loop is when scan_evicted is zero.
3424 * In that case, we actually have evicted enough,
3425 * so we don't want to increment the kstat.
3426 */
3427 if (bytes != ARC_EVICT_ALL) {
3428 ASSERT3S(total_evicted, <, bytes);
3429 ARCSTAT_BUMP(arcstat_evict_not_enough);
3430 }
d164b209 3431
ca0bf58d
PS
3432 break;
3433 }
d164b209 3434 }
34dc7c2f 3435
ca0bf58d
PS
3436 for (i = 0; i < num_sublists; i++) {
3437 multilist_sublist_t *mls = multilist_sublist_lock(ml, i);
3438 multilist_sublist_remove(mls, markers[i]);
3439 multilist_sublist_unlock(mls);
34dc7c2f 3440
ca0bf58d 3441 kmem_cache_free(hdr_full_cache, markers[i]);
34dc7c2f 3442 }
ca0bf58d
PS
3443 kmem_free(markers, sizeof (*markers) * num_sublists);
3444
3445 return (total_evicted);
3446}
3447
3448/*
3449 * Flush all "evictable" data of the given type from the arc state
3450 * specified. This will not evict any "active" buffers (i.e. referenced).
3451 *
d3c2ae1c 3452 * When 'retry' is set to B_FALSE, the function will make a single pass
ca0bf58d
PS
3453 * over the state and evict any buffers that it can. Since it doesn't
3454 * continually retry the eviction, it might end up leaving some buffers
3455 * in the ARC due to lock misses.
3456 *
d3c2ae1c 3457 * When 'retry' is set to B_TRUE, the function will continually retry the
ca0bf58d
PS
3458 * eviction until *all* evictable buffers have been removed from the
3459 * state. As a result, if concurrent insertions into the state are
3460 * allowed (e.g. if the ARC isn't shutting down), this function might
3461 * wind up in an infinite loop, continually trying to evict buffers.
3462 */
3463static uint64_t
3464arc_flush_state(arc_state_t *state, uint64_t spa, arc_buf_contents_t type,
3465 boolean_t retry)
3466{
3467 uint64_t evicted = 0;
3468
d3c2ae1c 3469 while (refcount_count(&state->arcs_esize[type]) != 0) {
ca0bf58d
PS
3470 evicted += arc_evict_state(state, spa, ARC_EVICT_ALL, type);
3471
3472 if (!retry)
3473 break;
3474 }
3475
3476 return (evicted);
34dc7c2f
BB
3477}
3478
ab26409d 3479/*
ef5b2e10
BB
3480 * Helper function for arc_prune_async() it is responsible for safely
3481 * handling the execution of a registered arc_prune_func_t.
ab26409d
BB
3482 */
3483static void
f6046738 3484arc_prune_task(void *ptr)
ab26409d 3485{
f6046738
BB
3486 arc_prune_t *ap = (arc_prune_t *)ptr;
3487 arc_prune_func_t *func = ap->p_pfunc;
ab26409d 3488
f6046738
BB
3489 if (func != NULL)
3490 func(ap->p_adjust, ap->p_private);
ab26409d 3491
4442f60d 3492 refcount_remove(&ap->p_refcnt, func);
f6046738 3493}
ab26409d 3494
f6046738
BB
3495/*
3496 * Notify registered consumers they must drop holds on a portion of the ARC
3497 * buffered they reference. This provides a mechanism to ensure the ARC can
3498 * honor the arc_meta_limit and reclaim otherwise pinned ARC buffers. This
3499 * is analogous to dnlc_reduce_cache() but more generic.
3500 *
ef5b2e10 3501 * This operation is performed asynchronously so it may be safely called
ca67b33a 3502 * in the context of the arc_reclaim_thread(). A reference is taken here
f6046738
BB
3503 * for each registered arc_prune_t and the arc_prune_task() is responsible
3504 * for releasing it once the registered arc_prune_func_t has completed.
3505 */
3506static void
3507arc_prune_async(int64_t adjust)
3508{
3509 arc_prune_t *ap;
ab26409d 3510
f6046738
BB
3511 mutex_enter(&arc_prune_mtx);
3512 for (ap = list_head(&arc_prune_list); ap != NULL;
3513 ap = list_next(&arc_prune_list, ap)) {
ab26409d 3514
f6046738
BB
3515 if (refcount_count(&ap->p_refcnt) >= 2)
3516 continue;
ab26409d 3517
f6046738
BB
3518 refcount_add(&ap->p_refcnt, ap->p_pfunc);
3519 ap->p_adjust = adjust;
b60eac3d 3520 if (taskq_dispatch(arc_prune_taskq, arc_prune_task,
48d3eb40 3521 ap, TQ_SLEEP) == TASKQID_INVALID) {
b60eac3d 3522 refcount_remove(&ap->p_refcnt, ap->p_pfunc);
3523 continue;
3524 }
f6046738 3525 ARCSTAT_BUMP(arcstat_prune);
ab26409d 3526 }
ab26409d
BB
3527 mutex_exit(&arc_prune_mtx);
3528}
3529
ca0bf58d
PS
3530/*
3531 * Evict the specified number of bytes from the state specified,
3532 * restricting eviction to the spa and type given. This function
3533 * prevents us from trying to evict more from a state's list than
3534 * is "evictable", and to skip evicting altogether when passed a
3535 * negative value for "bytes". In contrast, arc_evict_state() will
3536 * evict everything it can, when passed a negative value for "bytes".
3537 */
3538static uint64_t
3539arc_adjust_impl(arc_state_t *state, uint64_t spa, int64_t bytes,
3540 arc_buf_contents_t type)
3541{
3542 int64_t delta;
3543
d3c2ae1c
GW
3544 if (bytes > 0 && refcount_count(&state->arcs_esize[type]) > 0) {
3545 delta = MIN(refcount_count(&state->arcs_esize[type]), bytes);
ca0bf58d
PS
3546 return (arc_evict_state(state, spa, delta, type));
3547 }
3548
3549 return (0);
3550}
3551
3552/*
3553 * The goal of this function is to evict enough meta data buffers from the
3554 * ARC in order to enforce the arc_meta_limit. Achieving this is slightly
3555 * more complicated than it appears because it is common for data buffers
3556 * to have holds on meta data buffers. In addition, dnode meta data buffers
3557 * will be held by the dnodes in the block preventing them from being freed.
3558 * This means we can't simply traverse the ARC and expect to always find
3559 * enough unheld meta data buffer to release.
3560 *
3561 * Therefore, this function has been updated to make alternating passes
3562 * over the ARC releasing data buffers and then newly unheld meta data
3563 * buffers. This ensures forward progress is maintained and arc_meta_used
3564 * will decrease. Normally this is sufficient, but if required the ARC
3565 * will call the registered prune callbacks causing dentry and inodes to
3566 * be dropped from the VFS cache. This will make dnode meta data buffers
3567 * available for reclaim.
3568 */
3569static uint64_t
f6046738 3570arc_adjust_meta_balanced(void)
ca0bf58d 3571{
25e2ab16
TC
3572 int64_t delta, prune = 0, adjustmnt;
3573 uint64_t total_evicted = 0;
ca0bf58d 3574 arc_buf_contents_t type = ARC_BUFC_DATA;
ca67b33a 3575 int restarts = MAX(zfs_arc_meta_adjust_restarts, 0);
ca0bf58d
PS
3576
3577restart:
3578 /*
3579 * This slightly differs than the way we evict from the mru in
3580 * arc_adjust because we don't have a "target" value (i.e. no
3581 * "meta" arc_p). As a result, I think we can completely
3582 * cannibalize the metadata in the MRU before we evict the
3583 * metadata from the MFU. I think we probably need to implement a
3584 * "metadata arc_p" value to do this properly.
3585 */
3586 adjustmnt = arc_meta_used - arc_meta_limit;
3587
d3c2ae1c
GW
3588 if (adjustmnt > 0 && refcount_count(&arc_mru->arcs_esize[type]) > 0) {
3589 delta = MIN(refcount_count(&arc_mru->arcs_esize[type]),
3590 adjustmnt);
ca0bf58d
PS
3591 total_evicted += arc_adjust_impl(arc_mru, 0, delta, type);
3592 adjustmnt -= delta;
3593 }
3594
3595 /*
3596 * We can't afford to recalculate adjustmnt here. If we do,
3597 * new metadata buffers can sneak into the MRU or ANON lists,
3598 * thus penalize the MFU metadata. Although the fudge factor is
3599 * small, it has been empirically shown to be significant for
3600 * certain workloads (e.g. creating many empty directories). As
3601 * such, we use the original calculation for adjustmnt, and
3602 * simply decrement the amount of data evicted from the MRU.
3603 */
3604
d3c2ae1c
GW
3605 if (adjustmnt > 0 && refcount_count(&arc_mfu->arcs_esize[type]) > 0) {
3606 delta = MIN(refcount_count(&arc_mfu->arcs_esize[type]),
3607 adjustmnt);
ca0bf58d
PS
3608 total_evicted += arc_adjust_impl(arc_mfu, 0, delta, type);
3609 }
3610
3611 adjustmnt = arc_meta_used - arc_meta_limit;
3612
d3c2ae1c
GW
3613 if (adjustmnt > 0 &&
3614 refcount_count(&arc_mru_ghost->arcs_esize[type]) > 0) {
ca0bf58d 3615 delta = MIN(adjustmnt,
d3c2ae1c 3616 refcount_count(&arc_mru_ghost->arcs_esize[type]));
ca0bf58d
PS
3617 total_evicted += arc_adjust_impl(arc_mru_ghost, 0, delta, type);
3618 adjustmnt -= delta;
3619 }
3620
d3c2ae1c
GW
3621 if (adjustmnt > 0 &&
3622 refcount_count(&arc_mfu_ghost->arcs_esize[type]) > 0) {
ca0bf58d 3623 delta = MIN(adjustmnt,
d3c2ae1c 3624 refcount_count(&arc_mfu_ghost->arcs_esize[type]));
ca0bf58d
PS
3625 total_evicted += arc_adjust_impl(arc_mfu_ghost, 0, delta, type);
3626 }
3627
3628 /*
3629 * If after attempting to make the requested adjustment to the ARC
3630 * the meta limit is still being exceeded then request that the
3631 * higher layers drop some cached objects which have holds on ARC
3632 * meta buffers. Requests to the upper layers will be made with
3633 * increasingly large scan sizes until the ARC is below the limit.
3634 */
3635 if (arc_meta_used > arc_meta_limit) {
3636 if (type == ARC_BUFC_DATA) {
3637 type = ARC_BUFC_METADATA;
3638 } else {
3639 type = ARC_BUFC_DATA;
3640
3641 if (zfs_arc_meta_prune) {
3642 prune += zfs_arc_meta_prune;
f6046738 3643 arc_prune_async(prune);
ca0bf58d
PS
3644 }
3645 }
3646
3647 if (restarts > 0) {
3648 restarts--;
3649 goto restart;
3650 }
3651 }
3652 return (total_evicted);
3653}
3654
f6046738
BB
3655/*
3656 * Evict metadata buffers from the cache, such that arc_meta_used is
3657 * capped by the arc_meta_limit tunable.
3658 */
3659static uint64_t
3660arc_adjust_meta_only(void)
3661{
3662 uint64_t total_evicted = 0;
3663 int64_t target;
3664
3665 /*
3666 * If we're over the meta limit, we want to evict enough
3667 * metadata to get back under the meta limit. We don't want to
3668 * evict so much that we drop the MRU below arc_p, though. If
3669 * we're over the meta limit more than we're over arc_p, we
3670 * evict some from the MRU here, and some from the MFU below.
3671 */
3672 target = MIN((int64_t)(arc_meta_used - arc_meta_limit),
36da08ef
PS
3673 (int64_t)(refcount_count(&arc_anon->arcs_size) +
3674 refcount_count(&arc_mru->arcs_size) - arc_p));
f6046738
BB
3675
3676 total_evicted += arc_adjust_impl(arc_mru, 0, target, ARC_BUFC_METADATA);
3677
3678 /*
3679 * Similar to the above, we want to evict enough bytes to get us
3680 * below the meta limit, but not so much as to drop us below the
2aa34383 3681 * space allotted to the MFU (which is defined as arc_c - arc_p).
f6046738
BB
3682 */
3683 target = MIN((int64_t)(arc_meta_used - arc_meta_limit),
36da08ef 3684 (int64_t)(refcount_count(&arc_mfu->arcs_size) - (arc_c - arc_p)));
f6046738
BB
3685
3686 total_evicted += arc_adjust_impl(arc_mfu, 0, target, ARC_BUFC_METADATA);
3687
3688 return (total_evicted);
3689}
3690
3691static uint64_t
3692arc_adjust_meta(void)
3693{
3694 if (zfs_arc_meta_strategy == ARC_STRATEGY_META_ONLY)
3695 return (arc_adjust_meta_only());
3696 else
3697 return (arc_adjust_meta_balanced());
3698}
3699
ca0bf58d
PS
3700/*
3701 * Return the type of the oldest buffer in the given arc state
3702 *
3703 * This function will select a random sublist of type ARC_BUFC_DATA and
3704 * a random sublist of type ARC_BUFC_METADATA. The tail of each sublist
3705 * is compared, and the type which contains the "older" buffer will be
3706 * returned.
3707 */
3708static arc_buf_contents_t
3709arc_adjust_type(arc_state_t *state)
3710{
64fc7762
MA
3711 multilist_t *data_ml = state->arcs_list[ARC_BUFC_DATA];
3712 multilist_t *meta_ml = state->arcs_list[ARC_BUFC_METADATA];
ca0bf58d
PS
3713 int data_idx = multilist_get_random_index(data_ml);
3714 int meta_idx = multilist_get_random_index(meta_ml);
3715 multilist_sublist_t *data_mls;
3716 multilist_sublist_t *meta_mls;
3717 arc_buf_contents_t type;
3718 arc_buf_hdr_t *data_hdr;
3719 arc_buf_hdr_t *meta_hdr;
3720
3721 /*
3722 * We keep the sublist lock until we're finished, to prevent
3723 * the headers from being destroyed via arc_evict_state().
3724 */
3725 data_mls = multilist_sublist_lock(data_ml, data_idx);
3726 meta_mls = multilist_sublist_lock(meta_ml, meta_idx);
3727
3728 /*
3729 * These two loops are to ensure we skip any markers that
3730 * might be at the tail of the lists due to arc_evict_state().
3731 */
3732
3733 for (data_hdr = multilist_sublist_tail(data_mls); data_hdr != NULL;
3734 data_hdr = multilist_sublist_prev(data_mls, data_hdr)) {
3735 if (data_hdr->b_spa != 0)
3736 break;
3737 }
3738
3739 for (meta_hdr = multilist_sublist_tail(meta_mls); meta_hdr != NULL;
3740 meta_hdr = multilist_sublist_prev(meta_mls, meta_hdr)) {
3741 if (meta_hdr->b_spa != 0)
3742 break;
3743 }
3744
3745 if (data_hdr == NULL && meta_hdr == NULL) {
3746 type = ARC_BUFC_DATA;
3747 } else if (data_hdr == NULL) {
3748 ASSERT3P(meta_hdr, !=, NULL);
3749 type = ARC_BUFC_METADATA;
3750 } else if (meta_hdr == NULL) {
3751 ASSERT3P(data_hdr, !=, NULL);
3752 type = ARC_BUFC_DATA;
3753 } else {
3754 ASSERT3P(data_hdr, !=, NULL);
3755 ASSERT3P(meta_hdr, !=, NULL);
3756
3757 /* The headers can't be on the sublist without an L1 header */
3758 ASSERT(HDR_HAS_L1HDR(data_hdr));
3759 ASSERT(HDR_HAS_L1HDR(meta_hdr));
3760
3761 if (data_hdr->b_l1hdr.b_arc_access <
3762 meta_hdr->b_l1hdr.b_arc_access) {
3763 type = ARC_BUFC_DATA;
3764 } else {
3765 type = ARC_BUFC_METADATA;
3766 }
3767 }
3768
3769 multilist_sublist_unlock(meta_mls);
3770 multilist_sublist_unlock(data_mls);
3771
3772 return (type);
3773}
3774
3775/*
3776 * Evict buffers from the cache, such that arc_size is capped by arc_c.
3777 */
3778static uint64_t
3779arc_adjust(void)
3780{
3781 uint64_t total_evicted = 0;
3782 uint64_t bytes;
3783 int64_t target;
3784
3785 /*
3786 * If we're over arc_meta_limit, we want to correct that before
3787 * potentially evicting data buffers below.
3788 */
3789 total_evicted += arc_adjust_meta();
3790
3791 /*
3792 * Adjust MRU size
3793 *
3794 * If we're over the target cache size, we want to evict enough
3795 * from the list to get back to our target size. We don't want
3796 * to evict too much from the MRU, such that it drops below
3797 * arc_p. So, if we're over our target cache size more than
3798 * the MRU is over arc_p, we'll evict enough to get back to
3799 * arc_p here, and then evict more from the MFU below.
3800 */
3801 target = MIN((int64_t)(arc_size - arc_c),
36da08ef
PS
3802 (int64_t)(refcount_count(&arc_anon->arcs_size) +
3803 refcount_count(&arc_mru->arcs_size) + arc_meta_used - arc_p));
ca0bf58d
PS
3804
3805 /*
3806 * If we're below arc_meta_min, always prefer to evict data.
3807 * Otherwise, try to satisfy the requested number of bytes to
3808 * evict from the type which contains older buffers; in an
3809 * effort to keep newer buffers in the cache regardless of their
3810 * type. If we cannot satisfy the number of bytes from this
3811 * type, spill over into the next type.
3812 */
3813 if (arc_adjust_type(arc_mru) == ARC_BUFC_METADATA &&
3814 arc_meta_used > arc_meta_min) {
3815 bytes = arc_adjust_impl(arc_mru, 0, target, ARC_BUFC_METADATA);
3816 total_evicted += bytes;
3817
3818 /*
3819 * If we couldn't evict our target number of bytes from
3820 * metadata, we try to get the rest from data.
3821 */
3822 target -= bytes;
3823
3824 total_evicted +=
3825 arc_adjust_impl(arc_mru, 0, target, ARC_BUFC_DATA);
3826 } else {
3827 bytes = arc_adjust_impl(arc_mru, 0, target, ARC_BUFC_DATA);
3828 total_evicted += bytes;
3829
3830 /*
3831 * If we couldn't evict our target number of bytes from
3832 * data, we try to get the rest from metadata.
3833 */
3834 target -= bytes;
3835
3836 total_evicted +=
3837 arc_adjust_impl(arc_mru, 0, target, ARC_BUFC_METADATA);
3838 }
3839
3840 /*
3841 * Adjust MFU size
3842 *
3843 * Now that we've tried to evict enough from the MRU to get its
3844 * size back to arc_p, if we're still above the target cache
3845 * size, we evict the rest from the MFU.
3846 */
3847 target = arc_size - arc_c;
3848
a7b10a93 3849 if (arc_adjust_type(arc_mfu) == ARC_BUFC_METADATA &&
ca0bf58d
PS
3850 arc_meta_used > arc_meta_min) {
3851 bytes = arc_adjust_impl(arc_mfu, 0, target, ARC_BUFC_METADATA);
3852 total_evicted += bytes;
3853
3854 /*
3855 * If we couldn't evict our target number of bytes from
3856 * metadata, we try to get the rest from data.
3857 */
3858 target -= bytes;
3859
3860 total_evicted +=
3861 arc_adjust_impl(arc_mfu, 0, target, ARC_BUFC_DATA);
3862 } else {
3863 bytes = arc_adjust_impl(arc_mfu, 0, target, ARC_BUFC_DATA);
3864 total_evicted += bytes;
3865
3866 /*
3867 * If we couldn't evict our target number of bytes from
3868 * data, we try to get the rest from data.
3869 */
3870 target -= bytes;
3871
3872 total_evicted +=
3873 arc_adjust_impl(arc_mfu, 0, target, ARC_BUFC_METADATA);
3874 }
3875
3876 /*
3877 * Adjust ghost lists
3878 *
3879 * In addition to the above, the ARC also defines target values
3880 * for the ghost lists. The sum of the mru list and mru ghost
3881 * list should never exceed the target size of the cache, and
3882 * the sum of the mru list, mfu list, mru ghost list, and mfu
3883 * ghost list should never exceed twice the target size of the
3884 * cache. The following logic enforces these limits on the ghost
3885 * caches, and evicts from them as needed.
3886 */
36da08ef
PS
3887 target = refcount_count(&arc_mru->arcs_size) +
3888 refcount_count(&arc_mru_ghost->arcs_size) - arc_c;
ca0bf58d
PS
3889
3890 bytes = arc_adjust_impl(arc_mru_ghost, 0, target, ARC_BUFC_DATA);
3891 total_evicted += bytes;
3892
3893 target -= bytes;
3894
3895 total_evicted +=
3896 arc_adjust_impl(arc_mru_ghost, 0, target, ARC_BUFC_METADATA);
3897
3898 /*
3899 * We assume the sum of the mru list and mfu list is less than
3900 * or equal to arc_c (we enforced this above), which means we
3901 * can use the simpler of the two equations below:
3902 *
3903 * mru + mfu + mru ghost + mfu ghost <= 2 * arc_c
3904 * mru ghost + mfu ghost <= arc_c
3905 */
36da08ef
PS
3906 target = refcount_count(&arc_mru_ghost->arcs_size) +
3907 refcount_count(&arc_mfu_ghost->arcs_size) - arc_c;
ca0bf58d
PS
3908
3909 bytes = arc_adjust_impl(arc_mfu_ghost, 0, target, ARC_BUFC_DATA);
3910 total_evicted += bytes;
3911
3912 target -= bytes;
3913
3914 total_evicted +=
3915 arc_adjust_impl(arc_mfu_ghost, 0, target, ARC_BUFC_METADATA);
3916
3917 return (total_evicted);
3918}
3919
ca0bf58d
PS
3920void
3921arc_flush(spa_t *spa, boolean_t retry)
ab26409d 3922{
ca0bf58d 3923 uint64_t guid = 0;
94520ca4 3924
bc888666 3925 /*
d3c2ae1c 3926 * If retry is B_TRUE, a spa must not be specified since we have
ca0bf58d
PS
3927 * no good way to determine if all of a spa's buffers have been
3928 * evicted from an arc state.
bc888666 3929 */
ca0bf58d 3930 ASSERT(!retry || spa == 0);
d164b209 3931
b9541d6b 3932 if (spa != NULL)
3541dc6d 3933 guid = spa_load_guid(spa);
d164b209 3934
ca0bf58d
PS
3935 (void) arc_flush_state(arc_mru, guid, ARC_BUFC_DATA, retry);
3936 (void) arc_flush_state(arc_mru, guid, ARC_BUFC_METADATA, retry);
3937
3938 (void) arc_flush_state(arc_mfu, guid, ARC_BUFC_DATA, retry);
3939 (void) arc_flush_state(arc_mfu, guid, ARC_BUFC_METADATA, retry);
3940
3941 (void) arc_flush_state(arc_mru_ghost, guid, ARC_BUFC_DATA, retry);
3942 (void) arc_flush_state(arc_mru_ghost, guid, ARC_BUFC_METADATA, retry);
34dc7c2f 3943
ca0bf58d
PS
3944 (void) arc_flush_state(arc_mfu_ghost, guid, ARC_BUFC_DATA, retry);
3945 (void) arc_flush_state(arc_mfu_ghost, guid, ARC_BUFC_METADATA, retry);
34dc7c2f
BB
3946}
3947
34dc7c2f 3948void
ca67b33a 3949arc_shrink(int64_t to_free)
34dc7c2f 3950{
1b8951b3 3951 uint64_t c = arc_c;
34dc7c2f 3952
1b8951b3
TC
3953 if (c > to_free && c - to_free > arc_c_min) {
3954 arc_c = c - to_free;
ca67b33a 3955 atomic_add_64(&arc_p, -(arc_p >> arc_shrink_shift));
34dc7c2f
BB
3956 if (arc_c > arc_size)
3957 arc_c = MAX(arc_size, arc_c_min);
3958 if (arc_p > arc_c)
3959 arc_p = (arc_c >> 1);
3960 ASSERT(arc_c >= arc_c_min);
3961 ASSERT((int64_t)arc_p >= 0);
1b8951b3
TC
3962 } else {
3963 arc_c = arc_c_min;
34dc7c2f
BB
3964 }
3965
3966 if (arc_size > arc_c)
ca0bf58d 3967 (void) arc_adjust();
34dc7c2f
BB
3968}
3969
9edb3695
BB
3970/*
3971 * Return maximum amount of memory that we could possibly use. Reduced
3972 * to half of all memory in user space which is primarily used for testing.
3973 */
3974static uint64_t
3975arc_all_memory(void)
3976{
3977#ifdef _KERNEL
3978 return (MIN(ptob(physmem),
3979 vmem_size(heap_arena, VMEM_FREE | VMEM_ALLOC)));
3980#else
3981 return (ptob(physmem) / 2);
3982#endif
3983}
3984
ca67b33a
MA
3985typedef enum free_memory_reason_t {
3986 FMR_UNKNOWN,
3987 FMR_NEEDFREE,
3988 FMR_LOTSFREE,
3989 FMR_SWAPFS_MINFREE,
3990 FMR_PAGES_PP_MAXIMUM,
3991 FMR_HEAP_ARENA,
3992 FMR_ZIO_ARENA,
3993} free_memory_reason_t;
3994
3995int64_t last_free_memory;
3996free_memory_reason_t last_free_reason;
3997
3998#ifdef _KERNEL
ca67b33a
MA
3999/*
4000 * Additional reserve of pages for pp_reserve.
4001 */
4002int64_t arc_pages_pp_reserve = 64;
4003
4004/*
4005 * Additional reserve of pages for swapfs.
4006 */
4007int64_t arc_swapfs_reserve = 64;
ca67b33a
MA
4008#endif /* _KERNEL */
4009
4010/*
4011 * Return the amount of memory that can be consumed before reclaim will be
4012 * needed. Positive if there is sufficient free memory, negative indicates
4013 * the amount of memory that needs to be freed up.
4014 */
4015static int64_t
4016arc_available_memory(void)
4017{
4018 int64_t lowest = INT64_MAX;
4019 free_memory_reason_t r = FMR_UNKNOWN;
ca67b33a 4020#ifdef _KERNEL
9edb3695 4021 uint64_t available_memory = ptob(freemem);
ca67b33a 4022 int64_t n;
11f552fa
BB
4023#ifdef __linux__
4024 pgcnt_t needfree = btop(arc_need_free);
4025 pgcnt_t lotsfree = btop(arc_sys_free);
4026 pgcnt_t desfree = 0;
4027#endif
ca67b33a 4028
9edb3695
BB
4029#if defined(__i386)
4030 available_memory =
4031 MIN(available_memory, vmem_size(heap_arena, VMEM_FREE));
4032#endif
4033
ca67b33a
MA
4034 if (needfree > 0) {
4035 n = PAGESIZE * (-needfree);
4036 if (n < lowest) {
4037 lowest = n;
4038 r = FMR_NEEDFREE;
4039 }
4040 }
4041
4042 /*
4043 * check that we're out of range of the pageout scanner. It starts to
4044 * schedule paging if freemem is less than lotsfree and needfree.
4045 * lotsfree is the high-water mark for pageout, and needfree is the
4046 * number of needed free pages. We add extra pages here to make sure
4047 * the scanner doesn't start up while we're freeing memory.
4048 */
9edb3695 4049 n = PAGESIZE * (btop(available_memory) - lotsfree - needfree - desfree);
ca67b33a
MA
4050 if (n < lowest) {
4051 lowest = n;
4052 r = FMR_LOTSFREE;
4053 }
4054
11f552fa 4055#ifndef __linux__
ca67b33a
MA
4056 /*
4057 * check to make sure that swapfs has enough space so that anon
4058 * reservations can still succeed. anon_resvmem() checks that the
4059 * availrmem is greater than swapfs_minfree, and the number of reserved
4060 * swap pages. We also add a bit of extra here just to prevent
4061 * circumstances from getting really dire.
4062 */
4063 n = PAGESIZE * (availrmem - swapfs_minfree - swapfs_reserve -
4064 desfree - arc_swapfs_reserve);
4065 if (n < lowest) {
4066 lowest = n;
4067 r = FMR_SWAPFS_MINFREE;
4068 }
4069
4070
4071 /*
4072 * Check that we have enough availrmem that memory locking (e.g., via
4073 * mlock(3C) or memcntl(2)) can still succeed. (pages_pp_maximum
4074 * stores the number of pages that cannot be locked; when availrmem
4075 * drops below pages_pp_maximum, page locking mechanisms such as
4076 * page_pp_lock() will fail.)
4077 */
4078 n = PAGESIZE * (availrmem - pages_pp_maximum -
4079 arc_pages_pp_reserve);
4080 if (n < lowest) {
4081 lowest = n;
4082 r = FMR_PAGES_PP_MAXIMUM;
4083 }
11f552fa 4084#endif
ca67b33a
MA
4085
4086#if defined(__i386)
4087 /*
4088 * If we're on an i386 platform, it's possible that we'll exhaust the
4089 * kernel heap space before we ever run out of available physical
4090 * memory. Most checks of the size of the heap_area compare against
4091 * tune.t_minarmem, which is the minimum available real memory that we
4092 * can have in the system. However, this is generally fixed at 25 pages
4093 * which is so low that it's useless. In this comparison, we seek to
4094 * calculate the total heap-size, and reclaim if more than 3/4ths of the
4095 * heap is allocated. (Or, in the calculation, if less than 1/4th is
4096 * free)
4097 */
4098 n = vmem_size(heap_arena, VMEM_FREE) -
4099 (vmem_size(heap_arena, VMEM_FREE | VMEM_ALLOC) >> 2);
4100 if (n < lowest) {
4101 lowest = n;
4102 r = FMR_HEAP_ARENA;
4103 }
4104#endif
4105
4106 /*
4107 * If zio data pages are being allocated out of a separate heap segment,
4108 * then enforce that the size of available vmem for this arena remains
d3c2ae1c 4109 * above about 1/4th (1/(2^arc_zio_arena_free_shift)) free.
ca67b33a 4110 *
d3c2ae1c
GW
4111 * Note that reducing the arc_zio_arena_free_shift keeps more virtual
4112 * memory (in the zio_arena) free, which can avoid memory
4113 * fragmentation issues.
ca67b33a
MA
4114 */
4115 if (zio_arena != NULL) {
9edb3695
BB
4116 n = (int64_t)vmem_size(zio_arena, VMEM_FREE) -
4117 (vmem_size(zio_arena, VMEM_ALLOC) >>
4118 arc_zio_arena_free_shift);
ca67b33a
MA
4119 if (n < lowest) {
4120 lowest = n;
4121 r = FMR_ZIO_ARENA;
4122 }
4123 }
11f552fa 4124#else /* _KERNEL */
ca67b33a
MA
4125 /* Every 100 calls, free a small amount */
4126 if (spa_get_random(100) == 0)
4127 lowest = -1024;
11f552fa 4128#endif /* _KERNEL */
ca67b33a
MA
4129
4130 last_free_memory = lowest;
4131 last_free_reason = r;
4132
4133 return (lowest);
4134}
4135
4136/*
4137 * Determine if the system is under memory pressure and is asking
d3c2ae1c 4138 * to reclaim memory. A return value of B_TRUE indicates that the system
ca67b33a
MA
4139 * is under memory pressure and that the arc should adjust accordingly.
4140 */
4141static boolean_t
4142arc_reclaim_needed(void)
4143{
4144 return (arc_available_memory() < 0);
4145}
4146
34dc7c2f 4147static void
ca67b33a 4148arc_kmem_reap_now(void)
34dc7c2f
BB
4149{
4150 size_t i;
4151 kmem_cache_t *prev_cache = NULL;
4152 kmem_cache_t *prev_data_cache = NULL;
4153 extern kmem_cache_t *zio_buf_cache[];
4154 extern kmem_cache_t *zio_data_buf_cache[];
669dedb3 4155 extern kmem_cache_t *range_seg_cache;
34dc7c2f 4156
f6046738
BB
4157 if ((arc_meta_used >= arc_meta_limit) && zfs_arc_meta_prune) {
4158 /*
4159 * We are exceeding our meta-data cache limit.
4160 * Prune some entries to release holds on meta-data.
4161 */
ef5b2e10 4162 arc_prune_async(zfs_arc_meta_prune);
f6046738
BB
4163 }
4164
34dc7c2f 4165 for (i = 0; i < SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT; i++) {
d0c614ec 4166#ifdef _ILP32
4167 /* reach upper limit of cache size on 32-bit */
4168 if (zio_buf_cache[i] == NULL)
4169 break;
4170#endif
34dc7c2f
BB
4171 if (zio_buf_cache[i] != prev_cache) {
4172 prev_cache = zio_buf_cache[i];
4173 kmem_cache_reap_now(zio_buf_cache[i]);
4174 }
4175 if (zio_data_buf_cache[i] != prev_data_cache) {
4176 prev_data_cache = zio_data_buf_cache[i];
4177 kmem_cache_reap_now(zio_data_buf_cache[i]);
4178 }
4179 }
ca0bf58d 4180 kmem_cache_reap_now(buf_cache);
b9541d6b
CW
4181 kmem_cache_reap_now(hdr_full_cache);
4182 kmem_cache_reap_now(hdr_l2only_cache);
669dedb3 4183 kmem_cache_reap_now(range_seg_cache);
ca67b33a
MA
4184
4185 if (zio_arena != NULL) {
4186 /*
4187 * Ask the vmem arena to reclaim unused memory from its
4188 * quantum caches.
4189 */
4190 vmem_qcache_reap(zio_arena);
4191 }
34dc7c2f
BB
4192}
4193
302f753f 4194/*
a6255b7f 4195 * Threads can block in arc_get_data_impl() waiting for this thread to evict
ca0bf58d 4196 * enough data and signal them to proceed. When this happens, the threads in
a6255b7f 4197 * arc_get_data_impl() are sleeping while holding the hash lock for their
ca0bf58d
PS
4198 * particular arc header. Thus, we must be careful to never sleep on a
4199 * hash lock in this thread. This is to prevent the following deadlock:
4200 *
a6255b7f 4201 * - Thread A sleeps on CV in arc_get_data_impl() holding hash lock "L",
ca0bf58d
PS
4202 * waiting for the reclaim thread to signal it.
4203 *
4204 * - arc_reclaim_thread() tries to acquire hash lock "L" using mutex_enter,
4205 * fails, and goes to sleep forever.
4206 *
4207 * This possible deadlock is avoided by always acquiring a hash lock
4208 * using mutex_tryenter() from arc_reclaim_thread().
302f753f 4209 */
34dc7c2f 4210static void
ca67b33a 4211arc_reclaim_thread(void)
34dc7c2f 4212{
ca67b33a 4213 fstrans_cookie_t cookie = spl_fstrans_mark();
ae6d0c60 4214 hrtime_t growtime = 0;
34dc7c2f
BB
4215 callb_cpr_t cpr;
4216
ca0bf58d 4217 CALLB_CPR_INIT(&cpr, &arc_reclaim_lock, callb_generic_cpr, FTAG);
34dc7c2f 4218
ca0bf58d 4219 mutex_enter(&arc_reclaim_lock);
ca67b33a
MA
4220 while (!arc_reclaim_thread_exit) {
4221 int64_t to_free;
ca67b33a 4222 uint64_t evicted = 0;
30fffb90 4223 uint64_t need_free = arc_need_free;
ca67b33a 4224 arc_tuning_update();
34dc7c2f 4225
d3c2ae1c
GW
4226 /*
4227 * This is necessary in order for the mdb ::arc dcmd to
4228 * show up to date information. Since the ::arc command
4229 * does not call the kstat's update function, without
4230 * this call, the command may show stale stats for the
4231 * anon, mru, mru_ghost, mfu, and mfu_ghost lists. Even
4232 * with this change, the data might be up to 1 second
4233 * out of date; but that should suffice. The arc_state_t
4234 * structures can be queried directly if more accurate
4235 * information is needed.
4236 */
4237#ifndef __linux__
4238 if (arc_ksp != NULL)
4239 arc_ksp->ks_update(arc_ksp, KSTAT_READ);
4240#endif
ca67b33a 4241 mutex_exit(&arc_reclaim_lock);
34dc7c2f 4242
0a252dae
GM
4243 /*
4244 * We call arc_adjust() before (possibly) calling
4245 * arc_kmem_reap_now(), so that we can wake up
4246 * arc_get_data_buf() sooner.
4247 */
4248 evicted = arc_adjust();
4249
4250 int64_t free_memory = arc_available_memory();
ca67b33a 4251 if (free_memory < 0) {
34dc7c2f 4252
ca67b33a 4253 arc_no_grow = B_TRUE;
b128c09f 4254 arc_warm = B_TRUE;
34dc7c2f 4255
ca67b33a
MA
4256 /*
4257 * Wait at least zfs_grow_retry (default 5) seconds
4258 * before considering growing.
4259 */
ae6d0c60 4260 growtime = gethrtime() + SEC2NSEC(arc_grow_retry);
6a8f9b6b 4261
ca67b33a 4262 arc_kmem_reap_now();
34dc7c2f 4263
ca67b33a
MA
4264 /*
4265 * If we are still low on memory, shrink the ARC
4266 * so that we have arc_shrink_min free space.
4267 */
4268 free_memory = arc_available_memory();
34dc7c2f 4269
ca67b33a
MA
4270 to_free = (arc_c >> arc_shrink_shift) - free_memory;
4271 if (to_free > 0) {
4272#ifdef _KERNEL
30fffb90 4273 to_free = MAX(to_free, need_free);
ca67b33a
MA
4274#endif
4275 arc_shrink(to_free);
4276 }
4277 } else if (free_memory < arc_c >> arc_no_grow_shift) {
4278 arc_no_grow = B_TRUE;
ae6d0c60 4279 } else if (gethrtime() >= growtime) {
ca67b33a
MA
4280 arc_no_grow = B_FALSE;
4281 }
bce45ec9 4282
ca67b33a 4283 mutex_enter(&arc_reclaim_lock);
bce45ec9 4284
ca67b33a
MA
4285 /*
4286 * If evicted is zero, we couldn't evict anything via
4287 * arc_adjust(). This could be due to hash lock
4288 * collisions, but more likely due to the majority of
4289 * arc buffers being unevictable. Therefore, even if
4290 * arc_size is above arc_c, another pass is unlikely to
4291 * be helpful and could potentially cause us to enter an
4292 * infinite loop.
4293 */
4294 if (arc_size <= arc_c || evicted == 0) {
4295 /*
4296 * We're either no longer overflowing, or we
4297 * can't evict anything more, so we should wake
30fffb90
DB
4298 * up any threads before we go to sleep and remove
4299 * the bytes we were working on from arc_need_free
4300 * since nothing more will be done here.
ca67b33a
MA
4301 */
4302 cv_broadcast(&arc_reclaim_waiters_cv);
30fffb90 4303 ARCSTAT_INCR(arcstat_need_free, -need_free);
bce45ec9 4304
ca67b33a
MA
4305 /*
4306 * Block until signaled, or after one second (we
4307 * might need to perform arc_kmem_reap_now()
4308 * even if we aren't being signalled)
4309 */
4310 CALLB_CPR_SAFE_BEGIN(&cpr);
a9bb2b68 4311 (void) cv_timedwait_sig_hires(&arc_reclaim_thread_cv,
ae6d0c60 4312 &arc_reclaim_lock, SEC2NSEC(1), MSEC2NSEC(1), 0);
ca67b33a
MA
4313 CALLB_CPR_SAFE_END(&cpr, &arc_reclaim_lock);
4314 }
ca0bf58d 4315 }
bce45ec9 4316
d3c2ae1c 4317 arc_reclaim_thread_exit = B_FALSE;
ca0bf58d
PS
4318 cv_broadcast(&arc_reclaim_thread_cv);
4319 CALLB_CPR_EXIT(&cpr); /* drops arc_reclaim_lock */
4320 spl_fstrans_unmark(cookie);
4321 thread_exit();
4322}
4323
7cb67b45
BB
4324#ifdef _KERNEL
4325/*
302f753f
BB
4326 * Determine the amount of memory eligible for eviction contained in the
4327 * ARC. All clean data reported by the ghost lists can always be safely
4328 * evicted. Due to arc_c_min, the same does not hold for all clean data
4329 * contained by the regular mru and mfu lists.
4330 *
4331 * In the case of the regular mru and mfu lists, we need to report as
4332 * much clean data as possible, such that evicting that same reported
4333 * data will not bring arc_size below arc_c_min. Thus, in certain
4334 * circumstances, the total amount of clean data in the mru and mfu
4335 * lists might not actually be evictable.
4336 *
4337 * The following two distinct cases are accounted for:
4338 *
4339 * 1. The sum of the amount of dirty data contained by both the mru and
4340 * mfu lists, plus the ARC's other accounting (e.g. the anon list),
4341 * is greater than or equal to arc_c_min.
4342 * (i.e. amount of dirty data >= arc_c_min)
4343 *
4344 * This is the easy case; all clean data contained by the mru and mfu
4345 * lists is evictable. Evicting all clean data can only drop arc_size
4346 * to the amount of dirty data, which is greater than arc_c_min.
4347 *
4348 * 2. The sum of the amount of dirty data contained by both the mru and
4349 * mfu lists, plus the ARC's other accounting (e.g. the anon list),
4350 * is less than arc_c_min.
4351 * (i.e. arc_c_min > amount of dirty data)
4352 *
4353 * 2.1. arc_size is greater than or equal arc_c_min.
4354 * (i.e. arc_size >= arc_c_min > amount of dirty data)
4355 *
4356 * In this case, not all clean data from the regular mru and mfu
4357 * lists is actually evictable; we must leave enough clean data
4358 * to keep arc_size above arc_c_min. Thus, the maximum amount of
4359 * evictable data from the two lists combined, is exactly the
4360 * difference between arc_size and arc_c_min.
4361 *
4362 * 2.2. arc_size is less than arc_c_min
4363 * (i.e. arc_c_min > arc_size > amount of dirty data)
4364 *
4365 * In this case, none of the data contained in the mru and mfu
4366 * lists is evictable, even if it's clean. Since arc_size is
4367 * already below arc_c_min, evicting any more would only
4368 * increase this negative difference.
7cb67b45 4369 */
302f753f 4370static uint64_t
4ea3f864
GM
4371arc_evictable_memory(void)
4372{
302f753f 4373 uint64_t arc_clean =
d3c2ae1c
GW
4374 refcount_count(&arc_mru->arcs_esize[ARC_BUFC_DATA]) +
4375 refcount_count(&arc_mru->arcs_esize[ARC_BUFC_METADATA]) +
4376 refcount_count(&arc_mfu->arcs_esize[ARC_BUFC_DATA]) +
4377 refcount_count(&arc_mfu->arcs_esize[ARC_BUFC_METADATA]);
302f753f
BB
4378 uint64_t arc_dirty = MAX((int64_t)arc_size - (int64_t)arc_clean, 0);
4379
4380 if (arc_dirty >= arc_c_min)
9b50146d 4381 return (arc_clean);
302f753f 4382
9b50146d 4383 return (MAX((int64_t)arc_size - (int64_t)arc_c_min, 0));
302f753f
BB
4384}
4385
ed6e9cc2
TC
4386/*
4387 * If sc->nr_to_scan is zero, the caller is requesting a query of the
4388 * number of objects which can potentially be freed. If it is nonzero,
4389 * the request is to free that many objects.
4390 *
4391 * Linux kernels >= 3.12 have the count_objects and scan_objects callbacks
4392 * in struct shrinker and also require the shrinker to return the number
4393 * of objects freed.
4394 *
4395 * Older kernels require the shrinker to return the number of freeable
4396 * objects following the freeing of nr_to_free.
4397 */
4398static spl_shrinker_t
7e7baeca 4399__arc_shrinker_func(struct shrinker *shrink, struct shrink_control *sc)
7cb67b45 4400{
ed6e9cc2 4401 int64_t pages;
7cb67b45 4402
302f753f
BB
4403 /* The arc is considered warm once reclaim has occurred */
4404 if (unlikely(arc_warm == B_FALSE))
4405 arc_warm = B_TRUE;
7cb67b45 4406
302f753f 4407 /* Return the potential number of reclaimable pages */
ed6e9cc2 4408 pages = btop((int64_t)arc_evictable_memory());
302f753f
BB
4409 if (sc->nr_to_scan == 0)
4410 return (pages);
3fd70ee6
BB
4411
4412 /* Not allowed to perform filesystem reclaim */
7e7baeca 4413 if (!(sc->gfp_mask & __GFP_FS))
ed6e9cc2 4414 return (SHRINK_STOP);
3fd70ee6 4415
7cb67b45 4416 /* Reclaim in progress */
b855550c
DB
4417 if (mutex_tryenter(&arc_reclaim_lock) == 0) {
4418 ARCSTAT_INCR(arcstat_need_free, ptob(sc->nr_to_scan));
2e91c2fb 4419 return (0);
b855550c 4420 }
7cb67b45 4421
ca0bf58d
PS
4422 mutex_exit(&arc_reclaim_lock);
4423
302f753f
BB
4424 /*
4425 * Evict the requested number of pages by shrinking arc_c the
4426 * requested amount. If there is nothing left to evict just
4427 * reap whatever we can from the various arc slabs.
4428 */
4429 if (pages > 0) {
ca67b33a
MA
4430 arc_shrink(ptob(sc->nr_to_scan));
4431 arc_kmem_reap_now();
ed6e9cc2
TC
4432#ifdef HAVE_SPLIT_SHRINKER_CALLBACK
4433 pages = MAX(pages - btop(arc_evictable_memory()), 0);
4434#else
1e3cb67b 4435 pages = btop(arc_evictable_memory());
ed6e9cc2 4436#endif
1a31dcf5
DB
4437 /*
4438 * We've shrunk what we can, wake up threads.
4439 */
4440 cv_broadcast(&arc_reclaim_waiters_cv);
4441
302f753f 4442 } else {
ca67b33a 4443 arc_kmem_reap_now();
ed6e9cc2 4444 pages = SHRINK_STOP;
302f753f
BB
4445 }
4446
4447 /*
4448 * When direct reclaim is observed it usually indicates a rapid
4449 * increase in memory pressure. This occurs because the kswapd
4450 * threads were unable to asynchronously keep enough free memory
4451 * available. In this case set arc_no_grow to briefly pause arc
4452 * growth to avoid compounding the memory pressure.
4453 */
7cb67b45 4454 if (current_is_kswapd()) {
302f753f 4455 ARCSTAT_BUMP(arcstat_memory_indirect_count);
7cb67b45 4456 } else {
302f753f 4457 arc_no_grow = B_TRUE;
302f753f 4458 ARCSTAT_BUMP(arcstat_memory_direct_count);
7cb67b45
BB
4459 }
4460
1e3cb67b 4461 return (pages);
7cb67b45 4462}
7e7baeca 4463SPL_SHRINKER_CALLBACK_WRAPPER(arc_shrinker_func);
7cb67b45
BB
4464
4465SPL_SHRINKER_DECLARE(arc_shrinker, arc_shrinker_func, DEFAULT_SEEKS);
4466#endif /* _KERNEL */
4467
34dc7c2f
BB
4468/*
4469 * Adapt arc info given the number of bytes we are trying to add and
4e33ba4c 4470 * the state that we are coming from. This function is only called
34dc7c2f
BB
4471 * when we are adding new content to the cache.
4472 */
4473static void
4474arc_adapt(int bytes, arc_state_t *state)
4475{
4476 int mult;
728d6ae9 4477 uint64_t arc_p_min = (arc_c >> arc_p_min_shift);
36da08ef
PS
4478 int64_t mrug_size = refcount_count(&arc_mru_ghost->arcs_size);
4479 int64_t mfug_size = refcount_count(&arc_mfu_ghost->arcs_size);
34dc7c2f
BB
4480
4481 if (state == arc_l2c_only)
4482 return;
4483
4484 ASSERT(bytes > 0);
4485 /*
4486 * Adapt the target size of the MRU list:
4487 * - if we just hit in the MRU ghost list, then increase
4488 * the target size of the MRU list.
4489 * - if we just hit in the MFU ghost list, then increase
4490 * the target size of the MFU list by decreasing the
4491 * target size of the MRU list.
4492 */
4493 if (state == arc_mru_ghost) {
36da08ef 4494 mult = (mrug_size >= mfug_size) ? 1 : (mfug_size / mrug_size);
62422785
PS
4495 if (!zfs_arc_p_dampener_disable)
4496 mult = MIN(mult, 10); /* avoid wild arc_p adjustment */
34dc7c2f 4497
728d6ae9 4498 arc_p = MIN(arc_c - arc_p_min, arc_p + bytes * mult);
34dc7c2f 4499 } else if (state == arc_mfu_ghost) {
d164b209
BB
4500 uint64_t delta;
4501
36da08ef 4502 mult = (mfug_size >= mrug_size) ? 1 : (mrug_size / mfug_size);
62422785
PS
4503 if (!zfs_arc_p_dampener_disable)
4504 mult = MIN(mult, 10);
34dc7c2f 4505
d164b209 4506 delta = MIN(bytes * mult, arc_p);
728d6ae9 4507 arc_p = MAX(arc_p_min, arc_p - delta);
34dc7c2f
BB
4508 }
4509 ASSERT((int64_t)arc_p >= 0);
4510
ca67b33a
MA
4511 if (arc_reclaim_needed()) {
4512 cv_signal(&arc_reclaim_thread_cv);
4513 return;
4514 }
4515
34dc7c2f
BB
4516 if (arc_no_grow)
4517 return;
4518
4519 if (arc_c >= arc_c_max)
4520 return;
4521
4522 /*
4523 * If we're within (2 * maxblocksize) bytes of the target
4524 * cache size, increment the target cache size
4525 */
935434ef 4526 ASSERT3U(arc_c, >=, 2ULL << SPA_MAXBLOCKSHIFT);
121b3cae 4527 if (arc_size >= arc_c - (2ULL << SPA_MAXBLOCKSHIFT)) {
34dc7c2f
BB
4528 atomic_add_64(&arc_c, (int64_t)bytes);
4529 if (arc_c > arc_c_max)
4530 arc_c = arc_c_max;
4531 else if (state == arc_anon)
4532 atomic_add_64(&arc_p, (int64_t)bytes);
4533 if (arc_p > arc_c)
4534 arc_p = arc_c;
4535 }
4536 ASSERT((int64_t)arc_p >= 0);
4537}
4538
4539/*
ca0bf58d
PS
4540 * Check if arc_size has grown past our upper threshold, determined by
4541 * zfs_arc_overflow_shift.
34dc7c2f 4542 */
ca0bf58d
PS
4543static boolean_t
4544arc_is_overflowing(void)
34dc7c2f 4545{
ca0bf58d
PS
4546 /* Always allow at least one block of overflow */
4547 uint64_t overflow = MAX(SPA_MAXBLOCKSIZE,
4548 arc_c >> zfs_arc_overflow_shift);
34dc7c2f 4549
ca0bf58d 4550 return (arc_size >= arc_c + overflow);
34dc7c2f
BB
4551}
4552
a6255b7f
DQ
4553static abd_t *
4554arc_get_data_abd(arc_buf_hdr_t *hdr, uint64_t size, void *tag)
4555{
4556 arc_buf_contents_t type = arc_buf_type(hdr);
4557
4558 arc_get_data_impl(hdr, size, tag);
4559 if (type == ARC_BUFC_METADATA) {
4560 return (abd_alloc(size, B_TRUE));
4561 } else {
4562 ASSERT(type == ARC_BUFC_DATA);
4563 return (abd_alloc(size, B_FALSE));
4564 }
4565}
4566
4567static void *
4568arc_get_data_buf(arc_buf_hdr_t *hdr, uint64_t size, void *tag)
4569{
4570 arc_buf_contents_t type = arc_buf_type(hdr);
4571
4572 arc_get_data_impl(hdr, size, tag);
4573 if (type == ARC_BUFC_METADATA) {
4574 return (zio_buf_alloc(size));
4575 } else {
4576 ASSERT(type == ARC_BUFC_DATA);
4577 return (zio_data_buf_alloc(size));
4578 }
4579}
4580
34dc7c2f 4581/*
d3c2ae1c
GW
4582 * Allocate a block and return it to the caller. If we are hitting the
4583 * hard limit for the cache size, we must sleep, waiting for the eviction
4584 * thread to catch up. If we're past the target size but below the hard
4585 * limit, we'll only signal the reclaim thread and continue on.
34dc7c2f 4586 */
a6255b7f
DQ
4587static void
4588arc_get_data_impl(arc_buf_hdr_t *hdr, uint64_t size, void *tag)
34dc7c2f 4589{
a6255b7f
DQ
4590 arc_state_t *state = hdr->b_l1hdr.b_state;
4591 arc_buf_contents_t type = arc_buf_type(hdr);
34dc7c2f
BB
4592
4593 arc_adapt(size, state);
4594
4595 /*
ca0bf58d
PS
4596 * If arc_size is currently overflowing, and has grown past our
4597 * upper limit, we must be adding data faster than the evict
4598 * thread can evict. Thus, to ensure we don't compound the
4599 * problem by adding more data and forcing arc_size to grow even
4600 * further past it's target size, we halt and wait for the
4601 * eviction thread to catch up.
4602 *
4603 * It's also possible that the reclaim thread is unable to evict
4604 * enough buffers to get arc_size below the overflow limit (e.g.
4605 * due to buffers being un-evictable, or hash lock collisions).
4606 * In this case, we want to proceed regardless if we're
4607 * overflowing; thus we don't use a while loop here.
34dc7c2f 4608 */
ca0bf58d
PS
4609 if (arc_is_overflowing()) {
4610 mutex_enter(&arc_reclaim_lock);
4611
4612 /*
4613 * Now that we've acquired the lock, we may no longer be
4614 * over the overflow limit, lets check.
4615 *
4616 * We're ignoring the case of spurious wake ups. If that
4617 * were to happen, it'd let this thread consume an ARC
4618 * buffer before it should have (i.e. before we're under
4619 * the overflow limit and were signalled by the reclaim
4620 * thread). As long as that is a rare occurrence, it
4621 * shouldn't cause any harm.
4622 */
4623 if (arc_is_overflowing()) {
4624 cv_signal(&arc_reclaim_thread_cv);
4625 cv_wait(&arc_reclaim_waiters_cv, &arc_reclaim_lock);
34dc7c2f 4626 }
34dc7c2f 4627
ca0bf58d 4628 mutex_exit(&arc_reclaim_lock);
34dc7c2f 4629 }
ab26409d 4630
d3c2ae1c 4631 VERIFY3U(hdr->b_type, ==, type);
da8ccd0e 4632 if (type == ARC_BUFC_METADATA) {
ca0bf58d
PS
4633 arc_space_consume(size, ARC_SPACE_META);
4634 } else {
ca0bf58d 4635 arc_space_consume(size, ARC_SPACE_DATA);
da8ccd0e
PS
4636 }
4637
34dc7c2f
BB
4638 /*
4639 * Update the state size. Note that ghost states have a
4640 * "ghost size" and so don't need to be updated.
4641 */
d3c2ae1c 4642 if (!GHOST_STATE(state)) {
34dc7c2f 4643
d3c2ae1c 4644 (void) refcount_add_many(&state->arcs_size, size, tag);
ca0bf58d
PS
4645
4646 /*
4647 * If this is reached via arc_read, the link is
4648 * protected by the hash lock. If reached via
4649 * arc_buf_alloc, the header should not be accessed by
4650 * any other thread. And, if reached via arc_read_done,
4651 * the hash lock will protect it if it's found in the
4652 * hash table; otherwise no other thread should be
4653 * trying to [add|remove]_reference it.
4654 */
4655 if (multilist_link_active(&hdr->b_l1hdr.b_arc_node)) {
b9541d6b 4656 ASSERT(refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
d3c2ae1c
GW
4657 (void) refcount_add_many(&state->arcs_esize[type],
4658 size, tag);
34dc7c2f 4659 }
d3c2ae1c 4660
34dc7c2f
BB
4661 /*
4662 * If we are growing the cache, and we are adding anonymous
4663 * data, and we have outgrown arc_p, update arc_p
4664 */
ca0bf58d 4665 if (arc_size < arc_c && hdr->b_l1hdr.b_state == arc_anon &&
36da08ef
PS
4666 (refcount_count(&arc_anon->arcs_size) +
4667 refcount_count(&arc_mru->arcs_size) > arc_p))
34dc7c2f
BB
4668 arc_p = MIN(arc_c, arc_p + size);
4669 }
a6255b7f
DQ
4670}
4671
4672static void
4673arc_free_data_abd(arc_buf_hdr_t *hdr, abd_t *abd, uint64_t size, void *tag)
4674{
4675 arc_free_data_impl(hdr, size, tag);
4676 abd_free(abd);
4677}
4678
4679static void
4680arc_free_data_buf(arc_buf_hdr_t *hdr, void *buf, uint64_t size, void *tag)
4681{
4682 arc_buf_contents_t type = arc_buf_type(hdr);
4683
4684 arc_free_data_impl(hdr, size, tag);
4685 if (type == ARC_BUFC_METADATA) {
4686 zio_buf_free(buf, size);
4687 } else {
4688 ASSERT(type == ARC_BUFC_DATA);
4689 zio_data_buf_free(buf, size);
4690 }
d3c2ae1c
GW
4691}
4692
4693/*
4694 * Free the arc data buffer.
4695 */
4696static void
a6255b7f 4697arc_free_data_impl(arc_buf_hdr_t *hdr, uint64_t size, void *tag)
d3c2ae1c
GW
4698{
4699 arc_state_t *state = hdr->b_l1hdr.b_state;
4700 arc_buf_contents_t type = arc_buf_type(hdr);
4701
4702 /* protected by hash lock, if in the hash table */
4703 if (multilist_link_active(&hdr->b_l1hdr.b_arc_node)) {
4704 ASSERT(refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
4705 ASSERT(state != arc_anon && state != arc_l2c_only);
4706
4707 (void) refcount_remove_many(&state->arcs_esize[type],
4708 size, tag);
4709 }
4710 (void) refcount_remove_many(&state->arcs_size, size, tag);
4711
4712 VERIFY3U(hdr->b_type, ==, type);
4713 if (type == ARC_BUFC_METADATA) {
d3c2ae1c
GW
4714 arc_space_return(size, ARC_SPACE_META);
4715 } else {
4716 ASSERT(type == ARC_BUFC_DATA);
d3c2ae1c
GW
4717 arc_space_return(size, ARC_SPACE_DATA);
4718 }
34dc7c2f
BB
4719}
4720
4721/*
4722 * This routine is called whenever a buffer is accessed.
4723 * NOTE: the hash lock is dropped in this function.
4724 */
4725static void
2a432414 4726arc_access(arc_buf_hdr_t *hdr, kmutex_t *hash_lock)
34dc7c2f 4727{
428870ff
BB
4728 clock_t now;
4729
34dc7c2f 4730 ASSERT(MUTEX_HELD(hash_lock));
b9541d6b 4731 ASSERT(HDR_HAS_L1HDR(hdr));
34dc7c2f 4732
b9541d6b 4733 if (hdr->b_l1hdr.b_state == arc_anon) {
34dc7c2f
BB
4734 /*
4735 * This buffer is not in the cache, and does not
4736 * appear in our "ghost" list. Add the new buffer
4737 * to the MRU state.
4738 */
4739
b9541d6b
CW
4740 ASSERT0(hdr->b_l1hdr.b_arc_access);
4741 hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
2a432414
GW
4742 DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, hdr);
4743 arc_change_state(arc_mru, hdr, hash_lock);
34dc7c2f 4744
b9541d6b 4745 } else if (hdr->b_l1hdr.b_state == arc_mru) {
428870ff
BB
4746 now = ddi_get_lbolt();
4747
34dc7c2f
BB
4748 /*
4749 * If this buffer is here because of a prefetch, then either:
4750 * - clear the flag if this is a "referencing" read
4751 * (any subsequent access will bump this into the MFU state).
4752 * or
4753 * - move the buffer to the head of the list if this is
4754 * another prefetch (to make it less likely to be evicted).
4755 */
b9541d6b
CW
4756 if (HDR_PREFETCH(hdr)) {
4757 if (refcount_count(&hdr->b_l1hdr.b_refcnt) == 0) {
ca0bf58d
PS
4758 /* link protected by hash lock */
4759 ASSERT(multilist_link_active(
b9541d6b 4760 &hdr->b_l1hdr.b_arc_node));
34dc7c2f 4761 } else {
d3c2ae1c 4762 arc_hdr_clear_flags(hdr, ARC_FLAG_PREFETCH);
b9541d6b 4763 atomic_inc_32(&hdr->b_l1hdr.b_mru_hits);
34dc7c2f
BB
4764 ARCSTAT_BUMP(arcstat_mru_hits);
4765 }
b9541d6b 4766 hdr->b_l1hdr.b_arc_access = now;
34dc7c2f
BB
4767 return;
4768 }
4769
4770 /*
4771 * This buffer has been "accessed" only once so far,
4772 * but it is still in the cache. Move it to the MFU
4773 * state.
4774 */
b9541d6b
CW
4775 if (ddi_time_after(now, hdr->b_l1hdr.b_arc_access +
4776 ARC_MINTIME)) {
34dc7c2f
BB
4777 /*
4778 * More than 125ms have passed since we
4779 * instantiated this buffer. Move it to the
4780 * most frequently used state.
4781 */
b9541d6b 4782 hdr->b_l1hdr.b_arc_access = now;
2a432414
GW
4783 DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr);
4784 arc_change_state(arc_mfu, hdr, hash_lock);
34dc7c2f 4785 }
b9541d6b 4786 atomic_inc_32(&hdr->b_l1hdr.b_mru_hits);
34dc7c2f 4787 ARCSTAT_BUMP(arcstat_mru_hits);
b9541d6b 4788 } else if (hdr->b_l1hdr.b_state == arc_mru_ghost) {
34dc7c2f
BB
4789 arc_state_t *new_state;
4790 /*
4791 * This buffer has been "accessed" recently, but
4792 * was evicted from the cache. Move it to the
4793 * MFU state.
4794 */
4795
b9541d6b 4796 if (HDR_PREFETCH(hdr)) {
34dc7c2f 4797 new_state = arc_mru;
b9541d6b 4798 if (refcount_count(&hdr->b_l1hdr.b_refcnt) > 0)
d3c2ae1c 4799 arc_hdr_clear_flags(hdr, ARC_FLAG_PREFETCH);
2a432414 4800 DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, hdr);
34dc7c2f
BB
4801 } else {
4802 new_state = arc_mfu;
2a432414 4803 DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr);
34dc7c2f
BB
4804 }
4805
b9541d6b 4806 hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
2a432414 4807 arc_change_state(new_state, hdr, hash_lock);
34dc7c2f 4808
b9541d6b 4809 atomic_inc_32(&hdr->b_l1hdr.b_mru_ghost_hits);
34dc7c2f 4810 ARCSTAT_BUMP(arcstat_mru_ghost_hits);
b9541d6b 4811 } else if (hdr->b_l1hdr.b_state == arc_mfu) {
34dc7c2f
BB
4812 /*
4813 * This buffer has been accessed more than once and is
4814 * still in the cache. Keep it in the MFU state.
4815 *
4816 * NOTE: an add_reference() that occurred when we did
4817 * the arc_read() will have kicked this off the list.
4818 * If it was a prefetch, we will explicitly move it to
4819 * the head of the list now.
4820 */
b9541d6b
CW
4821 if ((HDR_PREFETCH(hdr)) != 0) {
4822 ASSERT(refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
ca0bf58d
PS
4823 /* link protected by hash_lock */
4824 ASSERT(multilist_link_active(&hdr->b_l1hdr.b_arc_node));
34dc7c2f 4825 }
b9541d6b 4826 atomic_inc_32(&hdr->b_l1hdr.b_mfu_hits);
34dc7c2f 4827 ARCSTAT_BUMP(arcstat_mfu_hits);
b9541d6b
CW
4828 hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
4829 } else if (hdr->b_l1hdr.b_state == arc_mfu_ghost) {
34dc7c2f
BB
4830 arc_state_t *new_state = arc_mfu;
4831 /*
4832 * This buffer has been accessed more than once but has
4833 * been evicted from the cache. Move it back to the
4834 * MFU state.
4835 */
4836
b9541d6b 4837 if (HDR_PREFETCH(hdr)) {
34dc7c2f
BB
4838 /*
4839 * This is a prefetch access...
4840 * move this block back to the MRU state.
4841 */
b9541d6b 4842 ASSERT0(refcount_count(&hdr->b_l1hdr.b_refcnt));
34dc7c2f
BB
4843 new_state = arc_mru;
4844 }
4845
b9541d6b 4846 hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
2a432414
GW
4847 DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr);
4848 arc_change_state(new_state, hdr, hash_lock);
34dc7c2f 4849
b9541d6b 4850 atomic_inc_32(&hdr->b_l1hdr.b_mfu_ghost_hits);
34dc7c2f 4851 ARCSTAT_BUMP(arcstat_mfu_ghost_hits);
b9541d6b 4852 } else if (hdr->b_l1hdr.b_state == arc_l2c_only) {
34dc7c2f
BB
4853 /*
4854 * This buffer is on the 2nd Level ARC.
4855 */
4856
b9541d6b 4857 hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
2a432414
GW
4858 DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr);
4859 arc_change_state(arc_mfu, hdr, hash_lock);
34dc7c2f 4860 } else {
b9541d6b
CW
4861 cmn_err(CE_PANIC, "invalid arc state 0x%p",
4862 hdr->b_l1hdr.b_state);
34dc7c2f
BB
4863 }
4864}
4865
4866/* a generic arc_done_func_t which you can use */
4867/* ARGSUSED */
4868void
4869arc_bcopy_func(zio_t *zio, arc_buf_t *buf, void *arg)
4870{
428870ff 4871 if (zio == NULL || zio->io_error == 0)
2aa34383 4872 bcopy(buf->b_data, arg, arc_buf_size(buf));
d3c2ae1c 4873 arc_buf_destroy(buf, arg);
34dc7c2f
BB
4874}
4875
4876/* a generic arc_done_func_t */
4877void
4878arc_getbuf_func(zio_t *zio, arc_buf_t *buf, void *arg)
4879{
4880 arc_buf_t **bufp = arg;
4881 if (zio && zio->io_error) {
d3c2ae1c 4882 arc_buf_destroy(buf, arg);
34dc7c2f
BB
4883 *bufp = NULL;
4884 } else {
4885 *bufp = buf;
428870ff 4886 ASSERT(buf->b_data);
34dc7c2f
BB
4887 }
4888}
4889
d3c2ae1c
GW
4890static void
4891arc_hdr_verify(arc_buf_hdr_t *hdr, blkptr_t *bp)
4892{
4893 if (BP_IS_HOLE(bp) || BP_IS_EMBEDDED(bp)) {
4894 ASSERT3U(HDR_GET_PSIZE(hdr), ==, 0);
4895 ASSERT3U(HDR_GET_COMPRESS(hdr), ==, ZIO_COMPRESS_OFF);
4896 } else {
4897 if (HDR_COMPRESSION_ENABLED(hdr)) {
4898 ASSERT3U(HDR_GET_COMPRESS(hdr), ==,
4899 BP_GET_COMPRESS(bp));
4900 }
4901 ASSERT3U(HDR_GET_LSIZE(hdr), ==, BP_GET_LSIZE(bp));
4902 ASSERT3U(HDR_GET_PSIZE(hdr), ==, BP_GET_PSIZE(bp));
4903 }
4904}
4905
34dc7c2f
BB
4906static void
4907arc_read_done(zio_t *zio)
4908{
d3c2ae1c 4909 arc_buf_hdr_t *hdr = zio->io_private;
9b67f605 4910 kmutex_t *hash_lock = NULL;
524b4217
DK
4911 arc_callback_t *callback_list;
4912 arc_callback_t *acb;
2aa34383 4913 boolean_t freeable = B_FALSE;
524b4217 4914 boolean_t no_zio_error = (zio->io_error == 0);
a7004725 4915
34dc7c2f
BB
4916 /*
4917 * The hdr was inserted into hash-table and removed from lists
4918 * prior to starting I/O. We should find this header, since
4919 * it's in the hash table, and it should be legit since it's
4920 * not possible to evict it during the I/O. The only possible
4921 * reason for it not to be found is if we were freed during the
4922 * read.
4923 */
9b67f605
MA
4924 if (HDR_IN_HASH_TABLE(hdr)) {
4925 arc_buf_hdr_t *found;
4926
4927 ASSERT3U(hdr->b_birth, ==, BP_PHYSICAL_BIRTH(zio->io_bp));
4928 ASSERT3U(hdr->b_dva.dva_word[0], ==,
4929 BP_IDENTITY(zio->io_bp)->dva_word[0]);
4930 ASSERT3U(hdr->b_dva.dva_word[1], ==,
4931 BP_IDENTITY(zio->io_bp)->dva_word[1]);
4932
d3c2ae1c 4933 found = buf_hash_find(hdr->b_spa, zio->io_bp, &hash_lock);
9b67f605 4934
d3c2ae1c 4935 ASSERT((found == hdr &&
9b67f605
MA
4936 DVA_EQUAL(&hdr->b_dva, BP_IDENTITY(zio->io_bp))) ||
4937 (found == hdr && HDR_L2_READING(hdr)));
d3c2ae1c
GW
4938 ASSERT3P(hash_lock, !=, NULL);
4939 }
4940
524b4217 4941 if (no_zio_error) {
d3c2ae1c
GW
4942 /* byteswap if necessary */
4943 if (BP_SHOULD_BYTESWAP(zio->io_bp)) {
4944 if (BP_GET_LEVEL(zio->io_bp) > 0) {
4945 hdr->b_l1hdr.b_byteswap = DMU_BSWAP_UINT64;
4946 } else {
4947 hdr->b_l1hdr.b_byteswap =
4948 DMU_OT_BYTESWAP(BP_GET_TYPE(zio->io_bp));
4949 }
4950 } else {
4951 hdr->b_l1hdr.b_byteswap = DMU_BSWAP_NUMFUNCS;
4952 }
9b67f605 4953 }
34dc7c2f 4954
d3c2ae1c 4955 arc_hdr_clear_flags(hdr, ARC_FLAG_L2_EVICTED);
b9541d6b 4956 if (l2arc_noprefetch && HDR_PREFETCH(hdr))
d3c2ae1c 4957 arc_hdr_clear_flags(hdr, ARC_FLAG_L2CACHE);
34dc7c2f 4958
b9541d6b 4959 callback_list = hdr->b_l1hdr.b_acb;
d3c2ae1c 4960 ASSERT3P(callback_list, !=, NULL);
34dc7c2f 4961
524b4217 4962 if (hash_lock && no_zio_error && hdr->b_l1hdr.b_state == arc_anon) {
428870ff
BB
4963 /*
4964 * Only call arc_access on anonymous buffers. This is because
4965 * if we've issued an I/O for an evicted buffer, we've already
4966 * called arc_access (to prevent any simultaneous readers from
4967 * getting confused).
4968 */
4969 arc_access(hdr, hash_lock);
4970 }
4971
524b4217
DK
4972 /*
4973 * If a read request has a callback (i.e. acb_done is not NULL), then we
4974 * make a buf containing the data according to the parameters which were
4975 * passed in. The implementation of arc_buf_alloc_impl() ensures that we
4976 * aren't needlessly decompressing the data multiple times.
4977 */
a7004725 4978 int callback_cnt = 0;
2aa34383
DK
4979 for (acb = callback_list; acb != NULL; acb = acb->acb_next) {
4980 if (!acb->acb_done)
4981 continue;
4982
524b4217 4983 /* This is a demand read since prefetches don't use callbacks */
2aa34383 4984 callback_cnt++;
524b4217 4985
a7004725 4986 int error = arc_buf_alloc_impl(hdr, acb->acb_private,
524b4217
DK
4987 acb->acb_compressed, no_zio_error, &acb->acb_buf);
4988 if (no_zio_error) {
4989 zio->io_error = error;
34dc7c2f
BB
4990 }
4991 }
b9541d6b 4992 hdr->b_l1hdr.b_acb = NULL;
d3c2ae1c 4993 arc_hdr_clear_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
2aa34383 4994 if (callback_cnt == 0) {
d3c2ae1c
GW
4995 ASSERT(HDR_PREFETCH(hdr));
4996 ASSERT0(hdr->b_l1hdr.b_bufcnt);
a6255b7f 4997 ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
428870ff 4998 }
34dc7c2f 4999
b9541d6b
CW
5000 ASSERT(refcount_is_zero(&hdr->b_l1hdr.b_refcnt) ||
5001 callback_list != NULL);
34dc7c2f 5002
524b4217 5003 if (no_zio_error) {
d3c2ae1c
GW
5004 arc_hdr_verify(hdr, zio->io_bp);
5005 } else {
5006 arc_hdr_set_flags(hdr, ARC_FLAG_IO_ERROR);
b9541d6b 5007 if (hdr->b_l1hdr.b_state != arc_anon)
34dc7c2f
BB
5008 arc_change_state(arc_anon, hdr, hash_lock);
5009 if (HDR_IN_HASH_TABLE(hdr))
5010 buf_hash_remove(hdr);
b9541d6b 5011 freeable = refcount_is_zero(&hdr->b_l1hdr.b_refcnt);
34dc7c2f
BB
5012 }
5013
5014 /*
5015 * Broadcast before we drop the hash_lock to avoid the possibility
5016 * that the hdr (and hence the cv) might be freed before we get to
5017 * the cv_broadcast().
5018 */
b9541d6b 5019 cv_broadcast(&hdr->b_l1hdr.b_cv);
34dc7c2f 5020
b9541d6b 5021 if (hash_lock != NULL) {
34dc7c2f
BB
5022 mutex_exit(hash_lock);
5023 } else {
5024 /*
5025 * This block was freed while we waited for the read to
5026 * complete. It has been removed from the hash table and
5027 * moved to the anonymous state (so that it won't show up
5028 * in the cache).
5029 */
b9541d6b
CW
5030 ASSERT3P(hdr->b_l1hdr.b_state, ==, arc_anon);
5031 freeable = refcount_is_zero(&hdr->b_l1hdr.b_refcnt);
34dc7c2f
BB
5032 }
5033
5034 /* execute each callback and free its structure */
5035 while ((acb = callback_list) != NULL) {
5036 if (acb->acb_done)
5037 acb->acb_done(zio, acb->acb_buf, acb->acb_private);
5038
5039 if (acb->acb_zio_dummy != NULL) {
5040 acb->acb_zio_dummy->io_error = zio->io_error;
5041 zio_nowait(acb->acb_zio_dummy);
5042 }
5043
5044 callback_list = acb->acb_next;
5045 kmem_free(acb, sizeof (arc_callback_t));
5046 }
5047
5048 if (freeable)
5049 arc_hdr_destroy(hdr);
5050}
5051
5052/*
5c839890 5053 * "Read" the block at the specified DVA (in bp) via the
34dc7c2f
BB
5054 * cache. If the block is found in the cache, invoke the provided
5055 * callback immediately and return. Note that the `zio' parameter
5056 * in the callback will be NULL in this case, since no IO was
5057 * required. If the block is not in the cache pass the read request
5058 * on to the spa with a substitute callback function, so that the
5059 * requested block will be added to the cache.
5060 *
5061 * If a read request arrives for a block that has a read in-progress,
5062 * either wait for the in-progress read to complete (and return the
5063 * results); or, if this is a read with a "done" func, add a record
5064 * to the read to invoke the "done" func when the read completes,
5065 * and return; or just return.
5066 *
5067 * arc_read_done() will invoke all the requested "done" functions
5068 * for readers of this block.
5069 */
5070int
294f6806 5071arc_read(zio_t *pio, spa_t *spa, const blkptr_t *bp, arc_done_func_t *done,
2a432414
GW
5072 void *private, zio_priority_t priority, int zio_flags,
5073 arc_flags_t *arc_flags, const zbookmark_phys_t *zb)
34dc7c2f 5074{
9b67f605 5075 arc_buf_hdr_t *hdr = NULL;
9b67f605 5076 kmutex_t *hash_lock = NULL;
34dc7c2f 5077 zio_t *rzio;
3541dc6d 5078 uint64_t guid = spa_load_guid(spa);
2aa34383 5079 boolean_t compressed_read = (zio_flags & ZIO_FLAG_RAW) != 0;
1421c891 5080 int rc = 0;
34dc7c2f 5081
9b67f605
MA
5082 ASSERT(!BP_IS_EMBEDDED(bp) ||
5083 BPE_GET_ETYPE(bp) == BP_EMBEDDED_TYPE_DATA);
5084
34dc7c2f 5085top:
9b67f605
MA
5086 if (!BP_IS_EMBEDDED(bp)) {
5087 /*
5088 * Embedded BP's have no DVA and require no I/O to "read".
5089 * Create an anonymous arc buf to back it.
5090 */
5091 hdr = buf_hash_find(guid, bp, &hash_lock);
5092 }
5093
a6255b7f 5094 if (hdr != NULL && HDR_HAS_L1HDR(hdr) && hdr->b_l1hdr.b_pabd != NULL) {
d3c2ae1c 5095 arc_buf_t *buf = NULL;
2a432414 5096 *arc_flags |= ARC_FLAG_CACHED;
34dc7c2f
BB
5097
5098 if (HDR_IO_IN_PROGRESS(hdr)) {
5099
7f60329a
MA
5100 if ((hdr->b_flags & ARC_FLAG_PRIO_ASYNC_READ) &&
5101 priority == ZIO_PRIORITY_SYNC_READ) {
5102 /*
5103 * This sync read must wait for an
5104 * in-progress async read (e.g. a predictive
5105 * prefetch). Async reads are queued
5106 * separately at the vdev_queue layer, so
5107 * this is a form of priority inversion.
5108 * Ideally, we would "inherit" the demand
5109 * i/o's priority by moving the i/o from
5110 * the async queue to the synchronous queue,
5111 * but there is currently no mechanism to do
5112 * so. Track this so that we can evaluate
5113 * the magnitude of this potential performance
5114 * problem.
5115 *
5116 * Note that if the prefetch i/o is already
5117 * active (has been issued to the device),
5118 * the prefetch improved performance, because
5119 * we issued it sooner than we would have
5120 * without the prefetch.
5121 */
5122 DTRACE_PROBE1(arc__sync__wait__for__async,
5123 arc_buf_hdr_t *, hdr);
5124 ARCSTAT_BUMP(arcstat_sync_wait_for_async);
5125 }
5126 if (hdr->b_flags & ARC_FLAG_PREDICTIVE_PREFETCH) {
d3c2ae1c
GW
5127 arc_hdr_clear_flags(hdr,
5128 ARC_FLAG_PREDICTIVE_PREFETCH);
7f60329a
MA
5129 }
5130
2a432414 5131 if (*arc_flags & ARC_FLAG_WAIT) {
b9541d6b 5132 cv_wait(&hdr->b_l1hdr.b_cv, hash_lock);
34dc7c2f
BB
5133 mutex_exit(hash_lock);
5134 goto top;
5135 }
2a432414 5136 ASSERT(*arc_flags & ARC_FLAG_NOWAIT);
34dc7c2f
BB
5137
5138 if (done) {
7f60329a 5139 arc_callback_t *acb = NULL;
34dc7c2f
BB
5140
5141 acb = kmem_zalloc(sizeof (arc_callback_t),
79c76d5b 5142 KM_SLEEP);
34dc7c2f
BB
5143 acb->acb_done = done;
5144 acb->acb_private = private;
a7004725 5145 acb->acb_compressed = compressed_read;
34dc7c2f
BB
5146 if (pio != NULL)
5147 acb->acb_zio_dummy = zio_null(pio,
d164b209 5148 spa, NULL, NULL, NULL, zio_flags);
34dc7c2f 5149
d3c2ae1c 5150 ASSERT3P(acb->acb_done, !=, NULL);
b9541d6b
CW
5151 acb->acb_next = hdr->b_l1hdr.b_acb;
5152 hdr->b_l1hdr.b_acb = acb;
34dc7c2f 5153 mutex_exit(hash_lock);
1421c891 5154 goto out;
34dc7c2f
BB
5155 }
5156 mutex_exit(hash_lock);
1421c891 5157 goto out;
34dc7c2f
BB
5158 }
5159
b9541d6b
CW
5160 ASSERT(hdr->b_l1hdr.b_state == arc_mru ||
5161 hdr->b_l1hdr.b_state == arc_mfu);
34dc7c2f
BB
5162
5163 if (done) {
7f60329a
MA
5164 if (hdr->b_flags & ARC_FLAG_PREDICTIVE_PREFETCH) {
5165 /*
5166 * This is a demand read which does not have to
5167 * wait for i/o because we did a predictive
5168 * prefetch i/o for it, which has completed.
5169 */
5170 DTRACE_PROBE1(
5171 arc__demand__hit__predictive__prefetch,
5172 arc_buf_hdr_t *, hdr);
5173 ARCSTAT_BUMP(
5174 arcstat_demand_hit_predictive_prefetch);
d3c2ae1c
GW
5175 arc_hdr_clear_flags(hdr,
5176 ARC_FLAG_PREDICTIVE_PREFETCH);
7f60329a 5177 }
d3c2ae1c
GW
5178 ASSERT(!BP_IS_EMBEDDED(bp) || !BP_IS_HOLE(bp));
5179
524b4217
DK
5180 /* Get a buf with the desired data in it. */
5181 VERIFY0(arc_buf_alloc_impl(hdr, private,
5182 compressed_read, B_TRUE, &buf));
2a432414 5183 } else if (*arc_flags & ARC_FLAG_PREFETCH &&
b9541d6b 5184 refcount_count(&hdr->b_l1hdr.b_refcnt) == 0) {
d3c2ae1c 5185 arc_hdr_set_flags(hdr, ARC_FLAG_PREFETCH);
34dc7c2f
BB
5186 }
5187 DTRACE_PROBE1(arc__hit, arc_buf_hdr_t *, hdr);
5188 arc_access(hdr, hash_lock);
2a432414 5189 if (*arc_flags & ARC_FLAG_L2CACHE)
d3c2ae1c 5190 arc_hdr_set_flags(hdr, ARC_FLAG_L2CACHE);
34dc7c2f
BB
5191 mutex_exit(hash_lock);
5192 ARCSTAT_BUMP(arcstat_hits);
b9541d6b
CW
5193 ARCSTAT_CONDSTAT(!HDR_PREFETCH(hdr),
5194 demand, prefetch, !HDR_ISTYPE_METADATA(hdr),
34dc7c2f
BB
5195 data, metadata, hits);
5196
5197 if (done)
5198 done(NULL, buf, private);
5199 } else {
d3c2ae1c
GW
5200 uint64_t lsize = BP_GET_LSIZE(bp);
5201 uint64_t psize = BP_GET_PSIZE(bp);
9b67f605 5202 arc_callback_t *acb;
b128c09f 5203 vdev_t *vd = NULL;
a117a6d6 5204 uint64_t addr = 0;
d164b209 5205 boolean_t devw = B_FALSE;
d3c2ae1c 5206 uint64_t size;
34dc7c2f 5207
5f6d0b6f
BB
5208 /*
5209 * Gracefully handle a damaged logical block size as a
1cdb86cb 5210 * checksum error.
5f6d0b6f 5211 */
d3c2ae1c 5212 if (lsize > spa_maxblocksize(spa)) {
1cdb86cb 5213 rc = SET_ERROR(ECKSUM);
5f6d0b6f
BB
5214 goto out;
5215 }
5216
34dc7c2f
BB
5217 if (hdr == NULL) {
5218 /* this block is not in the cache */
9b67f605 5219 arc_buf_hdr_t *exists = NULL;
34dc7c2f 5220 arc_buf_contents_t type = BP_GET_BUFC_TYPE(bp);
d3c2ae1c
GW
5221 hdr = arc_hdr_alloc(spa_load_guid(spa), psize, lsize,
5222 BP_GET_COMPRESS(bp), type);
5223
9b67f605
MA
5224 if (!BP_IS_EMBEDDED(bp)) {
5225 hdr->b_dva = *BP_IDENTITY(bp);
5226 hdr->b_birth = BP_PHYSICAL_BIRTH(bp);
9b67f605
MA
5227 exists = buf_hash_insert(hdr, &hash_lock);
5228 }
5229 if (exists != NULL) {
34dc7c2f
BB
5230 /* somebody beat us to the hash insert */
5231 mutex_exit(hash_lock);
428870ff 5232 buf_discard_identity(hdr);
d3c2ae1c 5233 arc_hdr_destroy(hdr);
34dc7c2f
BB
5234 goto top; /* restart the IO request */
5235 }
34dc7c2f 5236 } else {
b9541d6b
CW
5237 /*
5238 * This block is in the ghost cache. If it was L2-only
5239 * (and thus didn't have an L1 hdr), we realloc the
5240 * header to add an L1 hdr.
5241 */
5242 if (!HDR_HAS_L1HDR(hdr)) {
5243 hdr = arc_hdr_realloc(hdr, hdr_l2only_cache,
5244 hdr_full_cache);
5245 }
5246
a6255b7f 5247 ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
b9541d6b 5248 ASSERT(GHOST_STATE(hdr->b_l1hdr.b_state));
34dc7c2f 5249 ASSERT(!HDR_IO_IN_PROGRESS(hdr));
b9541d6b 5250 ASSERT(refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
ca0bf58d 5251 ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
2aa34383 5252 ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, ==, NULL);
34dc7c2f 5253
7f60329a 5254 /*
d3c2ae1c
GW
5255 * This is a delicate dance that we play here.
5256 * This hdr is in the ghost list so we access it
5257 * to move it out of the ghost list before we
5258 * initiate the read. If it's a prefetch then
5259 * it won't have a callback so we'll remove the
5260 * reference that arc_buf_alloc_impl() created. We
5261 * do this after we've called arc_access() to
5262 * avoid hitting an assert in remove_reference().
7f60329a 5263 */
428870ff 5264 arc_access(hdr, hash_lock);
a6255b7f 5265 arc_hdr_alloc_pabd(hdr);
d3c2ae1c 5266 }
a6255b7f 5267 ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
d3c2ae1c
GW
5268 size = arc_hdr_size(hdr);
5269
5270 /*
5271 * If compression is enabled on the hdr, then will do
5272 * RAW I/O and will store the compressed data in the hdr's
5273 * data block. Otherwise, the hdr's data block will contain
5274 * the uncompressed data.
5275 */
5276 if (HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF) {
5277 zio_flags |= ZIO_FLAG_RAW;
34dc7c2f
BB
5278 }
5279
d3c2ae1c
GW
5280 if (*arc_flags & ARC_FLAG_PREFETCH)
5281 arc_hdr_set_flags(hdr, ARC_FLAG_PREFETCH);
5282 if (*arc_flags & ARC_FLAG_L2CACHE)
5283 arc_hdr_set_flags(hdr, ARC_FLAG_L2CACHE);
5284 if (BP_GET_LEVEL(bp) > 0)
5285 arc_hdr_set_flags(hdr, ARC_FLAG_INDIRECT);
7f60329a 5286 if (*arc_flags & ARC_FLAG_PREDICTIVE_PREFETCH)
d3c2ae1c 5287 arc_hdr_set_flags(hdr, ARC_FLAG_PREDICTIVE_PREFETCH);
b9541d6b 5288 ASSERT(!GHOST_STATE(hdr->b_l1hdr.b_state));
428870ff 5289
79c76d5b 5290 acb = kmem_zalloc(sizeof (arc_callback_t), KM_SLEEP);
34dc7c2f
BB
5291 acb->acb_done = done;
5292 acb->acb_private = private;
2aa34383 5293 acb->acb_compressed = compressed_read;
34dc7c2f 5294
d3c2ae1c 5295 ASSERT3P(hdr->b_l1hdr.b_acb, ==, NULL);
b9541d6b 5296 hdr->b_l1hdr.b_acb = acb;
d3c2ae1c 5297 arc_hdr_set_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
34dc7c2f 5298
b9541d6b
CW
5299 if (HDR_HAS_L2HDR(hdr) &&
5300 (vd = hdr->b_l2hdr.b_dev->l2ad_vdev) != NULL) {
5301 devw = hdr->b_l2hdr.b_dev->l2ad_writing;
5302 addr = hdr->b_l2hdr.b_daddr;
b128c09f
BB
5303 /*
5304 * Lock out device removal.
5305 */
5306 if (vdev_is_dead(vd) ||
5307 !spa_config_tryenter(spa, SCL_L2ARC, vd, RW_READER))
5308 vd = NULL;
5309 }
5310
d3c2ae1c
GW
5311 if (priority == ZIO_PRIORITY_ASYNC_READ)
5312 arc_hdr_set_flags(hdr, ARC_FLAG_PRIO_ASYNC_READ);
5313 else
5314 arc_hdr_clear_flags(hdr, ARC_FLAG_PRIO_ASYNC_READ);
5315
9b67f605
MA
5316 if (hash_lock != NULL)
5317 mutex_exit(hash_lock);
b128c09f 5318
e49f1e20
WA
5319 /*
5320 * At this point, we have a level 1 cache miss. Try again in
5321 * L2ARC if possible.
5322 */
d3c2ae1c
GW
5323 ASSERT3U(HDR_GET_LSIZE(hdr), ==, lsize);
5324
428870ff 5325 DTRACE_PROBE4(arc__miss, arc_buf_hdr_t *, hdr, blkptr_t *, bp,
d3c2ae1c 5326 uint64_t, lsize, zbookmark_phys_t *, zb);
34dc7c2f 5327 ARCSTAT_BUMP(arcstat_misses);
b9541d6b
CW
5328 ARCSTAT_CONDSTAT(!HDR_PREFETCH(hdr),
5329 demand, prefetch, !HDR_ISTYPE_METADATA(hdr),
34dc7c2f
BB
5330 data, metadata, misses);
5331
d164b209 5332 if (vd != NULL && l2arc_ndev != 0 && !(l2arc_norw && devw)) {
34dc7c2f
BB
5333 /*
5334 * Read from the L2ARC if the following are true:
b128c09f
BB
5335 * 1. The L2ARC vdev was previously cached.
5336 * 2. This buffer still has L2ARC metadata.
5337 * 3. This buffer isn't currently writing to the L2ARC.
5338 * 4. The L2ARC entry wasn't evicted, which may
5339 * also have invalidated the vdev.
d164b209 5340 * 5. This isn't prefetch and l2arc_noprefetch is set.
34dc7c2f 5341 */
b9541d6b 5342 if (HDR_HAS_L2HDR(hdr) &&
d164b209
BB
5343 !HDR_L2_WRITING(hdr) && !HDR_L2_EVICTED(hdr) &&
5344 !(l2arc_noprefetch && HDR_PREFETCH(hdr))) {
34dc7c2f
BB
5345 l2arc_read_callback_t *cb;
5346
5347 DTRACE_PROBE1(l2arc__hit, arc_buf_hdr_t *, hdr);
5348 ARCSTAT_BUMP(arcstat_l2_hits);
b9541d6b 5349 atomic_inc_32(&hdr->b_l2hdr.b_hits);
34dc7c2f 5350
34dc7c2f 5351 cb = kmem_zalloc(sizeof (l2arc_read_callback_t),
79c76d5b 5352 KM_SLEEP);
d3c2ae1c 5353 cb->l2rcb_hdr = hdr;
34dc7c2f
BB
5354 cb->l2rcb_bp = *bp;
5355 cb->l2rcb_zb = *zb;
b128c09f 5356 cb->l2rcb_flags = zio_flags;
34dc7c2f 5357
a117a6d6 5358 ASSERT(addr >= VDEV_LABEL_START_SIZE &&
d3c2ae1c 5359 addr + lsize < vd->vdev_psize -
a117a6d6
GW
5360 VDEV_LABEL_END_SIZE);
5361
34dc7c2f 5362 /*
b128c09f
BB
5363 * l2arc read. The SCL_L2ARC lock will be
5364 * released by l2arc_read_done().
3a17a7a9
SK
5365 * Issue a null zio if the underlying buffer
5366 * was squashed to zero size by compression.
34dc7c2f 5367 */
d3c2ae1c
GW
5368 ASSERT3U(HDR_GET_COMPRESS(hdr), !=,
5369 ZIO_COMPRESS_EMPTY);
5370 rzio = zio_read_phys(pio, vd, addr,
a6255b7f 5371 size, hdr->b_l1hdr.b_pabd,
d3c2ae1c
GW
5372 ZIO_CHECKSUM_OFF,
5373 l2arc_read_done, cb, priority,
5374 zio_flags | ZIO_FLAG_DONT_CACHE |
5375 ZIO_FLAG_CANFAIL |
5376 ZIO_FLAG_DONT_PROPAGATE |
5377 ZIO_FLAG_DONT_RETRY, B_FALSE);
5378
34dc7c2f
BB
5379 DTRACE_PROBE2(l2arc__read, vdev_t *, vd,
5380 zio_t *, rzio);
d3c2ae1c 5381 ARCSTAT_INCR(arcstat_l2_read_bytes, size);
34dc7c2f 5382
2a432414 5383 if (*arc_flags & ARC_FLAG_NOWAIT) {
b128c09f 5384 zio_nowait(rzio);
1421c891 5385 goto out;
b128c09f 5386 }
34dc7c2f 5387
2a432414 5388 ASSERT(*arc_flags & ARC_FLAG_WAIT);
b128c09f 5389 if (zio_wait(rzio) == 0)
1421c891 5390 goto out;
b128c09f
BB
5391
5392 /* l2arc read error; goto zio_read() */
34dc7c2f
BB
5393 } else {
5394 DTRACE_PROBE1(l2arc__miss,
5395 arc_buf_hdr_t *, hdr);
5396 ARCSTAT_BUMP(arcstat_l2_misses);
5397 if (HDR_L2_WRITING(hdr))
5398 ARCSTAT_BUMP(arcstat_l2_rw_clash);
b128c09f 5399 spa_config_exit(spa, SCL_L2ARC, vd);
34dc7c2f 5400 }
d164b209
BB
5401 } else {
5402 if (vd != NULL)
5403 spa_config_exit(spa, SCL_L2ARC, vd);
5404 if (l2arc_ndev != 0) {
5405 DTRACE_PROBE1(l2arc__miss,
5406 arc_buf_hdr_t *, hdr);
5407 ARCSTAT_BUMP(arcstat_l2_misses);
5408 }
34dc7c2f 5409 }
34dc7c2f 5410
a6255b7f 5411 rzio = zio_read(pio, spa, bp, hdr->b_l1hdr.b_pabd, size,
d3c2ae1c 5412 arc_read_done, hdr, priority, zio_flags, zb);
34dc7c2f 5413
2a432414 5414 if (*arc_flags & ARC_FLAG_WAIT) {
1421c891
PS
5415 rc = zio_wait(rzio);
5416 goto out;
5417 }
34dc7c2f 5418
2a432414 5419 ASSERT(*arc_flags & ARC_FLAG_NOWAIT);
34dc7c2f
BB
5420 zio_nowait(rzio);
5421 }
1421c891
PS
5422
5423out:
5424 spa_read_history_add(spa, zb, *arc_flags);
5425 return (rc);
34dc7c2f
BB
5426}
5427
ab26409d
BB
5428arc_prune_t *
5429arc_add_prune_callback(arc_prune_func_t *func, void *private)
5430{
5431 arc_prune_t *p;
5432
d1d7e268 5433 p = kmem_alloc(sizeof (*p), KM_SLEEP);
ab26409d
BB
5434 p->p_pfunc = func;
5435 p->p_private = private;
5436 list_link_init(&p->p_node);
5437 refcount_create(&p->p_refcnt);
5438
5439 mutex_enter(&arc_prune_mtx);
5440 refcount_add(&p->p_refcnt, &arc_prune_list);
5441 list_insert_head(&arc_prune_list, p);
5442 mutex_exit(&arc_prune_mtx);
5443
5444 return (p);
5445}
5446
5447void
5448arc_remove_prune_callback(arc_prune_t *p)
5449{
4442f60d 5450 boolean_t wait = B_FALSE;
ab26409d
BB
5451 mutex_enter(&arc_prune_mtx);
5452 list_remove(&arc_prune_list, p);
4442f60d
CC
5453 if (refcount_remove(&p->p_refcnt, &arc_prune_list) > 0)
5454 wait = B_TRUE;
ab26409d 5455 mutex_exit(&arc_prune_mtx);
4442f60d
CC
5456
5457 /* wait for arc_prune_task to finish */
5458 if (wait)
5459 taskq_wait_outstanding(arc_prune_taskq, 0);
5460 ASSERT0(refcount_count(&p->p_refcnt));
5461 refcount_destroy(&p->p_refcnt);
5462 kmem_free(p, sizeof (*p));
ab26409d
BB
5463}
5464
df4474f9
MA
5465/*
5466 * Notify the arc that a block was freed, and thus will never be used again.
5467 */
5468void
5469arc_freed(spa_t *spa, const blkptr_t *bp)
5470{
5471 arc_buf_hdr_t *hdr;
5472 kmutex_t *hash_lock;
5473 uint64_t guid = spa_load_guid(spa);
5474
9b67f605
MA
5475 ASSERT(!BP_IS_EMBEDDED(bp));
5476
5477 hdr = buf_hash_find(guid, bp, &hash_lock);
df4474f9
MA
5478 if (hdr == NULL)
5479 return;
df4474f9 5480
d3c2ae1c
GW
5481 /*
5482 * We might be trying to free a block that is still doing I/O
5483 * (i.e. prefetch) or has a reference (i.e. a dedup-ed,
5484 * dmu_sync-ed block). If this block is being prefetched, then it
5485 * would still have the ARC_FLAG_IO_IN_PROGRESS flag set on the hdr
5486 * until the I/O completes. A block may also have a reference if it is
5487 * part of a dedup-ed, dmu_synced write. The dmu_sync() function would
5488 * have written the new block to its final resting place on disk but
5489 * without the dedup flag set. This would have left the hdr in the MRU
5490 * state and discoverable. When the txg finally syncs it detects that
5491 * the block was overridden in open context and issues an override I/O.
5492 * Since this is a dedup block, the override I/O will determine if the
5493 * block is already in the DDT. If so, then it will replace the io_bp
5494 * with the bp from the DDT and allow the I/O to finish. When the I/O
5495 * reaches the done callback, dbuf_write_override_done, it will
5496 * check to see if the io_bp and io_bp_override are identical.
5497 * If they are not, then it indicates that the bp was replaced with
5498 * the bp in the DDT and the override bp is freed. This allows
5499 * us to arrive here with a reference on a block that is being
5500 * freed. So if we have an I/O in progress, or a reference to
5501 * this hdr, then we don't destroy the hdr.
5502 */
5503 if (!HDR_HAS_L1HDR(hdr) || (!HDR_IO_IN_PROGRESS(hdr) &&
5504 refcount_is_zero(&hdr->b_l1hdr.b_refcnt))) {
5505 arc_change_state(arc_anon, hdr, hash_lock);
5506 arc_hdr_destroy(hdr);
df4474f9 5507 mutex_exit(hash_lock);
bd089c54 5508 } else {
d3c2ae1c 5509 mutex_exit(hash_lock);
34dc7c2f 5510 }
34dc7c2f 5511
34dc7c2f
BB
5512}
5513
5514/*
e49f1e20
WA
5515 * Release this buffer from the cache, making it an anonymous buffer. This
5516 * must be done after a read and prior to modifying the buffer contents.
34dc7c2f 5517 * If the buffer has more than one reference, we must make
b128c09f 5518 * a new hdr for the buffer.
34dc7c2f
BB
5519 */
5520void
5521arc_release(arc_buf_t *buf, void *tag)
5522{
b9541d6b
CW
5523 kmutex_t *hash_lock;
5524 arc_state_t *state;
5525 arc_buf_hdr_t *hdr = buf->b_hdr;
34dc7c2f 5526
428870ff 5527 /*
ca0bf58d 5528 * It would be nice to assert that if its DMU metadata (level >
428870ff
BB
5529 * 0 || it's the dnode file), then it must be syncing context.
5530 * But we don't know that information at this level.
5531 */
5532
5533 mutex_enter(&buf->b_evict_lock);
b128c09f 5534
ca0bf58d
PS
5535 ASSERT(HDR_HAS_L1HDR(hdr));
5536
b9541d6b
CW
5537 /*
5538 * We don't grab the hash lock prior to this check, because if
5539 * the buffer's header is in the arc_anon state, it won't be
5540 * linked into the hash table.
5541 */
5542 if (hdr->b_l1hdr.b_state == arc_anon) {
5543 mutex_exit(&buf->b_evict_lock);
5544 ASSERT(!HDR_IO_IN_PROGRESS(hdr));
5545 ASSERT(!HDR_IN_HASH_TABLE(hdr));
5546 ASSERT(!HDR_HAS_L2HDR(hdr));
d3c2ae1c 5547 ASSERT(HDR_EMPTY(hdr));
34dc7c2f 5548
d3c2ae1c 5549 ASSERT3U(hdr->b_l1hdr.b_bufcnt, ==, 1);
b9541d6b
CW
5550 ASSERT3S(refcount_count(&hdr->b_l1hdr.b_refcnt), ==, 1);
5551 ASSERT(!list_link_active(&hdr->b_l1hdr.b_arc_node));
5552
b9541d6b 5553 hdr->b_l1hdr.b_arc_access = 0;
d3c2ae1c
GW
5554
5555 /*
5556 * If the buf is being overridden then it may already
5557 * have a hdr that is not empty.
5558 */
5559 buf_discard_identity(hdr);
b9541d6b
CW
5560 arc_buf_thaw(buf);
5561
5562 return;
34dc7c2f
BB
5563 }
5564
b9541d6b
CW
5565 hash_lock = HDR_LOCK(hdr);
5566 mutex_enter(hash_lock);
5567
5568 /*
5569 * This assignment is only valid as long as the hash_lock is
5570 * held, we must be careful not to reference state or the
5571 * b_state field after dropping the lock.
5572 */
5573 state = hdr->b_l1hdr.b_state;
5574 ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
5575 ASSERT3P(state, !=, arc_anon);
5576
5577 /* this buffer is not on any list */
2aa34383 5578 ASSERT3S(refcount_count(&hdr->b_l1hdr.b_refcnt), >, 0);
b9541d6b
CW
5579
5580 if (HDR_HAS_L2HDR(hdr)) {
b9541d6b 5581 mutex_enter(&hdr->b_l2hdr.b_dev->l2ad_mtx);
ca0bf58d
PS
5582
5583 /*
d962d5da
PS
5584 * We have to recheck this conditional again now that
5585 * we're holding the l2ad_mtx to prevent a race with
5586 * another thread which might be concurrently calling
5587 * l2arc_evict(). In that case, l2arc_evict() might have
5588 * destroyed the header's L2 portion as we were waiting
5589 * to acquire the l2ad_mtx.
ca0bf58d 5590 */
d962d5da
PS
5591 if (HDR_HAS_L2HDR(hdr))
5592 arc_hdr_l2hdr_destroy(hdr);
ca0bf58d 5593
b9541d6b 5594 mutex_exit(&hdr->b_l2hdr.b_dev->l2ad_mtx);
b128c09f
BB
5595 }
5596
34dc7c2f
BB
5597 /*
5598 * Do we have more than one buf?
5599 */
d3c2ae1c 5600 if (hdr->b_l1hdr.b_bufcnt > 1) {
34dc7c2f 5601 arc_buf_hdr_t *nhdr;
d164b209 5602 uint64_t spa = hdr->b_spa;
d3c2ae1c
GW
5603 uint64_t psize = HDR_GET_PSIZE(hdr);
5604 uint64_t lsize = HDR_GET_LSIZE(hdr);
5605 enum zio_compress compress = HDR_GET_COMPRESS(hdr);
b9541d6b 5606 arc_buf_contents_t type = arc_buf_type(hdr);
d3c2ae1c 5607 VERIFY3U(hdr->b_type, ==, type);
34dc7c2f 5608
b9541d6b 5609 ASSERT(hdr->b_l1hdr.b_buf != buf || buf->b_next != NULL);
d3c2ae1c
GW
5610 (void) remove_reference(hdr, hash_lock, tag);
5611
524b4217 5612 if (arc_buf_is_shared(buf) && !ARC_BUF_COMPRESSED(buf)) {
d3c2ae1c 5613 ASSERT3P(hdr->b_l1hdr.b_buf, !=, buf);
524b4217
DK
5614 ASSERT(ARC_BUF_LAST(buf));
5615 }
d3c2ae1c 5616
34dc7c2f 5617 /*
428870ff 5618 * Pull the data off of this hdr and attach it to
d3c2ae1c
GW
5619 * a new anonymous hdr. Also find the last buffer
5620 * in the hdr's buffer list.
34dc7c2f 5621 */
a7004725 5622 arc_buf_t *lastbuf = arc_buf_remove(hdr, buf);
d3c2ae1c 5623 ASSERT3P(lastbuf, !=, NULL);
34dc7c2f 5624
d3c2ae1c
GW
5625 /*
5626 * If the current arc_buf_t and the hdr are sharing their data
524b4217 5627 * buffer, then we must stop sharing that block.
d3c2ae1c
GW
5628 */
5629 if (arc_buf_is_shared(buf)) {
5630 ASSERT3P(hdr->b_l1hdr.b_buf, !=, buf);
d3c2ae1c
GW
5631 VERIFY(!arc_buf_is_shared(lastbuf));
5632
5633 /*
5634 * First, sever the block sharing relationship between
a7004725 5635 * buf and the arc_buf_hdr_t.
d3c2ae1c
GW
5636 */
5637 arc_unshare_buf(hdr, buf);
2aa34383
DK
5638
5639 /*
a6255b7f 5640 * Now we need to recreate the hdr's b_pabd. Since we
524b4217 5641 * have lastbuf handy, we try to share with it, but if
a6255b7f 5642 * we can't then we allocate a new b_pabd and copy the
524b4217 5643 * data from buf into it.
2aa34383 5644 */
524b4217
DK
5645 if (arc_can_share(hdr, lastbuf)) {
5646 arc_share_buf(hdr, lastbuf);
5647 } else {
a6255b7f
DQ
5648 arc_hdr_alloc_pabd(hdr);
5649 abd_copy_from_buf(hdr->b_l1hdr.b_pabd,
5650 buf->b_data, psize);
2aa34383 5651 }
d3c2ae1c
GW
5652 VERIFY3P(lastbuf->b_data, !=, NULL);
5653 } else if (HDR_SHARED_DATA(hdr)) {
2aa34383
DK
5654 /*
5655 * Uncompressed shared buffers are always at the end
5656 * of the list. Compressed buffers don't have the
5657 * same requirements. This makes it hard to
5658 * simply assert that the lastbuf is shared so
5659 * we rely on the hdr's compression flags to determine
5660 * if we have a compressed, shared buffer.
5661 */
5662 ASSERT(arc_buf_is_shared(lastbuf) ||
5663 HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF);
5664 ASSERT(!ARC_BUF_SHARED(buf));
d3c2ae1c 5665 }
a6255b7f 5666 ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
b9541d6b 5667 ASSERT3P(state, !=, arc_l2c_only);
36da08ef 5668
d3c2ae1c 5669 (void) refcount_remove_many(&state->arcs_size,
2aa34383 5670 arc_buf_size(buf), buf);
36da08ef 5671
b9541d6b 5672 if (refcount_is_zero(&hdr->b_l1hdr.b_refcnt)) {
b9541d6b 5673 ASSERT3P(state, !=, arc_l2c_only);
d3c2ae1c 5674 (void) refcount_remove_many(&state->arcs_esize[type],
2aa34383 5675 arc_buf_size(buf), buf);
34dc7c2f 5676 }
1eb5bfa3 5677
d3c2ae1c 5678 hdr->b_l1hdr.b_bufcnt -= 1;
34dc7c2f 5679 arc_cksum_verify(buf);
498877ba 5680 arc_buf_unwatch(buf);
34dc7c2f
BB
5681
5682 mutex_exit(hash_lock);
5683
d3c2ae1c 5684 /*
a6255b7f 5685 * Allocate a new hdr. The new hdr will contain a b_pabd
d3c2ae1c
GW
5686 * buffer which will be freed in arc_write().
5687 */
5688 nhdr = arc_hdr_alloc(spa, psize, lsize, compress, type);
5689 ASSERT3P(nhdr->b_l1hdr.b_buf, ==, NULL);
5690 ASSERT0(nhdr->b_l1hdr.b_bufcnt);
5691 ASSERT0(refcount_count(&nhdr->b_l1hdr.b_refcnt));
5692 VERIFY3U(nhdr->b_type, ==, type);
5693 ASSERT(!HDR_SHARED_DATA(nhdr));
b9541d6b 5694
d3c2ae1c
GW
5695 nhdr->b_l1hdr.b_buf = buf;
5696 nhdr->b_l1hdr.b_bufcnt = 1;
b9541d6b
CW
5697 nhdr->b_l1hdr.b_mru_hits = 0;
5698 nhdr->b_l1hdr.b_mru_ghost_hits = 0;
5699 nhdr->b_l1hdr.b_mfu_hits = 0;
5700 nhdr->b_l1hdr.b_mfu_ghost_hits = 0;
5701 nhdr->b_l1hdr.b_l2_hits = 0;
b9541d6b 5702 (void) refcount_add(&nhdr->b_l1hdr.b_refcnt, tag);
34dc7c2f 5703 buf->b_hdr = nhdr;
d3c2ae1c 5704
428870ff 5705 mutex_exit(&buf->b_evict_lock);
d3c2ae1c
GW
5706 (void) refcount_add_many(&arc_anon->arcs_size,
5707 HDR_GET_LSIZE(nhdr), buf);
34dc7c2f 5708 } else {
428870ff 5709 mutex_exit(&buf->b_evict_lock);
b9541d6b 5710 ASSERT(refcount_count(&hdr->b_l1hdr.b_refcnt) == 1);
ca0bf58d
PS
5711 /* protected by hash lock, or hdr is on arc_anon */
5712 ASSERT(!multilist_link_active(&hdr->b_l1hdr.b_arc_node));
34dc7c2f 5713 ASSERT(!HDR_IO_IN_PROGRESS(hdr));
b9541d6b
CW
5714 hdr->b_l1hdr.b_mru_hits = 0;
5715 hdr->b_l1hdr.b_mru_ghost_hits = 0;
5716 hdr->b_l1hdr.b_mfu_hits = 0;
5717 hdr->b_l1hdr.b_mfu_ghost_hits = 0;
5718 hdr->b_l1hdr.b_l2_hits = 0;
5719 arc_change_state(arc_anon, hdr, hash_lock);
5720 hdr->b_l1hdr.b_arc_access = 0;
5721 mutex_exit(hash_lock);
34dc7c2f 5722
428870ff 5723 buf_discard_identity(hdr);
34dc7c2f
BB
5724 arc_buf_thaw(buf);
5725 }
34dc7c2f
BB
5726}
5727
5728int
5729arc_released(arc_buf_t *buf)
5730{
b128c09f
BB
5731 int released;
5732
428870ff 5733 mutex_enter(&buf->b_evict_lock);
b9541d6b
CW
5734 released = (buf->b_data != NULL &&
5735 buf->b_hdr->b_l1hdr.b_state == arc_anon);
428870ff 5736 mutex_exit(&buf->b_evict_lock);
b128c09f 5737 return (released);
34dc7c2f
BB
5738}
5739
34dc7c2f
BB
5740#ifdef ZFS_DEBUG
5741int
5742arc_referenced(arc_buf_t *buf)
5743{
b128c09f
BB
5744 int referenced;
5745
428870ff 5746 mutex_enter(&buf->b_evict_lock);
b9541d6b 5747 referenced = (refcount_count(&buf->b_hdr->b_l1hdr.b_refcnt));
428870ff 5748 mutex_exit(&buf->b_evict_lock);
b128c09f 5749 return (referenced);
34dc7c2f
BB
5750}
5751#endif
5752
5753static void
5754arc_write_ready(zio_t *zio)
5755{
5756 arc_write_callback_t *callback = zio->io_private;
5757 arc_buf_t *buf = callback->awcb_buf;
5758 arc_buf_hdr_t *hdr = buf->b_hdr;
d3c2ae1c
GW
5759 uint64_t psize = BP_IS_HOLE(zio->io_bp) ? 0 : BP_GET_PSIZE(zio->io_bp);
5760 enum zio_compress compress;
a6255b7f 5761 fstrans_cookie_t cookie = spl_fstrans_mark();
34dc7c2f 5762
b9541d6b
CW
5763 ASSERT(HDR_HAS_L1HDR(hdr));
5764 ASSERT(!refcount_is_zero(&buf->b_hdr->b_l1hdr.b_refcnt));
d3c2ae1c 5765 ASSERT(hdr->b_l1hdr.b_bufcnt > 0);
b128c09f 5766
34dc7c2f 5767 /*
d3c2ae1c
GW
5768 * If we're reexecuting this zio because the pool suspended, then
5769 * cleanup any state that was previously set the first time the
2aa34383 5770 * callback was invoked.
34dc7c2f 5771 */
d3c2ae1c
GW
5772 if (zio->io_flags & ZIO_FLAG_REEXECUTED) {
5773 arc_cksum_free(hdr);
5774 arc_buf_unwatch(buf);
a6255b7f 5775 if (hdr->b_l1hdr.b_pabd != NULL) {
d3c2ae1c 5776 if (arc_buf_is_shared(buf)) {
d3c2ae1c
GW
5777 arc_unshare_buf(hdr, buf);
5778 } else {
a6255b7f 5779 arc_hdr_free_pabd(hdr);
d3c2ae1c 5780 }
34dc7c2f 5781 }
34dc7c2f 5782 }
a6255b7f 5783 ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
d3c2ae1c
GW
5784 ASSERT(!HDR_SHARED_DATA(hdr));
5785 ASSERT(!arc_buf_is_shared(buf));
5786
5787 callback->awcb_ready(zio, buf, callback->awcb_private);
5788
5789 if (HDR_IO_IN_PROGRESS(hdr))
5790 ASSERT(zio->io_flags & ZIO_FLAG_REEXECUTED);
5791
5792 arc_cksum_compute(buf);
5793 arc_hdr_set_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
5794
5795 if (BP_IS_HOLE(zio->io_bp) || BP_IS_EMBEDDED(zio->io_bp)) {
5796 compress = ZIO_COMPRESS_OFF;
5797 } else {
5798 ASSERT3U(HDR_GET_LSIZE(hdr), ==, BP_GET_LSIZE(zio->io_bp));
5799 compress = BP_GET_COMPRESS(zio->io_bp);
5800 }
5801 HDR_SET_PSIZE(hdr, psize);
5802 arc_hdr_set_compress(hdr, compress);
5803
5804 /*
a6255b7f
DQ
5805 * Fill the hdr with data. If the hdr is compressed, the data we want
5806 * is available from the zio, otherwise we can take it from the buf.
5807 *
5808 * We might be able to share the buf's data with the hdr here. However,
5809 * doing so would cause the ARC to be full of linear ABDs if we write a
5810 * lot of shareable data. As a compromise, we check whether scattered
5811 * ABDs are allowed, and assume that if they are then the user wants
5812 * the ARC to be primarily filled with them regardless of the data being
5813 * written. Therefore, if they're allowed then we allocate one and copy
5814 * the data into it; otherwise, we share the data directly if we can.
d3c2ae1c 5815 */
a6255b7f
DQ
5816 if (zfs_abd_scatter_enabled || !arc_can_share(hdr, buf)) {
5817 arc_hdr_alloc_pabd(hdr);
5818
5819 /*
5820 * Ideally, we would always copy the io_abd into b_pabd, but the
5821 * user may have disabled compressed ARC, thus we must check the
5822 * hdr's compression setting rather than the io_bp's.
5823 */
5824 if (HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF) {
5825 ASSERT3U(BP_GET_COMPRESS(zio->io_bp), !=,
5826 ZIO_COMPRESS_OFF);
5827 ASSERT3U(psize, >, 0);
5828
5829 abd_copy(hdr->b_l1hdr.b_pabd, zio->io_abd, psize);
5830 } else {
5831 ASSERT3U(zio->io_orig_size, ==, arc_hdr_size(hdr));
5832
5833 abd_copy_from_buf(hdr->b_l1hdr.b_pabd, buf->b_data,
5834 arc_buf_size(buf));
5835 }
d3c2ae1c 5836 } else {
a6255b7f 5837 ASSERT3P(buf->b_data, ==, abd_to_buf(zio->io_orig_abd));
2aa34383 5838 ASSERT3U(zio->io_orig_size, ==, arc_buf_size(buf));
d3c2ae1c 5839 ASSERT3U(hdr->b_l1hdr.b_bufcnt, ==, 1);
d3c2ae1c 5840
d3c2ae1c 5841 arc_share_buf(hdr, buf);
d3c2ae1c 5842 }
a6255b7f 5843
d3c2ae1c 5844 arc_hdr_verify(hdr, zio->io_bp);
a6255b7f 5845 spl_fstrans_unmark(cookie);
34dc7c2f
BB
5846}
5847
bc77ba73
PD
5848static void
5849arc_write_children_ready(zio_t *zio)
5850{
5851 arc_write_callback_t *callback = zio->io_private;
5852 arc_buf_t *buf = callback->awcb_buf;
5853
5854 callback->awcb_children_ready(zio, buf, callback->awcb_private);
5855}
5856
e8b96c60
MA
5857/*
5858 * The SPA calls this callback for each physical write that happens on behalf
5859 * of a logical write. See the comment in dbuf_write_physdone() for details.
5860 */
5861static void
5862arc_write_physdone(zio_t *zio)
5863{
5864 arc_write_callback_t *cb = zio->io_private;
5865 if (cb->awcb_physdone != NULL)
5866 cb->awcb_physdone(zio, cb->awcb_buf, cb->awcb_private);
5867}
5868
34dc7c2f
BB
5869static void
5870arc_write_done(zio_t *zio)
5871{
5872 arc_write_callback_t *callback = zio->io_private;
5873 arc_buf_t *buf = callback->awcb_buf;
5874 arc_buf_hdr_t *hdr = buf->b_hdr;
5875
d3c2ae1c 5876 ASSERT3P(hdr->b_l1hdr.b_acb, ==, NULL);
428870ff
BB
5877
5878 if (zio->io_error == 0) {
d3c2ae1c
GW
5879 arc_hdr_verify(hdr, zio->io_bp);
5880
9b67f605 5881 if (BP_IS_HOLE(zio->io_bp) || BP_IS_EMBEDDED(zio->io_bp)) {
b0bc7a84
MG
5882 buf_discard_identity(hdr);
5883 } else {
5884 hdr->b_dva = *BP_IDENTITY(zio->io_bp);
5885 hdr->b_birth = BP_PHYSICAL_BIRTH(zio->io_bp);
b0bc7a84 5886 }
428870ff 5887 } else {
d3c2ae1c 5888 ASSERT(HDR_EMPTY(hdr));
428870ff 5889 }
34dc7c2f 5890
34dc7c2f 5891 /*
9b67f605
MA
5892 * If the block to be written was all-zero or compressed enough to be
5893 * embedded in the BP, no write was performed so there will be no
5894 * dva/birth/checksum. The buffer must therefore remain anonymous
5895 * (and uncached).
34dc7c2f 5896 */
d3c2ae1c 5897 if (!HDR_EMPTY(hdr)) {
34dc7c2f
BB
5898 arc_buf_hdr_t *exists;
5899 kmutex_t *hash_lock;
5900
524b4217 5901 ASSERT3U(zio->io_error, ==, 0);
428870ff 5902
34dc7c2f
BB
5903 arc_cksum_verify(buf);
5904
5905 exists = buf_hash_insert(hdr, &hash_lock);
b9541d6b 5906 if (exists != NULL) {
34dc7c2f
BB
5907 /*
5908 * This can only happen if we overwrite for
5909 * sync-to-convergence, because we remove
5910 * buffers from the hash table when we arc_free().
5911 */
428870ff
BB
5912 if (zio->io_flags & ZIO_FLAG_IO_REWRITE) {
5913 if (!BP_EQUAL(&zio->io_bp_orig, zio->io_bp))
5914 panic("bad overwrite, hdr=%p exists=%p",
5915 (void *)hdr, (void *)exists);
b9541d6b
CW
5916 ASSERT(refcount_is_zero(
5917 &exists->b_l1hdr.b_refcnt));
428870ff
BB
5918 arc_change_state(arc_anon, exists, hash_lock);
5919 mutex_exit(hash_lock);
5920 arc_hdr_destroy(exists);
5921 exists = buf_hash_insert(hdr, &hash_lock);
5922 ASSERT3P(exists, ==, NULL);
03c6040b
GW
5923 } else if (zio->io_flags & ZIO_FLAG_NOPWRITE) {
5924 /* nopwrite */
5925 ASSERT(zio->io_prop.zp_nopwrite);
5926 if (!BP_EQUAL(&zio->io_bp_orig, zio->io_bp))
5927 panic("bad nopwrite, hdr=%p exists=%p",
5928 (void *)hdr, (void *)exists);
428870ff
BB
5929 } else {
5930 /* Dedup */
d3c2ae1c 5931 ASSERT(hdr->b_l1hdr.b_bufcnt == 1);
b9541d6b 5932 ASSERT(hdr->b_l1hdr.b_state == arc_anon);
428870ff
BB
5933 ASSERT(BP_GET_DEDUP(zio->io_bp));
5934 ASSERT(BP_GET_LEVEL(zio->io_bp) == 0);
5935 }
34dc7c2f 5936 }
d3c2ae1c 5937 arc_hdr_clear_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
b128c09f 5938 /* if it's not anon, we are doing a scrub */
b9541d6b 5939 if (exists == NULL && hdr->b_l1hdr.b_state == arc_anon)
b128c09f 5940 arc_access(hdr, hash_lock);
34dc7c2f 5941 mutex_exit(hash_lock);
34dc7c2f 5942 } else {
d3c2ae1c 5943 arc_hdr_clear_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
34dc7c2f
BB
5944 }
5945
b9541d6b 5946 ASSERT(!refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
428870ff 5947 callback->awcb_done(zio, buf, callback->awcb_private);
34dc7c2f 5948
a6255b7f 5949 abd_put(zio->io_abd);
34dc7c2f
BB
5950 kmem_free(callback, sizeof (arc_write_callback_t));
5951}
5952
5953zio_t *
428870ff 5954arc_write(zio_t *pio, spa_t *spa, uint64_t txg,
d3c2ae1c 5955 blkptr_t *bp, arc_buf_t *buf, boolean_t l2arc,
bc77ba73
PD
5956 const zio_prop_t *zp, arc_done_func_t *ready,
5957 arc_done_func_t *children_ready, arc_done_func_t *physdone,
e8b96c60 5958 arc_done_func_t *done, void *private, zio_priority_t priority,
5dbd68a3 5959 int zio_flags, const zbookmark_phys_t *zb)
34dc7c2f
BB
5960{
5961 arc_buf_hdr_t *hdr = buf->b_hdr;
5962 arc_write_callback_t *callback;
b128c09f 5963 zio_t *zio;
34dc7c2f 5964
d3c2ae1c
GW
5965 ASSERT3P(ready, !=, NULL);
5966 ASSERT3P(done, !=, NULL);
34dc7c2f 5967 ASSERT(!HDR_IO_ERROR(hdr));
b9541d6b 5968 ASSERT(!HDR_IO_IN_PROGRESS(hdr));
d3c2ae1c
GW
5969 ASSERT3P(hdr->b_l1hdr.b_acb, ==, NULL);
5970 ASSERT3U(hdr->b_l1hdr.b_bufcnt, >, 0);
b128c09f 5971 if (l2arc)
d3c2ae1c 5972 arc_hdr_set_flags(hdr, ARC_FLAG_L2CACHE);
2aa34383
DK
5973 if (ARC_BUF_COMPRESSED(buf)) {
5974 ASSERT3U(zp->zp_compress, !=, ZIO_COMPRESS_OFF);
a7004725 5975 ASSERT3U(HDR_GET_LSIZE(hdr), !=, arc_buf_size(buf));
2aa34383
DK
5976 zio_flags |= ZIO_FLAG_RAW;
5977 }
79c76d5b 5978 callback = kmem_zalloc(sizeof (arc_write_callback_t), KM_SLEEP);
34dc7c2f 5979 callback->awcb_ready = ready;
bc77ba73 5980 callback->awcb_children_ready = children_ready;
e8b96c60 5981 callback->awcb_physdone = physdone;
34dc7c2f
BB
5982 callback->awcb_done = done;
5983 callback->awcb_private = private;
5984 callback->awcb_buf = buf;
b128c09f 5985
d3c2ae1c 5986 /*
a6255b7f 5987 * The hdr's b_pabd is now stale, free it now. A new data block
d3c2ae1c
GW
5988 * will be allocated when the zio pipeline calls arc_write_ready().
5989 */
a6255b7f 5990 if (hdr->b_l1hdr.b_pabd != NULL) {
d3c2ae1c
GW
5991 /*
5992 * If the buf is currently sharing the data block with
5993 * the hdr then we need to break that relationship here.
5994 * The hdr will remain with a NULL data pointer and the
5995 * buf will take sole ownership of the block.
5996 */
5997 if (arc_buf_is_shared(buf)) {
d3c2ae1c
GW
5998 arc_unshare_buf(hdr, buf);
5999 } else {
a6255b7f 6000 arc_hdr_free_pabd(hdr);
d3c2ae1c
GW
6001 }
6002 VERIFY3P(buf->b_data, !=, NULL);
6003 arc_hdr_set_compress(hdr, ZIO_COMPRESS_OFF);
6004 }
6005 ASSERT(!arc_buf_is_shared(buf));
a6255b7f 6006 ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
d3c2ae1c 6007
a6255b7f
DQ
6008 zio = zio_write(pio, spa, txg, bp,
6009 abd_get_from_buf(buf->b_data, HDR_GET_LSIZE(hdr)),
2aa34383 6010 HDR_GET_LSIZE(hdr), arc_buf_size(buf), zp,
bc77ba73
PD
6011 arc_write_ready,
6012 (children_ready != NULL) ? arc_write_children_ready : NULL,
6013 arc_write_physdone, arc_write_done, callback,
e8b96c60 6014 priority, zio_flags, zb);
34dc7c2f
BB
6015
6016 return (zio);
6017}
6018
34dc7c2f 6019static int
e8b96c60 6020arc_memory_throttle(uint64_t reserve, uint64_t txg)
34dc7c2f
BB
6021{
6022#ifdef _KERNEL
7e8bddd0
BB
6023 uint64_t available_memory = ptob(freemem);
6024 static uint64_t page_load = 0;
6025 static uint64_t last_txg = 0;
6026#ifdef __linux__
6027 pgcnt_t minfree = btop(arc_sys_free / 4);
6028#endif
0c5493d4 6029
9edb3695
BB
6030#if defined(__i386)
6031 available_memory =
6032 MIN(available_memory, vmem_size(heap_arena, VMEM_FREE));
6033#endif
6034
6035 if (available_memory > arc_all_memory() * arc_lotsfree_percent / 100)
ca67b33a
MA
6036 return (0);
6037
7e8bddd0
BB
6038 if (txg > last_txg) {
6039 last_txg = txg;
6040 page_load = 0;
6041 }
7e8bddd0
BB
6042 /*
6043 * If we are in pageout, we know that memory is already tight,
6044 * the arc is already going to be evicting, so we just want to
6045 * continue to let page writes occur as quickly as possible.
6046 */
6047 if (current_is_kswapd()) {
6048 if (page_load > MAX(ptob(minfree), available_memory) / 4) {
6049 DMU_TX_STAT_BUMP(dmu_tx_memory_reclaim);
6050 return (SET_ERROR(ERESTART));
6051 }
6052 /* Note: reserve is inflated, so we deflate */
6053 page_load += reserve / 8;
6054 return (0);
6055 } else if (page_load > 0 && arc_reclaim_needed()) {
ca67b33a 6056 /* memory is low, delay before restarting */
34dc7c2f 6057 ARCSTAT_INCR(arcstat_memory_throttle_count, 1);
570827e1 6058 DMU_TX_STAT_BUMP(dmu_tx_memory_reclaim);
2e528b49 6059 return (SET_ERROR(EAGAIN));
34dc7c2f 6060 }
7e8bddd0 6061 page_load = 0;
34dc7c2f
BB
6062#endif
6063 return (0);
6064}
6065
6066void
6067arc_tempreserve_clear(uint64_t reserve)
6068{
6069 atomic_add_64(&arc_tempreserve, -reserve);
6070 ASSERT((int64_t)arc_tempreserve >= 0);
6071}
6072
6073int
6074arc_tempreserve_space(uint64_t reserve, uint64_t txg)
6075{
6076 int error;
9babb374 6077 uint64_t anon_size;
34dc7c2f 6078
1b8951b3
TC
6079 if (!arc_no_grow &&
6080 reserve > arc_c/4 &&
6081 reserve * 4 > (2ULL << SPA_MAXBLOCKSHIFT))
34dc7c2f 6082 arc_c = MIN(arc_c_max, reserve * 4);
12f9a6a3
BB
6083
6084 /*
6085 * Throttle when the calculated memory footprint for the TXG
6086 * exceeds the target ARC size.
6087 */
570827e1
BB
6088 if (reserve > arc_c) {
6089 DMU_TX_STAT_BUMP(dmu_tx_memory_reserve);
12f9a6a3 6090 return (SET_ERROR(ERESTART));
570827e1 6091 }
34dc7c2f 6092
9babb374
BB
6093 /*
6094 * Don't count loaned bufs as in flight dirty data to prevent long
6095 * network delays from blocking transactions that are ready to be
6096 * assigned to a txg.
6097 */
a7004725
DK
6098
6099 /* assert that it has not wrapped around */
6100 ASSERT3S(atomic_add_64_nv(&arc_loaned_bytes, 0), >=, 0);
6101
36da08ef
PS
6102 anon_size = MAX((int64_t)(refcount_count(&arc_anon->arcs_size) -
6103 arc_loaned_bytes), 0);
9babb374 6104
34dc7c2f
BB
6105 /*
6106 * Writes will, almost always, require additional memory allocations
d3cc8b15 6107 * in order to compress/encrypt/etc the data. We therefore need to
34dc7c2f
BB
6108 * make sure that there is sufficient available memory for this.
6109 */
e8b96c60
MA
6110 error = arc_memory_throttle(reserve, txg);
6111 if (error != 0)
34dc7c2f
BB
6112 return (error);
6113
6114 /*
6115 * Throttle writes when the amount of dirty data in the cache
6116 * gets too large. We try to keep the cache less than half full
6117 * of dirty blocks so that our sync times don't grow too large.
6118 * Note: if two requests come in concurrently, we might let them
6119 * both succeed, when one of them should fail. Not a huge deal.
6120 */
9babb374
BB
6121
6122 if (reserve + arc_tempreserve + anon_size > arc_c / 2 &&
6123 anon_size > arc_c / 4) {
d3c2ae1c
GW
6124 uint64_t meta_esize =
6125 refcount_count(&arc_anon->arcs_esize[ARC_BUFC_METADATA]);
6126 uint64_t data_esize =
6127 refcount_count(&arc_anon->arcs_esize[ARC_BUFC_DATA]);
34dc7c2f
BB
6128 dprintf("failing, arc_tempreserve=%lluK anon_meta=%lluK "
6129 "anon_data=%lluK tempreserve=%lluK arc_c=%lluK\n",
d3c2ae1c
GW
6130 arc_tempreserve >> 10, meta_esize >> 10,
6131 data_esize >> 10, reserve >> 10, arc_c >> 10);
570827e1 6132 DMU_TX_STAT_BUMP(dmu_tx_dirty_throttle);
2e528b49 6133 return (SET_ERROR(ERESTART));
34dc7c2f
BB
6134 }
6135 atomic_add_64(&arc_tempreserve, reserve);
6136 return (0);
6137}
6138
13be560d
BB
6139static void
6140arc_kstat_update_state(arc_state_t *state, kstat_named_t *size,
6141 kstat_named_t *evict_data, kstat_named_t *evict_metadata)
6142{
36da08ef 6143 size->value.ui64 = refcount_count(&state->arcs_size);
d3c2ae1c
GW
6144 evict_data->value.ui64 =
6145 refcount_count(&state->arcs_esize[ARC_BUFC_DATA]);
6146 evict_metadata->value.ui64 =
6147 refcount_count(&state->arcs_esize[ARC_BUFC_METADATA]);
13be560d
BB
6148}
6149
6150static int
6151arc_kstat_update(kstat_t *ksp, int rw)
6152{
6153 arc_stats_t *as = ksp->ks_data;
6154
6155 if (rw == KSTAT_WRITE) {
500445c0 6156 return (EACCES);
13be560d
BB
6157 } else {
6158 arc_kstat_update_state(arc_anon,
6159 &as->arcstat_anon_size,
500445c0
PS
6160 &as->arcstat_anon_evictable_data,
6161 &as->arcstat_anon_evictable_metadata);
13be560d
BB
6162 arc_kstat_update_state(arc_mru,
6163 &as->arcstat_mru_size,
500445c0
PS
6164 &as->arcstat_mru_evictable_data,
6165 &as->arcstat_mru_evictable_metadata);
13be560d
BB
6166 arc_kstat_update_state(arc_mru_ghost,
6167 &as->arcstat_mru_ghost_size,
500445c0
PS
6168 &as->arcstat_mru_ghost_evictable_data,
6169 &as->arcstat_mru_ghost_evictable_metadata);
13be560d
BB
6170 arc_kstat_update_state(arc_mfu,
6171 &as->arcstat_mfu_size,
500445c0
PS
6172 &as->arcstat_mfu_evictable_data,
6173 &as->arcstat_mfu_evictable_metadata);
fc41c640 6174 arc_kstat_update_state(arc_mfu_ghost,
13be560d 6175 &as->arcstat_mfu_ghost_size,
500445c0
PS
6176 &as->arcstat_mfu_ghost_evictable_data,
6177 &as->arcstat_mfu_ghost_evictable_metadata);
13be560d
BB
6178 }
6179
6180 return (0);
6181}
6182
ca0bf58d
PS
6183/*
6184 * This function *must* return indices evenly distributed between all
6185 * sublists of the multilist. This is needed due to how the ARC eviction
6186 * code is laid out; arc_evict_state() assumes ARC buffers are evenly
6187 * distributed between all sublists and uses this assumption when
6188 * deciding which sublist to evict from and how much to evict from it.
6189 */
6190unsigned int
6191arc_state_multilist_index_func(multilist_t *ml, void *obj)
6192{
6193 arc_buf_hdr_t *hdr = obj;
6194
6195 /*
6196 * We rely on b_dva to generate evenly distributed index
6197 * numbers using buf_hash below. So, as an added precaution,
6198 * let's make sure we never add empty buffers to the arc lists.
6199 */
d3c2ae1c 6200 ASSERT(!HDR_EMPTY(hdr));
ca0bf58d
PS
6201
6202 /*
6203 * The assumption here, is the hash value for a given
6204 * arc_buf_hdr_t will remain constant throughout its lifetime
6205 * (i.e. its b_spa, b_dva, and b_birth fields don't change).
6206 * Thus, we don't need to store the header's sublist index
6207 * on insertion, as this index can be recalculated on removal.
6208 *
6209 * Also, the low order bits of the hash value are thought to be
6210 * distributed evenly. Otherwise, in the case that the multilist
6211 * has a power of two number of sublists, each sublists' usage
6212 * would not be evenly distributed.
6213 */
6214 return (buf_hash(hdr->b_spa, &hdr->b_dva, hdr->b_birth) %
6215 multilist_get_num_sublists(ml));
6216}
6217
ca67b33a
MA
6218/*
6219 * Called during module initialization and periodically thereafter to
6220 * apply reasonable changes to the exposed performance tunings. Non-zero
6221 * zfs_* values which differ from the currently set values will be applied.
6222 */
6223static void
6224arc_tuning_update(void)
6225{
9edb3695
BB
6226 uint64_t percent, allmem = arc_all_memory();
6227
ca67b33a
MA
6228 /* Valid range: 64M - <all physical memory> */
6229 if ((zfs_arc_max) && (zfs_arc_max != arc_c_max) &&
9edb3695 6230 (zfs_arc_max > 64 << 20) && (zfs_arc_max < allmem) &&
ca67b33a
MA
6231 (zfs_arc_max > arc_c_min)) {
6232 arc_c_max = zfs_arc_max;
6233 arc_c = arc_c_max;
6234 arc_p = (arc_c >> 1);
9907cc1c
G
6235 /* Valid range of arc_meta_limit: arc_meta_min - arc_c_max */
6236 percent = MIN(zfs_arc_meta_limit_percent, 100);
6237 arc_meta_limit = MAX(arc_meta_min, (percent * arc_c_max) / 100);
6238 percent = MIN(zfs_arc_dnode_limit_percent, 100);
6239 arc_dnode_limit = (percent * arc_meta_limit) / 100;
ca67b33a
MA
6240 }
6241
6242 /* Valid range: 32M - <arc_c_max> */
6243 if ((zfs_arc_min) && (zfs_arc_min != arc_c_min) &&
6244 (zfs_arc_min >= 2ULL << SPA_MAXBLOCKSHIFT) &&
6245 (zfs_arc_min <= arc_c_max)) {
6246 arc_c_min = zfs_arc_min;
6247 arc_c = MAX(arc_c, arc_c_min);
6248 }
6249
6250 /* Valid range: 16M - <arc_c_max> */
6251 if ((zfs_arc_meta_min) && (zfs_arc_meta_min != arc_meta_min) &&
6252 (zfs_arc_meta_min >= 1ULL << SPA_MAXBLOCKSHIFT) &&
6253 (zfs_arc_meta_min <= arc_c_max)) {
6254 arc_meta_min = zfs_arc_meta_min;
6255 arc_meta_limit = MAX(arc_meta_limit, arc_meta_min);
25458cbe 6256 arc_dnode_limit = arc_meta_limit / 10;
ca67b33a
MA
6257 }
6258
6259 /* Valid range: <arc_meta_min> - <arc_c_max> */
6260 if ((zfs_arc_meta_limit) && (zfs_arc_meta_limit != arc_meta_limit) &&
6261 (zfs_arc_meta_limit >= zfs_arc_meta_min) &&
6262 (zfs_arc_meta_limit <= arc_c_max))
6263 arc_meta_limit = zfs_arc_meta_limit;
6264
25458cbe
TC
6265 /* Valid range: <arc_meta_min> - <arc_c_max> */
6266 if ((zfs_arc_dnode_limit) && (zfs_arc_dnode_limit != arc_dnode_limit) &&
6267 (zfs_arc_dnode_limit >= zfs_arc_meta_min) &&
6268 (zfs_arc_dnode_limit <= arc_c_max))
6269 arc_dnode_limit = zfs_arc_dnode_limit;
6270
ca67b33a
MA
6271 /* Valid range: 1 - N */
6272 if (zfs_arc_grow_retry)
6273 arc_grow_retry = zfs_arc_grow_retry;
6274
6275 /* Valid range: 1 - N */
6276 if (zfs_arc_shrink_shift) {
6277 arc_shrink_shift = zfs_arc_shrink_shift;
6278 arc_no_grow_shift = MIN(arc_no_grow_shift, arc_shrink_shift -1);
6279 }
6280
728d6ae9
BB
6281 /* Valid range: 1 - N */
6282 if (zfs_arc_p_min_shift)
6283 arc_p_min_shift = zfs_arc_p_min_shift;
6284
ca67b33a
MA
6285 /* Valid range: 1 - N ticks */
6286 if (zfs_arc_min_prefetch_lifespan)
6287 arc_min_prefetch_lifespan = zfs_arc_min_prefetch_lifespan;
11f552fa 6288
7e8bddd0
BB
6289 /* Valid range: 0 - 100 */
6290 if ((zfs_arc_lotsfree_percent >= 0) &&
6291 (zfs_arc_lotsfree_percent <= 100))
6292 arc_lotsfree_percent = zfs_arc_lotsfree_percent;
6293
11f552fa
BB
6294 /* Valid range: 0 - <all physical memory> */
6295 if ((zfs_arc_sys_free) && (zfs_arc_sys_free != arc_sys_free))
9edb3695 6296 arc_sys_free = MIN(MAX(zfs_arc_sys_free, 0), allmem);
7e8bddd0 6297
ca67b33a
MA
6298}
6299
d3c2ae1c
GW
6300static void
6301arc_state_init(void)
6302{
6303 arc_anon = &ARC_anon;
6304 arc_mru = &ARC_mru;
6305 arc_mru_ghost = &ARC_mru_ghost;
6306 arc_mfu = &ARC_mfu;
6307 arc_mfu_ghost = &ARC_mfu_ghost;
6308 arc_l2c_only = &ARC_l2c_only;
6309
64fc7762
MA
6310 arc_mru->arcs_list[ARC_BUFC_METADATA] =
6311 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6312 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6313 arc_state_multilist_index_func);
64fc7762
MA
6314 arc_mru->arcs_list[ARC_BUFC_DATA] =
6315 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6316 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6317 arc_state_multilist_index_func);
64fc7762
MA
6318 arc_mru_ghost->arcs_list[ARC_BUFC_METADATA] =
6319 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6320 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6321 arc_state_multilist_index_func);
64fc7762
MA
6322 arc_mru_ghost->arcs_list[ARC_BUFC_DATA] =
6323 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6324 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6325 arc_state_multilist_index_func);
64fc7762
MA
6326 arc_mfu->arcs_list[ARC_BUFC_METADATA] =
6327 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6328 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6329 arc_state_multilist_index_func);
64fc7762
MA
6330 arc_mfu->arcs_list[ARC_BUFC_DATA] =
6331 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6332 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6333 arc_state_multilist_index_func);
64fc7762
MA
6334 arc_mfu_ghost->arcs_list[ARC_BUFC_METADATA] =
6335 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6336 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6337 arc_state_multilist_index_func);
64fc7762
MA
6338 arc_mfu_ghost->arcs_list[ARC_BUFC_DATA] =
6339 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6340 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6341 arc_state_multilist_index_func);
64fc7762
MA
6342 arc_l2c_only->arcs_list[ARC_BUFC_METADATA] =
6343 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6344 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6345 arc_state_multilist_index_func);
64fc7762
MA
6346 arc_l2c_only->arcs_list[ARC_BUFC_DATA] =
6347 multilist_create(sizeof (arc_buf_hdr_t),
d3c2ae1c 6348 offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
c30e58c4 6349 arc_state_multilist_index_func);
d3c2ae1c
GW
6350
6351 refcount_create(&arc_anon->arcs_esize[ARC_BUFC_METADATA]);
6352 refcount_create(&arc_anon->arcs_esize[ARC_BUFC_DATA]);
6353 refcount_create(&arc_mru->arcs_esize[ARC_BUFC_METADATA]);
6354 refcount_create(&arc_mru->arcs_esize[ARC_BUFC_DATA]);
6355 refcount_create(&arc_mru_ghost->arcs_esize[ARC_BUFC_METADATA]);
6356 refcount_create(&arc_mru_ghost->arcs_esize[ARC_BUFC_DATA]);
6357 refcount_create(&arc_mfu->arcs_esize[ARC_BUFC_METADATA]);
6358 refcount_create(&arc_mfu->arcs_esize[ARC_BUFC_DATA]);
6359 refcount_create(&arc_mfu_ghost->arcs_esize[ARC_BUFC_METADATA]);
6360 refcount_create(&arc_mfu_ghost->arcs_esize[ARC_BUFC_DATA]);
6361 refcount_create(&arc_l2c_only->arcs_esize[ARC_BUFC_METADATA]);
6362 refcount_create(&arc_l2c_only->arcs_esize[ARC_BUFC_DATA]);
6363
6364 refcount_create(&arc_anon->arcs_size);
6365 refcount_create(&arc_mru->arcs_size);
6366 refcount_create(&arc_mru_ghost->arcs_size);
6367 refcount_create(&arc_mfu->arcs_size);
6368 refcount_create(&arc_mfu_ghost->arcs_size);
6369 refcount_create(&arc_l2c_only->arcs_size);
6370
6371 arc_anon->arcs_state = ARC_STATE_ANON;
6372 arc_mru->arcs_state = ARC_STATE_MRU;
6373 arc_mru_ghost->arcs_state = ARC_STATE_MRU_GHOST;
6374 arc_mfu->arcs_state = ARC_STATE_MFU;
6375 arc_mfu_ghost->arcs_state = ARC_STATE_MFU_GHOST;
6376 arc_l2c_only->arcs_state = ARC_STATE_L2C_ONLY;
6377}
6378
6379static void
6380arc_state_fini(void)
6381{
6382 refcount_destroy(&arc_anon->arcs_esize[ARC_BUFC_METADATA]);
6383 refcount_destroy(&arc_anon->arcs_esize[ARC_BUFC_DATA]);
6384 refcount_destroy(&arc_mru->arcs_esize[ARC_BUFC_METADATA]);
6385 refcount_destroy(&arc_mru->arcs_esize[ARC_BUFC_DATA]);
6386 refcount_destroy(&arc_mru_ghost->arcs_esize[ARC_BUFC_METADATA]);
6387 refcount_destroy(&arc_mru_ghost->arcs_esize[ARC_BUFC_DATA]);
6388 refcount_destroy(&arc_mfu->arcs_esize[ARC_BUFC_METADATA]);
6389 refcount_destroy(&arc_mfu->arcs_esize[ARC_BUFC_DATA]);
6390 refcount_destroy(&arc_mfu_ghost->arcs_esize[ARC_BUFC_METADATA]);
6391 refcount_destroy(&arc_mfu_ghost->arcs_esize[ARC_BUFC_DATA]);
6392 refcount_destroy(&arc_l2c_only->arcs_esize[ARC_BUFC_METADATA]);
6393 refcount_destroy(&arc_l2c_only->arcs_esize[ARC_BUFC_DATA]);
6394
6395 refcount_destroy(&arc_anon->arcs_size);
6396 refcount_destroy(&arc_mru->arcs_size);
6397 refcount_destroy(&arc_mru_ghost->arcs_size);
6398 refcount_destroy(&arc_mfu->arcs_size);
6399 refcount_destroy(&arc_mfu_ghost->arcs_size);
6400 refcount_destroy(&arc_l2c_only->arcs_size);
6401
64fc7762
MA
6402 multilist_destroy(arc_mru->arcs_list[ARC_BUFC_METADATA]);
6403 multilist_destroy(arc_mru_ghost->arcs_list[ARC_BUFC_METADATA]);
6404 multilist_destroy(arc_mfu->arcs_list[ARC_BUFC_METADATA]);
6405 multilist_destroy(arc_mfu_ghost->arcs_list[ARC_BUFC_METADATA]);
6406 multilist_destroy(arc_mru->arcs_list[ARC_BUFC_DATA]);
6407 multilist_destroy(arc_mru_ghost->arcs_list[ARC_BUFC_DATA]);
6408 multilist_destroy(arc_mfu->arcs_list[ARC_BUFC_DATA]);
6409 multilist_destroy(arc_mfu_ghost->arcs_list[ARC_BUFC_DATA]);
6410 multilist_destroy(arc_l2c_only->arcs_list[ARC_BUFC_METADATA]);
6411 multilist_destroy(arc_l2c_only->arcs_list[ARC_BUFC_DATA]);
d3c2ae1c
GW
6412}
6413
6414uint64_t
6415arc_max_bytes(void)
6416{
6417 return (arc_c_max);
6418}
6419
34dc7c2f
BB
6420void
6421arc_init(void)
6422{
9edb3695 6423 uint64_t percent, allmem = arc_all_memory();
ca67b33a 6424
ca0bf58d
PS
6425 mutex_init(&arc_reclaim_lock, NULL, MUTEX_DEFAULT, NULL);
6426 cv_init(&arc_reclaim_thread_cv, NULL, CV_DEFAULT, NULL);
6427 cv_init(&arc_reclaim_waiters_cv, NULL, CV_DEFAULT, NULL);
6428
34dc7c2f 6429 /* Convert seconds to clock ticks */
ca67b33a 6430 arc_min_prefetch_lifespan = 1 * hz;
34dc7c2f 6431
34dc7c2f 6432#ifdef _KERNEL
7cb67b45
BB
6433 /*
6434 * Register a shrinker to support synchronous (direct) memory
6435 * reclaim from the arc. This is done to prevent kswapd from
6436 * swapping out pages when it is preferable to shrink the arc.
6437 */
6438 spl_register_shrinker(&arc_shrinker);
11f552fa
BB
6439
6440 /* Set to 1/64 of all memory or a minimum of 512K */
9edb3695 6441 arc_sys_free = MAX(allmem / 64, (512 * 1024));
11f552fa 6442 arc_need_free = 0;
34dc7c2f
BB
6443#endif
6444
0a1f8cd9
TC
6445 /* Set max to 1/2 of all memory */
6446 arc_c_max = allmem / 2;
6447
ab5cbbd1
BB
6448 /*
6449 * In userland, there's only the memory pressure that we artificially
6450 * create (see arc_available_memory()). Don't let arc_c get too
6451 * small, because it can cause transactions to be larger than
6452 * arc_c, causing arc_tempreserve_space() to fail.
6453 */
6454#ifndef _KERNEL
0a1f8cd9 6455 arc_c_min = MAX(arc_c_max / 2, 2ULL << SPA_MAXBLOCKSHIFT);
ab5cbbd1 6456#else
121b3cae 6457 arc_c_min = 2ULL << SPA_MAXBLOCKSHIFT;
ab5cbbd1
BB
6458#endif
6459
34dc7c2f
BB
6460 arc_c = arc_c_max;
6461 arc_p = (arc_c >> 1);
d3c2ae1c 6462 arc_size = 0;
34dc7c2f 6463
ca67b33a
MA
6464 /* Set min to 1/2 of arc_c_min */
6465 arc_meta_min = 1ULL << SPA_MAXBLOCKSHIFT;
6466 /* Initialize maximum observed usage to zero */
1834f2d8 6467 arc_meta_max = 0;
9907cc1c
G
6468 /*
6469 * Set arc_meta_limit to a percent of arc_c_max with a floor of
6470 * arc_meta_min, and a ceiling of arc_c_max.
6471 */
6472 percent = MIN(zfs_arc_meta_limit_percent, 100);
6473 arc_meta_limit = MAX(arc_meta_min, (percent * arc_c_max) / 100);
6474 percent = MIN(zfs_arc_dnode_limit_percent, 100);
6475 arc_dnode_limit = (percent * arc_meta_limit) / 100;
34dc7c2f 6476
ca67b33a
MA
6477 /* Apply user specified tunings */
6478 arc_tuning_update();
c52fca13 6479
34dc7c2f
BB
6480 /* if kmem_flags are set, lets try to use less memory */
6481 if (kmem_debugging())
6482 arc_c = arc_c / 2;
6483 if (arc_c < arc_c_min)
6484 arc_c = arc_c_min;
6485
d3c2ae1c 6486 arc_state_init();
34dc7c2f
BB
6487 buf_init();
6488
ab26409d
BB
6489 list_create(&arc_prune_list, sizeof (arc_prune_t),
6490 offsetof(arc_prune_t, p_node));
ab26409d 6491 mutex_init(&arc_prune_mtx, NULL, MUTEX_DEFAULT, NULL);
34dc7c2f 6492
1229323d 6493 arc_prune_taskq = taskq_create("arc_prune", max_ncpus, defclsyspri,
aa9af22c 6494 max_ncpus, INT_MAX, TASKQ_PREPOPULATE | TASKQ_DYNAMIC);
f6046738 6495
d3c2ae1c
GW
6496 arc_reclaim_thread_exit = B_FALSE;
6497
34dc7c2f
BB
6498 arc_ksp = kstat_create("zfs", 0, "arcstats", "misc", KSTAT_TYPE_NAMED,
6499 sizeof (arc_stats) / sizeof (kstat_named_t), KSTAT_FLAG_VIRTUAL);
6500
6501 if (arc_ksp != NULL) {
6502 arc_ksp->ks_data = &arc_stats;
13be560d 6503 arc_ksp->ks_update = arc_kstat_update;
34dc7c2f
BB
6504 kstat_install(arc_ksp);
6505 }
6506
ca67b33a 6507 (void) thread_create(NULL, 0, arc_reclaim_thread, NULL, 0, &p0,
1229323d 6508 TS_RUN, defclsyspri);
34dc7c2f 6509
d3c2ae1c 6510 arc_dead = B_FALSE;
b128c09f 6511 arc_warm = B_FALSE;
34dc7c2f 6512
e8b96c60
MA
6513 /*
6514 * Calculate maximum amount of dirty data per pool.
6515 *
6516 * If it has been set by a module parameter, take that.
6517 * Otherwise, use a percentage of physical memory defined by
6518 * zfs_dirty_data_max_percent (default 10%) with a cap at
e99932f7 6519 * zfs_dirty_data_max_max (default 4G or 25% of physical memory).
e8b96c60
MA
6520 */
6521 if (zfs_dirty_data_max_max == 0)
e99932f7
BB
6522 zfs_dirty_data_max_max = MIN(4ULL * 1024 * 1024 * 1024,
6523 allmem * zfs_dirty_data_max_max_percent / 100);
e8b96c60
MA
6524
6525 if (zfs_dirty_data_max == 0) {
9edb3695 6526 zfs_dirty_data_max = allmem *
e8b96c60
MA
6527 zfs_dirty_data_max_percent / 100;
6528 zfs_dirty_data_max = MIN(zfs_dirty_data_max,
6529 zfs_dirty_data_max_max);
6530 }
34dc7c2f
BB
6531}
6532
6533void
6534arc_fini(void)
6535{
ab26409d
BB
6536 arc_prune_t *p;
6537
7cb67b45
BB
6538#ifdef _KERNEL
6539 spl_unregister_shrinker(&arc_shrinker);
6540#endif /* _KERNEL */
6541
ca0bf58d 6542 mutex_enter(&arc_reclaim_lock);
d3c2ae1c 6543 arc_reclaim_thread_exit = B_TRUE;
ca0bf58d
PS
6544 /*
6545 * The reclaim thread will set arc_reclaim_thread_exit back to
d3c2ae1c 6546 * B_FALSE when it is finished exiting; we're waiting for that.
ca0bf58d
PS
6547 */
6548 while (arc_reclaim_thread_exit) {
6549 cv_signal(&arc_reclaim_thread_cv);
6550 cv_wait(&arc_reclaim_thread_cv, &arc_reclaim_lock);
6551 }
6552 mutex_exit(&arc_reclaim_lock);
6553
d3c2ae1c
GW
6554 /* Use B_TRUE to ensure *all* buffers are evicted */
6555 arc_flush(NULL, B_TRUE);
34dc7c2f 6556
d3c2ae1c 6557 arc_dead = B_TRUE;
34dc7c2f
BB
6558
6559 if (arc_ksp != NULL) {
6560 kstat_delete(arc_ksp);
6561 arc_ksp = NULL;
6562 }
6563
f6046738
BB
6564 taskq_wait(arc_prune_taskq);
6565 taskq_destroy(arc_prune_taskq);
6566
ab26409d
BB
6567 mutex_enter(&arc_prune_mtx);
6568 while ((p = list_head(&arc_prune_list)) != NULL) {
6569 list_remove(&arc_prune_list, p);
6570 refcount_remove(&p->p_refcnt, &arc_prune_list);
6571 refcount_destroy(&p->p_refcnt);
6572 kmem_free(p, sizeof (*p));
6573 }
6574 mutex_exit(&arc_prune_mtx);
6575
6576 list_destroy(&arc_prune_list);
6577 mutex_destroy(&arc_prune_mtx);
ca0bf58d
PS
6578 mutex_destroy(&arc_reclaim_lock);
6579 cv_destroy(&arc_reclaim_thread_cv);
6580 cv_destroy(&arc_reclaim_waiters_cv);
6581
d3c2ae1c 6582 arc_state_fini();
34dc7c2f 6583 buf_fini();
9babb374 6584
b9541d6b 6585 ASSERT0(arc_loaned_bytes);
34dc7c2f
BB
6586}
6587
6588/*
6589 * Level 2 ARC
6590 *
6591 * The level 2 ARC (L2ARC) is a cache layer in-between main memory and disk.
6592 * It uses dedicated storage devices to hold cached data, which are populated
6593 * using large infrequent writes. The main role of this cache is to boost
6594 * the performance of random read workloads. The intended L2ARC devices
6595 * include short-stroked disks, solid state disks, and other media with
6596 * substantially faster read latency than disk.
6597 *
6598 * +-----------------------+
6599 * | ARC |
6600 * +-----------------------+
6601 * | ^ ^
6602 * | | |
6603 * l2arc_feed_thread() arc_read()
6604 * | | |
6605 * | l2arc read |
6606 * V | |
6607 * +---------------+ |
6608 * | L2ARC | |
6609 * +---------------+ |
6610 * | ^ |
6611 * l2arc_write() | |
6612 * | | |
6613 * V | |
6614 * +-------+ +-------+
6615 * | vdev | | vdev |
6616 * | cache | | cache |
6617 * +-------+ +-------+
6618 * +=========+ .-----.
6619 * : L2ARC : |-_____-|
6620 * : devices : | Disks |
6621 * +=========+ `-_____-'
6622 *
6623 * Read requests are satisfied from the following sources, in order:
6624 *
6625 * 1) ARC
6626 * 2) vdev cache of L2ARC devices
6627 * 3) L2ARC devices
6628 * 4) vdev cache of disks
6629 * 5) disks
6630 *
6631 * Some L2ARC device types exhibit extremely slow write performance.
6632 * To accommodate for this there are some significant differences between
6633 * the L2ARC and traditional cache design:
6634 *
6635 * 1. There is no eviction path from the ARC to the L2ARC. Evictions from
6636 * the ARC behave as usual, freeing buffers and placing headers on ghost
6637 * lists. The ARC does not send buffers to the L2ARC during eviction as
6638 * this would add inflated write latencies for all ARC memory pressure.
6639 *
6640 * 2. The L2ARC attempts to cache data from the ARC before it is evicted.
6641 * It does this by periodically scanning buffers from the eviction-end of
6642 * the MFU and MRU ARC lists, copying them to the L2ARC devices if they are
3a17a7a9
SK
6643 * not already there. It scans until a headroom of buffers is satisfied,
6644 * which itself is a buffer for ARC eviction. If a compressible buffer is
6645 * found during scanning and selected for writing to an L2ARC device, we
6646 * temporarily boost scanning headroom during the next scan cycle to make
6647 * sure we adapt to compression effects (which might significantly reduce
6648 * the data volume we write to L2ARC). The thread that does this is
34dc7c2f
BB
6649 * l2arc_feed_thread(), illustrated below; example sizes are included to
6650 * provide a better sense of ratio than this diagram:
6651 *
6652 * head --> tail
6653 * +---------------------+----------+
6654 * ARC_mfu |:::::#:::::::::::::::|o#o###o###|-->. # already on L2ARC
6655 * +---------------------+----------+ | o L2ARC eligible
6656 * ARC_mru |:#:::::::::::::::::::|#o#ooo####|-->| : ARC buffer
6657 * +---------------------+----------+ |
6658 * 15.9 Gbytes ^ 32 Mbytes |
6659 * headroom |
6660 * l2arc_feed_thread()
6661 * |
6662 * l2arc write hand <--[oooo]--'
6663 * | 8 Mbyte
6664 * | write max
6665 * V
6666 * +==============================+
6667 * L2ARC dev |####|#|###|###| |####| ... |
6668 * +==============================+
6669 * 32 Gbytes
6670 *
6671 * 3. If an ARC buffer is copied to the L2ARC but then hit instead of
6672 * evicted, then the L2ARC has cached a buffer much sooner than it probably
6673 * needed to, potentially wasting L2ARC device bandwidth and storage. It is
6674 * safe to say that this is an uncommon case, since buffers at the end of
6675 * the ARC lists have moved there due to inactivity.
6676 *
6677 * 4. If the ARC evicts faster than the L2ARC can maintain a headroom,
6678 * then the L2ARC simply misses copying some buffers. This serves as a
6679 * pressure valve to prevent heavy read workloads from both stalling the ARC
6680 * with waits and clogging the L2ARC with writes. This also helps prevent
6681 * the potential for the L2ARC to churn if it attempts to cache content too
6682 * quickly, such as during backups of the entire pool.
6683 *
b128c09f
BB
6684 * 5. After system boot and before the ARC has filled main memory, there are
6685 * no evictions from the ARC and so the tails of the ARC_mfu and ARC_mru
6686 * lists can remain mostly static. Instead of searching from tail of these
6687 * lists as pictured, the l2arc_feed_thread() will search from the list heads
6688 * for eligible buffers, greatly increasing its chance of finding them.
6689 *
6690 * The L2ARC device write speed is also boosted during this time so that
6691 * the L2ARC warms up faster. Since there have been no ARC evictions yet,
6692 * there are no L2ARC reads, and no fear of degrading read performance
6693 * through increased writes.
6694 *
6695 * 6. Writes to the L2ARC devices are grouped and sent in-sequence, so that
34dc7c2f
BB
6696 * the vdev queue can aggregate them into larger and fewer writes. Each
6697 * device is written to in a rotor fashion, sweeping writes through
6698 * available space then repeating.
6699 *
b128c09f 6700 * 7. The L2ARC does not store dirty content. It never needs to flush
34dc7c2f
BB
6701 * write buffers back to disk based storage.
6702 *
b128c09f 6703 * 8. If an ARC buffer is written (and dirtied) which also exists in the
34dc7c2f
BB
6704 * L2ARC, the now stale L2ARC buffer is immediately dropped.
6705 *
6706 * The performance of the L2ARC can be tweaked by a number of tunables, which
6707 * may be necessary for different workloads:
6708 *
6709 * l2arc_write_max max write bytes per interval
b128c09f 6710 * l2arc_write_boost extra write bytes during device warmup
34dc7c2f
BB
6711 * l2arc_noprefetch skip caching prefetched buffers
6712 * l2arc_headroom number of max device writes to precache
3a17a7a9
SK
6713 * l2arc_headroom_boost when we find compressed buffers during ARC
6714 * scanning, we multiply headroom by this
6715 * percentage factor for the next scan cycle,
6716 * since more compressed buffers are likely to
6717 * be present
34dc7c2f
BB
6718 * l2arc_feed_secs seconds between L2ARC writing
6719 *
6720 * Tunables may be removed or added as future performance improvements are
6721 * integrated, and also may become zpool properties.
d164b209
BB
6722 *
6723 * There are three key functions that control how the L2ARC warms up:
6724 *
6725 * l2arc_write_eligible() check if a buffer is eligible to cache
6726 * l2arc_write_size() calculate how much to write
6727 * l2arc_write_interval() calculate sleep delay between writes
6728 *
6729 * These three functions determine what to write, how much, and how quickly
6730 * to send writes.
34dc7c2f
BB
6731 */
6732
d164b209 6733static boolean_t
2a432414 6734l2arc_write_eligible(uint64_t spa_guid, arc_buf_hdr_t *hdr)
d164b209
BB
6735{
6736 /*
6737 * A buffer is *not* eligible for the L2ARC if it:
6738 * 1. belongs to a different spa.
428870ff
BB
6739 * 2. is already cached on the L2ARC.
6740 * 3. has an I/O in progress (it may be an incomplete read).
6741 * 4. is flagged not eligible (zfs property).
d164b209 6742 */
b9541d6b 6743 if (hdr->b_spa != spa_guid || HDR_HAS_L2HDR(hdr) ||
2a432414 6744 HDR_IO_IN_PROGRESS(hdr) || !HDR_L2CACHE(hdr))
d164b209
BB
6745 return (B_FALSE);
6746
6747 return (B_TRUE);
6748}
6749
6750static uint64_t
3a17a7a9 6751l2arc_write_size(void)
d164b209
BB
6752{
6753 uint64_t size;
6754
3a17a7a9
SK
6755 /*
6756 * Make sure our globals have meaningful values in case the user
6757 * altered them.
6758 */
6759 size = l2arc_write_max;
6760 if (size == 0) {
6761 cmn_err(CE_NOTE, "Bad value for l2arc_write_max, value must "
6762 "be greater than zero, resetting it to the default (%d)",
6763 L2ARC_WRITE_SIZE);
6764 size = l2arc_write_max = L2ARC_WRITE_SIZE;
6765 }
d164b209
BB
6766
6767 if (arc_warm == B_FALSE)
3a17a7a9 6768 size += l2arc_write_boost;
d164b209
BB
6769
6770 return (size);
6771
6772}
6773
6774static clock_t
6775l2arc_write_interval(clock_t began, uint64_t wanted, uint64_t wrote)
6776{
428870ff 6777 clock_t interval, next, now;
d164b209
BB
6778
6779 /*
6780 * If the ARC lists are busy, increase our write rate; if the
6781 * lists are stale, idle back. This is achieved by checking
6782 * how much we previously wrote - if it was more than half of
6783 * what we wanted, schedule the next write much sooner.
6784 */
6785 if (l2arc_feed_again && wrote > (wanted / 2))
6786 interval = (hz * l2arc_feed_min_ms) / 1000;
6787 else
6788 interval = hz * l2arc_feed_secs;
6789
428870ff
BB
6790 now = ddi_get_lbolt();
6791 next = MAX(now, MIN(now + interval, began + interval));
d164b209
BB
6792
6793 return (next);
6794}
6795
34dc7c2f
BB
6796/*
6797 * Cycle through L2ARC devices. This is how L2ARC load balances.
b128c09f 6798 * If a device is returned, this also returns holding the spa config lock.
34dc7c2f
BB
6799 */
6800static l2arc_dev_t *
6801l2arc_dev_get_next(void)
6802{
b128c09f 6803 l2arc_dev_t *first, *next = NULL;
34dc7c2f 6804
b128c09f
BB
6805 /*
6806 * Lock out the removal of spas (spa_namespace_lock), then removal
6807 * of cache devices (l2arc_dev_mtx). Once a device has been selected,
6808 * both locks will be dropped and a spa config lock held instead.
6809 */
6810 mutex_enter(&spa_namespace_lock);
6811 mutex_enter(&l2arc_dev_mtx);
6812
6813 /* if there are no vdevs, there is nothing to do */
6814 if (l2arc_ndev == 0)
6815 goto out;
6816
6817 first = NULL;
6818 next = l2arc_dev_last;
6819 do {
6820 /* loop around the list looking for a non-faulted vdev */
6821 if (next == NULL) {
34dc7c2f 6822 next = list_head(l2arc_dev_list);
b128c09f
BB
6823 } else {
6824 next = list_next(l2arc_dev_list, next);
6825 if (next == NULL)
6826 next = list_head(l2arc_dev_list);
6827 }
6828
6829 /* if we have come back to the start, bail out */
6830 if (first == NULL)
6831 first = next;
6832 else if (next == first)
6833 break;
6834
6835 } while (vdev_is_dead(next->l2ad_vdev));
6836
6837 /* if we were unable to find any usable vdevs, return NULL */
6838 if (vdev_is_dead(next->l2ad_vdev))
6839 next = NULL;
34dc7c2f
BB
6840
6841 l2arc_dev_last = next;
6842
b128c09f
BB
6843out:
6844 mutex_exit(&l2arc_dev_mtx);
6845
6846 /*
6847 * Grab the config lock to prevent the 'next' device from being
6848 * removed while we are writing to it.
6849 */
6850 if (next != NULL)
6851 spa_config_enter(next->l2ad_spa, SCL_L2ARC, next, RW_READER);
6852 mutex_exit(&spa_namespace_lock);
6853
34dc7c2f
BB
6854 return (next);
6855}
6856
b128c09f
BB
6857/*
6858 * Free buffers that were tagged for destruction.
6859 */
6860static void
0bc8fd78 6861l2arc_do_free_on_write(void)
b128c09f
BB
6862{
6863 list_t *buflist;
6864 l2arc_data_free_t *df, *df_prev;
6865
6866 mutex_enter(&l2arc_free_on_write_mtx);
6867 buflist = l2arc_free_on_write;
6868
6869 for (df = list_tail(buflist); df; df = df_prev) {
6870 df_prev = list_prev(buflist, df);
a6255b7f
DQ
6871 ASSERT3P(df->l2df_abd, !=, NULL);
6872 abd_free(df->l2df_abd);
b128c09f
BB
6873 list_remove(buflist, df);
6874 kmem_free(df, sizeof (l2arc_data_free_t));
6875 }
6876
6877 mutex_exit(&l2arc_free_on_write_mtx);
6878}
6879
34dc7c2f
BB
6880/*
6881 * A write to a cache device has completed. Update all headers to allow
6882 * reads from these buffers to begin.
6883 */
6884static void
6885l2arc_write_done(zio_t *zio)
6886{
6887 l2arc_write_callback_t *cb;
6888 l2arc_dev_t *dev;
6889 list_t *buflist;
2a432414 6890 arc_buf_hdr_t *head, *hdr, *hdr_prev;
34dc7c2f 6891 kmutex_t *hash_lock;
3bec585e 6892 int64_t bytes_dropped = 0;
34dc7c2f
BB
6893
6894 cb = zio->io_private;
d3c2ae1c 6895 ASSERT3P(cb, !=, NULL);
34dc7c2f 6896 dev = cb->l2wcb_dev;
d3c2ae1c 6897 ASSERT3P(dev, !=, NULL);
34dc7c2f 6898 head = cb->l2wcb_head;
d3c2ae1c 6899 ASSERT3P(head, !=, NULL);
b9541d6b 6900 buflist = &dev->l2ad_buflist;
d3c2ae1c 6901 ASSERT3P(buflist, !=, NULL);
34dc7c2f
BB
6902 DTRACE_PROBE2(l2arc__iodone, zio_t *, zio,
6903 l2arc_write_callback_t *, cb);
6904
6905 if (zio->io_error != 0)
6906 ARCSTAT_BUMP(arcstat_l2_writes_error);
6907
34dc7c2f
BB
6908 /*
6909 * All writes completed, or an error was hit.
6910 */
ca0bf58d
PS
6911top:
6912 mutex_enter(&dev->l2ad_mtx);
2a432414
GW
6913 for (hdr = list_prev(buflist, head); hdr; hdr = hdr_prev) {
6914 hdr_prev = list_prev(buflist, hdr);
34dc7c2f 6915
2a432414 6916 hash_lock = HDR_LOCK(hdr);
ca0bf58d
PS
6917
6918 /*
6919 * We cannot use mutex_enter or else we can deadlock
6920 * with l2arc_write_buffers (due to swapping the order
6921 * the hash lock and l2ad_mtx are taken).
6922 */
34dc7c2f
BB
6923 if (!mutex_tryenter(hash_lock)) {
6924 /*
ca0bf58d
PS
6925 * Missed the hash lock. We must retry so we
6926 * don't leave the ARC_FLAG_L2_WRITING bit set.
34dc7c2f 6927 */
ca0bf58d
PS
6928 ARCSTAT_BUMP(arcstat_l2_writes_lock_retry);
6929
6930 /*
6931 * We don't want to rescan the headers we've
6932 * already marked as having been written out, so
6933 * we reinsert the head node so we can pick up
6934 * where we left off.
6935 */
6936 list_remove(buflist, head);
6937 list_insert_after(buflist, hdr, head);
6938
6939 mutex_exit(&dev->l2ad_mtx);
6940
6941 /*
6942 * We wait for the hash lock to become available
6943 * to try and prevent busy waiting, and increase
6944 * the chance we'll be able to acquire the lock
6945 * the next time around.
6946 */
6947 mutex_enter(hash_lock);
6948 mutex_exit(hash_lock);
6949 goto top;
34dc7c2f
BB
6950 }
6951
b9541d6b 6952 /*
ca0bf58d
PS
6953 * We could not have been moved into the arc_l2c_only
6954 * state while in-flight due to our ARC_FLAG_L2_WRITING
6955 * bit being set. Let's just ensure that's being enforced.
6956 */
6957 ASSERT(HDR_HAS_L1HDR(hdr));
6958
8a09d5fd
BB
6959 /*
6960 * Skipped - drop L2ARC entry and mark the header as no
6961 * longer L2 eligibile.
6962 */
d3c2ae1c 6963 if (zio->io_error != 0) {
34dc7c2f 6964 /*
b128c09f 6965 * Error - drop L2ARC entry.
34dc7c2f 6966 */
2a432414 6967 list_remove(buflist, hdr);
d3c2ae1c 6968 arc_hdr_clear_flags(hdr, ARC_FLAG_HAS_L2HDR);
b9541d6b 6969
d3c2ae1c
GW
6970 ARCSTAT_INCR(arcstat_l2_asize, -arc_hdr_size(hdr));
6971 ARCSTAT_INCR(arcstat_l2_size, -HDR_GET_LSIZE(hdr));
d962d5da 6972
d3c2ae1c 6973 bytes_dropped += arc_hdr_size(hdr);
d962d5da 6974 (void) refcount_remove_many(&dev->l2ad_alloc,
d3c2ae1c 6975 arc_hdr_size(hdr), hdr);
34dc7c2f
BB
6976 }
6977
6978 /*
ca0bf58d
PS
6979 * Allow ARC to begin reads and ghost list evictions to
6980 * this L2ARC entry.
34dc7c2f 6981 */
d3c2ae1c 6982 arc_hdr_clear_flags(hdr, ARC_FLAG_L2_WRITING);
34dc7c2f
BB
6983
6984 mutex_exit(hash_lock);
6985 }
6986
6987 atomic_inc_64(&l2arc_writes_done);
6988 list_remove(buflist, head);
b9541d6b
CW
6989 ASSERT(!HDR_HAS_L1HDR(head));
6990 kmem_cache_free(hdr_l2only_cache, head);
6991 mutex_exit(&dev->l2ad_mtx);
34dc7c2f 6992
3bec585e
SK
6993 vdev_space_update(dev->l2ad_vdev, -bytes_dropped, 0, 0);
6994
b128c09f 6995 l2arc_do_free_on_write();
34dc7c2f
BB
6996
6997 kmem_free(cb, sizeof (l2arc_write_callback_t));
6998}
6999
7000/*
7001 * A read to a cache device completed. Validate buffer contents before
7002 * handing over to the regular ARC routines.
7003 */
7004static void
7005l2arc_read_done(zio_t *zio)
7006{
7007 l2arc_read_callback_t *cb;
7008 arc_buf_hdr_t *hdr;
34dc7c2f 7009 kmutex_t *hash_lock;
d3c2ae1c 7010 boolean_t valid_cksum;
b128c09f 7011
d3c2ae1c 7012 ASSERT3P(zio->io_vd, !=, NULL);
b128c09f
BB
7013 ASSERT(zio->io_flags & ZIO_FLAG_DONT_PROPAGATE);
7014
7015 spa_config_exit(zio->io_spa, SCL_L2ARC, zio->io_vd);
34dc7c2f
BB
7016
7017 cb = zio->io_private;
d3c2ae1c
GW
7018 ASSERT3P(cb, !=, NULL);
7019 hdr = cb->l2rcb_hdr;
7020 ASSERT3P(hdr, !=, NULL);
34dc7c2f 7021
d3c2ae1c 7022 hash_lock = HDR_LOCK(hdr);
34dc7c2f 7023 mutex_enter(hash_lock);
428870ff 7024 ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
34dc7c2f 7025
a6255b7f 7026 ASSERT3P(zio->io_abd, !=, NULL);
3a17a7a9 7027
34dc7c2f
BB
7028 /*
7029 * Check this survived the L2ARC journey.
7030 */
a6255b7f 7031 ASSERT3P(zio->io_abd, ==, hdr->b_l1hdr.b_pabd);
d3c2ae1c
GW
7032 zio->io_bp_copy = cb->l2rcb_bp; /* XXX fix in L2ARC 2.0 */
7033 zio->io_bp = &zio->io_bp_copy; /* XXX fix in L2ARC 2.0 */
7034
7035 valid_cksum = arc_cksum_is_equal(hdr, zio);
7036 if (valid_cksum && zio->io_error == 0 && !HDR_L2_EVICTED(hdr)) {
34dc7c2f 7037 mutex_exit(hash_lock);
d3c2ae1c 7038 zio->io_private = hdr;
34dc7c2f
BB
7039 arc_read_done(zio);
7040 } else {
7041 mutex_exit(hash_lock);
7042 /*
7043 * Buffer didn't survive caching. Increment stats and
7044 * reissue to the original storage device.
7045 */
b128c09f 7046 if (zio->io_error != 0) {
34dc7c2f 7047 ARCSTAT_BUMP(arcstat_l2_io_error);
b128c09f 7048 } else {
2e528b49 7049 zio->io_error = SET_ERROR(EIO);
b128c09f 7050 }
d3c2ae1c 7051 if (!valid_cksum)
34dc7c2f
BB
7052 ARCSTAT_BUMP(arcstat_l2_cksum_bad);
7053
34dc7c2f 7054 /*
b128c09f
BB
7055 * If there's no waiter, issue an async i/o to the primary
7056 * storage now. If there *is* a waiter, the caller must
7057 * issue the i/o in a context where it's OK to block.
34dc7c2f 7058 */
d164b209
BB
7059 if (zio->io_waiter == NULL) {
7060 zio_t *pio = zio_unique_parent(zio);
7061
7062 ASSERT(!pio || pio->io_child_type == ZIO_CHILD_LOGICAL);
7063
d3c2ae1c 7064 zio_nowait(zio_read(pio, zio->io_spa, zio->io_bp,
a6255b7f 7065 hdr->b_l1hdr.b_pabd, zio->io_size, arc_read_done,
d3c2ae1c
GW
7066 hdr, zio->io_priority, cb->l2rcb_flags,
7067 &cb->l2rcb_zb));
d164b209 7068 }
34dc7c2f
BB
7069 }
7070
7071 kmem_free(cb, sizeof (l2arc_read_callback_t));
7072}
7073
7074/*
7075 * This is the list priority from which the L2ARC will search for pages to
7076 * cache. This is used within loops (0..3) to cycle through lists in the
7077 * desired order. This order can have a significant effect on cache
7078 * performance.
7079 *
7080 * Currently the metadata lists are hit first, MFU then MRU, followed by
7081 * the data lists. This function returns a locked list, and also returns
7082 * the lock pointer.
7083 */
ca0bf58d
PS
7084static multilist_sublist_t *
7085l2arc_sublist_lock(int list_num)
34dc7c2f 7086{
ca0bf58d
PS
7087 multilist_t *ml = NULL;
7088 unsigned int idx;
34dc7c2f 7089
4aafab91 7090 ASSERT(list_num >= 0 && list_num < L2ARC_FEED_TYPES);
34dc7c2f
BB
7091
7092 switch (list_num) {
7093 case 0:
64fc7762 7094 ml = arc_mfu->arcs_list[ARC_BUFC_METADATA];
34dc7c2f
BB
7095 break;
7096 case 1:
64fc7762 7097 ml = arc_mru->arcs_list[ARC_BUFC_METADATA];
34dc7c2f
BB
7098 break;
7099 case 2:
64fc7762 7100 ml = arc_mfu->arcs_list[ARC_BUFC_DATA];
34dc7c2f
BB
7101 break;
7102 case 3:
64fc7762 7103 ml = arc_mru->arcs_list[ARC_BUFC_DATA];
34dc7c2f 7104 break;
4aafab91
G
7105 default:
7106 return (NULL);
34dc7c2f
BB
7107 }
7108
ca0bf58d
PS
7109 /*
7110 * Return a randomly-selected sublist. This is acceptable
7111 * because the caller feeds only a little bit of data for each
7112 * call (8MB). Subsequent calls will result in different
7113 * sublists being selected.
7114 */
7115 idx = multilist_get_random_index(ml);
7116 return (multilist_sublist_lock(ml, idx));
34dc7c2f
BB
7117}
7118
7119/*
7120 * Evict buffers from the device write hand to the distance specified in
7121 * bytes. This distance may span populated buffers, it may span nothing.
7122 * This is clearing a region on the L2ARC device ready for writing.
7123 * If the 'all' boolean is set, every buffer is evicted.
7124 */
7125static void
7126l2arc_evict(l2arc_dev_t *dev, uint64_t distance, boolean_t all)
7127{
7128 list_t *buflist;
2a432414 7129 arc_buf_hdr_t *hdr, *hdr_prev;
34dc7c2f
BB
7130 kmutex_t *hash_lock;
7131 uint64_t taddr;
7132
b9541d6b 7133 buflist = &dev->l2ad_buflist;
34dc7c2f
BB
7134
7135 if (!all && dev->l2ad_first) {
7136 /*
7137 * This is the first sweep through the device. There is
7138 * nothing to evict.
7139 */
7140 return;
7141 }
7142
b128c09f 7143 if (dev->l2ad_hand >= (dev->l2ad_end - (2 * distance))) {
34dc7c2f
BB
7144 /*
7145 * When nearing the end of the device, evict to the end
7146 * before the device write hand jumps to the start.
7147 */
7148 taddr = dev->l2ad_end;
7149 } else {
7150 taddr = dev->l2ad_hand + distance;
7151 }
7152 DTRACE_PROBE4(l2arc__evict, l2arc_dev_t *, dev, list_t *, buflist,
7153 uint64_t, taddr, boolean_t, all);
7154
7155top:
b9541d6b 7156 mutex_enter(&dev->l2ad_mtx);
2a432414
GW
7157 for (hdr = list_tail(buflist); hdr; hdr = hdr_prev) {
7158 hdr_prev = list_prev(buflist, hdr);
34dc7c2f 7159
2a432414 7160 hash_lock = HDR_LOCK(hdr);
ca0bf58d
PS
7161
7162 /*
7163 * We cannot use mutex_enter or else we can deadlock
7164 * with l2arc_write_buffers (due to swapping the order
7165 * the hash lock and l2ad_mtx are taken).
7166 */
34dc7c2f
BB
7167 if (!mutex_tryenter(hash_lock)) {
7168 /*
7169 * Missed the hash lock. Retry.
7170 */
7171 ARCSTAT_BUMP(arcstat_l2_evict_lock_retry);
b9541d6b 7172 mutex_exit(&dev->l2ad_mtx);
34dc7c2f
BB
7173 mutex_enter(hash_lock);
7174 mutex_exit(hash_lock);
7175 goto top;
7176 }
7177
2a432414 7178 if (HDR_L2_WRITE_HEAD(hdr)) {
34dc7c2f
BB
7179 /*
7180 * We hit a write head node. Leave it for
7181 * l2arc_write_done().
7182 */
2a432414 7183 list_remove(buflist, hdr);
34dc7c2f
BB
7184 mutex_exit(hash_lock);
7185 continue;
7186 }
7187
b9541d6b
CW
7188 if (!all && HDR_HAS_L2HDR(hdr) &&
7189 (hdr->b_l2hdr.b_daddr > taddr ||
7190 hdr->b_l2hdr.b_daddr < dev->l2ad_hand)) {
34dc7c2f
BB
7191 /*
7192 * We've evicted to the target address,
7193 * or the end of the device.
7194 */
7195 mutex_exit(hash_lock);
7196 break;
7197 }
7198
b9541d6b
CW
7199 ASSERT(HDR_HAS_L2HDR(hdr));
7200 if (!HDR_HAS_L1HDR(hdr)) {
2a432414 7201 ASSERT(!HDR_L2_READING(hdr));
34dc7c2f
BB
7202 /*
7203 * This doesn't exist in the ARC. Destroy.
7204 * arc_hdr_destroy() will call list_remove()
7205 * and decrement arcstat_l2_size.
7206 */
2a432414
GW
7207 arc_change_state(arc_anon, hdr, hash_lock);
7208 arc_hdr_destroy(hdr);
34dc7c2f 7209 } else {
b9541d6b
CW
7210 ASSERT(hdr->b_l1hdr.b_state != arc_l2c_only);
7211 ARCSTAT_BUMP(arcstat_l2_evict_l1cached);
b128c09f
BB
7212 /*
7213 * Invalidate issued or about to be issued
7214 * reads, since we may be about to write
7215 * over this location.
7216 */
2a432414 7217 if (HDR_L2_READING(hdr)) {
b128c09f 7218 ARCSTAT_BUMP(arcstat_l2_evict_reading);
d3c2ae1c 7219 arc_hdr_set_flags(hdr, ARC_FLAG_L2_EVICTED);
b128c09f
BB
7220 }
7221
ca0bf58d
PS
7222 /* Ensure this header has finished being written */
7223 ASSERT(!HDR_L2_WRITING(hdr));
d962d5da
PS
7224
7225 arc_hdr_l2hdr_destroy(hdr);
34dc7c2f
BB
7226 }
7227 mutex_exit(hash_lock);
7228 }
b9541d6b 7229 mutex_exit(&dev->l2ad_mtx);
34dc7c2f
BB
7230}
7231
7232/*
7233 * Find and write ARC buffers to the L2ARC device.
7234 *
2a432414 7235 * An ARC_FLAG_L2_WRITING flag is set so that the L2ARC buffers are not valid
34dc7c2f 7236 * for reading until they have completed writing.
3a17a7a9
SK
7237 * The headroom_boost is an in-out parameter used to maintain headroom boost
7238 * state between calls to this function.
7239 *
7240 * Returns the number of bytes actually written (which may be smaller than
7241 * the delta by which the device hand has changed due to alignment).
34dc7c2f 7242 */
d164b209 7243static uint64_t
d3c2ae1c 7244l2arc_write_buffers(spa_t *spa, l2arc_dev_t *dev, uint64_t target_sz)
34dc7c2f 7245{
2a432414 7246 arc_buf_hdr_t *hdr, *hdr_prev, *head;
d3c2ae1c 7247 uint64_t write_asize, write_psize, write_sz, headroom;
3a17a7a9 7248 boolean_t full;
34dc7c2f
BB
7249 l2arc_write_callback_t *cb;
7250 zio_t *pio, *wzio;
3541dc6d 7251 uint64_t guid = spa_load_guid(spa);
d6320ddb 7252 int try;
34dc7c2f 7253
d3c2ae1c 7254 ASSERT3P(dev->l2ad_vdev, !=, NULL);
3a17a7a9 7255
34dc7c2f 7256 pio = NULL;
d3c2ae1c 7257 write_sz = write_asize = write_psize = 0;
34dc7c2f 7258 full = B_FALSE;
b9541d6b 7259 head = kmem_cache_alloc(hdr_l2only_cache, KM_PUSHPAGE);
d3c2ae1c 7260 arc_hdr_set_flags(head, ARC_FLAG_L2_WRITE_HEAD | ARC_FLAG_HAS_L2HDR);
3a17a7a9 7261
34dc7c2f
BB
7262 /*
7263 * Copy buffers for L2ARC writing.
7264 */
4aafab91 7265 for (try = 0; try < L2ARC_FEED_TYPES; try++) {
ca0bf58d 7266 multilist_sublist_t *mls = l2arc_sublist_lock(try);
3a17a7a9
SK
7267 uint64_t passed_sz = 0;
7268
4aafab91
G
7269 VERIFY3P(mls, !=, NULL);
7270
b128c09f
BB
7271 /*
7272 * L2ARC fast warmup.
7273 *
7274 * Until the ARC is warm and starts to evict, read from the
7275 * head of the ARC lists rather than the tail.
7276 */
b128c09f 7277 if (arc_warm == B_FALSE)
ca0bf58d 7278 hdr = multilist_sublist_head(mls);
b128c09f 7279 else
ca0bf58d 7280 hdr = multilist_sublist_tail(mls);
b128c09f 7281
3a17a7a9 7282 headroom = target_sz * l2arc_headroom;
d3c2ae1c 7283 if (zfs_compressed_arc_enabled)
3a17a7a9
SK
7284 headroom = (headroom * l2arc_headroom_boost) / 100;
7285
2a432414 7286 for (; hdr; hdr = hdr_prev) {
3a17a7a9 7287 kmutex_t *hash_lock;
d3c2ae1c 7288 uint64_t asize, size;
a6255b7f 7289 abd_t *to_write;
3a17a7a9 7290
b128c09f 7291 if (arc_warm == B_FALSE)
ca0bf58d 7292 hdr_prev = multilist_sublist_next(mls, hdr);
b128c09f 7293 else
ca0bf58d 7294 hdr_prev = multilist_sublist_prev(mls, hdr);
34dc7c2f 7295
2a432414 7296 hash_lock = HDR_LOCK(hdr);
3a17a7a9 7297 if (!mutex_tryenter(hash_lock)) {
34dc7c2f
BB
7298 /*
7299 * Skip this buffer rather than waiting.
7300 */
7301 continue;
7302 }
7303
d3c2ae1c 7304 passed_sz += HDR_GET_LSIZE(hdr);
34dc7c2f
BB
7305 if (passed_sz > headroom) {
7306 /*
7307 * Searched too far.
7308 */
7309 mutex_exit(hash_lock);
7310 break;
7311 }
7312
2a432414 7313 if (!l2arc_write_eligible(guid, hdr)) {
34dc7c2f
BB
7314 mutex_exit(hash_lock);
7315 continue;
7316 }
7317
d3c2ae1c 7318 if ((write_asize + HDR_GET_LSIZE(hdr)) > target_sz) {
34dc7c2f
BB
7319 full = B_TRUE;
7320 mutex_exit(hash_lock);
7321 break;
7322 }
7323
34dc7c2f
BB
7324 if (pio == NULL) {
7325 /*
7326 * Insert a dummy header on the buflist so
7327 * l2arc_write_done() can find where the
7328 * write buffers begin without searching.
7329 */
ca0bf58d 7330 mutex_enter(&dev->l2ad_mtx);
b9541d6b 7331 list_insert_head(&dev->l2ad_buflist, head);
ca0bf58d 7332 mutex_exit(&dev->l2ad_mtx);
34dc7c2f 7333
96c080cb
BB
7334 cb = kmem_alloc(
7335 sizeof (l2arc_write_callback_t), KM_SLEEP);
34dc7c2f
BB
7336 cb->l2wcb_dev = dev;
7337 cb->l2wcb_head = head;
7338 pio = zio_root(spa, l2arc_write_done, cb,
7339 ZIO_FLAG_CANFAIL);
7340 }
7341
b9541d6b 7342 hdr->b_l2hdr.b_dev = dev;
b9541d6b 7343 hdr->b_l2hdr.b_hits = 0;
3a17a7a9 7344
d3c2ae1c
GW
7345 hdr->b_l2hdr.b_daddr = dev->l2ad_hand;
7346 arc_hdr_set_flags(hdr,
7347 ARC_FLAG_L2_WRITING | ARC_FLAG_HAS_L2HDR);
3a17a7a9 7348
ca0bf58d 7349 mutex_enter(&dev->l2ad_mtx);
b9541d6b 7350 list_insert_head(&dev->l2ad_buflist, hdr);
ca0bf58d 7351 mutex_exit(&dev->l2ad_mtx);
34dc7c2f
BB
7352
7353 /*
d3c2ae1c
GW
7354 * We rely on the L1 portion of the header below, so
7355 * it's invalid for this header to have been evicted out
7356 * of the ghost cache, prior to being written out. The
7357 * ARC_FLAG_L2_WRITING bit ensures this won't happen.
34dc7c2f 7358 */
d3c2ae1c 7359 ASSERT(HDR_HAS_L1HDR(hdr));
3a17a7a9 7360
d3c2ae1c 7361 ASSERT3U(HDR_GET_PSIZE(hdr), >, 0);
a6255b7f 7362 ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
d3c2ae1c
GW
7363 ASSERT3U(arc_hdr_size(hdr), >, 0);
7364 size = arc_hdr_size(hdr);
d962d5da 7365
d3c2ae1c 7366 (void) refcount_add_many(&dev->l2ad_alloc, size, hdr);
3a17a7a9 7367
8a09d5fd 7368 /*
d3c2ae1c
GW
7369 * Normally the L2ARC can use the hdr's data, but if
7370 * we're sharing data between the hdr and one of its
7371 * bufs, L2ARC needs its own copy of the data so that
7372 * the ZIO below can't race with the buf consumer. To
7373 * ensure that this copy will be available for the
7374 * lifetime of the ZIO and be cleaned up afterwards, we
7375 * add it to the l2arc_free_on_write queue.
8a09d5fd 7376 */
d3c2ae1c 7377 if (!HDR_SHARED_DATA(hdr)) {
a6255b7f 7378 to_write = hdr->b_l1hdr.b_pabd;
d3c2ae1c 7379 } else {
a6255b7f
DQ
7380 to_write = abd_alloc_for_io(size,
7381 HDR_ISTYPE_METADATA(hdr));
7382 abd_copy(to_write, hdr->b_l1hdr.b_pabd, size);
7383 l2arc_free_abd_on_write(to_write, size,
7384 arc_buf_type(hdr));
d3c2ae1c 7385 }
34dc7c2f 7386 wzio = zio_write_phys(pio, dev->l2ad_vdev,
d3c2ae1c
GW
7387 hdr->b_l2hdr.b_daddr, size, to_write,
7388 ZIO_CHECKSUM_OFF, NULL, hdr,
7389 ZIO_PRIORITY_ASYNC_WRITE,
34dc7c2f
BB
7390 ZIO_FLAG_CANFAIL, B_FALSE);
7391
d3c2ae1c 7392 write_sz += HDR_GET_LSIZE(hdr);
34dc7c2f
BB
7393 DTRACE_PROBE2(l2arc__write, vdev_t *, dev->l2ad_vdev,
7394 zio_t *, wzio);
d962d5da 7395
d3c2ae1c 7396 write_asize += size;
b128c09f
BB
7397 /*
7398 * Keep the clock hand suitably device-aligned.
7399 */
d3c2ae1c
GW
7400 asize = vdev_psize_to_asize(dev->l2ad_vdev, size);
7401 write_psize += asize;
7402 dev->l2ad_hand += asize;
7403
7404 mutex_exit(hash_lock);
7405
7406 (void) zio_nowait(wzio);
34dc7c2f 7407 }
d3c2ae1c
GW
7408
7409 multilist_sublist_unlock(mls);
7410
7411 if (full == B_TRUE)
7412 break;
34dc7c2f 7413 }
34dc7c2f 7414
d3c2ae1c
GW
7415 /* No buffers selected for writing? */
7416 if (pio == NULL) {
7417 ASSERT0(write_sz);
7418 ASSERT(!HDR_HAS_L1HDR(head));
7419 kmem_cache_free(hdr_l2only_cache, head);
7420 return (0);
7421 }
34dc7c2f 7422
3a17a7a9 7423 ASSERT3U(write_asize, <=, target_sz);
34dc7c2f 7424 ARCSTAT_BUMP(arcstat_l2_writes_sent);
3a17a7a9 7425 ARCSTAT_INCR(arcstat_l2_write_bytes, write_asize);
34dc7c2f 7426 ARCSTAT_INCR(arcstat_l2_size, write_sz);
d3c2ae1c
GW
7427 ARCSTAT_INCR(arcstat_l2_asize, write_asize);
7428 vdev_space_update(dev->l2ad_vdev, write_asize, 0, 0);
34dc7c2f
BB
7429
7430 /*
7431 * Bump device hand to the device start if it is approaching the end.
7432 * l2arc_evict() will already have evicted ahead for this case.
7433 */
b128c09f 7434 if (dev->l2ad_hand >= (dev->l2ad_end - target_sz)) {
34dc7c2f 7435 dev->l2ad_hand = dev->l2ad_start;
34dc7c2f
BB
7436 dev->l2ad_first = B_FALSE;
7437 }
7438
d164b209 7439 dev->l2ad_writing = B_TRUE;
34dc7c2f 7440 (void) zio_wait(pio);
d164b209
BB
7441 dev->l2ad_writing = B_FALSE;
7442
3a17a7a9
SK
7443 return (write_asize);
7444}
7445
34dc7c2f
BB
7446/*
7447 * This thread feeds the L2ARC at regular intervals. This is the beating
7448 * heart of the L2ARC.
7449 */
7450static void
7451l2arc_feed_thread(void)
7452{
7453 callb_cpr_t cpr;
7454 l2arc_dev_t *dev;
7455 spa_t *spa;
d164b209 7456 uint64_t size, wrote;
428870ff 7457 clock_t begin, next = ddi_get_lbolt();
40d06e3c 7458 fstrans_cookie_t cookie;
34dc7c2f
BB
7459
7460 CALLB_CPR_INIT(&cpr, &l2arc_feed_thr_lock, callb_generic_cpr, FTAG);
7461
7462 mutex_enter(&l2arc_feed_thr_lock);
7463
40d06e3c 7464 cookie = spl_fstrans_mark();
34dc7c2f 7465 while (l2arc_thread_exit == 0) {
34dc7c2f 7466 CALLB_CPR_SAFE_BEGIN(&cpr);
b64ccd6c 7467 (void) cv_timedwait_sig(&l2arc_feed_thr_cv,
5b63b3eb 7468 &l2arc_feed_thr_lock, next);
34dc7c2f 7469 CALLB_CPR_SAFE_END(&cpr, &l2arc_feed_thr_lock);
428870ff 7470 next = ddi_get_lbolt() + hz;
34dc7c2f
BB
7471
7472 /*
b128c09f 7473 * Quick check for L2ARC devices.
34dc7c2f
BB
7474 */
7475 mutex_enter(&l2arc_dev_mtx);
7476 if (l2arc_ndev == 0) {
7477 mutex_exit(&l2arc_dev_mtx);
7478 continue;
7479 }
b128c09f 7480 mutex_exit(&l2arc_dev_mtx);
428870ff 7481 begin = ddi_get_lbolt();
34dc7c2f
BB
7482
7483 /*
b128c09f
BB
7484 * This selects the next l2arc device to write to, and in
7485 * doing so the next spa to feed from: dev->l2ad_spa. This
7486 * will return NULL if there are now no l2arc devices or if
7487 * they are all faulted.
7488 *
7489 * If a device is returned, its spa's config lock is also
7490 * held to prevent device removal. l2arc_dev_get_next()
7491 * will grab and release l2arc_dev_mtx.
34dc7c2f 7492 */
b128c09f 7493 if ((dev = l2arc_dev_get_next()) == NULL)
34dc7c2f 7494 continue;
b128c09f
BB
7495
7496 spa = dev->l2ad_spa;
d3c2ae1c 7497 ASSERT3P(spa, !=, NULL);
34dc7c2f 7498
572e2857
BB
7499 /*
7500 * If the pool is read-only then force the feed thread to
7501 * sleep a little longer.
7502 */
7503 if (!spa_writeable(spa)) {
7504 next = ddi_get_lbolt() + 5 * l2arc_feed_secs * hz;
7505 spa_config_exit(spa, SCL_L2ARC, dev);
7506 continue;
7507 }
7508
34dc7c2f 7509 /*
b128c09f 7510 * Avoid contributing to memory pressure.
34dc7c2f 7511 */
ca67b33a 7512 if (arc_reclaim_needed()) {
b128c09f
BB
7513 ARCSTAT_BUMP(arcstat_l2_abort_lowmem);
7514 spa_config_exit(spa, SCL_L2ARC, dev);
34dc7c2f
BB
7515 continue;
7516 }
b128c09f 7517
34dc7c2f
BB
7518 ARCSTAT_BUMP(arcstat_l2_feeds);
7519
3a17a7a9 7520 size = l2arc_write_size();
b128c09f 7521
34dc7c2f
BB
7522 /*
7523 * Evict L2ARC buffers that will be overwritten.
7524 */
b128c09f 7525 l2arc_evict(dev, size, B_FALSE);
34dc7c2f
BB
7526
7527 /*
7528 * Write ARC buffers.
7529 */
d3c2ae1c 7530 wrote = l2arc_write_buffers(spa, dev, size);
d164b209
BB
7531
7532 /*
7533 * Calculate interval between writes.
7534 */
7535 next = l2arc_write_interval(begin, size, wrote);
b128c09f 7536 spa_config_exit(spa, SCL_L2ARC, dev);
34dc7c2f 7537 }
40d06e3c 7538 spl_fstrans_unmark(cookie);
34dc7c2f
BB
7539
7540 l2arc_thread_exit = 0;
7541 cv_broadcast(&l2arc_feed_thr_cv);
7542 CALLB_CPR_EXIT(&cpr); /* drops l2arc_feed_thr_lock */
7543 thread_exit();
7544}
7545
b128c09f
BB
7546boolean_t
7547l2arc_vdev_present(vdev_t *vd)
7548{
7549 l2arc_dev_t *dev;
7550
7551 mutex_enter(&l2arc_dev_mtx);
7552 for (dev = list_head(l2arc_dev_list); dev != NULL;
7553 dev = list_next(l2arc_dev_list, dev)) {
7554 if (dev->l2ad_vdev == vd)
7555 break;
7556 }
7557 mutex_exit(&l2arc_dev_mtx);
7558
7559 return (dev != NULL);
7560}
7561
34dc7c2f
BB
7562/*
7563 * Add a vdev for use by the L2ARC. By this point the spa has already
7564 * validated the vdev and opened it.
7565 */
7566void
9babb374 7567l2arc_add_vdev(spa_t *spa, vdev_t *vd)
34dc7c2f
BB
7568{
7569 l2arc_dev_t *adddev;
7570
b128c09f
BB
7571 ASSERT(!l2arc_vdev_present(vd));
7572
34dc7c2f
BB
7573 /*
7574 * Create a new l2arc device entry.
7575 */
7576 adddev = kmem_zalloc(sizeof (l2arc_dev_t), KM_SLEEP);
7577 adddev->l2ad_spa = spa;
7578 adddev->l2ad_vdev = vd;
9babb374
BB
7579 adddev->l2ad_start = VDEV_LABEL_START_SIZE;
7580 adddev->l2ad_end = VDEV_LABEL_START_SIZE + vdev_get_min_asize(vd);
34dc7c2f 7581 adddev->l2ad_hand = adddev->l2ad_start;
34dc7c2f 7582 adddev->l2ad_first = B_TRUE;
d164b209 7583 adddev->l2ad_writing = B_FALSE;
98f72a53 7584 list_link_init(&adddev->l2ad_node);
34dc7c2f 7585
b9541d6b 7586 mutex_init(&adddev->l2ad_mtx, NULL, MUTEX_DEFAULT, NULL);
34dc7c2f
BB
7587 /*
7588 * This is a list of all ARC buffers that are still valid on the
7589 * device.
7590 */
b9541d6b
CW
7591 list_create(&adddev->l2ad_buflist, sizeof (arc_buf_hdr_t),
7592 offsetof(arc_buf_hdr_t, b_l2hdr.b_l2node));
34dc7c2f 7593
428870ff 7594 vdev_space_update(vd, 0, 0, adddev->l2ad_end - adddev->l2ad_hand);
d962d5da 7595 refcount_create(&adddev->l2ad_alloc);
34dc7c2f
BB
7596
7597 /*
7598 * Add device to global list
7599 */
7600 mutex_enter(&l2arc_dev_mtx);
7601 list_insert_head(l2arc_dev_list, adddev);
7602 atomic_inc_64(&l2arc_ndev);
7603 mutex_exit(&l2arc_dev_mtx);
7604}
7605
7606/*
7607 * Remove a vdev from the L2ARC.
7608 */
7609void
7610l2arc_remove_vdev(vdev_t *vd)
7611{
7612 l2arc_dev_t *dev, *nextdev, *remdev = NULL;
7613
34dc7c2f
BB
7614 /*
7615 * Find the device by vdev
7616 */
7617 mutex_enter(&l2arc_dev_mtx);
7618 for (dev = list_head(l2arc_dev_list); dev; dev = nextdev) {
7619 nextdev = list_next(l2arc_dev_list, dev);
7620 if (vd == dev->l2ad_vdev) {
7621 remdev = dev;
7622 break;
7623 }
7624 }
d3c2ae1c 7625 ASSERT3P(remdev, !=, NULL);
34dc7c2f
BB
7626
7627 /*
7628 * Remove device from global list
7629 */
7630 list_remove(l2arc_dev_list, remdev);
7631 l2arc_dev_last = NULL; /* may have been invalidated */
b128c09f
BB
7632 atomic_dec_64(&l2arc_ndev);
7633 mutex_exit(&l2arc_dev_mtx);
34dc7c2f
BB
7634
7635 /*
7636 * Clear all buflists and ARC references. L2ARC device flush.
7637 */
7638 l2arc_evict(remdev, 0, B_TRUE);
b9541d6b
CW
7639 list_destroy(&remdev->l2ad_buflist);
7640 mutex_destroy(&remdev->l2ad_mtx);
d962d5da 7641 refcount_destroy(&remdev->l2ad_alloc);
34dc7c2f 7642 kmem_free(remdev, sizeof (l2arc_dev_t));
34dc7c2f
BB
7643}
7644
7645void
b128c09f 7646l2arc_init(void)
34dc7c2f
BB
7647{
7648 l2arc_thread_exit = 0;
7649 l2arc_ndev = 0;
7650 l2arc_writes_sent = 0;
7651 l2arc_writes_done = 0;
7652
7653 mutex_init(&l2arc_feed_thr_lock, NULL, MUTEX_DEFAULT, NULL);
7654 cv_init(&l2arc_feed_thr_cv, NULL, CV_DEFAULT, NULL);
7655 mutex_init(&l2arc_dev_mtx, NULL, MUTEX_DEFAULT, NULL);
34dc7c2f
BB
7656 mutex_init(&l2arc_free_on_write_mtx, NULL, MUTEX_DEFAULT, NULL);
7657
7658 l2arc_dev_list = &L2ARC_dev_list;
7659 l2arc_free_on_write = &L2ARC_free_on_write;
7660 list_create(l2arc_dev_list, sizeof (l2arc_dev_t),
7661 offsetof(l2arc_dev_t, l2ad_node));
7662 list_create(l2arc_free_on_write, sizeof (l2arc_data_free_t),
7663 offsetof(l2arc_data_free_t, l2df_list_node));
34dc7c2f
BB
7664}
7665
7666void
b128c09f 7667l2arc_fini(void)
34dc7c2f 7668{
b128c09f
BB
7669 /*
7670 * This is called from dmu_fini(), which is called from spa_fini();
7671 * Because of this, we can assume that all l2arc devices have
7672 * already been removed when the pools themselves were removed.
7673 */
7674
7675 l2arc_do_free_on_write();
34dc7c2f
BB
7676
7677 mutex_destroy(&l2arc_feed_thr_lock);
7678 cv_destroy(&l2arc_feed_thr_cv);
7679 mutex_destroy(&l2arc_dev_mtx);
34dc7c2f
BB
7680 mutex_destroy(&l2arc_free_on_write_mtx);
7681
7682 list_destroy(l2arc_dev_list);
7683 list_destroy(l2arc_free_on_write);
7684}
b128c09f
BB
7685
7686void
7687l2arc_start(void)
7688{
fb5f0bc8 7689 if (!(spa_mode_global & FWRITE))
b128c09f
BB
7690 return;
7691
7692 (void) thread_create(NULL, 0, l2arc_feed_thread, NULL, 0, &p0,
1229323d 7693 TS_RUN, defclsyspri);
b128c09f
BB
7694}
7695
7696void
7697l2arc_stop(void)
7698{
fb5f0bc8 7699 if (!(spa_mode_global & FWRITE))
b128c09f
BB
7700 return;
7701
7702 mutex_enter(&l2arc_feed_thr_lock);
7703 cv_signal(&l2arc_feed_thr_cv); /* kick thread out of startup */
7704 l2arc_thread_exit = 1;
7705 while (l2arc_thread_exit != 0)
7706 cv_wait(&l2arc_feed_thr_cv, &l2arc_feed_thr_lock);
7707 mutex_exit(&l2arc_feed_thr_lock);
7708}
c28b2279
BB
7709
7710#if defined(_KERNEL) && defined(HAVE_SPL)
0f699108
AZ
7711EXPORT_SYMBOL(arc_buf_size);
7712EXPORT_SYMBOL(arc_write);
c28b2279 7713EXPORT_SYMBOL(arc_read);
e0b0ca98 7714EXPORT_SYMBOL(arc_buf_info);
c28b2279 7715EXPORT_SYMBOL(arc_getbuf_func);
ab26409d
BB
7716EXPORT_SYMBOL(arc_add_prune_callback);
7717EXPORT_SYMBOL(arc_remove_prune_callback);
c28b2279 7718
02730c33 7719/* BEGIN CSTYLED */
bce45ec9 7720module_param(zfs_arc_min, ulong, 0644);
c409e464 7721MODULE_PARM_DESC(zfs_arc_min, "Min arc size");
c28b2279 7722
bce45ec9 7723module_param(zfs_arc_max, ulong, 0644);
c409e464 7724MODULE_PARM_DESC(zfs_arc_max, "Max arc size");
c28b2279 7725
bce45ec9 7726module_param(zfs_arc_meta_limit, ulong, 0644);
c28b2279 7727MODULE_PARM_DESC(zfs_arc_meta_limit, "Meta limit for arc size");
6a8f9b6b 7728
9907cc1c
G
7729module_param(zfs_arc_meta_limit_percent, ulong, 0644);
7730MODULE_PARM_DESC(zfs_arc_meta_limit_percent,
7731 "Percent of arc size for arc meta limit");
7732
ca0bf58d
PS
7733module_param(zfs_arc_meta_min, ulong, 0644);
7734MODULE_PARM_DESC(zfs_arc_meta_min, "Min arc metadata");
7735
bce45ec9 7736module_param(zfs_arc_meta_prune, int, 0644);
2cbb06b5 7737MODULE_PARM_DESC(zfs_arc_meta_prune, "Meta objects to scan for prune");
c409e464 7738
ca67b33a 7739module_param(zfs_arc_meta_adjust_restarts, int, 0644);
bc888666
BB
7740MODULE_PARM_DESC(zfs_arc_meta_adjust_restarts,
7741 "Limit number of restarts in arc_adjust_meta");
7742
f6046738
BB
7743module_param(zfs_arc_meta_strategy, int, 0644);
7744MODULE_PARM_DESC(zfs_arc_meta_strategy, "Meta reclaim strategy");
7745
bce45ec9 7746module_param(zfs_arc_grow_retry, int, 0644);
c409e464
BB
7747MODULE_PARM_DESC(zfs_arc_grow_retry, "Seconds before growing arc size");
7748
89c8cac4
PS
7749module_param(zfs_arc_p_aggressive_disable, int, 0644);
7750MODULE_PARM_DESC(zfs_arc_p_aggressive_disable, "disable aggressive arc_p grow");
7751
62422785
PS
7752module_param(zfs_arc_p_dampener_disable, int, 0644);
7753MODULE_PARM_DESC(zfs_arc_p_dampener_disable, "disable arc_p adapt dampener");
7754
bce45ec9 7755module_param(zfs_arc_shrink_shift, int, 0644);
c409e464
BB
7756MODULE_PARM_DESC(zfs_arc_shrink_shift, "log2(fraction of arc to reclaim)");
7757
728d6ae9
BB
7758module_param(zfs_arc_p_min_shift, int, 0644);
7759MODULE_PARM_DESC(zfs_arc_p_min_shift, "arc_c shift to calc min/max arc_p");
7760
49ddb315
MA
7761module_param(zfs_arc_average_blocksize, int, 0444);
7762MODULE_PARM_DESC(zfs_arc_average_blocksize, "Target average block size");
7763
d3c2ae1c 7764module_param(zfs_compressed_arc_enabled, int, 0644);
544596c5 7765MODULE_PARM_DESC(zfs_compressed_arc_enabled, "Disable compressed arc buffers");
d3c2ae1c 7766
bce45ec9
BB
7767module_param(zfs_arc_min_prefetch_lifespan, int, 0644);
7768MODULE_PARM_DESC(zfs_arc_min_prefetch_lifespan, "Min life of prefetch block");
7769
7770module_param(l2arc_write_max, ulong, 0644);
abd8610c
BB
7771MODULE_PARM_DESC(l2arc_write_max, "Max write bytes per interval");
7772
bce45ec9 7773module_param(l2arc_write_boost, ulong, 0644);
abd8610c
BB
7774MODULE_PARM_DESC(l2arc_write_boost, "Extra write bytes during device warmup");
7775
bce45ec9 7776module_param(l2arc_headroom, ulong, 0644);
abd8610c
BB
7777MODULE_PARM_DESC(l2arc_headroom, "Number of max device writes to precache");
7778
3a17a7a9
SK
7779module_param(l2arc_headroom_boost, ulong, 0644);
7780MODULE_PARM_DESC(l2arc_headroom_boost, "Compressed l2arc_headroom multiplier");
7781
bce45ec9 7782module_param(l2arc_feed_secs, ulong, 0644);
abd8610c
BB
7783MODULE_PARM_DESC(l2arc_feed_secs, "Seconds between L2ARC writing");
7784
bce45ec9 7785module_param(l2arc_feed_min_ms, ulong, 0644);
abd8610c
BB
7786MODULE_PARM_DESC(l2arc_feed_min_ms, "Min feed interval in milliseconds");
7787
bce45ec9 7788module_param(l2arc_noprefetch, int, 0644);
abd8610c
BB
7789MODULE_PARM_DESC(l2arc_noprefetch, "Skip caching prefetched buffers");
7790
bce45ec9 7791module_param(l2arc_feed_again, int, 0644);
abd8610c
BB
7792MODULE_PARM_DESC(l2arc_feed_again, "Turbo L2ARC warmup");
7793
bce45ec9 7794module_param(l2arc_norw, int, 0644);
abd8610c
BB
7795MODULE_PARM_DESC(l2arc_norw, "No reads during writes");
7796
7e8bddd0
BB
7797module_param(zfs_arc_lotsfree_percent, int, 0644);
7798MODULE_PARM_DESC(zfs_arc_lotsfree_percent,
7799 "System free memory I/O throttle in bytes");
7800
11f552fa
BB
7801module_param(zfs_arc_sys_free, ulong, 0644);
7802MODULE_PARM_DESC(zfs_arc_sys_free, "System free memory target size in bytes");
7803
25458cbe
TC
7804module_param(zfs_arc_dnode_limit, ulong, 0644);
7805MODULE_PARM_DESC(zfs_arc_dnode_limit, "Minimum bytes of dnodes in arc");
7806
9907cc1c
G
7807module_param(zfs_arc_dnode_limit_percent, ulong, 0644);
7808MODULE_PARM_DESC(zfs_arc_dnode_limit_percent,
7809 "Percent of ARC meta buffers for dnodes");
7810
25458cbe
TC
7811module_param(zfs_arc_dnode_reduce_percent, ulong, 0644);
7812MODULE_PARM_DESC(zfs_arc_dnode_reduce_percent,
7813 "Percentage of excess dnodes to try to unpin");
02730c33 7814/* END CSTYLED */
c28b2279 7815#endif