xref: /freebsd/sys/contrib/openzfs/module/zfs/arc.c (revision 1f88aa09417f1cfb3929fd37531b1ab51213c2d6)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright (c) 2018, Joyent, Inc.
24  * Copyright (c) 2011, 2020, Delphix. All rights reserved.
25  * Copyright (c) 2014, Saso Kiselkov. All rights reserved.
26  * Copyright (c) 2017, Nexenta Systems, Inc.  All rights reserved.
27  * Copyright (c) 2019, loli10K <ezomori.nozomu@gmail.com>. All rights reserved.
28  * Copyright (c) 2020, George Amanakis. All rights reserved.
29  * Copyright (c) 2019, Klara Inc.
30  * Copyright (c) 2019, Allan Jude
31  * Copyright (c) 2020, The FreeBSD Foundation [1]
32  *
33  * [1] Portions of this software were developed by Allan Jude
34  *     under sponsorship from the FreeBSD Foundation.
35  */
36 
37 /*
38  * DVA-based Adjustable Replacement Cache
39  *
40  * While much of the theory of operation used here is
41  * based on the self-tuning, low overhead replacement cache
42  * presented by Megiddo and Modha at FAST 2003, there are some
43  * significant differences:
44  *
45  * 1. The Megiddo and Modha model assumes any page is evictable.
46  * Pages in its cache cannot be "locked" into memory.  This makes
47  * the eviction algorithm simple: evict the last page in the list.
48  * This also make the performance characteristics easy to reason
49  * about.  Our cache is not so simple.  At any given moment, some
50  * subset of the blocks in the cache are un-evictable because we
51  * have handed out a reference to them.  Blocks are only evictable
52  * when there are no external references active.  This makes
53  * eviction far more problematic:  we choose to evict the evictable
54  * blocks that are the "lowest" in the list.
55  *
56  * There are times when it is not possible to evict the requested
57  * space.  In these circumstances we are unable to adjust the cache
58  * size.  To prevent the cache growing unbounded at these times we
59  * implement a "cache throttle" that slows the flow of new data
60  * into the cache until we can make space available.
61  *
62  * 2. The Megiddo and Modha model assumes a fixed cache size.
63  * Pages are evicted when the cache is full and there is a cache
64  * miss.  Our model has a variable sized cache.  It grows with
65  * high use, but also tries to react to memory pressure from the
66  * operating system: decreasing its size when system memory is
67  * tight.
68  *
69  * 3. The Megiddo and Modha model assumes a fixed page size. All
70  * elements of the cache are therefore exactly the same size.  So
71  * when adjusting the cache size following a cache miss, its simply
72  * a matter of choosing a single page to evict.  In our model, we
73  * have variable sized cache blocks (ranging from 512 bytes to
74  * 128K bytes).  We therefore choose a set of blocks to evict to make
75  * space for a cache miss that approximates as closely as possible
76  * the space used by the new block.
77  *
78  * See also:  "ARC: A Self-Tuning, Low Overhead Replacement Cache"
79  * by N. Megiddo & D. Modha, FAST 2003
80  */
81 
82 /*
83  * The locking model:
84  *
85  * A new reference to a cache buffer can be obtained in two
86  * ways: 1) via a hash table lookup using the DVA as a key,
87  * or 2) via one of the ARC lists.  The arc_read() interface
88  * uses method 1, while the internal ARC algorithms for
89  * adjusting the cache use method 2.  We therefore provide two
90  * types of locks: 1) the hash table lock array, and 2) the
91  * ARC list locks.
92  *
93  * Buffers do not have their own mutexes, rather they rely on the
94  * hash table mutexes for the bulk of their protection (i.e. most
95  * fields in the arc_buf_hdr_t are protected by these mutexes).
96  *
97  * buf_hash_find() returns the appropriate mutex (held) when it
98  * locates the requested buffer in the hash table.  It returns
99  * NULL for the mutex if the buffer was not in the table.
100  *
101  * buf_hash_remove() expects the appropriate hash mutex to be
102  * already held before it is invoked.
103  *
104  * Each ARC state also has a mutex which is used to protect the
105  * buffer list associated with the state.  When attempting to
106  * obtain a hash table lock while holding an ARC list lock you
107  * must use: mutex_tryenter() to avoid deadlock.  Also note that
108  * the active state mutex must be held before the ghost state mutex.
109  *
110  * It as also possible to register a callback which is run when the
111  * arc_meta_limit is reached and no buffers can be safely evicted.  In
112  * this case the arc user should drop a reference on some arc buffers so
113  * they can be reclaimed and the arc_meta_limit honored.  For example,
114  * when using the ZPL each dentry holds a references on a znode.  These
115  * dentries must be pruned before the arc buffer holding the znode can
116  * be safely evicted.
117  *
118  * Note that the majority of the performance stats are manipulated
119  * with atomic operations.
120  *
121  * The L2ARC uses the l2ad_mtx on each vdev for the following:
122  *
123  *	- L2ARC buflist creation
124  *	- L2ARC buflist eviction
125  *	- L2ARC write completion, which walks L2ARC buflists
126  *	- ARC header destruction, as it removes from L2ARC buflists
127  *	- ARC header release, as it removes from L2ARC buflists
128  */
129 
130 /*
131  * ARC operation:
132  *
133  * Every block that is in the ARC is tracked by an arc_buf_hdr_t structure.
134  * This structure can point either to a block that is still in the cache or to
135  * one that is only accessible in an L2 ARC device, or it can provide
136  * information about a block that was recently evicted. If a block is
137  * only accessible in the L2ARC, then the arc_buf_hdr_t only has enough
138  * information to retrieve it from the L2ARC device. This information is
139  * stored in the l2arc_buf_hdr_t sub-structure of the arc_buf_hdr_t. A block
140  * that is in this state cannot access the data directly.
141  *
142  * Blocks that are actively being referenced or have not been evicted
143  * are cached in the L1ARC. The L1ARC (l1arc_buf_hdr_t) is a structure within
144  * the arc_buf_hdr_t that will point to the data block in memory. A block can
145  * only be read by a consumer if it has an l1arc_buf_hdr_t. The L1ARC
146  * caches data in two ways -- in a list of ARC buffers (arc_buf_t) and
147  * also in the arc_buf_hdr_t's private physical data block pointer (b_pabd).
148  *
149  * The L1ARC's data pointer may or may not be uncompressed. The ARC has the
150  * ability to store the physical data (b_pabd) associated with the DVA of the
151  * arc_buf_hdr_t. Since the b_pabd is a copy of the on-disk physical block,
152  * it will match its on-disk compression characteristics. This behavior can be
153  * disabled by setting 'zfs_compressed_arc_enabled' to B_FALSE. When the
154  * compressed ARC functionality is disabled, the b_pabd will point to an
155  * uncompressed version of the on-disk data.
156  *
157  * Data in the L1ARC is not accessed by consumers of the ARC directly. Each
158  * arc_buf_hdr_t can have multiple ARC buffers (arc_buf_t) which reference it.
159  * Each ARC buffer (arc_buf_t) is being actively accessed by a specific ARC
160  * consumer. The ARC will provide references to this data and will keep it
161  * cached until it is no longer in use. The ARC caches only the L1ARC's physical
162  * data block and will evict any arc_buf_t that is no longer referenced. The
163  * amount of memory consumed by the arc_buf_ts' data buffers can be seen via the
164  * "overhead_size" kstat.
165  *
166  * Depending on the consumer, an arc_buf_t can be requested in uncompressed or
167  * compressed form. The typical case is that consumers will want uncompressed
168  * data, and when that happens a new data buffer is allocated where the data is
169  * decompressed for them to use. Currently the only consumer who wants
170  * compressed arc_buf_t's is "zfs send", when it streams data exactly as it
171  * exists on disk. When this happens, the arc_buf_t's data buffer is shared
172  * with the arc_buf_hdr_t.
173  *
174  * Here is a diagram showing an arc_buf_hdr_t referenced by two arc_buf_t's. The
175  * first one is owned by a compressed send consumer (and therefore references
176  * the same compressed data buffer as the arc_buf_hdr_t) and the second could be
177  * used by any other consumer (and has its own uncompressed copy of the data
178  * buffer).
179  *
180  *   arc_buf_hdr_t
181  *   +-----------+
182  *   | fields    |
183  *   | common to |
184  *   | L1- and   |
185  *   | L2ARC     |
186  *   +-----------+
187  *   | l2arc_buf_hdr_t
188  *   |           |
189  *   +-----------+
190  *   | l1arc_buf_hdr_t
191  *   |           |              arc_buf_t
192  *   | b_buf     +------------>+-----------+      arc_buf_t
193  *   | b_pabd    +-+           |b_next     +---->+-----------+
194  *   +-----------+ |           |-----------|     |b_next     +-->NULL
195  *                 |           |b_comp = T |     +-----------+
196  *                 |           |b_data     +-+   |b_comp = F |
197  *                 |           +-----------+ |   |b_data     +-+
198  *                 +->+------+               |   +-----------+ |
199  *        compressed  |      |               |                 |
200  *           data     |      |<--------------+                 | uncompressed
201  *                    +------+          compressed,            |     data
202  *                                        shared               +-->+------+
203  *                                         data                    |      |
204  *                                                                 |      |
205  *                                                                 +------+
206  *
207  * When a consumer reads a block, the ARC must first look to see if the
208  * arc_buf_hdr_t is cached. If the hdr is cached then the ARC allocates a new
209  * arc_buf_t and either copies uncompressed data into a new data buffer from an
210  * existing uncompressed arc_buf_t, decompresses the hdr's b_pabd buffer into a
211  * new data buffer, or shares the hdr's b_pabd buffer, depending on whether the
212  * hdr is compressed and the desired compression characteristics of the
213  * arc_buf_t consumer. If the arc_buf_t ends up sharing data with the
214  * arc_buf_hdr_t and both of them are uncompressed then the arc_buf_t must be
215  * the last buffer in the hdr's b_buf list, however a shared compressed buf can
216  * be anywhere in the hdr's list.
217  *
218  * The diagram below shows an example of an uncompressed ARC hdr that is
219  * sharing its data with an arc_buf_t (note that the shared uncompressed buf is
220  * the last element in the buf list):
221  *
222  *                arc_buf_hdr_t
223  *                +-----------+
224  *                |           |
225  *                |           |
226  *                |           |
227  *                +-----------+
228  * l2arc_buf_hdr_t|           |
229  *                |           |
230  *                +-----------+
231  * l1arc_buf_hdr_t|           |
232  *                |           |                 arc_buf_t    (shared)
233  *                |    b_buf  +------------>+---------+      arc_buf_t
234  *                |           |             |b_next   +---->+---------+
235  *                |  b_pabd   +-+           |---------|     |b_next   +-->NULL
236  *                +-----------+ |           |         |     +---------+
237  *                              |           |b_data   +-+   |         |
238  *                              |           +---------+ |   |b_data   +-+
239  *                              +->+------+             |   +---------+ |
240  *                                 |      |             |               |
241  *                   uncompressed  |      |             |               |
242  *                        data     +------+             |               |
243  *                                    ^                 +->+------+     |
244  *                                    |       uncompressed |      |     |
245  *                                    |           data     |      |     |
246  *                                    |                    +------+     |
247  *                                    +---------------------------------+
248  *
249  * Writing to the ARC requires that the ARC first discard the hdr's b_pabd
250  * since the physical block is about to be rewritten. The new data contents
251  * will be contained in the arc_buf_t. As the I/O pipeline performs the write,
252  * it may compress the data before writing it to disk. The ARC will be called
253  * with the transformed data and will bcopy the transformed on-disk block into
254  * a newly allocated b_pabd. Writes are always done into buffers which have
255  * either been loaned (and hence are new and don't have other readers) or
256  * buffers which have been released (and hence have their own hdr, if there
257  * were originally other readers of the buf's original hdr). This ensures that
258  * the ARC only needs to update a single buf and its hdr after a write occurs.
259  *
260  * When the L2ARC is in use, it will also take advantage of the b_pabd. The
261  * L2ARC will always write the contents of b_pabd to the L2ARC. This means
262  * that when compressed ARC is enabled that the L2ARC blocks are identical
263  * to the on-disk block in the main data pool. This provides a significant
264  * advantage since the ARC can leverage the bp's checksum when reading from the
265  * L2ARC to determine if the contents are valid. However, if the compressed
266  * ARC is disabled, then the L2ARC's block must be transformed to look
267  * like the physical block in the main data pool before comparing the
268  * checksum and determining its validity.
269  *
270  * The L1ARC has a slightly different system for storing encrypted data.
271  * Raw (encrypted + possibly compressed) data has a few subtle differences from
272  * data that is just compressed. The biggest difference is that it is not
273  * possible to decrypt encrypted data (or vice-versa) if the keys aren't loaded.
274  * The other difference is that encryption cannot be treated as a suggestion.
275  * If a caller would prefer compressed data, but they actually wind up with
276  * uncompressed data the worst thing that could happen is there might be a
277  * performance hit. If the caller requests encrypted data, however, we must be
278  * sure they actually get it or else secret information could be leaked. Raw
279  * data is stored in hdr->b_crypt_hdr.b_rabd. An encrypted header, therefore,
280  * may have both an encrypted version and a decrypted version of its data at
281  * once. When a caller needs a raw arc_buf_t, it is allocated and the data is
282  * copied out of this header. To avoid complications with b_pabd, raw buffers
283  * cannot be shared.
284  */
285 
286 #include <sys/spa.h>
287 #include <sys/zio.h>
288 #include <sys/spa_impl.h>
289 #include <sys/zio_compress.h>
290 #include <sys/zio_checksum.h>
291 #include <sys/zfs_context.h>
292 #include <sys/arc.h>
293 #include <sys/zfs_refcount.h>
294 #include <sys/vdev.h>
295 #include <sys/vdev_impl.h>
296 #include <sys/dsl_pool.h>
297 #include <sys/multilist.h>
298 #include <sys/abd.h>
299 #include <sys/zil.h>
300 #include <sys/fm/fs/zfs.h>
301 #include <sys/callb.h>
302 #include <sys/kstat.h>
303 #include <sys/zthr.h>
304 #include <zfs_fletcher.h>
305 #include <sys/arc_impl.h>
306 #include <sys/trace_zfs.h>
307 #include <sys/aggsum.h>
308 #include <sys/wmsum.h>
309 #include <cityhash.h>
310 #include <sys/vdev_trim.h>
311 #include <sys/zfs_racct.h>
312 #include <sys/zstd/zstd.h>
313 
314 #ifndef _KERNEL
315 /* set with ZFS_DEBUG=watch, to enable watchpoints on frozen buffers */
316 boolean_t arc_watch = B_FALSE;
317 #endif
318 
319 /*
320  * This thread's job is to keep enough free memory in the system, by
321  * calling arc_kmem_reap_soon() plus arc_reduce_target_size(), which improves
322  * arc_available_memory().
323  */
324 static zthr_t *arc_reap_zthr;
325 
326 /*
327  * This thread's job is to keep arc_size under arc_c, by calling
328  * arc_evict(), which improves arc_is_overflowing().
329  */
330 static zthr_t *arc_evict_zthr;
331 
332 static kmutex_t arc_evict_lock;
333 static boolean_t arc_evict_needed = B_FALSE;
334 
335 /*
336  * Count of bytes evicted since boot.
337  */
338 static uint64_t arc_evict_count;
339 
340 /*
341  * List of arc_evict_waiter_t's, representing threads waiting for the
342  * arc_evict_count to reach specific values.
343  */
344 static list_t arc_evict_waiters;
345 
346 /*
347  * When arc_is_overflowing(), arc_get_data_impl() waits for this percent of
348  * the requested amount of data to be evicted.  For example, by default for
349  * every 2KB that's evicted, 1KB of it may be "reused" by a new allocation.
350  * Since this is above 100%, it ensures that progress is made towards getting
351  * arc_size under arc_c.  Since this is finite, it ensures that allocations
352  * can still happen, even during the potentially long time that arc_size is
353  * more than arc_c.
354  */
355 int zfs_arc_eviction_pct = 200;
356 
357 /*
358  * The number of headers to evict in arc_evict_state_impl() before
359  * dropping the sublist lock and evicting from another sublist. A lower
360  * value means we're more likely to evict the "correct" header (i.e. the
361  * oldest header in the arc state), but comes with higher overhead
362  * (i.e. more invocations of arc_evict_state_impl()).
363  */
364 int zfs_arc_evict_batch_limit = 10;
365 
366 /* number of seconds before growing cache again */
367 int arc_grow_retry = 5;
368 
369 /*
370  * Minimum time between calls to arc_kmem_reap_soon().
371  */
372 int arc_kmem_cache_reap_retry_ms = 1000;
373 
374 /* shift of arc_c for calculating overflow limit in arc_get_data_impl */
375 int zfs_arc_overflow_shift = 8;
376 
377 /* shift of arc_c for calculating both min and max arc_p */
378 int arc_p_min_shift = 4;
379 
380 /* log2(fraction of arc to reclaim) */
381 int arc_shrink_shift = 7;
382 
383 /* percent of pagecache to reclaim arc to */
384 #ifdef _KERNEL
385 uint_t zfs_arc_pc_percent = 0;
386 #endif
387 
388 /*
389  * log2(fraction of ARC which must be free to allow growing).
390  * I.e. If there is less than arc_c >> arc_no_grow_shift free memory,
391  * when reading a new block into the ARC, we will evict an equal-sized block
392  * from the ARC.
393  *
394  * This must be less than arc_shrink_shift, so that when we shrink the ARC,
395  * we will still not allow it to grow.
396  */
397 int			arc_no_grow_shift = 5;
398 
399 
400 /*
401  * minimum lifespan of a prefetch block in clock ticks
402  * (initialized in arc_init())
403  */
404 static int		arc_min_prefetch_ms;
405 static int		arc_min_prescient_prefetch_ms;
406 
407 /*
408  * If this percent of memory is free, don't throttle.
409  */
410 int arc_lotsfree_percent = 10;
411 
412 /*
413  * The arc has filled available memory and has now warmed up.
414  */
415 boolean_t arc_warm;
416 
417 /*
418  * These tunables are for performance analysis.
419  */
420 unsigned long zfs_arc_max = 0;
421 unsigned long zfs_arc_min = 0;
422 unsigned long zfs_arc_meta_limit = 0;
423 unsigned long zfs_arc_meta_min = 0;
424 unsigned long zfs_arc_dnode_limit = 0;
425 unsigned long zfs_arc_dnode_reduce_percent = 10;
426 int zfs_arc_grow_retry = 0;
427 int zfs_arc_shrink_shift = 0;
428 int zfs_arc_p_min_shift = 0;
429 int zfs_arc_average_blocksize = 8 * 1024; /* 8KB */
430 
431 /*
432  * ARC dirty data constraints for arc_tempreserve_space() throttle.
433  */
434 unsigned long zfs_arc_dirty_limit_percent = 50;	/* total dirty data limit */
435 unsigned long zfs_arc_anon_limit_percent = 25;	/* anon block dirty limit */
436 unsigned long zfs_arc_pool_dirty_percent = 20;	/* each pool's anon allowance */
437 
438 /*
439  * Enable or disable compressed arc buffers.
440  */
441 int zfs_compressed_arc_enabled = B_TRUE;
442 
443 /*
444  * ARC will evict meta buffers that exceed arc_meta_limit. This
445  * tunable make arc_meta_limit adjustable for different workloads.
446  */
447 unsigned long zfs_arc_meta_limit_percent = 75;
448 
449 /*
450  * Percentage that can be consumed by dnodes of ARC meta buffers.
451  */
452 unsigned long zfs_arc_dnode_limit_percent = 10;
453 
454 /*
455  * These tunables are Linux specific
456  */
457 unsigned long zfs_arc_sys_free = 0;
458 int zfs_arc_min_prefetch_ms = 0;
459 int zfs_arc_min_prescient_prefetch_ms = 0;
460 int zfs_arc_p_dampener_disable = 1;
461 int zfs_arc_meta_prune = 10000;
462 int zfs_arc_meta_strategy = ARC_STRATEGY_META_BALANCED;
463 int zfs_arc_meta_adjust_restarts = 4096;
464 int zfs_arc_lotsfree_percent = 10;
465 
466 /* The 6 states: */
467 arc_state_t ARC_anon;
468 arc_state_t ARC_mru;
469 arc_state_t ARC_mru_ghost;
470 arc_state_t ARC_mfu;
471 arc_state_t ARC_mfu_ghost;
472 arc_state_t ARC_l2c_only;
473 
474 arc_stats_t arc_stats = {
475 	{ "hits",			KSTAT_DATA_UINT64 },
476 	{ "misses",			KSTAT_DATA_UINT64 },
477 	{ "demand_data_hits",		KSTAT_DATA_UINT64 },
478 	{ "demand_data_misses",		KSTAT_DATA_UINT64 },
479 	{ "demand_metadata_hits",	KSTAT_DATA_UINT64 },
480 	{ "demand_metadata_misses",	KSTAT_DATA_UINT64 },
481 	{ "prefetch_data_hits",		KSTAT_DATA_UINT64 },
482 	{ "prefetch_data_misses",	KSTAT_DATA_UINT64 },
483 	{ "prefetch_metadata_hits",	KSTAT_DATA_UINT64 },
484 	{ "prefetch_metadata_misses",	KSTAT_DATA_UINT64 },
485 	{ "mru_hits",			KSTAT_DATA_UINT64 },
486 	{ "mru_ghost_hits",		KSTAT_DATA_UINT64 },
487 	{ "mfu_hits",			KSTAT_DATA_UINT64 },
488 	{ "mfu_ghost_hits",		KSTAT_DATA_UINT64 },
489 	{ "deleted",			KSTAT_DATA_UINT64 },
490 	{ "mutex_miss",			KSTAT_DATA_UINT64 },
491 	{ "access_skip",		KSTAT_DATA_UINT64 },
492 	{ "evict_skip",			KSTAT_DATA_UINT64 },
493 	{ "evict_not_enough",		KSTAT_DATA_UINT64 },
494 	{ "evict_l2_cached",		KSTAT_DATA_UINT64 },
495 	{ "evict_l2_eligible",		KSTAT_DATA_UINT64 },
496 	{ "evict_l2_eligible_mfu",	KSTAT_DATA_UINT64 },
497 	{ "evict_l2_eligible_mru",	KSTAT_DATA_UINT64 },
498 	{ "evict_l2_ineligible",	KSTAT_DATA_UINT64 },
499 	{ "evict_l2_skip",		KSTAT_DATA_UINT64 },
500 	{ "hash_elements",		KSTAT_DATA_UINT64 },
501 	{ "hash_elements_max",		KSTAT_DATA_UINT64 },
502 	{ "hash_collisions",		KSTAT_DATA_UINT64 },
503 	{ "hash_chains",		KSTAT_DATA_UINT64 },
504 	{ "hash_chain_max",		KSTAT_DATA_UINT64 },
505 	{ "p",				KSTAT_DATA_UINT64 },
506 	{ "c",				KSTAT_DATA_UINT64 },
507 	{ "c_min",			KSTAT_DATA_UINT64 },
508 	{ "c_max",			KSTAT_DATA_UINT64 },
509 	{ "size",			KSTAT_DATA_UINT64 },
510 	{ "compressed_size",		KSTAT_DATA_UINT64 },
511 	{ "uncompressed_size",		KSTAT_DATA_UINT64 },
512 	{ "overhead_size",		KSTAT_DATA_UINT64 },
513 	{ "hdr_size",			KSTAT_DATA_UINT64 },
514 	{ "data_size",			KSTAT_DATA_UINT64 },
515 	{ "metadata_size",		KSTAT_DATA_UINT64 },
516 	{ "dbuf_size",			KSTAT_DATA_UINT64 },
517 	{ "dnode_size",			KSTAT_DATA_UINT64 },
518 	{ "bonus_size",			KSTAT_DATA_UINT64 },
519 #if defined(COMPAT_FREEBSD11)
520 	{ "other_size",			KSTAT_DATA_UINT64 },
521 #endif
522 	{ "anon_size",			KSTAT_DATA_UINT64 },
523 	{ "anon_evictable_data",	KSTAT_DATA_UINT64 },
524 	{ "anon_evictable_metadata",	KSTAT_DATA_UINT64 },
525 	{ "mru_size",			KSTAT_DATA_UINT64 },
526 	{ "mru_evictable_data",		KSTAT_DATA_UINT64 },
527 	{ "mru_evictable_metadata",	KSTAT_DATA_UINT64 },
528 	{ "mru_ghost_size",		KSTAT_DATA_UINT64 },
529 	{ "mru_ghost_evictable_data",	KSTAT_DATA_UINT64 },
530 	{ "mru_ghost_evictable_metadata", KSTAT_DATA_UINT64 },
531 	{ "mfu_size",			KSTAT_DATA_UINT64 },
532 	{ "mfu_evictable_data",		KSTAT_DATA_UINT64 },
533 	{ "mfu_evictable_metadata",	KSTAT_DATA_UINT64 },
534 	{ "mfu_ghost_size",		KSTAT_DATA_UINT64 },
535 	{ "mfu_ghost_evictable_data",	KSTAT_DATA_UINT64 },
536 	{ "mfu_ghost_evictable_metadata", KSTAT_DATA_UINT64 },
537 	{ "l2_hits",			KSTAT_DATA_UINT64 },
538 	{ "l2_misses",			KSTAT_DATA_UINT64 },
539 	{ "l2_prefetch_asize",		KSTAT_DATA_UINT64 },
540 	{ "l2_mru_asize",		KSTAT_DATA_UINT64 },
541 	{ "l2_mfu_asize",		KSTAT_DATA_UINT64 },
542 	{ "l2_bufc_data_asize",		KSTAT_DATA_UINT64 },
543 	{ "l2_bufc_metadata_asize",	KSTAT_DATA_UINT64 },
544 	{ "l2_feeds",			KSTAT_DATA_UINT64 },
545 	{ "l2_rw_clash",		KSTAT_DATA_UINT64 },
546 	{ "l2_read_bytes",		KSTAT_DATA_UINT64 },
547 	{ "l2_write_bytes",		KSTAT_DATA_UINT64 },
548 	{ "l2_writes_sent",		KSTAT_DATA_UINT64 },
549 	{ "l2_writes_done",		KSTAT_DATA_UINT64 },
550 	{ "l2_writes_error",		KSTAT_DATA_UINT64 },
551 	{ "l2_writes_lock_retry",	KSTAT_DATA_UINT64 },
552 	{ "l2_evict_lock_retry",	KSTAT_DATA_UINT64 },
553 	{ "l2_evict_reading",		KSTAT_DATA_UINT64 },
554 	{ "l2_evict_l1cached",		KSTAT_DATA_UINT64 },
555 	{ "l2_free_on_write",		KSTAT_DATA_UINT64 },
556 	{ "l2_abort_lowmem",		KSTAT_DATA_UINT64 },
557 	{ "l2_cksum_bad",		KSTAT_DATA_UINT64 },
558 	{ "l2_io_error",		KSTAT_DATA_UINT64 },
559 	{ "l2_size",			KSTAT_DATA_UINT64 },
560 	{ "l2_asize",			KSTAT_DATA_UINT64 },
561 	{ "l2_hdr_size",		KSTAT_DATA_UINT64 },
562 	{ "l2_log_blk_writes",		KSTAT_DATA_UINT64 },
563 	{ "l2_log_blk_avg_asize",	KSTAT_DATA_UINT64 },
564 	{ "l2_log_blk_asize",		KSTAT_DATA_UINT64 },
565 	{ "l2_log_blk_count",		KSTAT_DATA_UINT64 },
566 	{ "l2_data_to_meta_ratio",	KSTAT_DATA_UINT64 },
567 	{ "l2_rebuild_success",		KSTAT_DATA_UINT64 },
568 	{ "l2_rebuild_unsupported",	KSTAT_DATA_UINT64 },
569 	{ "l2_rebuild_io_errors",	KSTAT_DATA_UINT64 },
570 	{ "l2_rebuild_dh_errors",	KSTAT_DATA_UINT64 },
571 	{ "l2_rebuild_cksum_lb_errors",	KSTAT_DATA_UINT64 },
572 	{ "l2_rebuild_lowmem",		KSTAT_DATA_UINT64 },
573 	{ "l2_rebuild_size",		KSTAT_DATA_UINT64 },
574 	{ "l2_rebuild_asize",		KSTAT_DATA_UINT64 },
575 	{ "l2_rebuild_bufs",		KSTAT_DATA_UINT64 },
576 	{ "l2_rebuild_bufs_precached",	KSTAT_DATA_UINT64 },
577 	{ "l2_rebuild_log_blks",	KSTAT_DATA_UINT64 },
578 	{ "memory_throttle_count",	KSTAT_DATA_UINT64 },
579 	{ "memory_direct_count",	KSTAT_DATA_UINT64 },
580 	{ "memory_indirect_count",	KSTAT_DATA_UINT64 },
581 	{ "memory_all_bytes",		KSTAT_DATA_UINT64 },
582 	{ "memory_free_bytes",		KSTAT_DATA_UINT64 },
583 	{ "memory_available_bytes",	KSTAT_DATA_INT64 },
584 	{ "arc_no_grow",		KSTAT_DATA_UINT64 },
585 	{ "arc_tempreserve",		KSTAT_DATA_UINT64 },
586 	{ "arc_loaned_bytes",		KSTAT_DATA_UINT64 },
587 	{ "arc_prune",			KSTAT_DATA_UINT64 },
588 	{ "arc_meta_used",		KSTAT_DATA_UINT64 },
589 	{ "arc_meta_limit",		KSTAT_DATA_UINT64 },
590 	{ "arc_dnode_limit",		KSTAT_DATA_UINT64 },
591 	{ "arc_meta_max",		KSTAT_DATA_UINT64 },
592 	{ "arc_meta_min",		KSTAT_DATA_UINT64 },
593 	{ "async_upgrade_sync",		KSTAT_DATA_UINT64 },
594 	{ "demand_hit_predictive_prefetch", KSTAT_DATA_UINT64 },
595 	{ "demand_hit_prescient_prefetch", KSTAT_DATA_UINT64 },
596 	{ "arc_need_free",		KSTAT_DATA_UINT64 },
597 	{ "arc_sys_free",		KSTAT_DATA_UINT64 },
598 	{ "arc_raw_size",		KSTAT_DATA_UINT64 },
599 	{ "cached_only_in_progress",	KSTAT_DATA_UINT64 },
600 	{ "abd_chunk_waste_size",	KSTAT_DATA_UINT64 },
601 };
602 
603 arc_sums_t arc_sums;
604 
605 #define	ARCSTAT_MAX(stat, val) {					\
606 	uint64_t m;							\
607 	while ((val) > (m = arc_stats.stat.value.ui64) &&		\
608 	    (m != atomic_cas_64(&arc_stats.stat.value.ui64, m, (val))))	\
609 		continue;						\
610 }
611 
612 /*
613  * We define a macro to allow ARC hits/misses to be easily broken down by
614  * two separate conditions, giving a total of four different subtypes for
615  * each of hits and misses (so eight statistics total).
616  */
617 #define	ARCSTAT_CONDSTAT(cond1, stat1, notstat1, cond2, stat2, notstat2, stat) \
618 	if (cond1) {							\
619 		if (cond2) {						\
620 			ARCSTAT_BUMP(arcstat_##stat1##_##stat2##_##stat); \
621 		} else {						\
622 			ARCSTAT_BUMP(arcstat_##stat1##_##notstat2##_##stat); \
623 		}							\
624 	} else {							\
625 		if (cond2) {						\
626 			ARCSTAT_BUMP(arcstat_##notstat1##_##stat2##_##stat); \
627 		} else {						\
628 			ARCSTAT_BUMP(arcstat_##notstat1##_##notstat2##_##stat);\
629 		}							\
630 	}
631 
632 /*
633  * This macro allows us to use kstats as floating averages. Each time we
634  * update this kstat, we first factor it and the update value by
635  * ARCSTAT_AVG_FACTOR to shrink the new value's contribution to the overall
636  * average. This macro assumes that integer loads and stores are atomic, but
637  * is not safe for multiple writers updating the kstat in parallel (only the
638  * last writer's update will remain).
639  */
640 #define	ARCSTAT_F_AVG_FACTOR	3
641 #define	ARCSTAT_F_AVG(stat, value) \
642 	do { \
643 		uint64_t x = ARCSTAT(stat); \
644 		x = x - x / ARCSTAT_F_AVG_FACTOR + \
645 		    (value) / ARCSTAT_F_AVG_FACTOR; \
646 		ARCSTAT(stat) = x; \
647 	} while (0)
648 
649 kstat_t			*arc_ksp;
650 
651 /*
652  * There are several ARC variables that are critical to export as kstats --
653  * but we don't want to have to grovel around in the kstat whenever we wish to
654  * manipulate them.  For these variables, we therefore define them to be in
655  * terms of the statistic variable.  This assures that we are not introducing
656  * the possibility of inconsistency by having shadow copies of the variables,
657  * while still allowing the code to be readable.
658  */
659 #define	arc_tempreserve	ARCSTAT(arcstat_tempreserve)
660 #define	arc_loaned_bytes	ARCSTAT(arcstat_loaned_bytes)
661 #define	arc_meta_limit	ARCSTAT(arcstat_meta_limit) /* max size for metadata */
662 /* max size for dnodes */
663 #define	arc_dnode_size_limit	ARCSTAT(arcstat_dnode_limit)
664 #define	arc_meta_min	ARCSTAT(arcstat_meta_min) /* min size for metadata */
665 #define	arc_need_free	ARCSTAT(arcstat_need_free) /* waiting to be evicted */
666 
667 hrtime_t arc_growtime;
668 list_t arc_prune_list;
669 kmutex_t arc_prune_mtx;
670 taskq_t *arc_prune_taskq;
671 
672 #define	GHOST_STATE(state)	\
673 	((state) == arc_mru_ghost || (state) == arc_mfu_ghost ||	\
674 	(state) == arc_l2c_only)
675 
676 #define	HDR_IN_HASH_TABLE(hdr)	((hdr)->b_flags & ARC_FLAG_IN_HASH_TABLE)
677 #define	HDR_IO_IN_PROGRESS(hdr)	((hdr)->b_flags & ARC_FLAG_IO_IN_PROGRESS)
678 #define	HDR_IO_ERROR(hdr)	((hdr)->b_flags & ARC_FLAG_IO_ERROR)
679 #define	HDR_PREFETCH(hdr)	((hdr)->b_flags & ARC_FLAG_PREFETCH)
680 #define	HDR_PRESCIENT_PREFETCH(hdr)	\
681 	((hdr)->b_flags & ARC_FLAG_PRESCIENT_PREFETCH)
682 #define	HDR_COMPRESSION_ENABLED(hdr)	\
683 	((hdr)->b_flags & ARC_FLAG_COMPRESSED_ARC)
684 
685 #define	HDR_L2CACHE(hdr)	((hdr)->b_flags & ARC_FLAG_L2CACHE)
686 #define	HDR_L2_READING(hdr)	\
687 	(((hdr)->b_flags & ARC_FLAG_IO_IN_PROGRESS) &&	\
688 	((hdr)->b_flags & ARC_FLAG_HAS_L2HDR))
689 #define	HDR_L2_WRITING(hdr)	((hdr)->b_flags & ARC_FLAG_L2_WRITING)
690 #define	HDR_L2_EVICTED(hdr)	((hdr)->b_flags & ARC_FLAG_L2_EVICTED)
691 #define	HDR_L2_WRITE_HEAD(hdr)	((hdr)->b_flags & ARC_FLAG_L2_WRITE_HEAD)
692 #define	HDR_PROTECTED(hdr)	((hdr)->b_flags & ARC_FLAG_PROTECTED)
693 #define	HDR_NOAUTH(hdr)		((hdr)->b_flags & ARC_FLAG_NOAUTH)
694 #define	HDR_SHARED_DATA(hdr)	((hdr)->b_flags & ARC_FLAG_SHARED_DATA)
695 
696 #define	HDR_ISTYPE_METADATA(hdr)	\
697 	((hdr)->b_flags & ARC_FLAG_BUFC_METADATA)
698 #define	HDR_ISTYPE_DATA(hdr)	(!HDR_ISTYPE_METADATA(hdr))
699 
700 #define	HDR_HAS_L1HDR(hdr)	((hdr)->b_flags & ARC_FLAG_HAS_L1HDR)
701 #define	HDR_HAS_L2HDR(hdr)	((hdr)->b_flags & ARC_FLAG_HAS_L2HDR)
702 #define	HDR_HAS_RABD(hdr)	\
703 	(HDR_HAS_L1HDR(hdr) && HDR_PROTECTED(hdr) &&	\
704 	(hdr)->b_crypt_hdr.b_rabd != NULL)
705 #define	HDR_ENCRYPTED(hdr)	\
706 	(HDR_PROTECTED(hdr) && DMU_OT_IS_ENCRYPTED((hdr)->b_crypt_hdr.b_ot))
707 #define	HDR_AUTHENTICATED(hdr)	\
708 	(HDR_PROTECTED(hdr) && !DMU_OT_IS_ENCRYPTED((hdr)->b_crypt_hdr.b_ot))
709 
710 /* For storing compression mode in b_flags */
711 #define	HDR_COMPRESS_OFFSET	(highbit64(ARC_FLAG_COMPRESS_0) - 1)
712 
713 #define	HDR_GET_COMPRESS(hdr)	((enum zio_compress)BF32_GET((hdr)->b_flags, \
714 	HDR_COMPRESS_OFFSET, SPA_COMPRESSBITS))
715 #define	HDR_SET_COMPRESS(hdr, cmp) BF32_SET((hdr)->b_flags, \
716 	HDR_COMPRESS_OFFSET, SPA_COMPRESSBITS, (cmp));
717 
718 #define	ARC_BUF_LAST(buf)	((buf)->b_next == NULL)
719 #define	ARC_BUF_SHARED(buf)	((buf)->b_flags & ARC_BUF_FLAG_SHARED)
720 #define	ARC_BUF_COMPRESSED(buf)	((buf)->b_flags & ARC_BUF_FLAG_COMPRESSED)
721 #define	ARC_BUF_ENCRYPTED(buf)	((buf)->b_flags & ARC_BUF_FLAG_ENCRYPTED)
722 
723 /*
724  * Other sizes
725  */
726 
727 #define	HDR_FULL_CRYPT_SIZE ((int64_t)sizeof (arc_buf_hdr_t))
728 #define	HDR_FULL_SIZE ((int64_t)offsetof(arc_buf_hdr_t, b_crypt_hdr))
729 #define	HDR_L2ONLY_SIZE ((int64_t)offsetof(arc_buf_hdr_t, b_l1hdr))
730 
731 /*
732  * Hash table routines
733  */
734 
735 #define	BUF_LOCKS 2048
736 typedef struct buf_hash_table {
737 	uint64_t ht_mask;
738 	arc_buf_hdr_t **ht_table;
739 	kmutex_t ht_locks[BUF_LOCKS] ____cacheline_aligned;
740 } buf_hash_table_t;
741 
742 static buf_hash_table_t buf_hash_table;
743 
744 #define	BUF_HASH_INDEX(spa, dva, birth) \
745 	(buf_hash(spa, dva, birth) & buf_hash_table.ht_mask)
746 #define	BUF_HASH_LOCK(idx)	(&buf_hash_table.ht_locks[idx & (BUF_LOCKS-1)])
747 #define	HDR_LOCK(hdr) \
748 	(BUF_HASH_LOCK(BUF_HASH_INDEX(hdr->b_spa, &hdr->b_dva, hdr->b_birth)))
749 
750 uint64_t zfs_crc64_table[256];
751 
752 /*
753  * Level 2 ARC
754  */
755 
756 #define	L2ARC_WRITE_SIZE	(8 * 1024 * 1024)	/* initial write max */
757 #define	L2ARC_HEADROOM		2			/* num of writes */
758 
759 /*
760  * If we discover during ARC scan any buffers to be compressed, we boost
761  * our headroom for the next scanning cycle by this percentage multiple.
762  */
763 #define	L2ARC_HEADROOM_BOOST	200
764 #define	L2ARC_FEED_SECS		1		/* caching interval secs */
765 #define	L2ARC_FEED_MIN_MS	200		/* min caching interval ms */
766 
767 /*
768  * We can feed L2ARC from two states of ARC buffers, mru and mfu,
769  * and each of the state has two types: data and metadata.
770  */
771 #define	L2ARC_FEED_TYPES	4
772 
773 /* L2ARC Performance Tunables */
774 unsigned long l2arc_write_max = L2ARC_WRITE_SIZE;	/* def max write size */
775 unsigned long l2arc_write_boost = L2ARC_WRITE_SIZE;	/* extra warmup write */
776 unsigned long l2arc_headroom = L2ARC_HEADROOM;		/* # of dev writes */
777 unsigned long l2arc_headroom_boost = L2ARC_HEADROOM_BOOST;
778 unsigned long l2arc_feed_secs = L2ARC_FEED_SECS;	/* interval seconds */
779 unsigned long l2arc_feed_min_ms = L2ARC_FEED_MIN_MS;	/* min interval msecs */
780 int l2arc_noprefetch = B_TRUE;			/* don't cache prefetch bufs */
781 int l2arc_feed_again = B_TRUE;			/* turbo warmup */
782 int l2arc_norw = B_FALSE;			/* no reads during writes */
783 int l2arc_meta_percent = 33;			/* limit on headers size */
784 
785 /*
786  * L2ARC Internals
787  */
788 static list_t L2ARC_dev_list;			/* device list */
789 static list_t *l2arc_dev_list;			/* device list pointer */
790 static kmutex_t l2arc_dev_mtx;			/* device list mutex */
791 static l2arc_dev_t *l2arc_dev_last;		/* last device used */
792 static list_t L2ARC_free_on_write;		/* free after write buf list */
793 static list_t *l2arc_free_on_write;		/* free after write list ptr */
794 static kmutex_t l2arc_free_on_write_mtx;	/* mutex for list */
795 static uint64_t l2arc_ndev;			/* number of devices */
796 
797 typedef struct l2arc_read_callback {
798 	arc_buf_hdr_t		*l2rcb_hdr;		/* read header */
799 	blkptr_t		l2rcb_bp;		/* original blkptr */
800 	zbookmark_phys_t	l2rcb_zb;		/* original bookmark */
801 	int			l2rcb_flags;		/* original flags */
802 	abd_t			*l2rcb_abd;		/* temporary buffer */
803 } l2arc_read_callback_t;
804 
805 typedef struct l2arc_data_free {
806 	/* protected by l2arc_free_on_write_mtx */
807 	abd_t		*l2df_abd;
808 	size_t		l2df_size;
809 	arc_buf_contents_t l2df_type;
810 	list_node_t	l2df_list_node;
811 } l2arc_data_free_t;
812 
813 typedef enum arc_fill_flags {
814 	ARC_FILL_LOCKED		= 1 << 0, /* hdr lock is held */
815 	ARC_FILL_COMPRESSED	= 1 << 1, /* fill with compressed data */
816 	ARC_FILL_ENCRYPTED	= 1 << 2, /* fill with encrypted data */
817 	ARC_FILL_NOAUTH		= 1 << 3, /* don't attempt to authenticate */
818 	ARC_FILL_IN_PLACE	= 1 << 4  /* fill in place (special case) */
819 } arc_fill_flags_t;
820 
821 typedef enum arc_ovf_level {
822 	ARC_OVF_NONE,			/* ARC within target size. */
823 	ARC_OVF_SOME,			/* ARC is slightly overflowed. */
824 	ARC_OVF_SEVERE			/* ARC is severely overflowed. */
825 } arc_ovf_level_t;
826 
827 static kmutex_t l2arc_feed_thr_lock;
828 static kcondvar_t l2arc_feed_thr_cv;
829 static uint8_t l2arc_thread_exit;
830 
831 static kmutex_t l2arc_rebuild_thr_lock;
832 static kcondvar_t l2arc_rebuild_thr_cv;
833 
834 enum arc_hdr_alloc_flags {
835 	ARC_HDR_ALLOC_RDATA = 0x1,
836 	ARC_HDR_DO_ADAPT = 0x2,
837 };
838 
839 
840 static abd_t *arc_get_data_abd(arc_buf_hdr_t *, uint64_t, void *, boolean_t);
841 static void *arc_get_data_buf(arc_buf_hdr_t *, uint64_t, void *);
842 static void arc_get_data_impl(arc_buf_hdr_t *, uint64_t, void *, boolean_t);
843 static void arc_free_data_abd(arc_buf_hdr_t *, abd_t *, uint64_t, void *);
844 static void arc_free_data_buf(arc_buf_hdr_t *, void *, uint64_t, void *);
845 static void arc_free_data_impl(arc_buf_hdr_t *hdr, uint64_t size, void *tag);
846 static void arc_hdr_free_abd(arc_buf_hdr_t *, boolean_t);
847 static void arc_hdr_alloc_abd(arc_buf_hdr_t *, int);
848 static void arc_access(arc_buf_hdr_t *, kmutex_t *);
849 static void arc_buf_watch(arc_buf_t *);
850 
851 static arc_buf_contents_t arc_buf_type(arc_buf_hdr_t *);
852 static uint32_t arc_bufc_to_flags(arc_buf_contents_t);
853 static inline void arc_hdr_set_flags(arc_buf_hdr_t *hdr, arc_flags_t flags);
854 static inline void arc_hdr_clear_flags(arc_buf_hdr_t *hdr, arc_flags_t flags);
855 
856 static boolean_t l2arc_write_eligible(uint64_t, arc_buf_hdr_t *);
857 static void l2arc_read_done(zio_t *);
858 static void l2arc_do_free_on_write(void);
859 static void l2arc_hdr_arcstats_update(arc_buf_hdr_t *hdr, boolean_t incr,
860     boolean_t state_only);
861 
862 #define	l2arc_hdr_arcstats_increment(hdr) \
863 	l2arc_hdr_arcstats_update((hdr), B_TRUE, B_FALSE)
864 #define	l2arc_hdr_arcstats_decrement(hdr) \
865 	l2arc_hdr_arcstats_update((hdr), B_FALSE, B_FALSE)
866 #define	l2arc_hdr_arcstats_increment_state(hdr) \
867 	l2arc_hdr_arcstats_update((hdr), B_TRUE, B_TRUE)
868 #define	l2arc_hdr_arcstats_decrement_state(hdr) \
869 	l2arc_hdr_arcstats_update((hdr), B_FALSE, B_TRUE)
870 
871 /*
872  * l2arc_mfuonly : A ZFS module parameter that controls whether only MFU
873  * 		metadata and data are cached from ARC into L2ARC.
874  */
875 int l2arc_mfuonly = 0;
876 
877 /*
878  * L2ARC TRIM
879  * l2arc_trim_ahead : A ZFS module parameter that controls how much ahead of
880  * 		the current write size (l2arc_write_max) we should TRIM if we
881  * 		have filled the device. It is defined as a percentage of the
882  * 		write size. If set to 100 we trim twice the space required to
883  * 		accommodate upcoming writes. A minimum of 64MB will be trimmed.
884  * 		It also enables TRIM of the whole L2ARC device upon creation or
885  * 		addition to an existing pool or if the header of the device is
886  * 		invalid upon importing a pool or onlining a cache device. The
887  * 		default is 0, which disables TRIM on L2ARC altogether as it can
888  * 		put significant stress on the underlying storage devices. This
889  * 		will vary depending of how well the specific device handles
890  * 		these commands.
891  */
892 unsigned long l2arc_trim_ahead = 0;
893 
894 /*
895  * Performance tuning of L2ARC persistence:
896  *
897  * l2arc_rebuild_enabled : A ZFS module parameter that controls whether adding
898  * 		an L2ARC device (either at pool import or later) will attempt
899  * 		to rebuild L2ARC buffer contents.
900  * l2arc_rebuild_blocks_min_l2size : A ZFS module parameter that controls
901  * 		whether log blocks are written to the L2ARC device. If the L2ARC
902  * 		device is less than 1GB, the amount of data l2arc_evict()
903  * 		evicts is significant compared to the amount of restored L2ARC
904  * 		data. In this case do not write log blocks in L2ARC in order
905  * 		not to waste space.
906  */
907 int l2arc_rebuild_enabled = B_TRUE;
908 unsigned long l2arc_rebuild_blocks_min_l2size = 1024 * 1024 * 1024;
909 
910 /* L2ARC persistence rebuild control routines. */
911 void l2arc_rebuild_vdev(vdev_t *vd, boolean_t reopen);
912 static void l2arc_dev_rebuild_thread(void *arg);
913 static int l2arc_rebuild(l2arc_dev_t *dev);
914 
915 /* L2ARC persistence read I/O routines. */
916 static int l2arc_dev_hdr_read(l2arc_dev_t *dev);
917 static int l2arc_log_blk_read(l2arc_dev_t *dev,
918     const l2arc_log_blkptr_t *this_lp, const l2arc_log_blkptr_t *next_lp,
919     l2arc_log_blk_phys_t *this_lb, l2arc_log_blk_phys_t *next_lb,
920     zio_t *this_io, zio_t **next_io);
921 static zio_t *l2arc_log_blk_fetch(vdev_t *vd,
922     const l2arc_log_blkptr_t *lp, l2arc_log_blk_phys_t *lb);
923 static void l2arc_log_blk_fetch_abort(zio_t *zio);
924 
925 /* L2ARC persistence block restoration routines. */
926 static void l2arc_log_blk_restore(l2arc_dev_t *dev,
927     const l2arc_log_blk_phys_t *lb, uint64_t lb_asize);
928 static void l2arc_hdr_restore(const l2arc_log_ent_phys_t *le,
929     l2arc_dev_t *dev);
930 
931 /* L2ARC persistence write I/O routines. */
932 static void l2arc_log_blk_commit(l2arc_dev_t *dev, zio_t *pio,
933     l2arc_write_callback_t *cb);
934 
935 /* L2ARC persistence auxiliary routines. */
936 boolean_t l2arc_log_blkptr_valid(l2arc_dev_t *dev,
937     const l2arc_log_blkptr_t *lbp);
938 static boolean_t l2arc_log_blk_insert(l2arc_dev_t *dev,
939     const arc_buf_hdr_t *ab);
940 boolean_t l2arc_range_check_overlap(uint64_t bottom,
941     uint64_t top, uint64_t check);
942 static void l2arc_blk_fetch_done(zio_t *zio);
943 static inline uint64_t
944     l2arc_log_blk_overhead(uint64_t write_sz, l2arc_dev_t *dev);
945 
946 /*
947  * We use Cityhash for this. It's fast, and has good hash properties without
948  * requiring any large static buffers.
949  */
950 static uint64_t
951 buf_hash(uint64_t spa, const dva_t *dva, uint64_t birth)
952 {
953 	return (cityhash4(spa, dva->dva_word[0], dva->dva_word[1], birth));
954 }
955 
956 #define	HDR_EMPTY(hdr)						\
957 	((hdr)->b_dva.dva_word[0] == 0 &&			\
958 	(hdr)->b_dva.dva_word[1] == 0)
959 
960 #define	HDR_EMPTY_OR_LOCKED(hdr)				\
961 	(HDR_EMPTY(hdr) || MUTEX_HELD(HDR_LOCK(hdr)))
962 
963 #define	HDR_EQUAL(spa, dva, birth, hdr)				\
964 	((hdr)->b_dva.dva_word[0] == (dva)->dva_word[0]) &&	\
965 	((hdr)->b_dva.dva_word[1] == (dva)->dva_word[1]) &&	\
966 	((hdr)->b_birth == birth) && ((hdr)->b_spa == spa)
967 
968 static void
969 buf_discard_identity(arc_buf_hdr_t *hdr)
970 {
971 	hdr->b_dva.dva_word[0] = 0;
972 	hdr->b_dva.dva_word[1] = 0;
973 	hdr->b_birth = 0;
974 }
975 
976 static arc_buf_hdr_t *
977 buf_hash_find(uint64_t spa, const blkptr_t *bp, kmutex_t **lockp)
978 {
979 	const dva_t *dva = BP_IDENTITY(bp);
980 	uint64_t birth = BP_PHYSICAL_BIRTH(bp);
981 	uint64_t idx = BUF_HASH_INDEX(spa, dva, birth);
982 	kmutex_t *hash_lock = BUF_HASH_LOCK(idx);
983 	arc_buf_hdr_t *hdr;
984 
985 	mutex_enter(hash_lock);
986 	for (hdr = buf_hash_table.ht_table[idx]; hdr != NULL;
987 	    hdr = hdr->b_hash_next) {
988 		if (HDR_EQUAL(spa, dva, birth, hdr)) {
989 			*lockp = hash_lock;
990 			return (hdr);
991 		}
992 	}
993 	mutex_exit(hash_lock);
994 	*lockp = NULL;
995 	return (NULL);
996 }
997 
998 /*
999  * Insert an entry into the hash table.  If there is already an element
1000  * equal to elem in the hash table, then the already existing element
1001  * will be returned and the new element will not be inserted.
1002  * Otherwise returns NULL.
1003  * If lockp == NULL, the caller is assumed to already hold the hash lock.
1004  */
1005 static arc_buf_hdr_t *
1006 buf_hash_insert(arc_buf_hdr_t *hdr, kmutex_t **lockp)
1007 {
1008 	uint64_t idx = BUF_HASH_INDEX(hdr->b_spa, &hdr->b_dva, hdr->b_birth);
1009 	kmutex_t *hash_lock = BUF_HASH_LOCK(idx);
1010 	arc_buf_hdr_t *fhdr;
1011 	uint32_t i;
1012 
1013 	ASSERT(!DVA_IS_EMPTY(&hdr->b_dva));
1014 	ASSERT(hdr->b_birth != 0);
1015 	ASSERT(!HDR_IN_HASH_TABLE(hdr));
1016 
1017 	if (lockp != NULL) {
1018 		*lockp = hash_lock;
1019 		mutex_enter(hash_lock);
1020 	} else {
1021 		ASSERT(MUTEX_HELD(hash_lock));
1022 	}
1023 
1024 	for (fhdr = buf_hash_table.ht_table[idx], i = 0; fhdr != NULL;
1025 	    fhdr = fhdr->b_hash_next, i++) {
1026 		if (HDR_EQUAL(hdr->b_spa, &hdr->b_dva, hdr->b_birth, fhdr))
1027 			return (fhdr);
1028 	}
1029 
1030 	hdr->b_hash_next = buf_hash_table.ht_table[idx];
1031 	buf_hash_table.ht_table[idx] = hdr;
1032 	arc_hdr_set_flags(hdr, ARC_FLAG_IN_HASH_TABLE);
1033 
1034 	/* collect some hash table performance data */
1035 	if (i > 0) {
1036 		ARCSTAT_BUMP(arcstat_hash_collisions);
1037 		if (i == 1)
1038 			ARCSTAT_BUMP(arcstat_hash_chains);
1039 
1040 		ARCSTAT_MAX(arcstat_hash_chain_max, i);
1041 	}
1042 	uint64_t he = atomic_inc_64_nv(
1043 	    &arc_stats.arcstat_hash_elements.value.ui64);
1044 	ARCSTAT_MAX(arcstat_hash_elements_max, he);
1045 
1046 	return (NULL);
1047 }
1048 
1049 static void
1050 buf_hash_remove(arc_buf_hdr_t *hdr)
1051 {
1052 	arc_buf_hdr_t *fhdr, **hdrp;
1053 	uint64_t idx = BUF_HASH_INDEX(hdr->b_spa, &hdr->b_dva, hdr->b_birth);
1054 
1055 	ASSERT(MUTEX_HELD(BUF_HASH_LOCK(idx)));
1056 	ASSERT(HDR_IN_HASH_TABLE(hdr));
1057 
1058 	hdrp = &buf_hash_table.ht_table[idx];
1059 	while ((fhdr = *hdrp) != hdr) {
1060 		ASSERT3P(fhdr, !=, NULL);
1061 		hdrp = &fhdr->b_hash_next;
1062 	}
1063 	*hdrp = hdr->b_hash_next;
1064 	hdr->b_hash_next = NULL;
1065 	arc_hdr_clear_flags(hdr, ARC_FLAG_IN_HASH_TABLE);
1066 
1067 	/* collect some hash table performance data */
1068 	atomic_dec_64(&arc_stats.arcstat_hash_elements.value.ui64);
1069 
1070 	if (buf_hash_table.ht_table[idx] &&
1071 	    buf_hash_table.ht_table[idx]->b_hash_next == NULL)
1072 		ARCSTAT_BUMPDOWN(arcstat_hash_chains);
1073 }
1074 
1075 /*
1076  * Global data structures and functions for the buf kmem cache.
1077  */
1078 
1079 static kmem_cache_t *hdr_full_cache;
1080 static kmem_cache_t *hdr_full_crypt_cache;
1081 static kmem_cache_t *hdr_l2only_cache;
1082 static kmem_cache_t *buf_cache;
1083 
1084 static void
1085 buf_fini(void)
1086 {
1087 	int i;
1088 
1089 #if defined(_KERNEL)
1090 	/*
1091 	 * Large allocations which do not require contiguous pages
1092 	 * should be using vmem_free() in the linux kernel\
1093 	 */
1094 	vmem_free(buf_hash_table.ht_table,
1095 	    (buf_hash_table.ht_mask + 1) * sizeof (void *));
1096 #else
1097 	kmem_free(buf_hash_table.ht_table,
1098 	    (buf_hash_table.ht_mask + 1) * sizeof (void *));
1099 #endif
1100 	for (i = 0; i < BUF_LOCKS; i++)
1101 		mutex_destroy(BUF_HASH_LOCK(i));
1102 	kmem_cache_destroy(hdr_full_cache);
1103 	kmem_cache_destroy(hdr_full_crypt_cache);
1104 	kmem_cache_destroy(hdr_l2only_cache);
1105 	kmem_cache_destroy(buf_cache);
1106 }
1107 
1108 /*
1109  * Constructor callback - called when the cache is empty
1110  * and a new buf is requested.
1111  */
1112 /* ARGSUSED */
1113 static int
1114 hdr_full_cons(void *vbuf, void *unused, int kmflag)
1115 {
1116 	arc_buf_hdr_t *hdr = vbuf;
1117 
1118 	bzero(hdr, HDR_FULL_SIZE);
1119 	hdr->b_l1hdr.b_byteswap = DMU_BSWAP_NUMFUNCS;
1120 	cv_init(&hdr->b_l1hdr.b_cv, NULL, CV_DEFAULT, NULL);
1121 	zfs_refcount_create(&hdr->b_l1hdr.b_refcnt);
1122 	mutex_init(&hdr->b_l1hdr.b_freeze_lock, NULL, MUTEX_DEFAULT, NULL);
1123 	list_link_init(&hdr->b_l1hdr.b_arc_node);
1124 	list_link_init(&hdr->b_l2hdr.b_l2node);
1125 	multilist_link_init(&hdr->b_l1hdr.b_arc_node);
1126 	arc_space_consume(HDR_FULL_SIZE, ARC_SPACE_HDRS);
1127 
1128 	return (0);
1129 }
1130 
1131 /* ARGSUSED */
1132 static int
1133 hdr_full_crypt_cons(void *vbuf, void *unused, int kmflag)
1134 {
1135 	arc_buf_hdr_t *hdr = vbuf;
1136 
1137 	hdr_full_cons(vbuf, unused, kmflag);
1138 	bzero(&hdr->b_crypt_hdr, sizeof (hdr->b_crypt_hdr));
1139 	arc_space_consume(sizeof (hdr->b_crypt_hdr), ARC_SPACE_HDRS);
1140 
1141 	return (0);
1142 }
1143 
1144 /* ARGSUSED */
1145 static int
1146 hdr_l2only_cons(void *vbuf, void *unused, int kmflag)
1147 {
1148 	arc_buf_hdr_t *hdr = vbuf;
1149 
1150 	bzero(hdr, HDR_L2ONLY_SIZE);
1151 	arc_space_consume(HDR_L2ONLY_SIZE, ARC_SPACE_L2HDRS);
1152 
1153 	return (0);
1154 }
1155 
1156 /* ARGSUSED */
1157 static int
1158 buf_cons(void *vbuf, void *unused, int kmflag)
1159 {
1160 	arc_buf_t *buf = vbuf;
1161 
1162 	bzero(buf, sizeof (arc_buf_t));
1163 	mutex_init(&buf->b_evict_lock, NULL, MUTEX_DEFAULT, NULL);
1164 	arc_space_consume(sizeof (arc_buf_t), ARC_SPACE_HDRS);
1165 
1166 	return (0);
1167 }
1168 
1169 /*
1170  * Destructor callback - called when a cached buf is
1171  * no longer required.
1172  */
1173 /* ARGSUSED */
1174 static void
1175 hdr_full_dest(void *vbuf, void *unused)
1176 {
1177 	arc_buf_hdr_t *hdr = vbuf;
1178 
1179 	ASSERT(HDR_EMPTY(hdr));
1180 	cv_destroy(&hdr->b_l1hdr.b_cv);
1181 	zfs_refcount_destroy(&hdr->b_l1hdr.b_refcnt);
1182 	mutex_destroy(&hdr->b_l1hdr.b_freeze_lock);
1183 	ASSERT(!multilist_link_active(&hdr->b_l1hdr.b_arc_node));
1184 	arc_space_return(HDR_FULL_SIZE, ARC_SPACE_HDRS);
1185 }
1186 
1187 /* ARGSUSED */
1188 static void
1189 hdr_full_crypt_dest(void *vbuf, void *unused)
1190 {
1191 	arc_buf_hdr_t *hdr = vbuf;
1192 
1193 	hdr_full_dest(vbuf, unused);
1194 	arc_space_return(sizeof (hdr->b_crypt_hdr), ARC_SPACE_HDRS);
1195 }
1196 
1197 /* ARGSUSED */
1198 static void
1199 hdr_l2only_dest(void *vbuf, void *unused)
1200 {
1201 	arc_buf_hdr_t *hdr __maybe_unused = vbuf;
1202 
1203 	ASSERT(HDR_EMPTY(hdr));
1204 	arc_space_return(HDR_L2ONLY_SIZE, ARC_SPACE_L2HDRS);
1205 }
1206 
1207 /* ARGSUSED */
1208 static void
1209 buf_dest(void *vbuf, void *unused)
1210 {
1211 	arc_buf_t *buf = vbuf;
1212 
1213 	mutex_destroy(&buf->b_evict_lock);
1214 	arc_space_return(sizeof (arc_buf_t), ARC_SPACE_HDRS);
1215 }
1216 
1217 static void
1218 buf_init(void)
1219 {
1220 	uint64_t *ct = NULL;
1221 	uint64_t hsize = 1ULL << 12;
1222 	int i, j;
1223 
1224 	/*
1225 	 * The hash table is big enough to fill all of physical memory
1226 	 * with an average block size of zfs_arc_average_blocksize (default 8K).
1227 	 * By default, the table will take up
1228 	 * totalmem * sizeof(void*) / 8K (1MB per GB with 8-byte pointers).
1229 	 */
1230 	while (hsize * zfs_arc_average_blocksize < arc_all_memory())
1231 		hsize <<= 1;
1232 retry:
1233 	buf_hash_table.ht_mask = hsize - 1;
1234 #if defined(_KERNEL)
1235 	/*
1236 	 * Large allocations which do not require contiguous pages
1237 	 * should be using vmem_alloc() in the linux kernel
1238 	 */
1239 	buf_hash_table.ht_table =
1240 	    vmem_zalloc(hsize * sizeof (void*), KM_SLEEP);
1241 #else
1242 	buf_hash_table.ht_table =
1243 	    kmem_zalloc(hsize * sizeof (void*), KM_NOSLEEP);
1244 #endif
1245 	if (buf_hash_table.ht_table == NULL) {
1246 		ASSERT(hsize > (1ULL << 8));
1247 		hsize >>= 1;
1248 		goto retry;
1249 	}
1250 
1251 	hdr_full_cache = kmem_cache_create("arc_buf_hdr_t_full", HDR_FULL_SIZE,
1252 	    0, hdr_full_cons, hdr_full_dest, NULL, NULL, NULL, 0);
1253 	hdr_full_crypt_cache = kmem_cache_create("arc_buf_hdr_t_full_crypt",
1254 	    HDR_FULL_CRYPT_SIZE, 0, hdr_full_crypt_cons, hdr_full_crypt_dest,
1255 	    NULL, NULL, NULL, 0);
1256 	hdr_l2only_cache = kmem_cache_create("arc_buf_hdr_t_l2only",
1257 	    HDR_L2ONLY_SIZE, 0, hdr_l2only_cons, hdr_l2only_dest, NULL,
1258 	    NULL, NULL, 0);
1259 	buf_cache = kmem_cache_create("arc_buf_t", sizeof (arc_buf_t),
1260 	    0, buf_cons, buf_dest, NULL, NULL, NULL, 0);
1261 
1262 	for (i = 0; i < 256; i++)
1263 		for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--)
1264 			*ct = (*ct >> 1) ^ (-(*ct & 1) & ZFS_CRC64_POLY);
1265 
1266 	for (i = 0; i < BUF_LOCKS; i++)
1267 		mutex_init(BUF_HASH_LOCK(i), NULL, MUTEX_DEFAULT, NULL);
1268 }
1269 
1270 #define	ARC_MINTIME	(hz>>4) /* 62 ms */
1271 
1272 /*
1273  * This is the size that the buf occupies in memory. If the buf is compressed,
1274  * it will correspond to the compressed size. You should use this method of
1275  * getting the buf size unless you explicitly need the logical size.
1276  */
1277 uint64_t
1278 arc_buf_size(arc_buf_t *buf)
1279 {
1280 	return (ARC_BUF_COMPRESSED(buf) ?
1281 	    HDR_GET_PSIZE(buf->b_hdr) : HDR_GET_LSIZE(buf->b_hdr));
1282 }
1283 
1284 uint64_t
1285 arc_buf_lsize(arc_buf_t *buf)
1286 {
1287 	return (HDR_GET_LSIZE(buf->b_hdr));
1288 }
1289 
1290 /*
1291  * This function will return B_TRUE if the buffer is encrypted in memory.
1292  * This buffer can be decrypted by calling arc_untransform().
1293  */
1294 boolean_t
1295 arc_is_encrypted(arc_buf_t *buf)
1296 {
1297 	return (ARC_BUF_ENCRYPTED(buf) != 0);
1298 }
1299 
1300 /*
1301  * Returns B_TRUE if the buffer represents data that has not had its MAC
1302  * verified yet.
1303  */
1304 boolean_t
1305 arc_is_unauthenticated(arc_buf_t *buf)
1306 {
1307 	return (HDR_NOAUTH(buf->b_hdr) != 0);
1308 }
1309 
1310 void
1311 arc_get_raw_params(arc_buf_t *buf, boolean_t *byteorder, uint8_t *salt,
1312     uint8_t *iv, uint8_t *mac)
1313 {
1314 	arc_buf_hdr_t *hdr = buf->b_hdr;
1315 
1316 	ASSERT(HDR_PROTECTED(hdr));
1317 
1318 	bcopy(hdr->b_crypt_hdr.b_salt, salt, ZIO_DATA_SALT_LEN);
1319 	bcopy(hdr->b_crypt_hdr.b_iv, iv, ZIO_DATA_IV_LEN);
1320 	bcopy(hdr->b_crypt_hdr.b_mac, mac, ZIO_DATA_MAC_LEN);
1321 	*byteorder = (hdr->b_l1hdr.b_byteswap == DMU_BSWAP_NUMFUNCS) ?
1322 	    ZFS_HOST_BYTEORDER : !ZFS_HOST_BYTEORDER;
1323 }
1324 
1325 /*
1326  * Indicates how this buffer is compressed in memory. If it is not compressed
1327  * the value will be ZIO_COMPRESS_OFF. It can be made normally readable with
1328  * arc_untransform() as long as it is also unencrypted.
1329  */
1330 enum zio_compress
1331 arc_get_compression(arc_buf_t *buf)
1332 {
1333 	return (ARC_BUF_COMPRESSED(buf) ?
1334 	    HDR_GET_COMPRESS(buf->b_hdr) : ZIO_COMPRESS_OFF);
1335 }
1336 
1337 /*
1338  * Return the compression algorithm used to store this data in the ARC. If ARC
1339  * compression is enabled or this is an encrypted block, this will be the same
1340  * as what's used to store it on-disk. Otherwise, this will be ZIO_COMPRESS_OFF.
1341  */
1342 static inline enum zio_compress
1343 arc_hdr_get_compress(arc_buf_hdr_t *hdr)
1344 {
1345 	return (HDR_COMPRESSION_ENABLED(hdr) ?
1346 	    HDR_GET_COMPRESS(hdr) : ZIO_COMPRESS_OFF);
1347 }
1348 
1349 uint8_t
1350 arc_get_complevel(arc_buf_t *buf)
1351 {
1352 	return (buf->b_hdr->b_complevel);
1353 }
1354 
1355 static inline boolean_t
1356 arc_buf_is_shared(arc_buf_t *buf)
1357 {
1358 	boolean_t shared = (buf->b_data != NULL &&
1359 	    buf->b_hdr->b_l1hdr.b_pabd != NULL &&
1360 	    abd_is_linear(buf->b_hdr->b_l1hdr.b_pabd) &&
1361 	    buf->b_data == abd_to_buf(buf->b_hdr->b_l1hdr.b_pabd));
1362 	IMPLY(shared, HDR_SHARED_DATA(buf->b_hdr));
1363 	IMPLY(shared, ARC_BUF_SHARED(buf));
1364 	IMPLY(shared, ARC_BUF_COMPRESSED(buf) || ARC_BUF_LAST(buf));
1365 
1366 	/*
1367 	 * It would be nice to assert arc_can_share() too, but the "hdr isn't
1368 	 * already being shared" requirement prevents us from doing that.
1369 	 */
1370 
1371 	return (shared);
1372 }
1373 
1374 /*
1375  * Free the checksum associated with this header. If there is no checksum, this
1376  * is a no-op.
1377  */
1378 static inline void
1379 arc_cksum_free(arc_buf_hdr_t *hdr)
1380 {
1381 	ASSERT(HDR_HAS_L1HDR(hdr));
1382 
1383 	mutex_enter(&hdr->b_l1hdr.b_freeze_lock);
1384 	if (hdr->b_l1hdr.b_freeze_cksum != NULL) {
1385 		kmem_free(hdr->b_l1hdr.b_freeze_cksum, sizeof (zio_cksum_t));
1386 		hdr->b_l1hdr.b_freeze_cksum = NULL;
1387 	}
1388 	mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
1389 }
1390 
1391 /*
1392  * Return true iff at least one of the bufs on hdr is not compressed.
1393  * Encrypted buffers count as compressed.
1394  */
1395 static boolean_t
1396 arc_hdr_has_uncompressed_buf(arc_buf_hdr_t *hdr)
1397 {
1398 	ASSERT(hdr->b_l1hdr.b_state == arc_anon || HDR_EMPTY_OR_LOCKED(hdr));
1399 
1400 	for (arc_buf_t *b = hdr->b_l1hdr.b_buf; b != NULL; b = b->b_next) {
1401 		if (!ARC_BUF_COMPRESSED(b)) {
1402 			return (B_TRUE);
1403 		}
1404 	}
1405 	return (B_FALSE);
1406 }
1407 
1408 
1409 /*
1410  * If we've turned on the ZFS_DEBUG_MODIFY flag, verify that the buf's data
1411  * matches the checksum that is stored in the hdr. If there is no checksum,
1412  * or if the buf is compressed, this is a no-op.
1413  */
1414 static void
1415 arc_cksum_verify(arc_buf_t *buf)
1416 {
1417 	arc_buf_hdr_t *hdr = buf->b_hdr;
1418 	zio_cksum_t zc;
1419 
1420 	if (!(zfs_flags & ZFS_DEBUG_MODIFY))
1421 		return;
1422 
1423 	if (ARC_BUF_COMPRESSED(buf))
1424 		return;
1425 
1426 	ASSERT(HDR_HAS_L1HDR(hdr));
1427 
1428 	mutex_enter(&hdr->b_l1hdr.b_freeze_lock);
1429 
1430 	if (hdr->b_l1hdr.b_freeze_cksum == NULL || HDR_IO_ERROR(hdr)) {
1431 		mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
1432 		return;
1433 	}
1434 
1435 	fletcher_2_native(buf->b_data, arc_buf_size(buf), NULL, &zc);
1436 	if (!ZIO_CHECKSUM_EQUAL(*hdr->b_l1hdr.b_freeze_cksum, zc))
1437 		panic("buffer modified while frozen!");
1438 	mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
1439 }
1440 
1441 /*
1442  * This function makes the assumption that data stored in the L2ARC
1443  * will be transformed exactly as it is in the main pool. Because of
1444  * this we can verify the checksum against the reading process's bp.
1445  */
1446 static boolean_t
1447 arc_cksum_is_equal(arc_buf_hdr_t *hdr, zio_t *zio)
1448 {
1449 	ASSERT(!BP_IS_EMBEDDED(zio->io_bp));
1450 	VERIFY3U(BP_GET_PSIZE(zio->io_bp), ==, HDR_GET_PSIZE(hdr));
1451 
1452 	/*
1453 	 * Block pointers always store the checksum for the logical data.
1454 	 * If the block pointer has the gang bit set, then the checksum
1455 	 * it represents is for the reconstituted data and not for an
1456 	 * individual gang member. The zio pipeline, however, must be able to
1457 	 * determine the checksum of each of the gang constituents so it
1458 	 * treats the checksum comparison differently than what we need
1459 	 * for l2arc blocks. This prevents us from using the
1460 	 * zio_checksum_error() interface directly. Instead we must call the
1461 	 * zio_checksum_error_impl() so that we can ensure the checksum is
1462 	 * generated using the correct checksum algorithm and accounts for the
1463 	 * logical I/O size and not just a gang fragment.
1464 	 */
1465 	return (zio_checksum_error_impl(zio->io_spa, zio->io_bp,
1466 	    BP_GET_CHECKSUM(zio->io_bp), zio->io_abd, zio->io_size,
1467 	    zio->io_offset, NULL) == 0);
1468 }
1469 
1470 /*
1471  * Given a buf full of data, if ZFS_DEBUG_MODIFY is enabled this computes a
1472  * checksum and attaches it to the buf's hdr so that we can ensure that the buf
1473  * isn't modified later on. If buf is compressed or there is already a checksum
1474  * on the hdr, this is a no-op (we only checksum uncompressed bufs).
1475  */
1476 static void
1477 arc_cksum_compute(arc_buf_t *buf)
1478 {
1479 	arc_buf_hdr_t *hdr = buf->b_hdr;
1480 
1481 	if (!(zfs_flags & ZFS_DEBUG_MODIFY))
1482 		return;
1483 
1484 	ASSERT(HDR_HAS_L1HDR(hdr));
1485 
1486 	mutex_enter(&buf->b_hdr->b_l1hdr.b_freeze_lock);
1487 	if (hdr->b_l1hdr.b_freeze_cksum != NULL || ARC_BUF_COMPRESSED(buf)) {
1488 		mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
1489 		return;
1490 	}
1491 
1492 	ASSERT(!ARC_BUF_ENCRYPTED(buf));
1493 	ASSERT(!ARC_BUF_COMPRESSED(buf));
1494 	hdr->b_l1hdr.b_freeze_cksum = kmem_alloc(sizeof (zio_cksum_t),
1495 	    KM_SLEEP);
1496 	fletcher_2_native(buf->b_data, arc_buf_size(buf), NULL,
1497 	    hdr->b_l1hdr.b_freeze_cksum);
1498 	mutex_exit(&hdr->b_l1hdr.b_freeze_lock);
1499 	arc_buf_watch(buf);
1500 }
1501 
1502 #ifndef _KERNEL
1503 void
1504 arc_buf_sigsegv(int sig, siginfo_t *si, void *unused)
1505 {
1506 	panic("Got SIGSEGV at address: 0x%lx\n", (long)si->si_addr);
1507 }
1508 #endif
1509 
1510 /* ARGSUSED */
1511 static void
1512 arc_buf_unwatch(arc_buf_t *buf)
1513 {
1514 #ifndef _KERNEL
1515 	if (arc_watch) {
1516 		ASSERT0(mprotect(buf->b_data, arc_buf_size(buf),
1517 		    PROT_READ | PROT_WRITE));
1518 	}
1519 #endif
1520 }
1521 
1522 /* ARGSUSED */
1523 static void
1524 arc_buf_watch(arc_buf_t *buf)
1525 {
1526 #ifndef _KERNEL
1527 	if (arc_watch)
1528 		ASSERT0(mprotect(buf->b_data, arc_buf_size(buf),
1529 		    PROT_READ));
1530 #endif
1531 }
1532 
1533 static arc_buf_contents_t
1534 arc_buf_type(arc_buf_hdr_t *hdr)
1535 {
1536 	arc_buf_contents_t type;
1537 	if (HDR_ISTYPE_METADATA(hdr)) {
1538 		type = ARC_BUFC_METADATA;
1539 	} else {
1540 		type = ARC_BUFC_DATA;
1541 	}
1542 	VERIFY3U(hdr->b_type, ==, type);
1543 	return (type);
1544 }
1545 
1546 boolean_t
1547 arc_is_metadata(arc_buf_t *buf)
1548 {
1549 	return (HDR_ISTYPE_METADATA(buf->b_hdr) != 0);
1550 }
1551 
1552 static uint32_t
1553 arc_bufc_to_flags(arc_buf_contents_t type)
1554 {
1555 	switch (type) {
1556 	case ARC_BUFC_DATA:
1557 		/* metadata field is 0 if buffer contains normal data */
1558 		return (0);
1559 	case ARC_BUFC_METADATA:
1560 		return (ARC_FLAG_BUFC_METADATA);
1561 	default:
1562 		break;
1563 	}
1564 	panic("undefined ARC buffer type!");
1565 	return ((uint32_t)-1);
1566 }
1567 
1568 void
1569 arc_buf_thaw(arc_buf_t *buf)
1570 {
1571 	arc_buf_hdr_t *hdr = buf->b_hdr;
1572 
1573 	ASSERT3P(hdr->b_l1hdr.b_state, ==, arc_anon);
1574 	ASSERT(!HDR_IO_IN_PROGRESS(hdr));
1575 
1576 	arc_cksum_verify(buf);
1577 
1578 	/*
1579 	 * Compressed buffers do not manipulate the b_freeze_cksum.
1580 	 */
1581 	if (ARC_BUF_COMPRESSED(buf))
1582 		return;
1583 
1584 	ASSERT(HDR_HAS_L1HDR(hdr));
1585 	arc_cksum_free(hdr);
1586 	arc_buf_unwatch(buf);
1587 }
1588 
1589 void
1590 arc_buf_freeze(arc_buf_t *buf)
1591 {
1592 	if (!(zfs_flags & ZFS_DEBUG_MODIFY))
1593 		return;
1594 
1595 	if (ARC_BUF_COMPRESSED(buf))
1596 		return;
1597 
1598 	ASSERT(HDR_HAS_L1HDR(buf->b_hdr));
1599 	arc_cksum_compute(buf);
1600 }
1601 
1602 /*
1603  * The arc_buf_hdr_t's b_flags should never be modified directly. Instead,
1604  * the following functions should be used to ensure that the flags are
1605  * updated in a thread-safe way. When manipulating the flags either
1606  * the hash_lock must be held or the hdr must be undiscoverable. This
1607  * ensures that we're not racing with any other threads when updating
1608  * the flags.
1609  */
1610 static inline void
1611 arc_hdr_set_flags(arc_buf_hdr_t *hdr, arc_flags_t flags)
1612 {
1613 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
1614 	hdr->b_flags |= flags;
1615 }
1616 
1617 static inline void
1618 arc_hdr_clear_flags(arc_buf_hdr_t *hdr, arc_flags_t flags)
1619 {
1620 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
1621 	hdr->b_flags &= ~flags;
1622 }
1623 
1624 /*
1625  * Setting the compression bits in the arc_buf_hdr_t's b_flags is
1626  * done in a special way since we have to clear and set bits
1627  * at the same time. Consumers that wish to set the compression bits
1628  * must use this function to ensure that the flags are updated in
1629  * thread-safe manner.
1630  */
1631 static void
1632 arc_hdr_set_compress(arc_buf_hdr_t *hdr, enum zio_compress cmp)
1633 {
1634 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
1635 
1636 	/*
1637 	 * Holes and embedded blocks will always have a psize = 0 so
1638 	 * we ignore the compression of the blkptr and set the
1639 	 * want to uncompress them. Mark them as uncompressed.
1640 	 */
1641 	if (!zfs_compressed_arc_enabled || HDR_GET_PSIZE(hdr) == 0) {
1642 		arc_hdr_clear_flags(hdr, ARC_FLAG_COMPRESSED_ARC);
1643 		ASSERT(!HDR_COMPRESSION_ENABLED(hdr));
1644 	} else {
1645 		arc_hdr_set_flags(hdr, ARC_FLAG_COMPRESSED_ARC);
1646 		ASSERT(HDR_COMPRESSION_ENABLED(hdr));
1647 	}
1648 
1649 	HDR_SET_COMPRESS(hdr, cmp);
1650 	ASSERT3U(HDR_GET_COMPRESS(hdr), ==, cmp);
1651 }
1652 
1653 /*
1654  * Looks for another buf on the same hdr which has the data decompressed, copies
1655  * from it, and returns true. If no such buf exists, returns false.
1656  */
1657 static boolean_t
1658 arc_buf_try_copy_decompressed_data(arc_buf_t *buf)
1659 {
1660 	arc_buf_hdr_t *hdr = buf->b_hdr;
1661 	boolean_t copied = B_FALSE;
1662 
1663 	ASSERT(HDR_HAS_L1HDR(hdr));
1664 	ASSERT3P(buf->b_data, !=, NULL);
1665 	ASSERT(!ARC_BUF_COMPRESSED(buf));
1666 
1667 	for (arc_buf_t *from = hdr->b_l1hdr.b_buf; from != NULL;
1668 	    from = from->b_next) {
1669 		/* can't use our own data buffer */
1670 		if (from == buf) {
1671 			continue;
1672 		}
1673 
1674 		if (!ARC_BUF_COMPRESSED(from)) {
1675 			bcopy(from->b_data, buf->b_data, arc_buf_size(buf));
1676 			copied = B_TRUE;
1677 			break;
1678 		}
1679 	}
1680 
1681 	/*
1682 	 * There were no decompressed bufs, so there should not be a
1683 	 * checksum on the hdr either.
1684 	 */
1685 	if (zfs_flags & ZFS_DEBUG_MODIFY)
1686 		EQUIV(!copied, hdr->b_l1hdr.b_freeze_cksum == NULL);
1687 
1688 	return (copied);
1689 }
1690 
1691 /*
1692  * Allocates an ARC buf header that's in an evicted & L2-cached state.
1693  * This is used during l2arc reconstruction to make empty ARC buffers
1694  * which circumvent the regular disk->arc->l2arc path and instead come
1695  * into being in the reverse order, i.e. l2arc->arc.
1696  */
1697 static arc_buf_hdr_t *
1698 arc_buf_alloc_l2only(size_t size, arc_buf_contents_t type, l2arc_dev_t *dev,
1699     dva_t dva, uint64_t daddr, int32_t psize, uint64_t birth,
1700     enum zio_compress compress, uint8_t complevel, boolean_t protected,
1701     boolean_t prefetch, arc_state_type_t arcs_state)
1702 {
1703 	arc_buf_hdr_t	*hdr;
1704 
1705 	ASSERT(size != 0);
1706 	hdr = kmem_cache_alloc(hdr_l2only_cache, KM_SLEEP);
1707 	hdr->b_birth = birth;
1708 	hdr->b_type = type;
1709 	hdr->b_flags = 0;
1710 	arc_hdr_set_flags(hdr, arc_bufc_to_flags(type) | ARC_FLAG_HAS_L2HDR);
1711 	HDR_SET_LSIZE(hdr, size);
1712 	HDR_SET_PSIZE(hdr, psize);
1713 	arc_hdr_set_compress(hdr, compress);
1714 	hdr->b_complevel = complevel;
1715 	if (protected)
1716 		arc_hdr_set_flags(hdr, ARC_FLAG_PROTECTED);
1717 	if (prefetch)
1718 		arc_hdr_set_flags(hdr, ARC_FLAG_PREFETCH);
1719 	hdr->b_spa = spa_load_guid(dev->l2ad_vdev->vdev_spa);
1720 
1721 	hdr->b_dva = dva;
1722 
1723 	hdr->b_l2hdr.b_dev = dev;
1724 	hdr->b_l2hdr.b_daddr = daddr;
1725 	hdr->b_l2hdr.b_arcs_state = arcs_state;
1726 
1727 	return (hdr);
1728 }
1729 
1730 /*
1731  * Return the size of the block, b_pabd, that is stored in the arc_buf_hdr_t.
1732  */
1733 static uint64_t
1734 arc_hdr_size(arc_buf_hdr_t *hdr)
1735 {
1736 	uint64_t size;
1737 
1738 	if (arc_hdr_get_compress(hdr) != ZIO_COMPRESS_OFF &&
1739 	    HDR_GET_PSIZE(hdr) > 0) {
1740 		size = HDR_GET_PSIZE(hdr);
1741 	} else {
1742 		ASSERT3U(HDR_GET_LSIZE(hdr), !=, 0);
1743 		size = HDR_GET_LSIZE(hdr);
1744 	}
1745 	return (size);
1746 }
1747 
1748 static int
1749 arc_hdr_authenticate(arc_buf_hdr_t *hdr, spa_t *spa, uint64_t dsobj)
1750 {
1751 	int ret;
1752 	uint64_t csize;
1753 	uint64_t lsize = HDR_GET_LSIZE(hdr);
1754 	uint64_t psize = HDR_GET_PSIZE(hdr);
1755 	void *tmpbuf = NULL;
1756 	abd_t *abd = hdr->b_l1hdr.b_pabd;
1757 
1758 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
1759 	ASSERT(HDR_AUTHENTICATED(hdr));
1760 	ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
1761 
1762 	/*
1763 	 * The MAC is calculated on the compressed data that is stored on disk.
1764 	 * However, if compressed arc is disabled we will only have the
1765 	 * decompressed data available to us now. Compress it into a temporary
1766 	 * abd so we can verify the MAC. The performance overhead of this will
1767 	 * be relatively low, since most objects in an encrypted objset will
1768 	 * be encrypted (instead of authenticated) anyway.
1769 	 */
1770 	if (HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF &&
1771 	    !HDR_COMPRESSION_ENABLED(hdr)) {
1772 		tmpbuf = zio_buf_alloc(lsize);
1773 		abd = abd_get_from_buf(tmpbuf, lsize);
1774 		abd_take_ownership_of_buf(abd, B_TRUE);
1775 		csize = zio_compress_data(HDR_GET_COMPRESS(hdr),
1776 		    hdr->b_l1hdr.b_pabd, tmpbuf, lsize, hdr->b_complevel);
1777 		ASSERT3U(csize, <=, psize);
1778 		abd_zero_off(abd, csize, psize - csize);
1779 	}
1780 
1781 	/*
1782 	 * Authentication is best effort. We authenticate whenever the key is
1783 	 * available. If we succeed we clear ARC_FLAG_NOAUTH.
1784 	 */
1785 	if (hdr->b_crypt_hdr.b_ot == DMU_OT_OBJSET) {
1786 		ASSERT3U(HDR_GET_COMPRESS(hdr), ==, ZIO_COMPRESS_OFF);
1787 		ASSERT3U(lsize, ==, psize);
1788 		ret = spa_do_crypt_objset_mac_abd(B_FALSE, spa, dsobj, abd,
1789 		    psize, hdr->b_l1hdr.b_byteswap != DMU_BSWAP_NUMFUNCS);
1790 	} else {
1791 		ret = spa_do_crypt_mac_abd(B_FALSE, spa, dsobj, abd, psize,
1792 		    hdr->b_crypt_hdr.b_mac);
1793 	}
1794 
1795 	if (ret == 0)
1796 		arc_hdr_clear_flags(hdr, ARC_FLAG_NOAUTH);
1797 	else if (ret != ENOENT)
1798 		goto error;
1799 
1800 	if (tmpbuf != NULL)
1801 		abd_free(abd);
1802 
1803 	return (0);
1804 
1805 error:
1806 	if (tmpbuf != NULL)
1807 		abd_free(abd);
1808 
1809 	return (ret);
1810 }
1811 
1812 /*
1813  * This function will take a header that only has raw encrypted data in
1814  * b_crypt_hdr.b_rabd and decrypt it into a new buffer which is stored in
1815  * b_l1hdr.b_pabd. If designated in the header flags, this function will
1816  * also decompress the data.
1817  */
1818 static int
1819 arc_hdr_decrypt(arc_buf_hdr_t *hdr, spa_t *spa, const zbookmark_phys_t *zb)
1820 {
1821 	int ret;
1822 	abd_t *cabd = NULL;
1823 	void *tmp = NULL;
1824 	boolean_t no_crypt = B_FALSE;
1825 	boolean_t bswap = (hdr->b_l1hdr.b_byteswap != DMU_BSWAP_NUMFUNCS);
1826 
1827 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
1828 	ASSERT(HDR_ENCRYPTED(hdr));
1829 
1830 	arc_hdr_alloc_abd(hdr, ARC_HDR_DO_ADAPT);
1831 
1832 	ret = spa_do_crypt_abd(B_FALSE, spa, zb, hdr->b_crypt_hdr.b_ot,
1833 	    B_FALSE, bswap, hdr->b_crypt_hdr.b_salt, hdr->b_crypt_hdr.b_iv,
1834 	    hdr->b_crypt_hdr.b_mac, HDR_GET_PSIZE(hdr), hdr->b_l1hdr.b_pabd,
1835 	    hdr->b_crypt_hdr.b_rabd, &no_crypt);
1836 	if (ret != 0)
1837 		goto error;
1838 
1839 	if (no_crypt) {
1840 		abd_copy(hdr->b_l1hdr.b_pabd, hdr->b_crypt_hdr.b_rabd,
1841 		    HDR_GET_PSIZE(hdr));
1842 	}
1843 
1844 	/*
1845 	 * If this header has disabled arc compression but the b_pabd is
1846 	 * compressed after decrypting it, we need to decompress the newly
1847 	 * decrypted data.
1848 	 */
1849 	if (HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF &&
1850 	    !HDR_COMPRESSION_ENABLED(hdr)) {
1851 		/*
1852 		 * We want to make sure that we are correctly honoring the
1853 		 * zfs_abd_scatter_enabled setting, so we allocate an abd here
1854 		 * and then loan a buffer from it, rather than allocating a
1855 		 * linear buffer and wrapping it in an abd later.
1856 		 */
1857 		cabd = arc_get_data_abd(hdr, arc_hdr_size(hdr), hdr, B_TRUE);
1858 		tmp = abd_borrow_buf(cabd, arc_hdr_size(hdr));
1859 
1860 		ret = zio_decompress_data(HDR_GET_COMPRESS(hdr),
1861 		    hdr->b_l1hdr.b_pabd, tmp, HDR_GET_PSIZE(hdr),
1862 		    HDR_GET_LSIZE(hdr), &hdr->b_complevel);
1863 		if (ret != 0) {
1864 			abd_return_buf(cabd, tmp, arc_hdr_size(hdr));
1865 			goto error;
1866 		}
1867 
1868 		abd_return_buf_copy(cabd, tmp, arc_hdr_size(hdr));
1869 		arc_free_data_abd(hdr, hdr->b_l1hdr.b_pabd,
1870 		    arc_hdr_size(hdr), hdr);
1871 		hdr->b_l1hdr.b_pabd = cabd;
1872 	}
1873 
1874 	return (0);
1875 
1876 error:
1877 	arc_hdr_free_abd(hdr, B_FALSE);
1878 	if (cabd != NULL)
1879 		arc_free_data_buf(hdr, cabd, arc_hdr_size(hdr), hdr);
1880 
1881 	return (ret);
1882 }
1883 
1884 /*
1885  * This function is called during arc_buf_fill() to prepare the header's
1886  * abd plaintext pointer for use. This involves authenticated protected
1887  * data and decrypting encrypted data into the plaintext abd.
1888  */
1889 static int
1890 arc_fill_hdr_crypt(arc_buf_hdr_t *hdr, kmutex_t *hash_lock, spa_t *spa,
1891     const zbookmark_phys_t *zb, boolean_t noauth)
1892 {
1893 	int ret;
1894 
1895 	ASSERT(HDR_PROTECTED(hdr));
1896 
1897 	if (hash_lock != NULL)
1898 		mutex_enter(hash_lock);
1899 
1900 	if (HDR_NOAUTH(hdr) && !noauth) {
1901 		/*
1902 		 * The caller requested authenticated data but our data has
1903 		 * not been authenticated yet. Verify the MAC now if we can.
1904 		 */
1905 		ret = arc_hdr_authenticate(hdr, spa, zb->zb_objset);
1906 		if (ret != 0)
1907 			goto error;
1908 	} else if (HDR_HAS_RABD(hdr) && hdr->b_l1hdr.b_pabd == NULL) {
1909 		/*
1910 		 * If we only have the encrypted version of the data, but the
1911 		 * unencrypted version was requested we take this opportunity
1912 		 * to store the decrypted version in the header for future use.
1913 		 */
1914 		ret = arc_hdr_decrypt(hdr, spa, zb);
1915 		if (ret != 0)
1916 			goto error;
1917 	}
1918 
1919 	ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
1920 
1921 	if (hash_lock != NULL)
1922 		mutex_exit(hash_lock);
1923 
1924 	return (0);
1925 
1926 error:
1927 	if (hash_lock != NULL)
1928 		mutex_exit(hash_lock);
1929 
1930 	return (ret);
1931 }
1932 
1933 /*
1934  * This function is used by the dbuf code to decrypt bonus buffers in place.
1935  * The dbuf code itself doesn't have any locking for decrypting a shared dnode
1936  * block, so we use the hash lock here to protect against concurrent calls to
1937  * arc_buf_fill().
1938  */
1939 static void
1940 arc_buf_untransform_in_place(arc_buf_t *buf, kmutex_t *hash_lock)
1941 {
1942 	arc_buf_hdr_t *hdr = buf->b_hdr;
1943 
1944 	ASSERT(HDR_ENCRYPTED(hdr));
1945 	ASSERT3U(hdr->b_crypt_hdr.b_ot, ==, DMU_OT_DNODE);
1946 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
1947 	ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
1948 
1949 	zio_crypt_copy_dnode_bonus(hdr->b_l1hdr.b_pabd, buf->b_data,
1950 	    arc_buf_size(buf));
1951 	buf->b_flags &= ~ARC_BUF_FLAG_ENCRYPTED;
1952 	buf->b_flags &= ~ARC_BUF_FLAG_COMPRESSED;
1953 	hdr->b_crypt_hdr.b_ebufcnt -= 1;
1954 }
1955 
1956 /*
1957  * Given a buf that has a data buffer attached to it, this function will
1958  * efficiently fill the buf with data of the specified compression setting from
1959  * the hdr and update the hdr's b_freeze_cksum if necessary. If the buf and hdr
1960  * are already sharing a data buf, no copy is performed.
1961  *
1962  * If the buf is marked as compressed but uncompressed data was requested, this
1963  * will allocate a new data buffer for the buf, remove that flag, and fill the
1964  * buf with uncompressed data. You can't request a compressed buf on a hdr with
1965  * uncompressed data, and (since we haven't added support for it yet) if you
1966  * want compressed data your buf must already be marked as compressed and have
1967  * the correct-sized data buffer.
1968  */
1969 static int
1970 arc_buf_fill(arc_buf_t *buf, spa_t *spa, const zbookmark_phys_t *zb,
1971     arc_fill_flags_t flags)
1972 {
1973 	int error = 0;
1974 	arc_buf_hdr_t *hdr = buf->b_hdr;
1975 	boolean_t hdr_compressed =
1976 	    (arc_hdr_get_compress(hdr) != ZIO_COMPRESS_OFF);
1977 	boolean_t compressed = (flags & ARC_FILL_COMPRESSED) != 0;
1978 	boolean_t encrypted = (flags & ARC_FILL_ENCRYPTED) != 0;
1979 	dmu_object_byteswap_t bswap = hdr->b_l1hdr.b_byteswap;
1980 	kmutex_t *hash_lock = (flags & ARC_FILL_LOCKED) ? NULL : HDR_LOCK(hdr);
1981 
1982 	ASSERT3P(buf->b_data, !=, NULL);
1983 	IMPLY(compressed, hdr_compressed || ARC_BUF_ENCRYPTED(buf));
1984 	IMPLY(compressed, ARC_BUF_COMPRESSED(buf));
1985 	IMPLY(encrypted, HDR_ENCRYPTED(hdr));
1986 	IMPLY(encrypted, ARC_BUF_ENCRYPTED(buf));
1987 	IMPLY(encrypted, ARC_BUF_COMPRESSED(buf));
1988 	IMPLY(encrypted, !ARC_BUF_SHARED(buf));
1989 
1990 	/*
1991 	 * If the caller wanted encrypted data we just need to copy it from
1992 	 * b_rabd and potentially byteswap it. We won't be able to do any
1993 	 * further transforms on it.
1994 	 */
1995 	if (encrypted) {
1996 		ASSERT(HDR_HAS_RABD(hdr));
1997 		abd_copy_to_buf(buf->b_data, hdr->b_crypt_hdr.b_rabd,
1998 		    HDR_GET_PSIZE(hdr));
1999 		goto byteswap;
2000 	}
2001 
2002 	/*
2003 	 * Adjust encrypted and authenticated headers to accommodate
2004 	 * the request if needed. Dnode blocks (ARC_FILL_IN_PLACE) are
2005 	 * allowed to fail decryption due to keys not being loaded
2006 	 * without being marked as an IO error.
2007 	 */
2008 	if (HDR_PROTECTED(hdr)) {
2009 		error = arc_fill_hdr_crypt(hdr, hash_lock, spa,
2010 		    zb, !!(flags & ARC_FILL_NOAUTH));
2011 		if (error == EACCES && (flags & ARC_FILL_IN_PLACE) != 0) {
2012 			return (error);
2013 		} else if (error != 0) {
2014 			if (hash_lock != NULL)
2015 				mutex_enter(hash_lock);
2016 			arc_hdr_set_flags(hdr, ARC_FLAG_IO_ERROR);
2017 			if (hash_lock != NULL)
2018 				mutex_exit(hash_lock);
2019 			return (error);
2020 		}
2021 	}
2022 
2023 	/*
2024 	 * There is a special case here for dnode blocks which are
2025 	 * decrypting their bonus buffers. These blocks may request to
2026 	 * be decrypted in-place. This is necessary because there may
2027 	 * be many dnodes pointing into this buffer and there is
2028 	 * currently no method to synchronize replacing the backing
2029 	 * b_data buffer and updating all of the pointers. Here we use
2030 	 * the hash lock to ensure there are no races. If the need
2031 	 * arises for other types to be decrypted in-place, they must
2032 	 * add handling here as well.
2033 	 */
2034 	if ((flags & ARC_FILL_IN_PLACE) != 0) {
2035 		ASSERT(!hdr_compressed);
2036 		ASSERT(!compressed);
2037 		ASSERT(!encrypted);
2038 
2039 		if (HDR_ENCRYPTED(hdr) && ARC_BUF_ENCRYPTED(buf)) {
2040 			ASSERT3U(hdr->b_crypt_hdr.b_ot, ==, DMU_OT_DNODE);
2041 
2042 			if (hash_lock != NULL)
2043 				mutex_enter(hash_lock);
2044 			arc_buf_untransform_in_place(buf, hash_lock);
2045 			if (hash_lock != NULL)
2046 				mutex_exit(hash_lock);
2047 
2048 			/* Compute the hdr's checksum if necessary */
2049 			arc_cksum_compute(buf);
2050 		}
2051 
2052 		return (0);
2053 	}
2054 
2055 	if (hdr_compressed == compressed) {
2056 		if (!arc_buf_is_shared(buf)) {
2057 			abd_copy_to_buf(buf->b_data, hdr->b_l1hdr.b_pabd,
2058 			    arc_buf_size(buf));
2059 		}
2060 	} else {
2061 		ASSERT(hdr_compressed);
2062 		ASSERT(!compressed);
2063 		ASSERT3U(HDR_GET_LSIZE(hdr), !=, HDR_GET_PSIZE(hdr));
2064 
2065 		/*
2066 		 * If the buf is sharing its data with the hdr, unlink it and
2067 		 * allocate a new data buffer for the buf.
2068 		 */
2069 		if (arc_buf_is_shared(buf)) {
2070 			ASSERT(ARC_BUF_COMPRESSED(buf));
2071 
2072 			/* We need to give the buf its own b_data */
2073 			buf->b_flags &= ~ARC_BUF_FLAG_SHARED;
2074 			buf->b_data =
2075 			    arc_get_data_buf(hdr, HDR_GET_LSIZE(hdr), buf);
2076 			arc_hdr_clear_flags(hdr, ARC_FLAG_SHARED_DATA);
2077 
2078 			/* Previously overhead was 0; just add new overhead */
2079 			ARCSTAT_INCR(arcstat_overhead_size, HDR_GET_LSIZE(hdr));
2080 		} else if (ARC_BUF_COMPRESSED(buf)) {
2081 			/* We need to reallocate the buf's b_data */
2082 			arc_free_data_buf(hdr, buf->b_data, HDR_GET_PSIZE(hdr),
2083 			    buf);
2084 			buf->b_data =
2085 			    arc_get_data_buf(hdr, HDR_GET_LSIZE(hdr), buf);
2086 
2087 			/* We increased the size of b_data; update overhead */
2088 			ARCSTAT_INCR(arcstat_overhead_size,
2089 			    HDR_GET_LSIZE(hdr) - HDR_GET_PSIZE(hdr));
2090 		}
2091 
2092 		/*
2093 		 * Regardless of the buf's previous compression settings, it
2094 		 * should not be compressed at the end of this function.
2095 		 */
2096 		buf->b_flags &= ~ARC_BUF_FLAG_COMPRESSED;
2097 
2098 		/*
2099 		 * Try copying the data from another buf which already has a
2100 		 * decompressed version. If that's not possible, it's time to
2101 		 * bite the bullet and decompress the data from the hdr.
2102 		 */
2103 		if (arc_buf_try_copy_decompressed_data(buf)) {
2104 			/* Skip byteswapping and checksumming (already done) */
2105 			return (0);
2106 		} else {
2107 			error = zio_decompress_data(HDR_GET_COMPRESS(hdr),
2108 			    hdr->b_l1hdr.b_pabd, buf->b_data,
2109 			    HDR_GET_PSIZE(hdr), HDR_GET_LSIZE(hdr),
2110 			    &hdr->b_complevel);
2111 
2112 			/*
2113 			 * Absent hardware errors or software bugs, this should
2114 			 * be impossible, but log it anyway so we can debug it.
2115 			 */
2116 			if (error != 0) {
2117 				zfs_dbgmsg(
2118 				    "hdr %px, compress %d, psize %d, lsize %d",
2119 				    hdr, arc_hdr_get_compress(hdr),
2120 				    HDR_GET_PSIZE(hdr), HDR_GET_LSIZE(hdr));
2121 				if (hash_lock != NULL)
2122 					mutex_enter(hash_lock);
2123 				arc_hdr_set_flags(hdr, ARC_FLAG_IO_ERROR);
2124 				if (hash_lock != NULL)
2125 					mutex_exit(hash_lock);
2126 				return (SET_ERROR(EIO));
2127 			}
2128 		}
2129 	}
2130 
2131 byteswap:
2132 	/* Byteswap the buf's data if necessary */
2133 	if (bswap != DMU_BSWAP_NUMFUNCS) {
2134 		ASSERT(!HDR_SHARED_DATA(hdr));
2135 		ASSERT3U(bswap, <, DMU_BSWAP_NUMFUNCS);
2136 		dmu_ot_byteswap[bswap].ob_func(buf->b_data, HDR_GET_LSIZE(hdr));
2137 	}
2138 
2139 	/* Compute the hdr's checksum if necessary */
2140 	arc_cksum_compute(buf);
2141 
2142 	return (0);
2143 }
2144 
2145 /*
2146  * If this function is being called to decrypt an encrypted buffer or verify an
2147  * authenticated one, the key must be loaded and a mapping must be made
2148  * available in the keystore via spa_keystore_create_mapping() or one of its
2149  * callers.
2150  */
2151 int
2152 arc_untransform(arc_buf_t *buf, spa_t *spa, const zbookmark_phys_t *zb,
2153     boolean_t in_place)
2154 {
2155 	int ret;
2156 	arc_fill_flags_t flags = 0;
2157 
2158 	if (in_place)
2159 		flags |= ARC_FILL_IN_PLACE;
2160 
2161 	ret = arc_buf_fill(buf, spa, zb, flags);
2162 	if (ret == ECKSUM) {
2163 		/*
2164 		 * Convert authentication and decryption errors to EIO
2165 		 * (and generate an ereport) before leaving the ARC.
2166 		 */
2167 		ret = SET_ERROR(EIO);
2168 		spa_log_error(spa, zb);
2169 		(void) zfs_ereport_post(FM_EREPORT_ZFS_AUTHENTICATION,
2170 		    spa, NULL, zb, NULL, 0);
2171 	}
2172 
2173 	return (ret);
2174 }
2175 
2176 /*
2177  * Increment the amount of evictable space in the arc_state_t's refcount.
2178  * We account for the space used by the hdr and the arc buf individually
2179  * so that we can add and remove them from the refcount individually.
2180  */
2181 static void
2182 arc_evictable_space_increment(arc_buf_hdr_t *hdr, arc_state_t *state)
2183 {
2184 	arc_buf_contents_t type = arc_buf_type(hdr);
2185 
2186 	ASSERT(HDR_HAS_L1HDR(hdr));
2187 
2188 	if (GHOST_STATE(state)) {
2189 		ASSERT0(hdr->b_l1hdr.b_bufcnt);
2190 		ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
2191 		ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
2192 		ASSERT(!HDR_HAS_RABD(hdr));
2193 		(void) zfs_refcount_add_many(&state->arcs_esize[type],
2194 		    HDR_GET_LSIZE(hdr), hdr);
2195 		return;
2196 	}
2197 
2198 	if (hdr->b_l1hdr.b_pabd != NULL) {
2199 		(void) zfs_refcount_add_many(&state->arcs_esize[type],
2200 		    arc_hdr_size(hdr), hdr);
2201 	}
2202 	if (HDR_HAS_RABD(hdr)) {
2203 		(void) zfs_refcount_add_many(&state->arcs_esize[type],
2204 		    HDR_GET_PSIZE(hdr), hdr);
2205 	}
2206 
2207 	for (arc_buf_t *buf = hdr->b_l1hdr.b_buf; buf != NULL;
2208 	    buf = buf->b_next) {
2209 		if (arc_buf_is_shared(buf))
2210 			continue;
2211 		(void) zfs_refcount_add_many(&state->arcs_esize[type],
2212 		    arc_buf_size(buf), buf);
2213 	}
2214 }
2215 
2216 /*
2217  * Decrement the amount of evictable space in the arc_state_t's refcount.
2218  * We account for the space used by the hdr and the arc buf individually
2219  * so that we can add and remove them from the refcount individually.
2220  */
2221 static void
2222 arc_evictable_space_decrement(arc_buf_hdr_t *hdr, arc_state_t *state)
2223 {
2224 	arc_buf_contents_t type = arc_buf_type(hdr);
2225 
2226 	ASSERT(HDR_HAS_L1HDR(hdr));
2227 
2228 	if (GHOST_STATE(state)) {
2229 		ASSERT0(hdr->b_l1hdr.b_bufcnt);
2230 		ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
2231 		ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
2232 		ASSERT(!HDR_HAS_RABD(hdr));
2233 		(void) zfs_refcount_remove_many(&state->arcs_esize[type],
2234 		    HDR_GET_LSIZE(hdr), hdr);
2235 		return;
2236 	}
2237 
2238 	if (hdr->b_l1hdr.b_pabd != NULL) {
2239 		(void) zfs_refcount_remove_many(&state->arcs_esize[type],
2240 		    arc_hdr_size(hdr), hdr);
2241 	}
2242 	if (HDR_HAS_RABD(hdr)) {
2243 		(void) zfs_refcount_remove_many(&state->arcs_esize[type],
2244 		    HDR_GET_PSIZE(hdr), hdr);
2245 	}
2246 
2247 	for (arc_buf_t *buf = hdr->b_l1hdr.b_buf; buf != NULL;
2248 	    buf = buf->b_next) {
2249 		if (arc_buf_is_shared(buf))
2250 			continue;
2251 		(void) zfs_refcount_remove_many(&state->arcs_esize[type],
2252 		    arc_buf_size(buf), buf);
2253 	}
2254 }
2255 
2256 /*
2257  * Add a reference to this hdr indicating that someone is actively
2258  * referencing that memory. When the refcount transitions from 0 to 1,
2259  * we remove it from the respective arc_state_t list to indicate that
2260  * it is not evictable.
2261  */
2262 static void
2263 add_reference(arc_buf_hdr_t *hdr, void *tag)
2264 {
2265 	arc_state_t *state;
2266 
2267 	ASSERT(HDR_HAS_L1HDR(hdr));
2268 	if (!HDR_EMPTY(hdr) && !MUTEX_HELD(HDR_LOCK(hdr))) {
2269 		ASSERT(hdr->b_l1hdr.b_state == arc_anon);
2270 		ASSERT(zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
2271 		ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
2272 	}
2273 
2274 	state = hdr->b_l1hdr.b_state;
2275 
2276 	if ((zfs_refcount_add(&hdr->b_l1hdr.b_refcnt, tag) == 1) &&
2277 	    (state != arc_anon)) {
2278 		/* We don't use the L2-only state list. */
2279 		if (state != arc_l2c_only) {
2280 			multilist_remove(&state->arcs_list[arc_buf_type(hdr)],
2281 			    hdr);
2282 			arc_evictable_space_decrement(hdr, state);
2283 		}
2284 		/* remove the prefetch flag if we get a reference */
2285 		if (HDR_HAS_L2HDR(hdr))
2286 			l2arc_hdr_arcstats_decrement_state(hdr);
2287 		arc_hdr_clear_flags(hdr, ARC_FLAG_PREFETCH);
2288 		if (HDR_HAS_L2HDR(hdr))
2289 			l2arc_hdr_arcstats_increment_state(hdr);
2290 	}
2291 }
2292 
2293 /*
2294  * Remove a reference from this hdr. When the reference transitions from
2295  * 1 to 0 and we're not anonymous, then we add this hdr to the arc_state_t's
2296  * list making it eligible for eviction.
2297  */
2298 static int
2299 remove_reference(arc_buf_hdr_t *hdr, kmutex_t *hash_lock, void *tag)
2300 {
2301 	int cnt;
2302 	arc_state_t *state = hdr->b_l1hdr.b_state;
2303 
2304 	ASSERT(HDR_HAS_L1HDR(hdr));
2305 	ASSERT(state == arc_anon || MUTEX_HELD(hash_lock));
2306 	ASSERT(!GHOST_STATE(state));
2307 
2308 	/*
2309 	 * arc_l2c_only counts as a ghost state so we don't need to explicitly
2310 	 * check to prevent usage of the arc_l2c_only list.
2311 	 */
2312 	if (((cnt = zfs_refcount_remove(&hdr->b_l1hdr.b_refcnt, tag)) == 0) &&
2313 	    (state != arc_anon)) {
2314 		multilist_insert(&state->arcs_list[arc_buf_type(hdr)], hdr);
2315 		ASSERT3U(hdr->b_l1hdr.b_bufcnt, >, 0);
2316 		arc_evictable_space_increment(hdr, state);
2317 	}
2318 	return (cnt);
2319 }
2320 
2321 /*
2322  * Returns detailed information about a specific arc buffer.  When the
2323  * state_index argument is set the function will calculate the arc header
2324  * list position for its arc state.  Since this requires a linear traversal
2325  * callers are strongly encourage not to do this.  However, it can be helpful
2326  * for targeted analysis so the functionality is provided.
2327  */
2328 void
2329 arc_buf_info(arc_buf_t *ab, arc_buf_info_t *abi, int state_index)
2330 {
2331 	arc_buf_hdr_t *hdr = ab->b_hdr;
2332 	l1arc_buf_hdr_t *l1hdr = NULL;
2333 	l2arc_buf_hdr_t *l2hdr = NULL;
2334 	arc_state_t *state = NULL;
2335 
2336 	memset(abi, 0, sizeof (arc_buf_info_t));
2337 
2338 	if (hdr == NULL)
2339 		return;
2340 
2341 	abi->abi_flags = hdr->b_flags;
2342 
2343 	if (HDR_HAS_L1HDR(hdr)) {
2344 		l1hdr = &hdr->b_l1hdr;
2345 		state = l1hdr->b_state;
2346 	}
2347 	if (HDR_HAS_L2HDR(hdr))
2348 		l2hdr = &hdr->b_l2hdr;
2349 
2350 	if (l1hdr) {
2351 		abi->abi_bufcnt = l1hdr->b_bufcnt;
2352 		abi->abi_access = l1hdr->b_arc_access;
2353 		abi->abi_mru_hits = l1hdr->b_mru_hits;
2354 		abi->abi_mru_ghost_hits = l1hdr->b_mru_ghost_hits;
2355 		abi->abi_mfu_hits = l1hdr->b_mfu_hits;
2356 		abi->abi_mfu_ghost_hits = l1hdr->b_mfu_ghost_hits;
2357 		abi->abi_holds = zfs_refcount_count(&l1hdr->b_refcnt);
2358 	}
2359 
2360 	if (l2hdr) {
2361 		abi->abi_l2arc_dattr = l2hdr->b_daddr;
2362 		abi->abi_l2arc_hits = l2hdr->b_hits;
2363 	}
2364 
2365 	abi->abi_state_type = state ? state->arcs_state : ARC_STATE_ANON;
2366 	abi->abi_state_contents = arc_buf_type(hdr);
2367 	abi->abi_size = arc_hdr_size(hdr);
2368 }
2369 
2370 /*
2371  * Move the supplied buffer to the indicated state. The hash lock
2372  * for the buffer must be held by the caller.
2373  */
2374 static void
2375 arc_change_state(arc_state_t *new_state, arc_buf_hdr_t *hdr,
2376     kmutex_t *hash_lock)
2377 {
2378 	arc_state_t *old_state;
2379 	int64_t refcnt;
2380 	uint32_t bufcnt;
2381 	boolean_t update_old, update_new;
2382 	arc_buf_contents_t buftype = arc_buf_type(hdr);
2383 
2384 	/*
2385 	 * We almost always have an L1 hdr here, since we call arc_hdr_realloc()
2386 	 * in arc_read() when bringing a buffer out of the L2ARC.  However, the
2387 	 * L1 hdr doesn't always exist when we change state to arc_anon before
2388 	 * destroying a header, in which case reallocating to add the L1 hdr is
2389 	 * pointless.
2390 	 */
2391 	if (HDR_HAS_L1HDR(hdr)) {
2392 		old_state = hdr->b_l1hdr.b_state;
2393 		refcnt = zfs_refcount_count(&hdr->b_l1hdr.b_refcnt);
2394 		bufcnt = hdr->b_l1hdr.b_bufcnt;
2395 		update_old = (bufcnt > 0 || hdr->b_l1hdr.b_pabd != NULL ||
2396 		    HDR_HAS_RABD(hdr));
2397 	} else {
2398 		old_state = arc_l2c_only;
2399 		refcnt = 0;
2400 		bufcnt = 0;
2401 		update_old = B_FALSE;
2402 	}
2403 	update_new = update_old;
2404 
2405 	ASSERT(MUTEX_HELD(hash_lock));
2406 	ASSERT3P(new_state, !=, old_state);
2407 	ASSERT(!GHOST_STATE(new_state) || bufcnt == 0);
2408 	ASSERT(old_state != arc_anon || bufcnt <= 1);
2409 
2410 	/*
2411 	 * If this buffer is evictable, transfer it from the
2412 	 * old state list to the new state list.
2413 	 */
2414 	if (refcnt == 0) {
2415 		if (old_state != arc_anon && old_state != arc_l2c_only) {
2416 			ASSERT(HDR_HAS_L1HDR(hdr));
2417 			multilist_remove(&old_state->arcs_list[buftype], hdr);
2418 
2419 			if (GHOST_STATE(old_state)) {
2420 				ASSERT0(bufcnt);
2421 				ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
2422 				update_old = B_TRUE;
2423 			}
2424 			arc_evictable_space_decrement(hdr, old_state);
2425 		}
2426 		if (new_state != arc_anon && new_state != arc_l2c_only) {
2427 			/*
2428 			 * An L1 header always exists here, since if we're
2429 			 * moving to some L1-cached state (i.e. not l2c_only or
2430 			 * anonymous), we realloc the header to add an L1hdr
2431 			 * beforehand.
2432 			 */
2433 			ASSERT(HDR_HAS_L1HDR(hdr));
2434 			multilist_insert(&new_state->arcs_list[buftype], hdr);
2435 
2436 			if (GHOST_STATE(new_state)) {
2437 				ASSERT0(bufcnt);
2438 				ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
2439 				update_new = B_TRUE;
2440 			}
2441 			arc_evictable_space_increment(hdr, new_state);
2442 		}
2443 	}
2444 
2445 	ASSERT(!HDR_EMPTY(hdr));
2446 	if (new_state == arc_anon && HDR_IN_HASH_TABLE(hdr))
2447 		buf_hash_remove(hdr);
2448 
2449 	/* adjust state sizes (ignore arc_l2c_only) */
2450 
2451 	if (update_new && new_state != arc_l2c_only) {
2452 		ASSERT(HDR_HAS_L1HDR(hdr));
2453 		if (GHOST_STATE(new_state)) {
2454 			ASSERT0(bufcnt);
2455 
2456 			/*
2457 			 * When moving a header to a ghost state, we first
2458 			 * remove all arc buffers. Thus, we'll have a
2459 			 * bufcnt of zero, and no arc buffer to use for
2460 			 * the reference. As a result, we use the arc
2461 			 * header pointer for the reference.
2462 			 */
2463 			(void) zfs_refcount_add_many(&new_state->arcs_size,
2464 			    HDR_GET_LSIZE(hdr), hdr);
2465 			ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
2466 			ASSERT(!HDR_HAS_RABD(hdr));
2467 		} else {
2468 			uint32_t buffers = 0;
2469 
2470 			/*
2471 			 * Each individual buffer holds a unique reference,
2472 			 * thus we must remove each of these references one
2473 			 * at a time.
2474 			 */
2475 			for (arc_buf_t *buf = hdr->b_l1hdr.b_buf; buf != NULL;
2476 			    buf = buf->b_next) {
2477 				ASSERT3U(bufcnt, !=, 0);
2478 				buffers++;
2479 
2480 				/*
2481 				 * When the arc_buf_t is sharing the data
2482 				 * block with the hdr, the owner of the
2483 				 * reference belongs to the hdr. Only
2484 				 * add to the refcount if the arc_buf_t is
2485 				 * not shared.
2486 				 */
2487 				if (arc_buf_is_shared(buf))
2488 					continue;
2489 
2490 				(void) zfs_refcount_add_many(
2491 				    &new_state->arcs_size,
2492 				    arc_buf_size(buf), buf);
2493 			}
2494 			ASSERT3U(bufcnt, ==, buffers);
2495 
2496 			if (hdr->b_l1hdr.b_pabd != NULL) {
2497 				(void) zfs_refcount_add_many(
2498 				    &new_state->arcs_size,
2499 				    arc_hdr_size(hdr), hdr);
2500 			}
2501 
2502 			if (HDR_HAS_RABD(hdr)) {
2503 				(void) zfs_refcount_add_many(
2504 				    &new_state->arcs_size,
2505 				    HDR_GET_PSIZE(hdr), hdr);
2506 			}
2507 		}
2508 	}
2509 
2510 	if (update_old && old_state != arc_l2c_only) {
2511 		ASSERT(HDR_HAS_L1HDR(hdr));
2512 		if (GHOST_STATE(old_state)) {
2513 			ASSERT0(bufcnt);
2514 			ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
2515 			ASSERT(!HDR_HAS_RABD(hdr));
2516 
2517 			/*
2518 			 * When moving a header off of a ghost state,
2519 			 * the header will not contain any arc buffers.
2520 			 * We use the arc header pointer for the reference
2521 			 * which is exactly what we did when we put the
2522 			 * header on the ghost state.
2523 			 */
2524 
2525 			(void) zfs_refcount_remove_many(&old_state->arcs_size,
2526 			    HDR_GET_LSIZE(hdr), hdr);
2527 		} else {
2528 			uint32_t buffers = 0;
2529 
2530 			/*
2531 			 * Each individual buffer holds a unique reference,
2532 			 * thus we must remove each of these references one
2533 			 * at a time.
2534 			 */
2535 			for (arc_buf_t *buf = hdr->b_l1hdr.b_buf; buf != NULL;
2536 			    buf = buf->b_next) {
2537 				ASSERT3U(bufcnt, !=, 0);
2538 				buffers++;
2539 
2540 				/*
2541 				 * When the arc_buf_t is sharing the data
2542 				 * block with the hdr, the owner of the
2543 				 * reference belongs to the hdr. Only
2544 				 * add to the refcount if the arc_buf_t is
2545 				 * not shared.
2546 				 */
2547 				if (arc_buf_is_shared(buf))
2548 					continue;
2549 
2550 				(void) zfs_refcount_remove_many(
2551 				    &old_state->arcs_size, arc_buf_size(buf),
2552 				    buf);
2553 			}
2554 			ASSERT3U(bufcnt, ==, buffers);
2555 			ASSERT(hdr->b_l1hdr.b_pabd != NULL ||
2556 			    HDR_HAS_RABD(hdr));
2557 
2558 			if (hdr->b_l1hdr.b_pabd != NULL) {
2559 				(void) zfs_refcount_remove_many(
2560 				    &old_state->arcs_size, arc_hdr_size(hdr),
2561 				    hdr);
2562 			}
2563 
2564 			if (HDR_HAS_RABD(hdr)) {
2565 				(void) zfs_refcount_remove_many(
2566 				    &old_state->arcs_size, HDR_GET_PSIZE(hdr),
2567 				    hdr);
2568 			}
2569 		}
2570 	}
2571 
2572 	if (HDR_HAS_L1HDR(hdr)) {
2573 		hdr->b_l1hdr.b_state = new_state;
2574 
2575 		if (HDR_HAS_L2HDR(hdr) && new_state != arc_l2c_only) {
2576 			l2arc_hdr_arcstats_decrement_state(hdr);
2577 			hdr->b_l2hdr.b_arcs_state = new_state->arcs_state;
2578 			l2arc_hdr_arcstats_increment_state(hdr);
2579 		}
2580 	}
2581 
2582 	/*
2583 	 * L2 headers should never be on the L2 state list since they don't
2584 	 * have L1 headers allocated.
2585 	 */
2586 	ASSERT(multilist_is_empty(&arc_l2c_only->arcs_list[ARC_BUFC_DATA]) &&
2587 	    multilist_is_empty(&arc_l2c_only->arcs_list[ARC_BUFC_METADATA]));
2588 }
2589 
2590 void
2591 arc_space_consume(uint64_t space, arc_space_type_t type)
2592 {
2593 	ASSERT(type >= 0 && type < ARC_SPACE_NUMTYPES);
2594 
2595 	switch (type) {
2596 	default:
2597 		break;
2598 	case ARC_SPACE_DATA:
2599 		ARCSTAT_INCR(arcstat_data_size, space);
2600 		break;
2601 	case ARC_SPACE_META:
2602 		ARCSTAT_INCR(arcstat_metadata_size, space);
2603 		break;
2604 	case ARC_SPACE_BONUS:
2605 		ARCSTAT_INCR(arcstat_bonus_size, space);
2606 		break;
2607 	case ARC_SPACE_DNODE:
2608 		aggsum_add(&arc_sums.arcstat_dnode_size, space);
2609 		break;
2610 	case ARC_SPACE_DBUF:
2611 		ARCSTAT_INCR(arcstat_dbuf_size, space);
2612 		break;
2613 	case ARC_SPACE_HDRS:
2614 		ARCSTAT_INCR(arcstat_hdr_size, space);
2615 		break;
2616 	case ARC_SPACE_L2HDRS:
2617 		aggsum_add(&arc_sums.arcstat_l2_hdr_size, space);
2618 		break;
2619 	case ARC_SPACE_ABD_CHUNK_WASTE:
2620 		/*
2621 		 * Note: this includes space wasted by all scatter ABD's, not
2622 		 * just those allocated by the ARC.  But the vast majority of
2623 		 * scatter ABD's come from the ARC, because other users are
2624 		 * very short-lived.
2625 		 */
2626 		ARCSTAT_INCR(arcstat_abd_chunk_waste_size, space);
2627 		break;
2628 	}
2629 
2630 	if (type != ARC_SPACE_DATA && type != ARC_SPACE_ABD_CHUNK_WASTE)
2631 		aggsum_add(&arc_sums.arcstat_meta_used, space);
2632 
2633 	aggsum_add(&arc_sums.arcstat_size, space);
2634 }
2635 
2636 void
2637 arc_space_return(uint64_t space, arc_space_type_t type)
2638 {
2639 	ASSERT(type >= 0 && type < ARC_SPACE_NUMTYPES);
2640 
2641 	switch (type) {
2642 	default:
2643 		break;
2644 	case ARC_SPACE_DATA:
2645 		ARCSTAT_INCR(arcstat_data_size, -space);
2646 		break;
2647 	case ARC_SPACE_META:
2648 		ARCSTAT_INCR(arcstat_metadata_size, -space);
2649 		break;
2650 	case ARC_SPACE_BONUS:
2651 		ARCSTAT_INCR(arcstat_bonus_size, -space);
2652 		break;
2653 	case ARC_SPACE_DNODE:
2654 		aggsum_add(&arc_sums.arcstat_dnode_size, -space);
2655 		break;
2656 	case ARC_SPACE_DBUF:
2657 		ARCSTAT_INCR(arcstat_dbuf_size, -space);
2658 		break;
2659 	case ARC_SPACE_HDRS:
2660 		ARCSTAT_INCR(arcstat_hdr_size, -space);
2661 		break;
2662 	case ARC_SPACE_L2HDRS:
2663 		aggsum_add(&arc_sums.arcstat_l2_hdr_size, -space);
2664 		break;
2665 	case ARC_SPACE_ABD_CHUNK_WASTE:
2666 		ARCSTAT_INCR(arcstat_abd_chunk_waste_size, -space);
2667 		break;
2668 	}
2669 
2670 	if (type != ARC_SPACE_DATA && type != ARC_SPACE_ABD_CHUNK_WASTE) {
2671 		ASSERT(aggsum_compare(&arc_sums.arcstat_meta_used,
2672 		    space) >= 0);
2673 		ARCSTAT_MAX(arcstat_meta_max,
2674 		    aggsum_upper_bound(&arc_sums.arcstat_meta_used));
2675 		aggsum_add(&arc_sums.arcstat_meta_used, -space);
2676 	}
2677 
2678 	ASSERT(aggsum_compare(&arc_sums.arcstat_size, space) >= 0);
2679 	aggsum_add(&arc_sums.arcstat_size, -space);
2680 }
2681 
2682 /*
2683  * Given a hdr and a buf, returns whether that buf can share its b_data buffer
2684  * with the hdr's b_pabd.
2685  */
2686 static boolean_t
2687 arc_can_share(arc_buf_hdr_t *hdr, arc_buf_t *buf)
2688 {
2689 	/*
2690 	 * The criteria for sharing a hdr's data are:
2691 	 * 1. the buffer is not encrypted
2692 	 * 2. the hdr's compression matches the buf's compression
2693 	 * 3. the hdr doesn't need to be byteswapped
2694 	 * 4. the hdr isn't already being shared
2695 	 * 5. the buf is either compressed or it is the last buf in the hdr list
2696 	 *
2697 	 * Criterion #5 maintains the invariant that shared uncompressed
2698 	 * bufs must be the final buf in the hdr's b_buf list. Reading this, you
2699 	 * might ask, "if a compressed buf is allocated first, won't that be the
2700 	 * last thing in the list?", but in that case it's impossible to create
2701 	 * a shared uncompressed buf anyway (because the hdr must be compressed
2702 	 * to have the compressed buf). You might also think that #3 is
2703 	 * sufficient to make this guarantee, however it's possible
2704 	 * (specifically in the rare L2ARC write race mentioned in
2705 	 * arc_buf_alloc_impl()) there will be an existing uncompressed buf that
2706 	 * is shareable, but wasn't at the time of its allocation. Rather than
2707 	 * allow a new shared uncompressed buf to be created and then shuffle
2708 	 * the list around to make it the last element, this simply disallows
2709 	 * sharing if the new buf isn't the first to be added.
2710 	 */
2711 	ASSERT3P(buf->b_hdr, ==, hdr);
2712 	boolean_t hdr_compressed =
2713 	    arc_hdr_get_compress(hdr) != ZIO_COMPRESS_OFF;
2714 	boolean_t buf_compressed = ARC_BUF_COMPRESSED(buf) != 0;
2715 	return (!ARC_BUF_ENCRYPTED(buf) &&
2716 	    buf_compressed == hdr_compressed &&
2717 	    hdr->b_l1hdr.b_byteswap == DMU_BSWAP_NUMFUNCS &&
2718 	    !HDR_SHARED_DATA(hdr) &&
2719 	    (ARC_BUF_LAST(buf) || ARC_BUF_COMPRESSED(buf)));
2720 }
2721 
2722 /*
2723  * Allocate a buf for this hdr. If you care about the data that's in the hdr,
2724  * or if you want a compressed buffer, pass those flags in. Returns 0 if the
2725  * copy was made successfully, or an error code otherwise.
2726  */
2727 static int
2728 arc_buf_alloc_impl(arc_buf_hdr_t *hdr, spa_t *spa, const zbookmark_phys_t *zb,
2729     void *tag, boolean_t encrypted, boolean_t compressed, boolean_t noauth,
2730     boolean_t fill, arc_buf_t **ret)
2731 {
2732 	arc_buf_t *buf;
2733 	arc_fill_flags_t flags = ARC_FILL_LOCKED;
2734 
2735 	ASSERT(HDR_HAS_L1HDR(hdr));
2736 	ASSERT3U(HDR_GET_LSIZE(hdr), >, 0);
2737 	VERIFY(hdr->b_type == ARC_BUFC_DATA ||
2738 	    hdr->b_type == ARC_BUFC_METADATA);
2739 	ASSERT3P(ret, !=, NULL);
2740 	ASSERT3P(*ret, ==, NULL);
2741 	IMPLY(encrypted, compressed);
2742 
2743 	hdr->b_l1hdr.b_mru_hits = 0;
2744 	hdr->b_l1hdr.b_mru_ghost_hits = 0;
2745 	hdr->b_l1hdr.b_mfu_hits = 0;
2746 	hdr->b_l1hdr.b_mfu_ghost_hits = 0;
2747 	hdr->b_l1hdr.b_l2_hits = 0;
2748 
2749 	buf = *ret = kmem_cache_alloc(buf_cache, KM_PUSHPAGE);
2750 	buf->b_hdr = hdr;
2751 	buf->b_data = NULL;
2752 	buf->b_next = hdr->b_l1hdr.b_buf;
2753 	buf->b_flags = 0;
2754 
2755 	add_reference(hdr, tag);
2756 
2757 	/*
2758 	 * We're about to change the hdr's b_flags. We must either
2759 	 * hold the hash_lock or be undiscoverable.
2760 	 */
2761 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
2762 
2763 	/*
2764 	 * Only honor requests for compressed bufs if the hdr is actually
2765 	 * compressed. This must be overridden if the buffer is encrypted since
2766 	 * encrypted buffers cannot be decompressed.
2767 	 */
2768 	if (encrypted) {
2769 		buf->b_flags |= ARC_BUF_FLAG_COMPRESSED;
2770 		buf->b_flags |= ARC_BUF_FLAG_ENCRYPTED;
2771 		flags |= ARC_FILL_COMPRESSED | ARC_FILL_ENCRYPTED;
2772 	} else if (compressed &&
2773 	    arc_hdr_get_compress(hdr) != ZIO_COMPRESS_OFF) {
2774 		buf->b_flags |= ARC_BUF_FLAG_COMPRESSED;
2775 		flags |= ARC_FILL_COMPRESSED;
2776 	}
2777 
2778 	if (noauth) {
2779 		ASSERT0(encrypted);
2780 		flags |= ARC_FILL_NOAUTH;
2781 	}
2782 
2783 	/*
2784 	 * If the hdr's data can be shared then we share the data buffer and
2785 	 * set the appropriate bit in the hdr's b_flags to indicate the hdr is
2786 	 * sharing it's b_pabd with the arc_buf_t. Otherwise, we allocate a new
2787 	 * buffer to store the buf's data.
2788 	 *
2789 	 * There are two additional restrictions here because we're sharing
2790 	 * hdr -> buf instead of the usual buf -> hdr. First, the hdr can't be
2791 	 * actively involved in an L2ARC write, because if this buf is used by
2792 	 * an arc_write() then the hdr's data buffer will be released when the
2793 	 * write completes, even though the L2ARC write might still be using it.
2794 	 * Second, the hdr's ABD must be linear so that the buf's user doesn't
2795 	 * need to be ABD-aware.  It must be allocated via
2796 	 * zio_[data_]buf_alloc(), not as a page, because we need to be able
2797 	 * to abd_release_ownership_of_buf(), which isn't allowed on "linear
2798 	 * page" buffers because the ABD code needs to handle freeing them
2799 	 * specially.
2800 	 */
2801 	boolean_t can_share = arc_can_share(hdr, buf) &&
2802 	    !HDR_L2_WRITING(hdr) &&
2803 	    hdr->b_l1hdr.b_pabd != NULL &&
2804 	    abd_is_linear(hdr->b_l1hdr.b_pabd) &&
2805 	    !abd_is_linear_page(hdr->b_l1hdr.b_pabd);
2806 
2807 	/* Set up b_data and sharing */
2808 	if (can_share) {
2809 		buf->b_data = abd_to_buf(hdr->b_l1hdr.b_pabd);
2810 		buf->b_flags |= ARC_BUF_FLAG_SHARED;
2811 		arc_hdr_set_flags(hdr, ARC_FLAG_SHARED_DATA);
2812 	} else {
2813 		buf->b_data =
2814 		    arc_get_data_buf(hdr, arc_buf_size(buf), buf);
2815 		ARCSTAT_INCR(arcstat_overhead_size, arc_buf_size(buf));
2816 	}
2817 	VERIFY3P(buf->b_data, !=, NULL);
2818 
2819 	hdr->b_l1hdr.b_buf = buf;
2820 	hdr->b_l1hdr.b_bufcnt += 1;
2821 	if (encrypted)
2822 		hdr->b_crypt_hdr.b_ebufcnt += 1;
2823 
2824 	/*
2825 	 * If the user wants the data from the hdr, we need to either copy or
2826 	 * decompress the data.
2827 	 */
2828 	if (fill) {
2829 		ASSERT3P(zb, !=, NULL);
2830 		return (arc_buf_fill(buf, spa, zb, flags));
2831 	}
2832 
2833 	return (0);
2834 }
2835 
2836 static char *arc_onloan_tag = "onloan";
2837 
2838 static inline void
2839 arc_loaned_bytes_update(int64_t delta)
2840 {
2841 	atomic_add_64(&arc_loaned_bytes, delta);
2842 
2843 	/* assert that it did not wrap around */
2844 	ASSERT3S(atomic_add_64_nv(&arc_loaned_bytes, 0), >=, 0);
2845 }
2846 
2847 /*
2848  * Loan out an anonymous arc buffer. Loaned buffers are not counted as in
2849  * flight data by arc_tempreserve_space() until they are "returned". Loaned
2850  * buffers must be returned to the arc before they can be used by the DMU or
2851  * freed.
2852  */
2853 arc_buf_t *
2854 arc_loan_buf(spa_t *spa, boolean_t is_metadata, int size)
2855 {
2856 	arc_buf_t *buf = arc_alloc_buf(spa, arc_onloan_tag,
2857 	    is_metadata ? ARC_BUFC_METADATA : ARC_BUFC_DATA, size);
2858 
2859 	arc_loaned_bytes_update(arc_buf_size(buf));
2860 
2861 	return (buf);
2862 }
2863 
2864 arc_buf_t *
2865 arc_loan_compressed_buf(spa_t *spa, uint64_t psize, uint64_t lsize,
2866     enum zio_compress compression_type, uint8_t complevel)
2867 {
2868 	arc_buf_t *buf = arc_alloc_compressed_buf(spa, arc_onloan_tag,
2869 	    psize, lsize, compression_type, complevel);
2870 
2871 	arc_loaned_bytes_update(arc_buf_size(buf));
2872 
2873 	return (buf);
2874 }
2875 
2876 arc_buf_t *
2877 arc_loan_raw_buf(spa_t *spa, uint64_t dsobj, boolean_t byteorder,
2878     const uint8_t *salt, const uint8_t *iv, const uint8_t *mac,
2879     dmu_object_type_t ot, uint64_t psize, uint64_t lsize,
2880     enum zio_compress compression_type, uint8_t complevel)
2881 {
2882 	arc_buf_t *buf = arc_alloc_raw_buf(spa, arc_onloan_tag, dsobj,
2883 	    byteorder, salt, iv, mac, ot, psize, lsize, compression_type,
2884 	    complevel);
2885 
2886 	atomic_add_64(&arc_loaned_bytes, psize);
2887 	return (buf);
2888 }
2889 
2890 
2891 /*
2892  * Return a loaned arc buffer to the arc.
2893  */
2894 void
2895 arc_return_buf(arc_buf_t *buf, void *tag)
2896 {
2897 	arc_buf_hdr_t *hdr = buf->b_hdr;
2898 
2899 	ASSERT3P(buf->b_data, !=, NULL);
2900 	ASSERT(HDR_HAS_L1HDR(hdr));
2901 	(void) zfs_refcount_add(&hdr->b_l1hdr.b_refcnt, tag);
2902 	(void) zfs_refcount_remove(&hdr->b_l1hdr.b_refcnt, arc_onloan_tag);
2903 
2904 	arc_loaned_bytes_update(-arc_buf_size(buf));
2905 }
2906 
2907 /* Detach an arc_buf from a dbuf (tag) */
2908 void
2909 arc_loan_inuse_buf(arc_buf_t *buf, void *tag)
2910 {
2911 	arc_buf_hdr_t *hdr = buf->b_hdr;
2912 
2913 	ASSERT3P(buf->b_data, !=, NULL);
2914 	ASSERT(HDR_HAS_L1HDR(hdr));
2915 	(void) zfs_refcount_add(&hdr->b_l1hdr.b_refcnt, arc_onloan_tag);
2916 	(void) zfs_refcount_remove(&hdr->b_l1hdr.b_refcnt, tag);
2917 
2918 	arc_loaned_bytes_update(arc_buf_size(buf));
2919 }
2920 
2921 static void
2922 l2arc_free_abd_on_write(abd_t *abd, size_t size, arc_buf_contents_t type)
2923 {
2924 	l2arc_data_free_t *df = kmem_alloc(sizeof (*df), KM_SLEEP);
2925 
2926 	df->l2df_abd = abd;
2927 	df->l2df_size = size;
2928 	df->l2df_type = type;
2929 	mutex_enter(&l2arc_free_on_write_mtx);
2930 	list_insert_head(l2arc_free_on_write, df);
2931 	mutex_exit(&l2arc_free_on_write_mtx);
2932 }
2933 
2934 static void
2935 arc_hdr_free_on_write(arc_buf_hdr_t *hdr, boolean_t free_rdata)
2936 {
2937 	arc_state_t *state = hdr->b_l1hdr.b_state;
2938 	arc_buf_contents_t type = arc_buf_type(hdr);
2939 	uint64_t size = (free_rdata) ? HDR_GET_PSIZE(hdr) : arc_hdr_size(hdr);
2940 
2941 	/* protected by hash lock, if in the hash table */
2942 	if (multilist_link_active(&hdr->b_l1hdr.b_arc_node)) {
2943 		ASSERT(zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
2944 		ASSERT(state != arc_anon && state != arc_l2c_only);
2945 
2946 		(void) zfs_refcount_remove_many(&state->arcs_esize[type],
2947 		    size, hdr);
2948 	}
2949 	(void) zfs_refcount_remove_many(&state->arcs_size, size, hdr);
2950 	if (type == ARC_BUFC_METADATA) {
2951 		arc_space_return(size, ARC_SPACE_META);
2952 	} else {
2953 		ASSERT(type == ARC_BUFC_DATA);
2954 		arc_space_return(size, ARC_SPACE_DATA);
2955 	}
2956 
2957 	if (free_rdata) {
2958 		l2arc_free_abd_on_write(hdr->b_crypt_hdr.b_rabd, size, type);
2959 	} else {
2960 		l2arc_free_abd_on_write(hdr->b_l1hdr.b_pabd, size, type);
2961 	}
2962 }
2963 
2964 /*
2965  * Share the arc_buf_t's data with the hdr. Whenever we are sharing the
2966  * data buffer, we transfer the refcount ownership to the hdr and update
2967  * the appropriate kstats.
2968  */
2969 static void
2970 arc_share_buf(arc_buf_hdr_t *hdr, arc_buf_t *buf)
2971 {
2972 	ASSERT(arc_can_share(hdr, buf));
2973 	ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
2974 	ASSERT(!ARC_BUF_ENCRYPTED(buf));
2975 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
2976 
2977 	/*
2978 	 * Start sharing the data buffer. We transfer the
2979 	 * refcount ownership to the hdr since it always owns
2980 	 * the refcount whenever an arc_buf_t is shared.
2981 	 */
2982 	zfs_refcount_transfer_ownership_many(&hdr->b_l1hdr.b_state->arcs_size,
2983 	    arc_hdr_size(hdr), buf, hdr);
2984 	hdr->b_l1hdr.b_pabd = abd_get_from_buf(buf->b_data, arc_buf_size(buf));
2985 	abd_take_ownership_of_buf(hdr->b_l1hdr.b_pabd,
2986 	    HDR_ISTYPE_METADATA(hdr));
2987 	arc_hdr_set_flags(hdr, ARC_FLAG_SHARED_DATA);
2988 	buf->b_flags |= ARC_BUF_FLAG_SHARED;
2989 
2990 	/*
2991 	 * Since we've transferred ownership to the hdr we need
2992 	 * to increment its compressed and uncompressed kstats and
2993 	 * decrement the overhead size.
2994 	 */
2995 	ARCSTAT_INCR(arcstat_compressed_size, arc_hdr_size(hdr));
2996 	ARCSTAT_INCR(arcstat_uncompressed_size, HDR_GET_LSIZE(hdr));
2997 	ARCSTAT_INCR(arcstat_overhead_size, -arc_buf_size(buf));
2998 }
2999 
3000 static void
3001 arc_unshare_buf(arc_buf_hdr_t *hdr, arc_buf_t *buf)
3002 {
3003 	ASSERT(arc_buf_is_shared(buf));
3004 	ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
3005 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
3006 
3007 	/*
3008 	 * We are no longer sharing this buffer so we need
3009 	 * to transfer its ownership to the rightful owner.
3010 	 */
3011 	zfs_refcount_transfer_ownership_many(&hdr->b_l1hdr.b_state->arcs_size,
3012 	    arc_hdr_size(hdr), hdr, buf);
3013 	arc_hdr_clear_flags(hdr, ARC_FLAG_SHARED_DATA);
3014 	abd_release_ownership_of_buf(hdr->b_l1hdr.b_pabd);
3015 	abd_free(hdr->b_l1hdr.b_pabd);
3016 	hdr->b_l1hdr.b_pabd = NULL;
3017 	buf->b_flags &= ~ARC_BUF_FLAG_SHARED;
3018 
3019 	/*
3020 	 * Since the buffer is no longer shared between
3021 	 * the arc buf and the hdr, count it as overhead.
3022 	 */
3023 	ARCSTAT_INCR(arcstat_compressed_size, -arc_hdr_size(hdr));
3024 	ARCSTAT_INCR(arcstat_uncompressed_size, -HDR_GET_LSIZE(hdr));
3025 	ARCSTAT_INCR(arcstat_overhead_size, arc_buf_size(buf));
3026 }
3027 
3028 /*
3029  * Remove an arc_buf_t from the hdr's buf list and return the last
3030  * arc_buf_t on the list. If no buffers remain on the list then return
3031  * NULL.
3032  */
3033 static arc_buf_t *
3034 arc_buf_remove(arc_buf_hdr_t *hdr, arc_buf_t *buf)
3035 {
3036 	ASSERT(HDR_HAS_L1HDR(hdr));
3037 	ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
3038 
3039 	arc_buf_t **bufp = &hdr->b_l1hdr.b_buf;
3040 	arc_buf_t *lastbuf = NULL;
3041 
3042 	/*
3043 	 * Remove the buf from the hdr list and locate the last
3044 	 * remaining buffer on the list.
3045 	 */
3046 	while (*bufp != NULL) {
3047 		if (*bufp == buf)
3048 			*bufp = buf->b_next;
3049 
3050 		/*
3051 		 * If we've removed a buffer in the middle of
3052 		 * the list then update the lastbuf and update
3053 		 * bufp.
3054 		 */
3055 		if (*bufp != NULL) {
3056 			lastbuf = *bufp;
3057 			bufp = &(*bufp)->b_next;
3058 		}
3059 	}
3060 	buf->b_next = NULL;
3061 	ASSERT3P(lastbuf, !=, buf);
3062 	IMPLY(hdr->b_l1hdr.b_bufcnt > 0, lastbuf != NULL);
3063 	IMPLY(hdr->b_l1hdr.b_bufcnt > 0, hdr->b_l1hdr.b_buf != NULL);
3064 	IMPLY(lastbuf != NULL, ARC_BUF_LAST(lastbuf));
3065 
3066 	return (lastbuf);
3067 }
3068 
3069 /*
3070  * Free up buf->b_data and pull the arc_buf_t off of the arc_buf_hdr_t's
3071  * list and free it.
3072  */
3073 static void
3074 arc_buf_destroy_impl(arc_buf_t *buf)
3075 {
3076 	arc_buf_hdr_t *hdr = buf->b_hdr;
3077 
3078 	/*
3079 	 * Free up the data associated with the buf but only if we're not
3080 	 * sharing this with the hdr. If we are sharing it with the hdr, the
3081 	 * hdr is responsible for doing the free.
3082 	 */
3083 	if (buf->b_data != NULL) {
3084 		/*
3085 		 * We're about to change the hdr's b_flags. We must either
3086 		 * hold the hash_lock or be undiscoverable.
3087 		 */
3088 		ASSERT(HDR_EMPTY_OR_LOCKED(hdr));
3089 
3090 		arc_cksum_verify(buf);
3091 		arc_buf_unwatch(buf);
3092 
3093 		if (arc_buf_is_shared(buf)) {
3094 			arc_hdr_clear_flags(hdr, ARC_FLAG_SHARED_DATA);
3095 		} else {
3096 			uint64_t size = arc_buf_size(buf);
3097 			arc_free_data_buf(hdr, buf->b_data, size, buf);
3098 			ARCSTAT_INCR(arcstat_overhead_size, -size);
3099 		}
3100 		buf->b_data = NULL;
3101 
3102 		ASSERT(hdr->b_l1hdr.b_bufcnt > 0);
3103 		hdr->b_l1hdr.b_bufcnt -= 1;
3104 
3105 		if (ARC_BUF_ENCRYPTED(buf)) {
3106 			hdr->b_crypt_hdr.b_ebufcnt -= 1;
3107 
3108 			/*
3109 			 * If we have no more encrypted buffers and we've
3110 			 * already gotten a copy of the decrypted data we can
3111 			 * free b_rabd to save some space.
3112 			 */
3113 			if (hdr->b_crypt_hdr.b_ebufcnt == 0 &&
3114 			    HDR_HAS_RABD(hdr) && hdr->b_l1hdr.b_pabd != NULL &&
3115 			    !HDR_IO_IN_PROGRESS(hdr)) {
3116 				arc_hdr_free_abd(hdr, B_TRUE);
3117 			}
3118 		}
3119 	}
3120 
3121 	arc_buf_t *lastbuf = arc_buf_remove(hdr, buf);
3122 
3123 	if (ARC_BUF_SHARED(buf) && !ARC_BUF_COMPRESSED(buf)) {
3124 		/*
3125 		 * If the current arc_buf_t is sharing its data buffer with the
3126 		 * hdr, then reassign the hdr's b_pabd to share it with the new
3127 		 * buffer at the end of the list. The shared buffer is always
3128 		 * the last one on the hdr's buffer list.
3129 		 *
3130 		 * There is an equivalent case for compressed bufs, but since
3131 		 * they aren't guaranteed to be the last buf in the list and
3132 		 * that is an exceedingly rare case, we just allow that space be
3133 		 * wasted temporarily. We must also be careful not to share
3134 		 * encrypted buffers, since they cannot be shared.
3135 		 */
3136 		if (lastbuf != NULL && !ARC_BUF_ENCRYPTED(lastbuf)) {
3137 			/* Only one buf can be shared at once */
3138 			VERIFY(!arc_buf_is_shared(lastbuf));
3139 			/* hdr is uncompressed so can't have compressed buf */
3140 			VERIFY(!ARC_BUF_COMPRESSED(lastbuf));
3141 
3142 			ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
3143 			arc_hdr_free_abd(hdr, B_FALSE);
3144 
3145 			/*
3146 			 * We must setup a new shared block between the
3147 			 * last buffer and the hdr. The data would have
3148 			 * been allocated by the arc buf so we need to transfer
3149 			 * ownership to the hdr since it's now being shared.
3150 			 */
3151 			arc_share_buf(hdr, lastbuf);
3152 		}
3153 	} else if (HDR_SHARED_DATA(hdr)) {
3154 		/*
3155 		 * Uncompressed shared buffers are always at the end
3156 		 * of the list. Compressed buffers don't have the
3157 		 * same requirements. This makes it hard to
3158 		 * simply assert that the lastbuf is shared so
3159 		 * we rely on the hdr's compression flags to determine
3160 		 * if we have a compressed, shared buffer.
3161 		 */
3162 		ASSERT3P(lastbuf, !=, NULL);
3163 		ASSERT(arc_buf_is_shared(lastbuf) ||
3164 		    arc_hdr_get_compress(hdr) != ZIO_COMPRESS_OFF);
3165 	}
3166 
3167 	/*
3168 	 * Free the checksum if we're removing the last uncompressed buf from
3169 	 * this hdr.
3170 	 */
3171 	if (!arc_hdr_has_uncompressed_buf(hdr)) {
3172 		arc_cksum_free(hdr);
3173 	}
3174 
3175 	/* clean up the buf */
3176 	buf->b_hdr = NULL;
3177 	kmem_cache_free(buf_cache, buf);
3178 }
3179 
3180 static void
3181 arc_hdr_alloc_abd(arc_buf_hdr_t *hdr, int alloc_flags)
3182 {
3183 	uint64_t size;
3184 	boolean_t alloc_rdata = ((alloc_flags & ARC_HDR_ALLOC_RDATA) != 0);
3185 	boolean_t do_adapt = ((alloc_flags & ARC_HDR_DO_ADAPT) != 0);
3186 
3187 	ASSERT3U(HDR_GET_LSIZE(hdr), >, 0);
3188 	ASSERT(HDR_HAS_L1HDR(hdr));
3189 	ASSERT(!HDR_SHARED_DATA(hdr) || alloc_rdata);
3190 	IMPLY(alloc_rdata, HDR_PROTECTED(hdr));
3191 
3192 	if (alloc_rdata) {
3193 		size = HDR_GET_PSIZE(hdr);
3194 		ASSERT3P(hdr->b_crypt_hdr.b_rabd, ==, NULL);
3195 		hdr->b_crypt_hdr.b_rabd = arc_get_data_abd(hdr, size, hdr,
3196 		    do_adapt);
3197 		ASSERT3P(hdr->b_crypt_hdr.b_rabd, !=, NULL);
3198 		ARCSTAT_INCR(arcstat_raw_size, size);
3199 	} else {
3200 		size = arc_hdr_size(hdr);
3201 		ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
3202 		hdr->b_l1hdr.b_pabd = arc_get_data_abd(hdr, size, hdr,
3203 		    do_adapt);
3204 		ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
3205 	}
3206 
3207 	ARCSTAT_INCR(arcstat_compressed_size, size);
3208 	ARCSTAT_INCR(arcstat_uncompressed_size, HDR_GET_LSIZE(hdr));
3209 }
3210 
3211 static void
3212 arc_hdr_free_abd(arc_buf_hdr_t *hdr, boolean_t free_rdata)
3213 {
3214 	uint64_t size = (free_rdata) ? HDR_GET_PSIZE(hdr) : arc_hdr_size(hdr);
3215 
3216 	ASSERT(HDR_HAS_L1HDR(hdr));
3217 	ASSERT(hdr->b_l1hdr.b_pabd != NULL || HDR_HAS_RABD(hdr));
3218 	IMPLY(free_rdata, HDR_HAS_RABD(hdr));
3219 
3220 	/*
3221 	 * If the hdr is currently being written to the l2arc then
3222 	 * we defer freeing the data by adding it to the l2arc_free_on_write
3223 	 * list. The l2arc will free the data once it's finished
3224 	 * writing it to the l2arc device.
3225 	 */
3226 	if (HDR_L2_WRITING(hdr)) {
3227 		arc_hdr_free_on_write(hdr, free_rdata);
3228 		ARCSTAT_BUMP(arcstat_l2_free_on_write);
3229 	} else if (free_rdata) {
3230 		arc_free_data_abd(hdr, hdr->b_crypt_hdr.b_rabd, size, hdr);
3231 	} else {
3232 		arc_free_data_abd(hdr, hdr->b_l1hdr.b_pabd, size, hdr);
3233 	}
3234 
3235 	if (free_rdata) {
3236 		hdr->b_crypt_hdr.b_rabd = NULL;
3237 		ARCSTAT_INCR(arcstat_raw_size, -size);
3238 	} else {
3239 		hdr->b_l1hdr.b_pabd = NULL;
3240 	}
3241 
3242 	if (hdr->b_l1hdr.b_pabd == NULL && !HDR_HAS_RABD(hdr))
3243 		hdr->b_l1hdr.b_byteswap = DMU_BSWAP_NUMFUNCS;
3244 
3245 	ARCSTAT_INCR(arcstat_compressed_size, -size);
3246 	ARCSTAT_INCR(arcstat_uncompressed_size, -HDR_GET_LSIZE(hdr));
3247 }
3248 
3249 static arc_buf_hdr_t *
3250 arc_hdr_alloc(uint64_t spa, int32_t psize, int32_t lsize,
3251     boolean_t protected, enum zio_compress compression_type, uint8_t complevel,
3252     arc_buf_contents_t type, boolean_t alloc_rdata)
3253 {
3254 	arc_buf_hdr_t *hdr;
3255 	int flags = ARC_HDR_DO_ADAPT;
3256 
3257 	VERIFY(type == ARC_BUFC_DATA || type == ARC_BUFC_METADATA);
3258 	if (protected) {
3259 		hdr = kmem_cache_alloc(hdr_full_crypt_cache, KM_PUSHPAGE);
3260 	} else {
3261 		hdr = kmem_cache_alloc(hdr_full_cache, KM_PUSHPAGE);
3262 	}
3263 	flags |= alloc_rdata ? ARC_HDR_ALLOC_RDATA : 0;
3264 
3265 	ASSERT(HDR_EMPTY(hdr));
3266 	ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, ==, NULL);
3267 	HDR_SET_PSIZE(hdr, psize);
3268 	HDR_SET_LSIZE(hdr, lsize);
3269 	hdr->b_spa = spa;
3270 	hdr->b_type = type;
3271 	hdr->b_flags = 0;
3272 	arc_hdr_set_flags(hdr, arc_bufc_to_flags(type) | ARC_FLAG_HAS_L1HDR);
3273 	arc_hdr_set_compress(hdr, compression_type);
3274 	hdr->b_complevel = complevel;
3275 	if (protected)
3276 		arc_hdr_set_flags(hdr, ARC_FLAG_PROTECTED);
3277 
3278 	hdr->b_l1hdr.b_state = arc_anon;
3279 	hdr->b_l1hdr.b_arc_access = 0;
3280 	hdr->b_l1hdr.b_bufcnt = 0;
3281 	hdr->b_l1hdr.b_buf = NULL;
3282 
3283 	/*
3284 	 * Allocate the hdr's buffer. This will contain either
3285 	 * the compressed or uncompressed data depending on the block
3286 	 * it references and compressed arc enablement.
3287 	 */
3288 	arc_hdr_alloc_abd(hdr, flags);
3289 	ASSERT(zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
3290 
3291 	return (hdr);
3292 }
3293 
3294 /*
3295  * Transition between the two allocation states for the arc_buf_hdr struct.
3296  * The arc_buf_hdr struct can be allocated with (hdr_full_cache) or without
3297  * (hdr_l2only_cache) the fields necessary for the L1 cache - the smaller
3298  * version is used when a cache buffer is only in the L2ARC in order to reduce
3299  * memory usage.
3300  */
3301 static arc_buf_hdr_t *
3302 arc_hdr_realloc(arc_buf_hdr_t *hdr, kmem_cache_t *old, kmem_cache_t *new)
3303 {
3304 	ASSERT(HDR_HAS_L2HDR(hdr));
3305 
3306 	arc_buf_hdr_t *nhdr;
3307 	l2arc_dev_t *dev = hdr->b_l2hdr.b_dev;
3308 
3309 	ASSERT((old == hdr_full_cache && new == hdr_l2only_cache) ||
3310 	    (old == hdr_l2only_cache && new == hdr_full_cache));
3311 
3312 	/*
3313 	 * if the caller wanted a new full header and the header is to be
3314 	 * encrypted we will actually allocate the header from the full crypt
3315 	 * cache instead. The same applies to freeing from the old cache.
3316 	 */
3317 	if (HDR_PROTECTED(hdr) && new == hdr_full_cache)
3318 		new = hdr_full_crypt_cache;
3319 	if (HDR_PROTECTED(hdr) && old == hdr_full_cache)
3320 		old = hdr_full_crypt_cache;
3321 
3322 	nhdr = kmem_cache_alloc(new, KM_PUSHPAGE);
3323 
3324 	ASSERT(MUTEX_HELD(HDR_LOCK(hdr)));
3325 	buf_hash_remove(hdr);
3326 
3327 	bcopy(hdr, nhdr, HDR_L2ONLY_SIZE);
3328 
3329 	if (new == hdr_full_cache || new == hdr_full_crypt_cache) {
3330 		arc_hdr_set_flags(nhdr, ARC_FLAG_HAS_L1HDR);
3331 		/*
3332 		 * arc_access and arc_change_state need to be aware that a
3333 		 * header has just come out of L2ARC, so we set its state to
3334 		 * l2c_only even though it's about to change.
3335 		 */
3336 		nhdr->b_l1hdr.b_state = arc_l2c_only;
3337 
3338 		/* Verify previous threads set to NULL before freeing */
3339 		ASSERT3P(nhdr->b_l1hdr.b_pabd, ==, NULL);
3340 		ASSERT(!HDR_HAS_RABD(hdr));
3341 	} else {
3342 		ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
3343 		ASSERT0(hdr->b_l1hdr.b_bufcnt);
3344 		ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, ==, NULL);
3345 
3346 		/*
3347 		 * If we've reached here, We must have been called from
3348 		 * arc_evict_hdr(), as such we should have already been
3349 		 * removed from any ghost list we were previously on
3350 		 * (which protects us from racing with arc_evict_state),
3351 		 * thus no locking is needed during this check.
3352 		 */
3353 		ASSERT(!multilist_link_active(&hdr->b_l1hdr.b_arc_node));
3354 
3355 		/*
3356 		 * A buffer must not be moved into the arc_l2c_only
3357 		 * state if it's not finished being written out to the
3358 		 * l2arc device. Otherwise, the b_l1hdr.b_pabd field
3359 		 * might try to be accessed, even though it was removed.
3360 		 */
3361 		VERIFY(!HDR_L2_WRITING(hdr));
3362 		VERIFY3P(hdr->b_l1hdr.b_pabd, ==, NULL);
3363 		ASSERT(!HDR_HAS_RABD(hdr));
3364 
3365 		arc_hdr_clear_flags(nhdr, ARC_FLAG_HAS_L1HDR);
3366 	}
3367 	/*
3368 	 * The header has been reallocated so we need to re-insert it into any
3369 	 * lists it was on.
3370 	 */
3371 	(void) buf_hash_insert(nhdr, NULL);
3372 
3373 	ASSERT(list_link_active(&hdr->b_l2hdr.b_l2node));
3374 
3375 	mutex_enter(&dev->l2ad_mtx);
3376 
3377 	/*
3378 	 * We must place the realloc'ed header back into the list at
3379 	 * the same spot. Otherwise, if it's placed earlier in the list,
3380 	 * l2arc_write_buffers() could find it during the function's
3381 	 * write phase, and try to write it out to the l2arc.
3382 	 */
3383 	list_insert_after(&dev->l2ad_buflist, hdr, nhdr);
3384 	list_remove(&dev->l2ad_buflist, hdr);
3385 
3386 	mutex_exit(&dev->l2ad_mtx);
3387 
3388 	/*
3389 	 * Since we're using the pointer address as the tag when
3390 	 * incrementing and decrementing the l2ad_alloc refcount, we
3391 	 * must remove the old pointer (that we're about to destroy) and
3392 	 * add the new pointer to the refcount. Otherwise we'd remove
3393 	 * the wrong pointer address when calling arc_hdr_destroy() later.
3394 	 */
3395 
3396 	(void) zfs_refcount_remove_many(&dev->l2ad_alloc,
3397 	    arc_hdr_size(hdr), hdr);
3398 	(void) zfs_refcount_add_many(&dev->l2ad_alloc,
3399 	    arc_hdr_size(nhdr), nhdr);
3400 
3401 	buf_discard_identity(hdr);
3402 	kmem_cache_free(old, hdr);
3403 
3404 	return (nhdr);
3405 }
3406 
3407 /*
3408  * This function allows an L1 header to be reallocated as a crypt
3409  * header and vice versa. If we are going to a crypt header, the
3410  * new fields will be zeroed out.
3411  */
3412 static arc_buf_hdr_t *
3413 arc_hdr_realloc_crypt(arc_buf_hdr_t *hdr, boolean_t need_crypt)
3414 {
3415 	arc_buf_hdr_t *nhdr;
3416 	arc_buf_t *buf;
3417 	kmem_cache_t *ncache, *ocache;
3418 
3419 	/*
3420 	 * This function requires that hdr is in the arc_anon state.
3421 	 * Therefore it won't have any L2ARC data for us to worry
3422 	 * about copying.
3423 	 */
3424 	ASSERT(HDR_HAS_L1HDR(hdr));
3425 	ASSERT(!HDR_HAS_L2HDR(hdr));
3426 	ASSERT3U(!!HDR_PROTECTED(hdr), !=, need_crypt);
3427 	ASSERT3P(hdr->b_l1hdr.b_state, ==, arc_anon);
3428 	ASSERT(!multilist_link_active(&hdr->b_l1hdr.b_arc_node));
3429 	ASSERT(!list_link_active(&hdr->b_l2hdr.b_l2node));
3430 	ASSERT3P(hdr->b_hash_next, ==, NULL);
3431 
3432 	if (need_crypt) {
3433 		ncache = hdr_full_crypt_cache;
3434 		ocache = hdr_full_cache;
3435 	} else {
3436 		ncache = hdr_full_cache;
3437 		ocache = hdr_full_crypt_cache;
3438 	}
3439 
3440 	nhdr = kmem_cache_alloc(ncache, KM_PUSHPAGE);
3441 
3442 	/*
3443 	 * Copy all members that aren't locks or condvars to the new header.
3444 	 * No lists are pointing to us (as we asserted above), so we don't
3445 	 * need to worry about the list nodes.
3446 	 */
3447 	nhdr->b_dva = hdr->b_dva;
3448 	nhdr->b_birth = hdr->b_birth;
3449 	nhdr->b_type = hdr->b_type;
3450 	nhdr->b_flags = hdr->b_flags;
3451 	nhdr->b_psize = hdr->b_psize;
3452 	nhdr->b_lsize = hdr->b_lsize;
3453 	nhdr->b_spa = hdr->b_spa;
3454 	nhdr->b_l1hdr.b_freeze_cksum = hdr->b_l1hdr.b_freeze_cksum;
3455 	nhdr->b_l1hdr.b_bufcnt = hdr->b_l1hdr.b_bufcnt;
3456 	nhdr->b_l1hdr.b_byteswap = hdr->b_l1hdr.b_byteswap;
3457 	nhdr->b_l1hdr.b_state = hdr->b_l1hdr.b_state;
3458 	nhdr->b_l1hdr.b_arc_access = hdr->b_l1hdr.b_arc_access;
3459 	nhdr->b_l1hdr.b_mru_hits = hdr->b_l1hdr.b_mru_hits;
3460 	nhdr->b_l1hdr.b_mru_ghost_hits = hdr->b_l1hdr.b_mru_ghost_hits;
3461 	nhdr->b_l1hdr.b_mfu_hits = hdr->b_l1hdr.b_mfu_hits;
3462 	nhdr->b_l1hdr.b_mfu_ghost_hits = hdr->b_l1hdr.b_mfu_ghost_hits;
3463 	nhdr->b_l1hdr.b_l2_hits = hdr->b_l1hdr.b_l2_hits;
3464 	nhdr->b_l1hdr.b_acb = hdr->b_l1hdr.b_acb;
3465 	nhdr->b_l1hdr.b_pabd = hdr->b_l1hdr.b_pabd;
3466 
3467 	/*
3468 	 * This zfs_refcount_add() exists only to ensure that the individual
3469 	 * arc buffers always point to a header that is referenced, avoiding
3470 	 * a small race condition that could trigger ASSERTs.
3471 	 */
3472 	(void) zfs_refcount_add(&nhdr->b_l1hdr.b_refcnt, FTAG);
3473 	nhdr->b_l1hdr.b_buf = hdr->b_l1hdr.b_buf;
3474 	for (buf = nhdr->b_l1hdr.b_buf; buf != NULL; buf = buf->b_next) {
3475 		mutex_enter(&buf->b_evict_lock);
3476 		buf->b_hdr = nhdr;
3477 		mutex_exit(&buf->b_evict_lock);
3478 	}
3479 
3480 	zfs_refcount_transfer(&nhdr->b_l1hdr.b_refcnt, &hdr->b_l1hdr.b_refcnt);
3481 	(void) zfs_refcount_remove(&nhdr->b_l1hdr.b_refcnt, FTAG);
3482 	ASSERT0(zfs_refcount_count(&hdr->b_l1hdr.b_refcnt));
3483 
3484 	if (need_crypt) {
3485 		arc_hdr_set_flags(nhdr, ARC_FLAG_PROTECTED);
3486 	} else {
3487 		arc_hdr_clear_flags(nhdr, ARC_FLAG_PROTECTED);
3488 	}
3489 
3490 	/* unset all members of the original hdr */
3491 	bzero(&hdr->b_dva, sizeof (dva_t));
3492 	hdr->b_birth = 0;
3493 	hdr->b_type = ARC_BUFC_INVALID;
3494 	hdr->b_flags = 0;
3495 	hdr->b_psize = 0;
3496 	hdr->b_lsize = 0;
3497 	hdr->b_spa = 0;
3498 	hdr->b_l1hdr.b_freeze_cksum = NULL;
3499 	hdr->b_l1hdr.b_buf = NULL;
3500 	hdr->b_l1hdr.b_bufcnt = 0;
3501 	hdr->b_l1hdr.b_byteswap = 0;
3502 	hdr->b_l1hdr.b_state = NULL;
3503 	hdr->b_l1hdr.b_arc_access = 0;
3504 	hdr->b_l1hdr.b_mru_hits = 0;
3505 	hdr->b_l1hdr.b_mru_ghost_hits = 0;
3506 	hdr->b_l1hdr.b_mfu_hits = 0;
3507 	hdr->b_l1hdr.b_mfu_ghost_hits = 0;
3508 	hdr->b_l1hdr.b_l2_hits = 0;
3509 	hdr->b_l1hdr.b_acb = NULL;
3510 	hdr->b_l1hdr.b_pabd = NULL;
3511 
3512 	if (ocache == hdr_full_crypt_cache) {
3513 		ASSERT(!HDR_HAS_RABD(hdr));
3514 		hdr->b_crypt_hdr.b_ot = DMU_OT_NONE;
3515 		hdr->b_crypt_hdr.b_ebufcnt = 0;
3516 		hdr->b_crypt_hdr.b_dsobj = 0;
3517 		bzero(hdr->b_crypt_hdr.b_salt, ZIO_DATA_SALT_LEN);
3518 		bzero(hdr->b_crypt_hdr.b_iv, ZIO_DATA_IV_LEN);
3519 		bzero(hdr->b_crypt_hdr.b_mac, ZIO_DATA_MAC_LEN);
3520 	}
3521 
3522 	buf_discard_identity(hdr);
3523 	kmem_cache_free(ocache, hdr);
3524 
3525 	return (nhdr);
3526 }
3527 
3528 /*
3529  * This function is used by the send / receive code to convert a newly
3530  * allocated arc_buf_t to one that is suitable for a raw encrypted write. It
3531  * is also used to allow the root objset block to be updated without altering
3532  * its embedded MACs. Both block types will always be uncompressed so we do not
3533  * have to worry about compression type or psize.
3534  */
3535 void
3536 arc_convert_to_raw(arc_buf_t *buf, uint64_t dsobj, boolean_t byteorder,
3537     dmu_object_type_t ot, const uint8_t *salt, const uint8_t *iv,
3538     const uint8_t *mac)
3539 {
3540 	arc_buf_hdr_t *hdr = buf->b_hdr;
3541 
3542 	ASSERT(ot == DMU_OT_DNODE || ot == DMU_OT_OBJSET);
3543 	ASSERT(HDR_HAS_L1HDR(hdr));
3544 	ASSERT3P(hdr->b_l1hdr.b_state, ==, arc_anon);
3545 
3546 	buf->b_flags |= (ARC_BUF_FLAG_COMPRESSED | ARC_BUF_FLAG_ENCRYPTED);
3547 	if (!HDR_PROTECTED(hdr))
3548 		hdr = arc_hdr_realloc_crypt(hdr, B_TRUE);
3549 	hdr->b_crypt_hdr.b_dsobj = dsobj;
3550 	hdr->b_crypt_hdr.b_ot = ot;
3551 	hdr->b_l1hdr.b_byteswap = (byteorder == ZFS_HOST_BYTEORDER) ?
3552 	    DMU_BSWAP_NUMFUNCS : DMU_OT_BYTESWAP(ot);
3553 	if (!arc_hdr_has_uncompressed_buf(hdr))
3554 		arc_cksum_free(hdr);
3555 
3556 	if (salt != NULL)
3557 		bcopy(salt, hdr->b_crypt_hdr.b_salt, ZIO_DATA_SALT_LEN);
3558 	if (iv != NULL)
3559 		bcopy(iv, hdr->b_crypt_hdr.b_iv, ZIO_DATA_IV_LEN);
3560 	if (mac != NULL)
3561 		bcopy(mac, hdr->b_crypt_hdr.b_mac, ZIO_DATA_MAC_LEN);
3562 }
3563 
3564 /*
3565  * Allocate a new arc_buf_hdr_t and arc_buf_t and return the buf to the caller.
3566  * The buf is returned thawed since we expect the consumer to modify it.
3567  */
3568 arc_buf_t *
3569 arc_alloc_buf(spa_t *spa, void *tag, arc_buf_contents_t type, int32_t size)
3570 {
3571 	arc_buf_hdr_t *hdr = arc_hdr_alloc(spa_load_guid(spa), size, size,
3572 	    B_FALSE, ZIO_COMPRESS_OFF, 0, type, B_FALSE);
3573 
3574 	arc_buf_t *buf = NULL;
3575 	VERIFY0(arc_buf_alloc_impl(hdr, spa, NULL, tag, B_FALSE, B_FALSE,
3576 	    B_FALSE, B_FALSE, &buf));
3577 	arc_buf_thaw(buf);
3578 
3579 	return (buf);
3580 }
3581 
3582 /*
3583  * Allocate a compressed buf in the same manner as arc_alloc_buf. Don't use this
3584  * for bufs containing metadata.
3585  */
3586 arc_buf_t *
3587 arc_alloc_compressed_buf(spa_t *spa, void *tag, uint64_t psize, uint64_t lsize,
3588     enum zio_compress compression_type, uint8_t complevel)
3589 {
3590 	ASSERT3U(lsize, >, 0);
3591 	ASSERT3U(lsize, >=, psize);
3592 	ASSERT3U(compression_type, >, ZIO_COMPRESS_OFF);
3593 	ASSERT3U(compression_type, <, ZIO_COMPRESS_FUNCTIONS);
3594 
3595 	arc_buf_hdr_t *hdr = arc_hdr_alloc(spa_load_guid(spa), psize, lsize,
3596 	    B_FALSE, compression_type, complevel, ARC_BUFC_DATA, B_FALSE);
3597 
3598 	arc_buf_t *buf = NULL;
3599 	VERIFY0(arc_buf_alloc_impl(hdr, spa, NULL, tag, B_FALSE,
3600 	    B_TRUE, B_FALSE, B_FALSE, &buf));
3601 	arc_buf_thaw(buf);
3602 	ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, ==, NULL);
3603 
3604 	if (!arc_buf_is_shared(buf)) {
3605 		/*
3606 		 * To ensure that the hdr has the correct data in it if we call
3607 		 * arc_untransform() on this buf before it's been written to
3608 		 * disk, it's easiest if we just set up sharing between the
3609 		 * buf and the hdr.
3610 		 */
3611 		arc_hdr_free_abd(hdr, B_FALSE);
3612 		arc_share_buf(hdr, buf);
3613 	}
3614 
3615 	return (buf);
3616 }
3617 
3618 arc_buf_t *
3619 arc_alloc_raw_buf(spa_t *spa, void *tag, uint64_t dsobj, boolean_t byteorder,
3620     const uint8_t *salt, const uint8_t *iv, const uint8_t *mac,
3621     dmu_object_type_t ot, uint64_t psize, uint64_t lsize,
3622     enum zio_compress compression_type, uint8_t complevel)
3623 {
3624 	arc_buf_hdr_t *hdr;
3625 	arc_buf_t *buf;
3626 	arc_buf_contents_t type = DMU_OT_IS_METADATA(ot) ?
3627 	    ARC_BUFC_METADATA : ARC_BUFC_DATA;
3628 
3629 	ASSERT3U(lsize, >, 0);
3630 	ASSERT3U(lsize, >=, psize);
3631 	ASSERT3U(compression_type, >=, ZIO_COMPRESS_OFF);
3632 	ASSERT3U(compression_type, <, ZIO_COMPRESS_FUNCTIONS);
3633 
3634 	hdr = arc_hdr_alloc(spa_load_guid(spa), psize, lsize, B_TRUE,
3635 	    compression_type, complevel, type, B_TRUE);
3636 
3637 	hdr->b_crypt_hdr.b_dsobj = dsobj;
3638 	hdr->b_crypt_hdr.b_ot = ot;
3639 	hdr->b_l1hdr.b_byteswap = (byteorder == ZFS_HOST_BYTEORDER) ?
3640 	    DMU_BSWAP_NUMFUNCS : DMU_OT_BYTESWAP(ot);
3641 	bcopy(salt, hdr->b_crypt_hdr.b_salt, ZIO_DATA_SALT_LEN);
3642 	bcopy(iv, hdr->b_crypt_hdr.b_iv, ZIO_DATA_IV_LEN);
3643 	bcopy(mac, hdr->b_crypt_hdr.b_mac, ZIO_DATA_MAC_LEN);
3644 
3645 	/*
3646 	 * This buffer will be considered encrypted even if the ot is not an
3647 	 * encrypted type. It will become authenticated instead in
3648 	 * arc_write_ready().
3649 	 */
3650 	buf = NULL;
3651 	VERIFY0(arc_buf_alloc_impl(hdr, spa, NULL, tag, B_TRUE, B_TRUE,
3652 	    B_FALSE, B_FALSE, &buf));
3653 	arc_buf_thaw(buf);
3654 	ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, ==, NULL);
3655 
3656 	return (buf);
3657 }
3658 
3659 static void
3660 l2arc_hdr_arcstats_update(arc_buf_hdr_t *hdr, boolean_t incr,
3661     boolean_t state_only)
3662 {
3663 	l2arc_buf_hdr_t *l2hdr = &hdr->b_l2hdr;
3664 	l2arc_dev_t *dev = l2hdr->b_dev;
3665 	uint64_t lsize = HDR_GET_LSIZE(hdr);
3666 	uint64_t psize = HDR_GET_PSIZE(hdr);
3667 	uint64_t asize = vdev_psize_to_asize(dev->l2ad_vdev, psize);
3668 	arc_buf_contents_t type = hdr->b_type;
3669 	int64_t lsize_s;
3670 	int64_t psize_s;
3671 	int64_t asize_s;
3672 
3673 	if (incr) {
3674 		lsize_s = lsize;
3675 		psize_s = psize;
3676 		asize_s = asize;
3677 	} else {
3678 		lsize_s = -lsize;
3679 		psize_s = -psize;
3680 		asize_s = -asize;
3681 	}
3682 
3683 	/* If the buffer is a prefetch, count it as such. */
3684 	if (HDR_PREFETCH(hdr)) {
3685 		ARCSTAT_INCR(arcstat_l2_prefetch_asize, asize_s);
3686 	} else {
3687 		/*
3688 		 * We use the value stored in the L2 header upon initial
3689 		 * caching in L2ARC. This value will be updated in case
3690 		 * an MRU/MRU_ghost buffer transitions to MFU but the L2ARC
3691 		 * metadata (log entry) cannot currently be updated. Having
3692 		 * the ARC state in the L2 header solves the problem of a
3693 		 * possibly absent L1 header (apparent in buffers restored
3694 		 * from persistent L2ARC).
3695 		 */
3696 		switch (hdr->b_l2hdr.b_arcs_state) {
3697 			case ARC_STATE_MRU_GHOST:
3698 			case ARC_STATE_MRU:
3699 				ARCSTAT_INCR(arcstat_l2_mru_asize, asize_s);
3700 				break;
3701 			case ARC_STATE_MFU_GHOST:
3702 			case ARC_STATE_MFU:
3703 				ARCSTAT_INCR(arcstat_l2_mfu_asize, asize_s);
3704 				break;
3705 			default:
3706 				break;
3707 		}
3708 	}
3709 
3710 	if (state_only)
3711 		return;
3712 
3713 	ARCSTAT_INCR(arcstat_l2_psize, psize_s);
3714 	ARCSTAT_INCR(arcstat_l2_lsize, lsize_s);
3715 
3716 	switch (type) {
3717 		case ARC_BUFC_DATA:
3718 			ARCSTAT_INCR(arcstat_l2_bufc_data_asize, asize_s);
3719 			break;
3720 		case ARC_BUFC_METADATA:
3721 			ARCSTAT_INCR(arcstat_l2_bufc_metadata_asize, asize_s);
3722 			break;
3723 		default:
3724 			break;
3725 	}
3726 }
3727 
3728 
3729 static void
3730 arc_hdr_l2hdr_destroy(arc_buf_hdr_t *hdr)
3731 {
3732 	l2arc_buf_hdr_t *l2hdr = &hdr->b_l2hdr;
3733 	l2arc_dev_t *dev = l2hdr->b_dev;
3734 	uint64_t psize = HDR_GET_PSIZE(hdr);
3735 	uint64_t asize = vdev_psize_to_asize(dev->l2ad_vdev, psize);
3736 
3737 	ASSERT(MUTEX_HELD(&dev->l2ad_mtx));
3738 	ASSERT(HDR_HAS_L2HDR(hdr));
3739 
3740 	list_remove(&dev->l2ad_buflist, hdr);
3741 
3742 	l2arc_hdr_arcstats_decrement(hdr);
3743 	vdev_space_update(dev->l2ad_vdev, -asize, 0, 0);
3744 
3745 	(void) zfs_refcount_remove_many(&dev->l2ad_alloc, arc_hdr_size(hdr),
3746 	    hdr);
3747 	arc_hdr_clear_flags(hdr, ARC_FLAG_HAS_L2HDR);
3748 }
3749 
3750 static void
3751 arc_hdr_destroy(arc_buf_hdr_t *hdr)
3752 {
3753 	if (HDR_HAS_L1HDR(hdr)) {
3754 		ASSERT(hdr->b_l1hdr.b_buf == NULL ||
3755 		    hdr->b_l1hdr.b_bufcnt > 0);
3756 		ASSERT(zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
3757 		ASSERT3P(hdr->b_l1hdr.b_state, ==, arc_anon);
3758 	}
3759 	ASSERT(!HDR_IO_IN_PROGRESS(hdr));
3760 	ASSERT(!HDR_IN_HASH_TABLE(hdr));
3761 
3762 	if (HDR_HAS_L2HDR(hdr)) {
3763 		l2arc_dev_t *dev = hdr->b_l2hdr.b_dev;
3764 		boolean_t buflist_held = MUTEX_HELD(&dev->l2ad_mtx);
3765 
3766 		if (!buflist_held)
3767 			mutex_enter(&dev->l2ad_mtx);
3768 
3769 		/*
3770 		 * Even though we checked this conditional above, we
3771 		 * need to check this again now that we have the
3772 		 * l2ad_mtx. This is because we could be racing with
3773 		 * another thread calling l2arc_evict() which might have
3774 		 * destroyed this header's L2 portion as we were waiting
3775 		 * to acquire the l2ad_mtx. If that happens, we don't
3776 		 * want to re-destroy the header's L2 portion.
3777 		 */
3778 		if (HDR_HAS_L2HDR(hdr))
3779 			arc_hdr_l2hdr_destroy(hdr);
3780 
3781 		if (!buflist_held)
3782 			mutex_exit(&dev->l2ad_mtx);
3783 	}
3784 
3785 	/*
3786 	 * The header's identify can only be safely discarded once it is no
3787 	 * longer discoverable.  This requires removing it from the hash table
3788 	 * and the l2arc header list.  After this point the hash lock can not
3789 	 * be used to protect the header.
3790 	 */
3791 	if (!HDR_EMPTY(hdr))
3792 		buf_discard_identity(hdr);
3793 
3794 	if (HDR_HAS_L1HDR(hdr)) {
3795 		arc_cksum_free(hdr);
3796 
3797 		while (hdr->b_l1hdr.b_buf != NULL)
3798 			arc_buf_destroy_impl(hdr->b_l1hdr.b_buf);
3799 
3800 		if (hdr->b_l1hdr.b_pabd != NULL)
3801 			arc_hdr_free_abd(hdr, B_FALSE);
3802 
3803 		if (HDR_HAS_RABD(hdr))
3804 			arc_hdr_free_abd(hdr, B_TRUE);
3805 	}
3806 
3807 	ASSERT3P(hdr->b_hash_next, ==, NULL);
3808 	if (HDR_HAS_L1HDR(hdr)) {
3809 		ASSERT(!multilist_link_active(&hdr->b_l1hdr.b_arc_node));
3810 		ASSERT3P(hdr->b_l1hdr.b_acb, ==, NULL);
3811 
3812 		if (!HDR_PROTECTED(hdr)) {
3813 			kmem_cache_free(hdr_full_cache, hdr);
3814 		} else {
3815 			kmem_cache_free(hdr_full_crypt_cache, hdr);
3816 		}
3817 	} else {
3818 		kmem_cache_free(hdr_l2only_cache, hdr);
3819 	}
3820 }
3821 
3822 void
3823 arc_buf_destroy(arc_buf_t *buf, void* tag)
3824 {
3825 	arc_buf_hdr_t *hdr = buf->b_hdr;
3826 
3827 	if (hdr->b_l1hdr.b_state == arc_anon) {
3828 		ASSERT3U(hdr->b_l1hdr.b_bufcnt, ==, 1);
3829 		ASSERT(!HDR_IO_IN_PROGRESS(hdr));
3830 		VERIFY0(remove_reference(hdr, NULL, tag));
3831 		arc_hdr_destroy(hdr);
3832 		return;
3833 	}
3834 
3835 	kmutex_t *hash_lock = HDR_LOCK(hdr);
3836 	mutex_enter(hash_lock);
3837 
3838 	ASSERT3P(hdr, ==, buf->b_hdr);
3839 	ASSERT(hdr->b_l1hdr.b_bufcnt > 0);
3840 	ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
3841 	ASSERT3P(hdr->b_l1hdr.b_state, !=, arc_anon);
3842 	ASSERT3P(buf->b_data, !=, NULL);
3843 
3844 	(void) remove_reference(hdr, hash_lock, tag);
3845 	arc_buf_destroy_impl(buf);
3846 	mutex_exit(hash_lock);
3847 }
3848 
3849 /*
3850  * Evict the arc_buf_hdr that is provided as a parameter. The resultant
3851  * state of the header is dependent on its state prior to entering this
3852  * function. The following transitions are possible:
3853  *
3854  *    - arc_mru -> arc_mru_ghost
3855  *    - arc_mfu -> arc_mfu_ghost
3856  *    - arc_mru_ghost -> arc_l2c_only
3857  *    - arc_mru_ghost -> deleted
3858  *    - arc_mfu_ghost -> arc_l2c_only
3859  *    - arc_mfu_ghost -> deleted
3860  *
3861  * Return total size of evicted data buffers for eviction progress tracking.
3862  * When evicting from ghost states return logical buffer size to make eviction
3863  * progress at the same (or at least comparable) rate as from non-ghost states.
3864  *
3865  * Return *real_evicted for actual ARC size reduction to wake up threads
3866  * waiting for it.  For non-ghost states it includes size of evicted data
3867  * buffers (the headers are not freed there).  For ghost states it includes
3868  * only the evicted headers size.
3869  */
3870 static int64_t
3871 arc_evict_hdr(arc_buf_hdr_t *hdr, kmutex_t *hash_lock, uint64_t *real_evicted)
3872 {
3873 	arc_state_t *evicted_state, *state;
3874 	int64_t bytes_evicted = 0;
3875 	int min_lifetime = HDR_PRESCIENT_PREFETCH(hdr) ?
3876 	    arc_min_prescient_prefetch_ms : arc_min_prefetch_ms;
3877 
3878 	ASSERT(MUTEX_HELD(hash_lock));
3879 	ASSERT(HDR_HAS_L1HDR(hdr));
3880 
3881 	*real_evicted = 0;
3882 	state = hdr->b_l1hdr.b_state;
3883 	if (GHOST_STATE(state)) {
3884 		ASSERT(!HDR_IO_IN_PROGRESS(hdr));
3885 		ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
3886 
3887 		/*
3888 		 * l2arc_write_buffers() relies on a header's L1 portion
3889 		 * (i.e. its b_pabd field) during it's write phase.
3890 		 * Thus, we cannot push a header onto the arc_l2c_only
3891 		 * state (removing its L1 piece) until the header is
3892 		 * done being written to the l2arc.
3893 		 */
3894 		if (HDR_HAS_L2HDR(hdr) && HDR_L2_WRITING(hdr)) {
3895 			ARCSTAT_BUMP(arcstat_evict_l2_skip);
3896 			return (bytes_evicted);
3897 		}
3898 
3899 		ARCSTAT_BUMP(arcstat_deleted);
3900 		bytes_evicted += HDR_GET_LSIZE(hdr);
3901 
3902 		DTRACE_PROBE1(arc__delete, arc_buf_hdr_t *, hdr);
3903 
3904 		if (HDR_HAS_L2HDR(hdr)) {
3905 			ASSERT(hdr->b_l1hdr.b_pabd == NULL);
3906 			ASSERT(!HDR_HAS_RABD(hdr));
3907 			/*
3908 			 * This buffer is cached on the 2nd Level ARC;
3909 			 * don't destroy the header.
3910 			 */
3911 			arc_change_state(arc_l2c_only, hdr, hash_lock);
3912 			/*
3913 			 * dropping from L1+L2 cached to L2-only,
3914 			 * realloc to remove the L1 header.
3915 			 */
3916 			hdr = arc_hdr_realloc(hdr, hdr_full_cache,
3917 			    hdr_l2only_cache);
3918 			*real_evicted += HDR_FULL_SIZE - HDR_L2ONLY_SIZE;
3919 		} else {
3920 			arc_change_state(arc_anon, hdr, hash_lock);
3921 			arc_hdr_destroy(hdr);
3922 			*real_evicted += HDR_FULL_SIZE;
3923 		}
3924 		return (bytes_evicted);
3925 	}
3926 
3927 	ASSERT(state == arc_mru || state == arc_mfu);
3928 	evicted_state = (state == arc_mru) ? arc_mru_ghost : arc_mfu_ghost;
3929 
3930 	/* prefetch buffers have a minimum lifespan */
3931 	if (HDR_IO_IN_PROGRESS(hdr) ||
3932 	    ((hdr->b_flags & (ARC_FLAG_PREFETCH | ARC_FLAG_INDIRECT)) &&
3933 	    ddi_get_lbolt() - hdr->b_l1hdr.b_arc_access <
3934 	    MSEC_TO_TICK(min_lifetime))) {
3935 		ARCSTAT_BUMP(arcstat_evict_skip);
3936 		return (bytes_evicted);
3937 	}
3938 
3939 	ASSERT0(zfs_refcount_count(&hdr->b_l1hdr.b_refcnt));
3940 	while (hdr->b_l1hdr.b_buf) {
3941 		arc_buf_t *buf = hdr->b_l1hdr.b_buf;
3942 		if (!mutex_tryenter(&buf->b_evict_lock)) {
3943 			ARCSTAT_BUMP(arcstat_mutex_miss);
3944 			break;
3945 		}
3946 		if (buf->b_data != NULL) {
3947 			bytes_evicted += HDR_GET_LSIZE(hdr);
3948 			*real_evicted += HDR_GET_LSIZE(hdr);
3949 		}
3950 		mutex_exit(&buf->b_evict_lock);
3951 		arc_buf_destroy_impl(buf);
3952 	}
3953 
3954 	if (HDR_HAS_L2HDR(hdr)) {
3955 		ARCSTAT_INCR(arcstat_evict_l2_cached, HDR_GET_LSIZE(hdr));
3956 	} else {
3957 		if (l2arc_write_eligible(hdr->b_spa, hdr)) {
3958 			ARCSTAT_INCR(arcstat_evict_l2_eligible,
3959 			    HDR_GET_LSIZE(hdr));
3960 
3961 			switch (state->arcs_state) {
3962 				case ARC_STATE_MRU:
3963 					ARCSTAT_INCR(
3964 					    arcstat_evict_l2_eligible_mru,
3965 					    HDR_GET_LSIZE(hdr));
3966 					break;
3967 				case ARC_STATE_MFU:
3968 					ARCSTAT_INCR(
3969 					    arcstat_evict_l2_eligible_mfu,
3970 					    HDR_GET_LSIZE(hdr));
3971 					break;
3972 				default:
3973 					break;
3974 			}
3975 		} else {
3976 			ARCSTAT_INCR(arcstat_evict_l2_ineligible,
3977 			    HDR_GET_LSIZE(hdr));
3978 		}
3979 	}
3980 
3981 	if (hdr->b_l1hdr.b_bufcnt == 0) {
3982 		arc_cksum_free(hdr);
3983 
3984 		bytes_evicted += arc_hdr_size(hdr);
3985 		*real_evicted += arc_hdr_size(hdr);
3986 
3987 		/*
3988 		 * If this hdr is being evicted and has a compressed
3989 		 * buffer then we discard it here before we change states.
3990 		 * This ensures that the accounting is updated correctly
3991 		 * in arc_free_data_impl().
3992 		 */
3993 		if (hdr->b_l1hdr.b_pabd != NULL)
3994 			arc_hdr_free_abd(hdr, B_FALSE);
3995 
3996 		if (HDR_HAS_RABD(hdr))
3997 			arc_hdr_free_abd(hdr, B_TRUE);
3998 
3999 		arc_change_state(evicted_state, hdr, hash_lock);
4000 		ASSERT(HDR_IN_HASH_TABLE(hdr));
4001 		arc_hdr_set_flags(hdr, ARC_FLAG_IN_HASH_TABLE);
4002 		DTRACE_PROBE1(arc__evict, arc_buf_hdr_t *, hdr);
4003 	}
4004 
4005 	return (bytes_evicted);
4006 }
4007 
4008 static void
4009 arc_set_need_free(void)
4010 {
4011 	ASSERT(MUTEX_HELD(&arc_evict_lock));
4012 	int64_t remaining = arc_free_memory() - arc_sys_free / 2;
4013 	arc_evict_waiter_t *aw = list_tail(&arc_evict_waiters);
4014 	if (aw == NULL) {
4015 		arc_need_free = MAX(-remaining, 0);
4016 	} else {
4017 		arc_need_free =
4018 		    MAX(-remaining, (int64_t)(aw->aew_count - arc_evict_count));
4019 	}
4020 }
4021 
4022 static uint64_t
4023 arc_evict_state_impl(multilist_t *ml, int idx, arc_buf_hdr_t *marker,
4024     uint64_t spa, uint64_t bytes)
4025 {
4026 	multilist_sublist_t *mls;
4027 	uint64_t bytes_evicted = 0, real_evicted = 0;
4028 	arc_buf_hdr_t *hdr;
4029 	kmutex_t *hash_lock;
4030 	int evict_count = zfs_arc_evict_batch_limit;
4031 
4032 	ASSERT3P(marker, !=, NULL);
4033 
4034 	mls = multilist_sublist_lock(ml, idx);
4035 
4036 	for (hdr = multilist_sublist_prev(mls, marker); likely(hdr != NULL);
4037 	    hdr = multilist_sublist_prev(mls, marker)) {
4038 		if ((evict_count <= 0) || (bytes_evicted >= bytes))
4039 			break;
4040 
4041 		/*
4042 		 * To keep our iteration location, move the marker
4043 		 * forward. Since we're not holding hdr's hash lock, we
4044 		 * must be very careful and not remove 'hdr' from the
4045 		 * sublist. Otherwise, other consumers might mistake the
4046 		 * 'hdr' as not being on a sublist when they call the
4047 		 * multilist_link_active() function (they all rely on
4048 		 * the hash lock protecting concurrent insertions and
4049 		 * removals). multilist_sublist_move_forward() was
4050 		 * specifically implemented to ensure this is the case
4051 		 * (only 'marker' will be removed and re-inserted).
4052 		 */
4053 		multilist_sublist_move_forward(mls, marker);
4054 
4055 		/*
4056 		 * The only case where the b_spa field should ever be
4057 		 * zero, is the marker headers inserted by
4058 		 * arc_evict_state(). It's possible for multiple threads
4059 		 * to be calling arc_evict_state() concurrently (e.g.
4060 		 * dsl_pool_close() and zio_inject_fault()), so we must
4061 		 * skip any markers we see from these other threads.
4062 		 */
4063 		if (hdr->b_spa == 0)
4064 			continue;
4065 
4066 		/* we're only interested in evicting buffers of a certain spa */
4067 		if (spa != 0 && hdr->b_spa != spa) {
4068 			ARCSTAT_BUMP(arcstat_evict_skip);
4069 			continue;
4070 		}
4071 
4072 		hash_lock = HDR_LOCK(hdr);
4073 
4074 		/*
4075 		 * We aren't calling this function from any code path
4076 		 * that would already be holding a hash lock, so we're
4077 		 * asserting on this assumption to be defensive in case
4078 		 * this ever changes. Without this check, it would be
4079 		 * possible to incorrectly increment arcstat_mutex_miss
4080 		 * below (e.g. if the code changed such that we called
4081 		 * this function with a hash lock held).
4082 		 */
4083 		ASSERT(!MUTEX_HELD(hash_lock));
4084 
4085 		if (mutex_tryenter(hash_lock)) {
4086 			uint64_t revicted;
4087 			uint64_t evicted = arc_evict_hdr(hdr, hash_lock,
4088 			    &revicted);
4089 			mutex_exit(hash_lock);
4090 
4091 			bytes_evicted += evicted;
4092 			real_evicted += revicted;
4093 
4094 			/*
4095 			 * If evicted is zero, arc_evict_hdr() must have
4096 			 * decided to skip this header, don't increment
4097 			 * evict_count in this case.
4098 			 */
4099 			if (evicted != 0)
4100 				evict_count--;
4101 
4102 		} else {
4103 			ARCSTAT_BUMP(arcstat_mutex_miss);
4104 		}
4105 	}
4106 
4107 	multilist_sublist_unlock(mls);
4108 
4109 	/*
4110 	 * Increment the count of evicted bytes, and wake up any threads that
4111 	 * are waiting for the count to reach this value.  Since the list is
4112 	 * ordered by ascending aew_count, we pop off the beginning of the
4113 	 * list until we reach the end, or a waiter that's past the current
4114 	 * "count".  Doing this outside the loop reduces the number of times
4115 	 * we need to acquire the global arc_evict_lock.
4116 	 *
4117 	 * Only wake when there's sufficient free memory in the system
4118 	 * (specifically, arc_sys_free/2, which by default is a bit more than
4119 	 * 1/64th of RAM).  See the comments in arc_wait_for_eviction().
4120 	 */
4121 	mutex_enter(&arc_evict_lock);
4122 	arc_evict_count += real_evicted;
4123 
4124 	if (arc_free_memory() > arc_sys_free / 2) {
4125 		arc_evict_waiter_t *aw;
4126 		while ((aw = list_head(&arc_evict_waiters)) != NULL &&
4127 		    aw->aew_count <= arc_evict_count) {
4128 			list_remove(&arc_evict_waiters, aw);
4129 			cv_broadcast(&aw->aew_cv);
4130 		}
4131 	}
4132 	arc_set_need_free();
4133 	mutex_exit(&arc_evict_lock);
4134 
4135 	/*
4136 	 * If the ARC size is reduced from arc_c_max to arc_c_min (especially
4137 	 * if the average cached block is small), eviction can be on-CPU for
4138 	 * many seconds.  To ensure that other threads that may be bound to
4139 	 * this CPU are able to make progress, make a voluntary preemption
4140 	 * call here.
4141 	 */
4142 	cond_resched();
4143 
4144 	return (bytes_evicted);
4145 }
4146 
4147 /*
4148  * Evict buffers from the given arc state, until we've removed the
4149  * specified number of bytes. Move the removed buffers to the
4150  * appropriate evict state.
4151  *
4152  * This function makes a "best effort". It skips over any buffers
4153  * it can't get a hash_lock on, and so, may not catch all candidates.
4154  * It may also return without evicting as much space as requested.
4155  *
4156  * If bytes is specified using the special value ARC_EVICT_ALL, this
4157  * will evict all available (i.e. unlocked and evictable) buffers from
4158  * the given arc state; which is used by arc_flush().
4159  */
4160 static uint64_t
4161 arc_evict_state(arc_state_t *state, uint64_t spa, uint64_t bytes,
4162     arc_buf_contents_t type)
4163 {
4164 	uint64_t total_evicted = 0;
4165 	multilist_t *ml = &state->arcs_list[type];
4166 	int num_sublists;
4167 	arc_buf_hdr_t **markers;
4168 
4169 	num_sublists = multilist_get_num_sublists(ml);
4170 
4171 	/*
4172 	 * If we've tried to evict from each sublist, made some
4173 	 * progress, but still have not hit the target number of bytes
4174 	 * to evict, we want to keep trying. The markers allow us to
4175 	 * pick up where we left off for each individual sublist, rather
4176 	 * than starting from the tail each time.
4177 	 */
4178 	markers = kmem_zalloc(sizeof (*markers) * num_sublists, KM_SLEEP);
4179 	for (int i = 0; i < num_sublists; i++) {
4180 		multilist_sublist_t *mls;
4181 
4182 		markers[i] = kmem_cache_alloc(hdr_full_cache, KM_SLEEP);
4183 
4184 		/*
4185 		 * A b_spa of 0 is used to indicate that this header is
4186 		 * a marker. This fact is used in arc_evict_type() and
4187 		 * arc_evict_state_impl().
4188 		 */
4189 		markers[i]->b_spa = 0;
4190 
4191 		mls = multilist_sublist_lock(ml, i);
4192 		multilist_sublist_insert_tail(mls, markers[i]);
4193 		multilist_sublist_unlock(mls);
4194 	}
4195 
4196 	/*
4197 	 * While we haven't hit our target number of bytes to evict, or
4198 	 * we're evicting all available buffers.
4199 	 */
4200 	while (total_evicted < bytes) {
4201 		int sublist_idx = multilist_get_random_index(ml);
4202 		uint64_t scan_evicted = 0;
4203 
4204 		/*
4205 		 * Try to reduce pinned dnodes with a floor of arc_dnode_limit.
4206 		 * Request that 10% of the LRUs be scanned by the superblock
4207 		 * shrinker.
4208 		 */
4209 		if (type == ARC_BUFC_DATA && aggsum_compare(
4210 		    &arc_sums.arcstat_dnode_size, arc_dnode_size_limit) > 0) {
4211 			arc_prune_async((aggsum_upper_bound(
4212 			    &arc_sums.arcstat_dnode_size) -
4213 			    arc_dnode_size_limit) / sizeof (dnode_t) /
4214 			    zfs_arc_dnode_reduce_percent);
4215 		}
4216 
4217 		/*
4218 		 * Start eviction using a randomly selected sublist,
4219 		 * this is to try and evenly balance eviction across all
4220 		 * sublists. Always starting at the same sublist
4221 		 * (e.g. index 0) would cause evictions to favor certain
4222 		 * sublists over others.
4223 		 */
4224 		for (int i = 0; i < num_sublists; i++) {
4225 			uint64_t bytes_remaining;
4226 			uint64_t bytes_evicted;
4227 
4228 			if (total_evicted < bytes)
4229 				bytes_remaining = bytes - total_evicted;
4230 			else
4231 				break;
4232 
4233 			bytes_evicted = arc_evict_state_impl(ml, sublist_idx,
4234 			    markers[sublist_idx], spa, bytes_remaining);
4235 
4236 			scan_evicted += bytes_evicted;
4237 			total_evicted += bytes_evicted;
4238 
4239 			/* we've reached the end, wrap to the beginning */
4240 			if (++sublist_idx >= num_sublists)
4241 				sublist_idx = 0;
4242 		}
4243 
4244 		/*
4245 		 * If we didn't evict anything during this scan, we have
4246 		 * no reason to believe we'll evict more during another
4247 		 * scan, so break the loop.
4248 		 */
4249 		if (scan_evicted == 0) {
4250 			/* This isn't possible, let's make that obvious */
4251 			ASSERT3S(bytes, !=, 0);
4252 
4253 			/*
4254 			 * When bytes is ARC_EVICT_ALL, the only way to
4255 			 * break the loop is when scan_evicted is zero.
4256 			 * In that case, we actually have evicted enough,
4257 			 * so we don't want to increment the kstat.
4258 			 */
4259 			if (bytes != ARC_EVICT_ALL) {
4260 				ASSERT3S(total_evicted, <, bytes);
4261 				ARCSTAT_BUMP(arcstat_evict_not_enough);
4262 			}
4263 
4264 			break;
4265 		}
4266 	}
4267 
4268 	for (int i = 0; i < num_sublists; i++) {
4269 		multilist_sublist_t *mls = multilist_sublist_lock(ml, i);
4270 		multilist_sublist_remove(mls, markers[i]);
4271 		multilist_sublist_unlock(mls);
4272 
4273 		kmem_cache_free(hdr_full_cache, markers[i]);
4274 	}
4275 	kmem_free(markers, sizeof (*markers) * num_sublists);
4276 
4277 	return (total_evicted);
4278 }
4279 
4280 /*
4281  * Flush all "evictable" data of the given type from the arc state
4282  * specified. This will not evict any "active" buffers (i.e. referenced).
4283  *
4284  * When 'retry' is set to B_FALSE, the function will make a single pass
4285  * over the state and evict any buffers that it can. Since it doesn't
4286  * continually retry the eviction, it might end up leaving some buffers
4287  * in the ARC due to lock misses.
4288  *
4289  * When 'retry' is set to B_TRUE, the function will continually retry the
4290  * eviction until *all* evictable buffers have been removed from the
4291  * state. As a result, if concurrent insertions into the state are
4292  * allowed (e.g. if the ARC isn't shutting down), this function might
4293  * wind up in an infinite loop, continually trying to evict buffers.
4294  */
4295 static uint64_t
4296 arc_flush_state(arc_state_t *state, uint64_t spa, arc_buf_contents_t type,
4297     boolean_t retry)
4298 {
4299 	uint64_t evicted = 0;
4300 
4301 	while (zfs_refcount_count(&state->arcs_esize[type]) != 0) {
4302 		evicted += arc_evict_state(state, spa, ARC_EVICT_ALL, type);
4303 
4304 		if (!retry)
4305 			break;
4306 	}
4307 
4308 	return (evicted);
4309 }
4310 
4311 /*
4312  * Evict the specified number of bytes from the state specified,
4313  * restricting eviction to the spa and type given. This function
4314  * prevents us from trying to evict more from a state's list than
4315  * is "evictable", and to skip evicting altogether when passed a
4316  * negative value for "bytes". In contrast, arc_evict_state() will
4317  * evict everything it can, when passed a negative value for "bytes".
4318  */
4319 static uint64_t
4320 arc_evict_impl(arc_state_t *state, uint64_t spa, int64_t bytes,
4321     arc_buf_contents_t type)
4322 {
4323 	uint64_t delta;
4324 
4325 	if (bytes > 0 && zfs_refcount_count(&state->arcs_esize[type]) > 0) {
4326 		delta = MIN(zfs_refcount_count(&state->arcs_esize[type]),
4327 		    bytes);
4328 		return (arc_evict_state(state, spa, delta, type));
4329 	}
4330 
4331 	return (0);
4332 }
4333 
4334 /*
4335  * The goal of this function is to evict enough meta data buffers from the
4336  * ARC in order to enforce the arc_meta_limit.  Achieving this is slightly
4337  * more complicated than it appears because it is common for data buffers
4338  * to have holds on meta data buffers.  In addition, dnode meta data buffers
4339  * will be held by the dnodes in the block preventing them from being freed.
4340  * This means we can't simply traverse the ARC and expect to always find
4341  * enough unheld meta data buffer to release.
4342  *
4343  * Therefore, this function has been updated to make alternating passes
4344  * over the ARC releasing data buffers and then newly unheld meta data
4345  * buffers.  This ensures forward progress is maintained and meta_used
4346  * will decrease.  Normally this is sufficient, but if required the ARC
4347  * will call the registered prune callbacks causing dentry and inodes to
4348  * be dropped from the VFS cache.  This will make dnode meta data buffers
4349  * available for reclaim.
4350  */
4351 static uint64_t
4352 arc_evict_meta_balanced(uint64_t meta_used)
4353 {
4354 	int64_t delta, prune = 0, adjustmnt;
4355 	uint64_t total_evicted = 0;
4356 	arc_buf_contents_t type = ARC_BUFC_DATA;
4357 	int restarts = MAX(zfs_arc_meta_adjust_restarts, 0);
4358 
4359 restart:
4360 	/*
4361 	 * This slightly differs than the way we evict from the mru in
4362 	 * arc_evict because we don't have a "target" value (i.e. no
4363 	 * "meta" arc_p). As a result, I think we can completely
4364 	 * cannibalize the metadata in the MRU before we evict the
4365 	 * metadata from the MFU. I think we probably need to implement a
4366 	 * "metadata arc_p" value to do this properly.
4367 	 */
4368 	adjustmnt = meta_used - arc_meta_limit;
4369 
4370 	if (adjustmnt > 0 &&
4371 	    zfs_refcount_count(&arc_mru->arcs_esize[type]) > 0) {
4372 		delta = MIN(zfs_refcount_count(&arc_mru->arcs_esize[type]),
4373 		    adjustmnt);
4374 		total_evicted += arc_evict_impl(arc_mru, 0, delta, type);
4375 		adjustmnt -= delta;
4376 	}
4377 
4378 	/*
4379 	 * We can't afford to recalculate adjustmnt here. If we do,
4380 	 * new metadata buffers can sneak into the MRU or ANON lists,
4381 	 * thus penalize the MFU metadata. Although the fudge factor is
4382 	 * small, it has been empirically shown to be significant for
4383 	 * certain workloads (e.g. creating many empty directories). As
4384 	 * such, we use the original calculation for adjustmnt, and
4385 	 * simply decrement the amount of data evicted from the MRU.
4386 	 */
4387 
4388 	if (adjustmnt > 0 &&
4389 	    zfs_refcount_count(&arc_mfu->arcs_esize[type]) > 0) {
4390 		delta = MIN(zfs_refcount_count(&arc_mfu->arcs_esize[type]),
4391 		    adjustmnt);
4392 		total_evicted += arc_evict_impl(arc_mfu, 0, delta, type);
4393 	}
4394 
4395 	adjustmnt = meta_used - arc_meta_limit;
4396 
4397 	if (adjustmnt > 0 &&
4398 	    zfs_refcount_count(&arc_mru_ghost->arcs_esize[type]) > 0) {
4399 		delta = MIN(adjustmnt,
4400 		    zfs_refcount_count(&arc_mru_ghost->arcs_esize[type]));
4401 		total_evicted += arc_evict_impl(arc_mru_ghost, 0, delta, type);
4402 		adjustmnt -= delta;
4403 	}
4404 
4405 	if (adjustmnt > 0 &&
4406 	    zfs_refcount_count(&arc_mfu_ghost->arcs_esize[type]) > 0) {
4407 		delta = MIN(adjustmnt,
4408 		    zfs_refcount_count(&arc_mfu_ghost->arcs_esize[type]));
4409 		total_evicted += arc_evict_impl(arc_mfu_ghost, 0, delta, type);
4410 	}
4411 
4412 	/*
4413 	 * If after attempting to make the requested adjustment to the ARC
4414 	 * the meta limit is still being exceeded then request that the
4415 	 * higher layers drop some cached objects which have holds on ARC
4416 	 * meta buffers.  Requests to the upper layers will be made with
4417 	 * increasingly large scan sizes until the ARC is below the limit.
4418 	 */
4419 	if (meta_used > arc_meta_limit) {
4420 		if (type == ARC_BUFC_DATA) {
4421 			type = ARC_BUFC_METADATA;
4422 		} else {
4423 			type = ARC_BUFC_DATA;
4424 
4425 			if (zfs_arc_meta_prune) {
4426 				prune += zfs_arc_meta_prune;
4427 				arc_prune_async(prune);
4428 			}
4429 		}
4430 
4431 		if (restarts > 0) {
4432 			restarts--;
4433 			goto restart;
4434 		}
4435 	}
4436 	return (total_evicted);
4437 }
4438 
4439 /*
4440  * Evict metadata buffers from the cache, such that arcstat_meta_used is
4441  * capped by the arc_meta_limit tunable.
4442  */
4443 static uint64_t
4444 arc_evict_meta_only(uint64_t meta_used)
4445 {
4446 	uint64_t total_evicted = 0;
4447 	int64_t target;
4448 
4449 	/*
4450 	 * If we're over the meta limit, we want to evict enough
4451 	 * metadata to get back under the meta limit. We don't want to
4452 	 * evict so much that we drop the MRU below arc_p, though. If
4453 	 * we're over the meta limit more than we're over arc_p, we
4454 	 * evict some from the MRU here, and some from the MFU below.
4455 	 */
4456 	target = MIN((int64_t)(meta_used - arc_meta_limit),
4457 	    (int64_t)(zfs_refcount_count(&arc_anon->arcs_size) +
4458 	    zfs_refcount_count(&arc_mru->arcs_size) - arc_p));
4459 
4460 	total_evicted += arc_evict_impl(arc_mru, 0, target, ARC_BUFC_METADATA);
4461 
4462 	/*
4463 	 * Similar to the above, we want to evict enough bytes to get us
4464 	 * below the meta limit, but not so much as to drop us below the
4465 	 * space allotted to the MFU (which is defined as arc_c - arc_p).
4466 	 */
4467 	target = MIN((int64_t)(meta_used - arc_meta_limit),
4468 	    (int64_t)(zfs_refcount_count(&arc_mfu->arcs_size) -
4469 	    (arc_c - arc_p)));
4470 
4471 	total_evicted += arc_evict_impl(arc_mfu, 0, target, ARC_BUFC_METADATA);
4472 
4473 	return (total_evicted);
4474 }
4475 
4476 static uint64_t
4477 arc_evict_meta(uint64_t meta_used)
4478 {
4479 	if (zfs_arc_meta_strategy == ARC_STRATEGY_META_ONLY)
4480 		return (arc_evict_meta_only(meta_used));
4481 	else
4482 		return (arc_evict_meta_balanced(meta_used));
4483 }
4484 
4485 /*
4486  * Return the type of the oldest buffer in the given arc state
4487  *
4488  * This function will select a random sublist of type ARC_BUFC_DATA and
4489  * a random sublist of type ARC_BUFC_METADATA. The tail of each sublist
4490  * is compared, and the type which contains the "older" buffer will be
4491  * returned.
4492  */
4493 static arc_buf_contents_t
4494 arc_evict_type(arc_state_t *state)
4495 {
4496 	multilist_t *data_ml = &state->arcs_list[ARC_BUFC_DATA];
4497 	multilist_t *meta_ml = &state->arcs_list[ARC_BUFC_METADATA];
4498 	int data_idx = multilist_get_random_index(data_ml);
4499 	int meta_idx = multilist_get_random_index(meta_ml);
4500 	multilist_sublist_t *data_mls;
4501 	multilist_sublist_t *meta_mls;
4502 	arc_buf_contents_t type;
4503 	arc_buf_hdr_t *data_hdr;
4504 	arc_buf_hdr_t *meta_hdr;
4505 
4506 	/*
4507 	 * We keep the sublist lock until we're finished, to prevent
4508 	 * the headers from being destroyed via arc_evict_state().
4509 	 */
4510 	data_mls = multilist_sublist_lock(data_ml, data_idx);
4511 	meta_mls = multilist_sublist_lock(meta_ml, meta_idx);
4512 
4513 	/*
4514 	 * These two loops are to ensure we skip any markers that
4515 	 * might be at the tail of the lists due to arc_evict_state().
4516 	 */
4517 
4518 	for (data_hdr = multilist_sublist_tail(data_mls); data_hdr != NULL;
4519 	    data_hdr = multilist_sublist_prev(data_mls, data_hdr)) {
4520 		if (data_hdr->b_spa != 0)
4521 			break;
4522 	}
4523 
4524 	for (meta_hdr = multilist_sublist_tail(meta_mls); meta_hdr != NULL;
4525 	    meta_hdr = multilist_sublist_prev(meta_mls, meta_hdr)) {
4526 		if (meta_hdr->b_spa != 0)
4527 			break;
4528 	}
4529 
4530 	if (data_hdr == NULL && meta_hdr == NULL) {
4531 		type = ARC_BUFC_DATA;
4532 	} else if (data_hdr == NULL) {
4533 		ASSERT3P(meta_hdr, !=, NULL);
4534 		type = ARC_BUFC_METADATA;
4535 	} else if (meta_hdr == NULL) {
4536 		ASSERT3P(data_hdr, !=, NULL);
4537 		type = ARC_BUFC_DATA;
4538 	} else {
4539 		ASSERT3P(data_hdr, !=, NULL);
4540 		ASSERT3P(meta_hdr, !=, NULL);
4541 
4542 		/* The headers can't be on the sublist without an L1 header */
4543 		ASSERT(HDR_HAS_L1HDR(data_hdr));
4544 		ASSERT(HDR_HAS_L1HDR(meta_hdr));
4545 
4546 		if (data_hdr->b_l1hdr.b_arc_access <
4547 		    meta_hdr->b_l1hdr.b_arc_access) {
4548 			type = ARC_BUFC_DATA;
4549 		} else {
4550 			type = ARC_BUFC_METADATA;
4551 		}
4552 	}
4553 
4554 	multilist_sublist_unlock(meta_mls);
4555 	multilist_sublist_unlock(data_mls);
4556 
4557 	return (type);
4558 }
4559 
4560 /*
4561  * Evict buffers from the cache, such that arcstat_size is capped by arc_c.
4562  */
4563 static uint64_t
4564 arc_evict(void)
4565 {
4566 	uint64_t total_evicted = 0;
4567 	uint64_t bytes;
4568 	int64_t target;
4569 	uint64_t asize = aggsum_value(&arc_sums.arcstat_size);
4570 	uint64_t ameta = aggsum_value(&arc_sums.arcstat_meta_used);
4571 
4572 	/*
4573 	 * If we're over arc_meta_limit, we want to correct that before
4574 	 * potentially evicting data buffers below.
4575 	 */
4576 	total_evicted += arc_evict_meta(ameta);
4577 
4578 	/*
4579 	 * Adjust MRU size
4580 	 *
4581 	 * If we're over the target cache size, we want to evict enough
4582 	 * from the list to get back to our target size. We don't want
4583 	 * to evict too much from the MRU, such that it drops below
4584 	 * arc_p. So, if we're over our target cache size more than
4585 	 * the MRU is over arc_p, we'll evict enough to get back to
4586 	 * arc_p here, and then evict more from the MFU below.
4587 	 */
4588 	target = MIN((int64_t)(asize - arc_c),
4589 	    (int64_t)(zfs_refcount_count(&arc_anon->arcs_size) +
4590 	    zfs_refcount_count(&arc_mru->arcs_size) + ameta - arc_p));
4591 
4592 	/*
4593 	 * If we're below arc_meta_min, always prefer to evict data.
4594 	 * Otherwise, try to satisfy the requested number of bytes to
4595 	 * evict from the type which contains older buffers; in an
4596 	 * effort to keep newer buffers in the cache regardless of their
4597 	 * type. If we cannot satisfy the number of bytes from this
4598 	 * type, spill over into the next type.
4599 	 */
4600 	if (arc_evict_type(arc_mru) == ARC_BUFC_METADATA &&
4601 	    ameta > arc_meta_min) {
4602 		bytes = arc_evict_impl(arc_mru, 0, target, ARC_BUFC_METADATA);
4603 		total_evicted += bytes;
4604 
4605 		/*
4606 		 * If we couldn't evict our target number of bytes from
4607 		 * metadata, we try to get the rest from data.
4608 		 */
4609 		target -= bytes;
4610 
4611 		total_evicted +=
4612 		    arc_evict_impl(arc_mru, 0, target, ARC_BUFC_DATA);
4613 	} else {
4614 		bytes = arc_evict_impl(arc_mru, 0, target, ARC_BUFC_DATA);
4615 		total_evicted += bytes;
4616 
4617 		/*
4618 		 * If we couldn't evict our target number of bytes from
4619 		 * data, we try to get the rest from metadata.
4620 		 */
4621 		target -= bytes;
4622 
4623 		total_evicted +=
4624 		    arc_evict_impl(arc_mru, 0, target, ARC_BUFC_METADATA);
4625 	}
4626 
4627 	/*
4628 	 * Re-sum ARC stats after the first round of evictions.
4629 	 */
4630 	asize = aggsum_value(&arc_sums.arcstat_size);
4631 	ameta = aggsum_value(&arc_sums.arcstat_meta_used);
4632 
4633 
4634 	/*
4635 	 * Adjust MFU size
4636 	 *
4637 	 * Now that we've tried to evict enough from the MRU to get its
4638 	 * size back to arc_p, if we're still above the target cache
4639 	 * size, we evict the rest from the MFU.
4640 	 */
4641 	target = asize - arc_c;
4642 
4643 	if (arc_evict_type(arc_mfu) == ARC_BUFC_METADATA &&
4644 	    ameta > arc_meta_min) {
4645 		bytes = arc_evict_impl(arc_mfu, 0, target, ARC_BUFC_METADATA);
4646 		total_evicted += bytes;
4647 
4648 		/*
4649 		 * If we couldn't evict our target number of bytes from
4650 		 * metadata, we try to get the rest from data.
4651 		 */
4652 		target -= bytes;
4653 
4654 		total_evicted +=
4655 		    arc_evict_impl(arc_mfu, 0, target, ARC_BUFC_DATA);
4656 	} else {
4657 		bytes = arc_evict_impl(arc_mfu, 0, target, ARC_BUFC_DATA);
4658 		total_evicted += bytes;
4659 
4660 		/*
4661 		 * If we couldn't evict our target number of bytes from
4662 		 * data, we try to get the rest from data.
4663 		 */
4664 		target -= bytes;
4665 
4666 		total_evicted +=
4667 		    arc_evict_impl(arc_mfu, 0, target, ARC_BUFC_METADATA);
4668 	}
4669 
4670 	/*
4671 	 * Adjust ghost lists
4672 	 *
4673 	 * In addition to the above, the ARC also defines target values
4674 	 * for the ghost lists. The sum of the mru list and mru ghost
4675 	 * list should never exceed the target size of the cache, and
4676 	 * the sum of the mru list, mfu list, mru ghost list, and mfu
4677 	 * ghost list should never exceed twice the target size of the
4678 	 * cache. The following logic enforces these limits on the ghost
4679 	 * caches, and evicts from them as needed.
4680 	 */
4681 	target = zfs_refcount_count(&arc_mru->arcs_size) +
4682 	    zfs_refcount_count(&arc_mru_ghost->arcs_size) - arc_c;
4683 
4684 	bytes = arc_evict_impl(arc_mru_ghost, 0, target, ARC_BUFC_DATA);
4685 	total_evicted += bytes;
4686 
4687 	target -= bytes;
4688 
4689 	total_evicted +=
4690 	    arc_evict_impl(arc_mru_ghost, 0, target, ARC_BUFC_METADATA);
4691 
4692 	/*
4693 	 * We assume the sum of the mru list and mfu list is less than
4694 	 * or equal to arc_c (we enforced this above), which means we
4695 	 * can use the simpler of the two equations below:
4696 	 *
4697 	 *	mru + mfu + mru ghost + mfu ghost <= 2 * arc_c
4698 	 *		    mru ghost + mfu ghost <= arc_c
4699 	 */
4700 	target = zfs_refcount_count(&arc_mru_ghost->arcs_size) +
4701 	    zfs_refcount_count(&arc_mfu_ghost->arcs_size) - arc_c;
4702 
4703 	bytes = arc_evict_impl(arc_mfu_ghost, 0, target, ARC_BUFC_DATA);
4704 	total_evicted += bytes;
4705 
4706 	target -= bytes;
4707 
4708 	total_evicted +=
4709 	    arc_evict_impl(arc_mfu_ghost, 0, target, ARC_BUFC_METADATA);
4710 
4711 	return (total_evicted);
4712 }
4713 
4714 void
4715 arc_flush(spa_t *spa, boolean_t retry)
4716 {
4717 	uint64_t guid = 0;
4718 
4719 	/*
4720 	 * If retry is B_TRUE, a spa must not be specified since we have
4721 	 * no good way to determine if all of a spa's buffers have been
4722 	 * evicted from an arc state.
4723 	 */
4724 	ASSERT(!retry || spa == 0);
4725 
4726 	if (spa != NULL)
4727 		guid = spa_load_guid(spa);
4728 
4729 	(void) arc_flush_state(arc_mru, guid, ARC_BUFC_DATA, retry);
4730 	(void) arc_flush_state(arc_mru, guid, ARC_BUFC_METADATA, retry);
4731 
4732 	(void) arc_flush_state(arc_mfu, guid, ARC_BUFC_DATA, retry);
4733 	(void) arc_flush_state(arc_mfu, guid, ARC_BUFC_METADATA, retry);
4734 
4735 	(void) arc_flush_state(arc_mru_ghost, guid, ARC_BUFC_DATA, retry);
4736 	(void) arc_flush_state(arc_mru_ghost, guid, ARC_BUFC_METADATA, retry);
4737 
4738 	(void) arc_flush_state(arc_mfu_ghost, guid, ARC_BUFC_DATA, retry);
4739 	(void) arc_flush_state(arc_mfu_ghost, guid, ARC_BUFC_METADATA, retry);
4740 }
4741 
4742 void
4743 arc_reduce_target_size(int64_t to_free)
4744 {
4745 	uint64_t asize = aggsum_value(&arc_sums.arcstat_size);
4746 
4747 	/*
4748 	 * All callers want the ARC to actually evict (at least) this much
4749 	 * memory.  Therefore we reduce from the lower of the current size and
4750 	 * the target size.  This way, even if arc_c is much higher than
4751 	 * arc_size (as can be the case after many calls to arc_freed(), we will
4752 	 * immediately have arc_c < arc_size and therefore the arc_evict_zthr
4753 	 * will evict.
4754 	 */
4755 	uint64_t c = MIN(arc_c, asize);
4756 
4757 	if (c > to_free && c - to_free > arc_c_min) {
4758 		arc_c = c - to_free;
4759 		atomic_add_64(&arc_p, -(arc_p >> arc_shrink_shift));
4760 		if (arc_p > arc_c)
4761 			arc_p = (arc_c >> 1);
4762 		ASSERT(arc_c >= arc_c_min);
4763 		ASSERT((int64_t)arc_p >= 0);
4764 	} else {
4765 		arc_c = arc_c_min;
4766 	}
4767 
4768 	if (asize > arc_c) {
4769 		/* See comment in arc_evict_cb_check() on why lock+flag */
4770 		mutex_enter(&arc_evict_lock);
4771 		arc_evict_needed = B_TRUE;
4772 		mutex_exit(&arc_evict_lock);
4773 		zthr_wakeup(arc_evict_zthr);
4774 	}
4775 }
4776 
4777 /*
4778  * Determine if the system is under memory pressure and is asking
4779  * to reclaim memory. A return value of B_TRUE indicates that the system
4780  * is under memory pressure and that the arc should adjust accordingly.
4781  */
4782 boolean_t
4783 arc_reclaim_needed(void)
4784 {
4785 	return (arc_available_memory() < 0);
4786 }
4787 
4788 void
4789 arc_kmem_reap_soon(void)
4790 {
4791 	size_t			i;
4792 	kmem_cache_t		*prev_cache = NULL;
4793 	kmem_cache_t		*prev_data_cache = NULL;
4794 	extern kmem_cache_t	*zio_buf_cache[];
4795 	extern kmem_cache_t	*zio_data_buf_cache[];
4796 
4797 #ifdef _KERNEL
4798 	if ((aggsum_compare(&arc_sums.arcstat_meta_used,
4799 	    arc_meta_limit) >= 0) && zfs_arc_meta_prune) {
4800 		/*
4801 		 * We are exceeding our meta-data cache limit.
4802 		 * Prune some entries to release holds on meta-data.
4803 		 */
4804 		arc_prune_async(zfs_arc_meta_prune);
4805 	}
4806 #if defined(_ILP32)
4807 	/*
4808 	 * Reclaim unused memory from all kmem caches.
4809 	 */
4810 	kmem_reap();
4811 #endif
4812 #endif
4813 
4814 	for (i = 0; i < SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT; i++) {
4815 #if defined(_ILP32)
4816 		/* reach upper limit of cache size on 32-bit */
4817 		if (zio_buf_cache[i] == NULL)
4818 			break;
4819 #endif
4820 		if (zio_buf_cache[i] != prev_cache) {
4821 			prev_cache = zio_buf_cache[i];
4822 			kmem_cache_reap_now(zio_buf_cache[i]);
4823 		}
4824 		if (zio_data_buf_cache[i] != prev_data_cache) {
4825 			prev_data_cache = zio_data_buf_cache[i];
4826 			kmem_cache_reap_now(zio_data_buf_cache[i]);
4827 		}
4828 	}
4829 	kmem_cache_reap_now(buf_cache);
4830 	kmem_cache_reap_now(hdr_full_cache);
4831 	kmem_cache_reap_now(hdr_l2only_cache);
4832 	kmem_cache_reap_now(zfs_btree_leaf_cache);
4833 	abd_cache_reap_now();
4834 }
4835 
4836 /* ARGSUSED */
4837 static boolean_t
4838 arc_evict_cb_check(void *arg, zthr_t *zthr)
4839 {
4840 #ifdef ZFS_DEBUG
4841 	/*
4842 	 * This is necessary in order to keep the kstat information
4843 	 * up to date for tools that display kstat data such as the
4844 	 * mdb ::arc dcmd and the Linux crash utility.  These tools
4845 	 * typically do not call kstat's update function, but simply
4846 	 * dump out stats from the most recent update.  Without
4847 	 * this call, these commands may show stale stats for the
4848 	 * anon, mru, mru_ghost, mfu, and mfu_ghost lists.  Even
4849 	 * with this call, the data might be out of date if the
4850 	 * evict thread hasn't been woken recently; but that should
4851 	 * suffice.  The arc_state_t structures can be queried
4852 	 * directly if more accurate information is needed.
4853 	 */
4854 	if (arc_ksp != NULL)
4855 		arc_ksp->ks_update(arc_ksp, KSTAT_READ);
4856 #endif
4857 
4858 	/*
4859 	 * We have to rely on arc_wait_for_eviction() to tell us when to
4860 	 * evict, rather than checking if we are overflowing here, so that we
4861 	 * are sure to not leave arc_wait_for_eviction() waiting on aew_cv.
4862 	 * If we have become "not overflowing" since arc_wait_for_eviction()
4863 	 * checked, we need to wake it up.  We could broadcast the CV here,
4864 	 * but arc_wait_for_eviction() may have not yet gone to sleep.  We
4865 	 * would need to use a mutex to ensure that this function doesn't
4866 	 * broadcast until arc_wait_for_eviction() has gone to sleep (e.g.
4867 	 * the arc_evict_lock).  However, the lock ordering of such a lock
4868 	 * would necessarily be incorrect with respect to the zthr_lock,
4869 	 * which is held before this function is called, and is held by
4870 	 * arc_wait_for_eviction() when it calls zthr_wakeup().
4871 	 */
4872 	return (arc_evict_needed);
4873 }
4874 
4875 /*
4876  * Keep arc_size under arc_c by running arc_evict which evicts data
4877  * from the ARC.
4878  */
4879 /* ARGSUSED */
4880 static void
4881 arc_evict_cb(void *arg, zthr_t *zthr)
4882 {
4883 	uint64_t evicted = 0;
4884 	fstrans_cookie_t cookie = spl_fstrans_mark();
4885 
4886 	/* Evict from cache */
4887 	evicted = arc_evict();
4888 
4889 	/*
4890 	 * If evicted is zero, we couldn't evict anything
4891 	 * via arc_evict(). This could be due to hash lock
4892 	 * collisions, but more likely due to the majority of
4893 	 * arc buffers being unevictable. Therefore, even if
4894 	 * arc_size is above arc_c, another pass is unlikely to
4895 	 * be helpful and could potentially cause us to enter an
4896 	 * infinite loop.  Additionally, zthr_iscancelled() is
4897 	 * checked here so that if the arc is shutting down, the
4898 	 * broadcast will wake any remaining arc evict waiters.
4899 	 */
4900 	mutex_enter(&arc_evict_lock);
4901 	arc_evict_needed = !zthr_iscancelled(arc_evict_zthr) &&
4902 	    evicted > 0 && aggsum_compare(&arc_sums.arcstat_size, arc_c) > 0;
4903 	if (!arc_evict_needed) {
4904 		/*
4905 		 * We're either no longer overflowing, or we
4906 		 * can't evict anything more, so we should wake
4907 		 * arc_get_data_impl() sooner.
4908 		 */
4909 		arc_evict_waiter_t *aw;
4910 		while ((aw = list_remove_head(&arc_evict_waiters)) != NULL) {
4911 			cv_broadcast(&aw->aew_cv);
4912 		}
4913 		arc_set_need_free();
4914 	}
4915 	mutex_exit(&arc_evict_lock);
4916 	spl_fstrans_unmark(cookie);
4917 }
4918 
4919 /* ARGSUSED */
4920 static boolean_t
4921 arc_reap_cb_check(void *arg, zthr_t *zthr)
4922 {
4923 	int64_t free_memory = arc_available_memory();
4924 	static int reap_cb_check_counter = 0;
4925 
4926 	/*
4927 	 * If a kmem reap is already active, don't schedule more.  We must
4928 	 * check for this because kmem_cache_reap_soon() won't actually
4929 	 * block on the cache being reaped (this is to prevent callers from
4930 	 * becoming implicitly blocked by a system-wide kmem reap -- which,
4931 	 * on a system with many, many full magazines, can take minutes).
4932 	 */
4933 	if (!kmem_cache_reap_active() && free_memory < 0) {
4934 
4935 		arc_no_grow = B_TRUE;
4936 		arc_warm = B_TRUE;
4937 		/*
4938 		 * Wait at least zfs_grow_retry (default 5) seconds
4939 		 * before considering growing.
4940 		 */
4941 		arc_growtime = gethrtime() + SEC2NSEC(arc_grow_retry);
4942 		return (B_TRUE);
4943 	} else if (free_memory < arc_c >> arc_no_grow_shift) {
4944 		arc_no_grow = B_TRUE;
4945 	} else if (gethrtime() >= arc_growtime) {
4946 		arc_no_grow = B_FALSE;
4947 	}
4948 
4949 	/*
4950 	 * Called unconditionally every 60 seconds to reclaim unused
4951 	 * zstd compression and decompression context. This is done
4952 	 * here to avoid the need for an independent thread.
4953 	 */
4954 	if (!((reap_cb_check_counter++) % 60))
4955 		zfs_zstd_cache_reap_now();
4956 
4957 	return (B_FALSE);
4958 }
4959 
4960 /*
4961  * Keep enough free memory in the system by reaping the ARC's kmem
4962  * caches.  To cause more slabs to be reapable, we may reduce the
4963  * target size of the cache (arc_c), causing the arc_evict_cb()
4964  * to free more buffers.
4965  */
4966 /* ARGSUSED */
4967 static void
4968 arc_reap_cb(void *arg, zthr_t *zthr)
4969 {
4970 	int64_t free_memory;
4971 	fstrans_cookie_t cookie = spl_fstrans_mark();
4972 
4973 	/*
4974 	 * Kick off asynchronous kmem_reap()'s of all our caches.
4975 	 */
4976 	arc_kmem_reap_soon();
4977 
4978 	/*
4979 	 * Wait at least arc_kmem_cache_reap_retry_ms between
4980 	 * arc_kmem_reap_soon() calls. Without this check it is possible to
4981 	 * end up in a situation where we spend lots of time reaping
4982 	 * caches, while we're near arc_c_min.  Waiting here also gives the
4983 	 * subsequent free memory check a chance of finding that the
4984 	 * asynchronous reap has already freed enough memory, and we don't
4985 	 * need to call arc_reduce_target_size().
4986 	 */
4987 	delay((hz * arc_kmem_cache_reap_retry_ms + 999) / 1000);
4988 
4989 	/*
4990 	 * Reduce the target size as needed to maintain the amount of free
4991 	 * memory in the system at a fraction of the arc_size (1/128th by
4992 	 * default).  If oversubscribed (free_memory < 0) then reduce the
4993 	 * target arc_size by the deficit amount plus the fractional
4994 	 * amount.  If free memory is positive but less than the fractional
4995 	 * amount, reduce by what is needed to hit the fractional amount.
4996 	 */
4997 	free_memory = arc_available_memory();
4998 
4999 	int64_t to_free =
5000 	    (arc_c >> arc_shrink_shift) - free_memory;
5001 	if (to_free > 0) {
5002 		arc_reduce_target_size(to_free);
5003 	}
5004 	spl_fstrans_unmark(cookie);
5005 }
5006 
5007 #ifdef _KERNEL
5008 /*
5009  * Determine the amount of memory eligible for eviction contained in the
5010  * ARC. All clean data reported by the ghost lists can always be safely
5011  * evicted. Due to arc_c_min, the same does not hold for all clean data
5012  * contained by the regular mru and mfu lists.
5013  *
5014  * In the case of the regular mru and mfu lists, we need to report as
5015  * much clean data as possible, such that evicting that same reported
5016  * data will not bring arc_size below arc_c_min. Thus, in certain
5017  * circumstances, the total amount of clean data in the mru and mfu
5018  * lists might not actually be evictable.
5019  *
5020  * The following two distinct cases are accounted for:
5021  *
5022  * 1. The sum of the amount of dirty data contained by both the mru and
5023  *    mfu lists, plus the ARC's other accounting (e.g. the anon list),
5024  *    is greater than or equal to arc_c_min.
5025  *    (i.e. amount of dirty data >= arc_c_min)
5026  *
5027  *    This is the easy case; all clean data contained by the mru and mfu
5028  *    lists is evictable. Evicting all clean data can only drop arc_size
5029  *    to the amount of dirty data, which is greater than arc_c_min.
5030  *
5031  * 2. The sum of the amount of dirty data contained by both the mru and
5032  *    mfu lists, plus the ARC's other accounting (e.g. the anon list),
5033  *    is less than arc_c_min.
5034  *    (i.e. arc_c_min > amount of dirty data)
5035  *
5036  *    2.1. arc_size is greater than or equal arc_c_min.
5037  *         (i.e. arc_size >= arc_c_min > amount of dirty data)
5038  *
5039  *         In this case, not all clean data from the regular mru and mfu
5040  *         lists is actually evictable; we must leave enough clean data
5041  *         to keep arc_size above arc_c_min. Thus, the maximum amount of
5042  *         evictable data from the two lists combined, is exactly the
5043  *         difference between arc_size and arc_c_min.
5044  *
5045  *    2.2. arc_size is less than arc_c_min
5046  *         (i.e. arc_c_min > arc_size > amount of dirty data)
5047  *
5048  *         In this case, none of the data contained in the mru and mfu
5049  *         lists is evictable, even if it's clean. Since arc_size is
5050  *         already below arc_c_min, evicting any more would only
5051  *         increase this negative difference.
5052  */
5053 
5054 #endif /* _KERNEL */
5055 
5056 /*
5057  * Adapt arc info given the number of bytes we are trying to add and
5058  * the state that we are coming from.  This function is only called
5059  * when we are adding new content to the cache.
5060  */
5061 static void
5062 arc_adapt(int bytes, arc_state_t *state)
5063 {
5064 	int mult;
5065 	uint64_t arc_p_min = (arc_c >> arc_p_min_shift);
5066 	int64_t mrug_size = zfs_refcount_count(&arc_mru_ghost->arcs_size);
5067 	int64_t mfug_size = zfs_refcount_count(&arc_mfu_ghost->arcs_size);
5068 
5069 	ASSERT(bytes > 0);
5070 	/*
5071 	 * Adapt the target size of the MRU list:
5072 	 *	- if we just hit in the MRU ghost list, then increase
5073 	 *	  the target size of the MRU list.
5074 	 *	- if we just hit in the MFU ghost list, then increase
5075 	 *	  the target size of the MFU list by decreasing the
5076 	 *	  target size of the MRU list.
5077 	 */
5078 	if (state == arc_mru_ghost) {
5079 		mult = (mrug_size >= mfug_size) ? 1 : (mfug_size / mrug_size);
5080 		if (!zfs_arc_p_dampener_disable)
5081 			mult = MIN(mult, 10); /* avoid wild arc_p adjustment */
5082 
5083 		arc_p = MIN(arc_c - arc_p_min, arc_p + bytes * mult);
5084 	} else if (state == arc_mfu_ghost) {
5085 		uint64_t delta;
5086 
5087 		mult = (mfug_size >= mrug_size) ? 1 : (mrug_size / mfug_size);
5088 		if (!zfs_arc_p_dampener_disable)
5089 			mult = MIN(mult, 10);
5090 
5091 		delta = MIN(bytes * mult, arc_p);
5092 		arc_p = MAX(arc_p_min, arc_p - delta);
5093 	}
5094 	ASSERT((int64_t)arc_p >= 0);
5095 
5096 	/*
5097 	 * Wake reap thread if we do not have any available memory
5098 	 */
5099 	if (arc_reclaim_needed()) {
5100 		zthr_wakeup(arc_reap_zthr);
5101 		return;
5102 	}
5103 
5104 	if (arc_no_grow)
5105 		return;
5106 
5107 	if (arc_c >= arc_c_max)
5108 		return;
5109 
5110 	/*
5111 	 * If we're within (2 * maxblocksize) bytes of the target
5112 	 * cache size, increment the target cache size
5113 	 */
5114 	ASSERT3U(arc_c, >=, 2ULL << SPA_MAXBLOCKSHIFT);
5115 	if (aggsum_upper_bound(&arc_sums.arcstat_size) >=
5116 	    arc_c - (2ULL << SPA_MAXBLOCKSHIFT)) {
5117 		atomic_add_64(&arc_c, (int64_t)bytes);
5118 		if (arc_c > arc_c_max)
5119 			arc_c = arc_c_max;
5120 		else if (state == arc_anon)
5121 			atomic_add_64(&arc_p, (int64_t)bytes);
5122 		if (arc_p > arc_c)
5123 			arc_p = arc_c;
5124 	}
5125 	ASSERT((int64_t)arc_p >= 0);
5126 }
5127 
5128 /*
5129  * Check if arc_size has grown past our upper threshold, determined by
5130  * zfs_arc_overflow_shift.
5131  */
5132 static arc_ovf_level_t
5133 arc_is_overflowing(void)
5134 {
5135 	/* Always allow at least one block of overflow */
5136 	int64_t overflow = MAX(SPA_MAXBLOCKSIZE,
5137 	    arc_c >> zfs_arc_overflow_shift);
5138 
5139 	/*
5140 	 * We just compare the lower bound here for performance reasons. Our
5141 	 * primary goals are to make sure that the arc never grows without
5142 	 * bound, and that it can reach its maximum size. This check
5143 	 * accomplishes both goals. The maximum amount we could run over by is
5144 	 * 2 * aggsum_borrow_multiplier * NUM_CPUS * the average size of a block
5145 	 * in the ARC. In practice, that's in the tens of MB, which is low
5146 	 * enough to be safe.
5147 	 */
5148 	int64_t over = aggsum_lower_bound(&arc_sums.arcstat_size) -
5149 	    arc_c - overflow / 2;
5150 	return (over < 0 ? ARC_OVF_NONE :
5151 	    over < overflow ? ARC_OVF_SOME : ARC_OVF_SEVERE);
5152 }
5153 
5154 static abd_t *
5155 arc_get_data_abd(arc_buf_hdr_t *hdr, uint64_t size, void *tag,
5156     boolean_t do_adapt)
5157 {
5158 	arc_buf_contents_t type = arc_buf_type(hdr);
5159 
5160 	arc_get_data_impl(hdr, size, tag, do_adapt);
5161 	if (type == ARC_BUFC_METADATA) {
5162 		return (abd_alloc(size, B_TRUE));
5163 	} else {
5164 		ASSERT(type == ARC_BUFC_DATA);
5165 		return (abd_alloc(size, B_FALSE));
5166 	}
5167 }
5168 
5169 static void *
5170 arc_get_data_buf(arc_buf_hdr_t *hdr, uint64_t size, void *tag)
5171 {
5172 	arc_buf_contents_t type = arc_buf_type(hdr);
5173 
5174 	arc_get_data_impl(hdr, size, tag, B_TRUE);
5175 	if (type == ARC_BUFC_METADATA) {
5176 		return (zio_buf_alloc(size));
5177 	} else {
5178 		ASSERT(type == ARC_BUFC_DATA);
5179 		return (zio_data_buf_alloc(size));
5180 	}
5181 }
5182 
5183 /*
5184  * Wait for the specified amount of data (in bytes) to be evicted from the
5185  * ARC, and for there to be sufficient free memory in the system.  Waiting for
5186  * eviction ensures that the memory used by the ARC decreases.  Waiting for
5187  * free memory ensures that the system won't run out of free pages, regardless
5188  * of ARC behavior and settings.  See arc_lowmem_init().
5189  */
5190 void
5191 arc_wait_for_eviction(uint64_t amount)
5192 {
5193 	switch (arc_is_overflowing()) {
5194 	case ARC_OVF_NONE:
5195 		return;
5196 	case ARC_OVF_SOME:
5197 		/*
5198 		 * This is a bit racy without taking arc_evict_lock, but the
5199 		 * worst that can happen is we either call zthr_wakeup() extra
5200 		 * time due to race with other thread here, or the set flag
5201 		 * get cleared by arc_evict_cb(), which is unlikely due to
5202 		 * big hysteresis, but also not important since at this level
5203 		 * of overflow the eviction is purely advisory.  Same time
5204 		 * taking the global lock here every time without waiting for
5205 		 * the actual eviction creates a significant lock contention.
5206 		 */
5207 		if (!arc_evict_needed) {
5208 			arc_evict_needed = B_TRUE;
5209 			zthr_wakeup(arc_evict_zthr);
5210 		}
5211 		return;
5212 	case ARC_OVF_SEVERE:
5213 	default:
5214 	{
5215 		arc_evict_waiter_t aw;
5216 		list_link_init(&aw.aew_node);
5217 		cv_init(&aw.aew_cv, NULL, CV_DEFAULT, NULL);
5218 
5219 		uint64_t last_count = 0;
5220 		mutex_enter(&arc_evict_lock);
5221 		if (!list_is_empty(&arc_evict_waiters)) {
5222 			arc_evict_waiter_t *last =
5223 			    list_tail(&arc_evict_waiters);
5224 			last_count = last->aew_count;
5225 		} else if (!arc_evict_needed) {
5226 			arc_evict_needed = B_TRUE;
5227 			zthr_wakeup(arc_evict_zthr);
5228 		}
5229 		/*
5230 		 * Note, the last waiter's count may be less than
5231 		 * arc_evict_count if we are low on memory in which
5232 		 * case arc_evict_state_impl() may have deferred
5233 		 * wakeups (but still incremented arc_evict_count).
5234 		 */
5235 		aw.aew_count = MAX(last_count, arc_evict_count) + amount;
5236 
5237 		list_insert_tail(&arc_evict_waiters, &aw);
5238 
5239 		arc_set_need_free();
5240 
5241 		DTRACE_PROBE3(arc__wait__for__eviction,
5242 		    uint64_t, amount,
5243 		    uint64_t, arc_evict_count,
5244 		    uint64_t, aw.aew_count);
5245 
5246 		/*
5247 		 * We will be woken up either when arc_evict_count reaches
5248 		 * aew_count, or when the ARC is no longer overflowing and
5249 		 * eviction completes.
5250 		 * In case of "false" wakeup, we will still be on the list.
5251 		 */
5252 		do {
5253 			cv_wait(&aw.aew_cv, &arc_evict_lock);
5254 		} while (list_link_active(&aw.aew_node));
5255 		mutex_exit(&arc_evict_lock);
5256 
5257 		cv_destroy(&aw.aew_cv);
5258 	}
5259 	}
5260 }
5261 
5262 /*
5263  * Allocate a block and return it to the caller. If we are hitting the
5264  * hard limit for the cache size, we must sleep, waiting for the eviction
5265  * thread to catch up. If we're past the target size but below the hard
5266  * limit, we'll only signal the reclaim thread and continue on.
5267  */
5268 static void
5269 arc_get_data_impl(arc_buf_hdr_t *hdr, uint64_t size, void *tag,
5270     boolean_t do_adapt)
5271 {
5272 	arc_state_t *state = hdr->b_l1hdr.b_state;
5273 	arc_buf_contents_t type = arc_buf_type(hdr);
5274 
5275 	if (do_adapt)
5276 		arc_adapt(size, state);
5277 
5278 	/*
5279 	 * If arc_size is currently overflowing, we must be adding data
5280 	 * faster than we are evicting.  To ensure we don't compound the
5281 	 * problem by adding more data and forcing arc_size to grow even
5282 	 * further past it's target size, we wait for the eviction thread to
5283 	 * make some progress.  We also wait for there to be sufficient free
5284 	 * memory in the system, as measured by arc_free_memory().
5285 	 *
5286 	 * Specifically, we wait for zfs_arc_eviction_pct percent of the
5287 	 * requested size to be evicted.  This should be more than 100%, to
5288 	 * ensure that that progress is also made towards getting arc_size
5289 	 * under arc_c.  See the comment above zfs_arc_eviction_pct.
5290 	 */
5291 	arc_wait_for_eviction(size * zfs_arc_eviction_pct / 100);
5292 
5293 	VERIFY3U(hdr->b_type, ==, type);
5294 	if (type == ARC_BUFC_METADATA) {
5295 		arc_space_consume(size, ARC_SPACE_META);
5296 	} else {
5297 		arc_space_consume(size, ARC_SPACE_DATA);
5298 	}
5299 
5300 	/*
5301 	 * Update the state size.  Note that ghost states have a
5302 	 * "ghost size" and so don't need to be updated.
5303 	 */
5304 	if (!GHOST_STATE(state)) {
5305 
5306 		(void) zfs_refcount_add_many(&state->arcs_size, size, tag);
5307 
5308 		/*
5309 		 * If this is reached via arc_read, the link is
5310 		 * protected by the hash lock. If reached via
5311 		 * arc_buf_alloc, the header should not be accessed by
5312 		 * any other thread. And, if reached via arc_read_done,
5313 		 * the hash lock will protect it if it's found in the
5314 		 * hash table; otherwise no other thread should be
5315 		 * trying to [add|remove]_reference it.
5316 		 */
5317 		if (multilist_link_active(&hdr->b_l1hdr.b_arc_node)) {
5318 			ASSERT(zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
5319 			(void) zfs_refcount_add_many(&state->arcs_esize[type],
5320 			    size, tag);
5321 		}
5322 
5323 		/*
5324 		 * If we are growing the cache, and we are adding anonymous
5325 		 * data, and we have outgrown arc_p, update arc_p
5326 		 */
5327 		if (aggsum_upper_bound(&arc_sums.arcstat_size) < arc_c &&
5328 		    hdr->b_l1hdr.b_state == arc_anon &&
5329 		    (zfs_refcount_count(&arc_anon->arcs_size) +
5330 		    zfs_refcount_count(&arc_mru->arcs_size) > arc_p))
5331 			arc_p = MIN(arc_c, arc_p + size);
5332 	}
5333 }
5334 
5335 static void
5336 arc_free_data_abd(arc_buf_hdr_t *hdr, abd_t *abd, uint64_t size, void *tag)
5337 {
5338 	arc_free_data_impl(hdr, size, tag);
5339 	abd_free(abd);
5340 }
5341 
5342 static void
5343 arc_free_data_buf(arc_buf_hdr_t *hdr, void *buf, uint64_t size, void *tag)
5344 {
5345 	arc_buf_contents_t type = arc_buf_type(hdr);
5346 
5347 	arc_free_data_impl(hdr, size, tag);
5348 	if (type == ARC_BUFC_METADATA) {
5349 		zio_buf_free(buf, size);
5350 	} else {
5351 		ASSERT(type == ARC_BUFC_DATA);
5352 		zio_data_buf_free(buf, size);
5353 	}
5354 }
5355 
5356 /*
5357  * Free the arc data buffer.
5358  */
5359 static void
5360 arc_free_data_impl(arc_buf_hdr_t *hdr, uint64_t size, void *tag)
5361 {
5362 	arc_state_t *state = hdr->b_l1hdr.b_state;
5363 	arc_buf_contents_t type = arc_buf_type(hdr);
5364 
5365 	/* protected by hash lock, if in the hash table */
5366 	if (multilist_link_active(&hdr->b_l1hdr.b_arc_node)) {
5367 		ASSERT(zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
5368 		ASSERT(state != arc_anon && state != arc_l2c_only);
5369 
5370 		(void) zfs_refcount_remove_many(&state->arcs_esize[type],
5371 		    size, tag);
5372 	}
5373 	(void) zfs_refcount_remove_many(&state->arcs_size, size, tag);
5374 
5375 	VERIFY3U(hdr->b_type, ==, type);
5376 	if (type == ARC_BUFC_METADATA) {
5377 		arc_space_return(size, ARC_SPACE_META);
5378 	} else {
5379 		ASSERT(type == ARC_BUFC_DATA);
5380 		arc_space_return(size, ARC_SPACE_DATA);
5381 	}
5382 }
5383 
5384 /*
5385  * This routine is called whenever a buffer is accessed.
5386  * NOTE: the hash lock is dropped in this function.
5387  */
5388 static void
5389 arc_access(arc_buf_hdr_t *hdr, kmutex_t *hash_lock)
5390 {
5391 	clock_t now;
5392 
5393 	ASSERT(MUTEX_HELD(hash_lock));
5394 	ASSERT(HDR_HAS_L1HDR(hdr));
5395 
5396 	if (hdr->b_l1hdr.b_state == arc_anon) {
5397 		/*
5398 		 * This buffer is not in the cache, and does not
5399 		 * appear in our "ghost" list.  Add the new buffer
5400 		 * to the MRU state.
5401 		 */
5402 
5403 		ASSERT0(hdr->b_l1hdr.b_arc_access);
5404 		hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
5405 		DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, hdr);
5406 		arc_change_state(arc_mru, hdr, hash_lock);
5407 
5408 	} else if (hdr->b_l1hdr.b_state == arc_mru) {
5409 		now = ddi_get_lbolt();
5410 
5411 		/*
5412 		 * If this buffer is here because of a prefetch, then either:
5413 		 * - clear the flag if this is a "referencing" read
5414 		 *   (any subsequent access will bump this into the MFU state).
5415 		 * or
5416 		 * - move the buffer to the head of the list if this is
5417 		 *   another prefetch (to make it less likely to be evicted).
5418 		 */
5419 		if (HDR_PREFETCH(hdr) || HDR_PRESCIENT_PREFETCH(hdr)) {
5420 			if (zfs_refcount_count(&hdr->b_l1hdr.b_refcnt) == 0) {
5421 				/* link protected by hash lock */
5422 				ASSERT(multilist_link_active(
5423 				    &hdr->b_l1hdr.b_arc_node));
5424 			} else {
5425 				if (HDR_HAS_L2HDR(hdr))
5426 					l2arc_hdr_arcstats_decrement_state(hdr);
5427 				arc_hdr_clear_flags(hdr,
5428 				    ARC_FLAG_PREFETCH |
5429 				    ARC_FLAG_PRESCIENT_PREFETCH);
5430 				atomic_inc_32(&hdr->b_l1hdr.b_mru_hits);
5431 				ARCSTAT_BUMP(arcstat_mru_hits);
5432 				if (HDR_HAS_L2HDR(hdr))
5433 					l2arc_hdr_arcstats_increment_state(hdr);
5434 			}
5435 			hdr->b_l1hdr.b_arc_access = now;
5436 			return;
5437 		}
5438 
5439 		/*
5440 		 * This buffer has been "accessed" only once so far,
5441 		 * but it is still in the cache. Move it to the MFU
5442 		 * state.
5443 		 */
5444 		if (ddi_time_after(now, hdr->b_l1hdr.b_arc_access +
5445 		    ARC_MINTIME)) {
5446 			/*
5447 			 * More than 125ms have passed since we
5448 			 * instantiated this buffer.  Move it to the
5449 			 * most frequently used state.
5450 			 */
5451 			hdr->b_l1hdr.b_arc_access = now;
5452 			DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr);
5453 			arc_change_state(arc_mfu, hdr, hash_lock);
5454 		}
5455 		atomic_inc_32(&hdr->b_l1hdr.b_mru_hits);
5456 		ARCSTAT_BUMP(arcstat_mru_hits);
5457 	} else if (hdr->b_l1hdr.b_state == arc_mru_ghost) {
5458 		arc_state_t	*new_state;
5459 		/*
5460 		 * This buffer has been "accessed" recently, but
5461 		 * was evicted from the cache.  Move it to the
5462 		 * MFU state.
5463 		 */
5464 		if (HDR_PREFETCH(hdr) || HDR_PRESCIENT_PREFETCH(hdr)) {
5465 			new_state = arc_mru;
5466 			if (zfs_refcount_count(&hdr->b_l1hdr.b_refcnt) > 0) {
5467 				if (HDR_HAS_L2HDR(hdr))
5468 					l2arc_hdr_arcstats_decrement_state(hdr);
5469 				arc_hdr_clear_flags(hdr,
5470 				    ARC_FLAG_PREFETCH |
5471 				    ARC_FLAG_PRESCIENT_PREFETCH);
5472 				if (HDR_HAS_L2HDR(hdr))
5473 					l2arc_hdr_arcstats_increment_state(hdr);
5474 			}
5475 			DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, hdr);
5476 		} else {
5477 			new_state = arc_mfu;
5478 			DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr);
5479 		}
5480 
5481 		hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
5482 		arc_change_state(new_state, hdr, hash_lock);
5483 
5484 		atomic_inc_32(&hdr->b_l1hdr.b_mru_ghost_hits);
5485 		ARCSTAT_BUMP(arcstat_mru_ghost_hits);
5486 	} else if (hdr->b_l1hdr.b_state == arc_mfu) {
5487 		/*
5488 		 * This buffer has been accessed more than once and is
5489 		 * still in the cache.  Keep it in the MFU state.
5490 		 *
5491 		 * NOTE: an add_reference() that occurred when we did
5492 		 * the arc_read() will have kicked this off the list.
5493 		 * If it was a prefetch, we will explicitly move it to
5494 		 * the head of the list now.
5495 		 */
5496 
5497 		atomic_inc_32(&hdr->b_l1hdr.b_mfu_hits);
5498 		ARCSTAT_BUMP(arcstat_mfu_hits);
5499 		hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
5500 	} else if (hdr->b_l1hdr.b_state == arc_mfu_ghost) {
5501 		arc_state_t	*new_state = arc_mfu;
5502 		/*
5503 		 * This buffer has been accessed more than once but has
5504 		 * been evicted from the cache.  Move it back to the
5505 		 * MFU state.
5506 		 */
5507 
5508 		if (HDR_PREFETCH(hdr) || HDR_PRESCIENT_PREFETCH(hdr)) {
5509 			/*
5510 			 * This is a prefetch access...
5511 			 * move this block back to the MRU state.
5512 			 */
5513 			new_state = arc_mru;
5514 		}
5515 
5516 		hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
5517 		DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr);
5518 		arc_change_state(new_state, hdr, hash_lock);
5519 
5520 		atomic_inc_32(&hdr->b_l1hdr.b_mfu_ghost_hits);
5521 		ARCSTAT_BUMP(arcstat_mfu_ghost_hits);
5522 	} else if (hdr->b_l1hdr.b_state == arc_l2c_only) {
5523 		/*
5524 		 * This buffer is on the 2nd Level ARC.
5525 		 */
5526 
5527 		hdr->b_l1hdr.b_arc_access = ddi_get_lbolt();
5528 		DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr);
5529 		arc_change_state(arc_mfu, hdr, hash_lock);
5530 	} else {
5531 		cmn_err(CE_PANIC, "invalid arc state 0x%p",
5532 		    hdr->b_l1hdr.b_state);
5533 	}
5534 }
5535 
5536 /*
5537  * This routine is called by dbuf_hold() to update the arc_access() state
5538  * which otherwise would be skipped for entries in the dbuf cache.
5539  */
5540 void
5541 arc_buf_access(arc_buf_t *buf)
5542 {
5543 	mutex_enter(&buf->b_evict_lock);
5544 	arc_buf_hdr_t *hdr = buf->b_hdr;
5545 
5546 	/*
5547 	 * Avoid taking the hash_lock when possible as an optimization.
5548 	 * The header must be checked again under the hash_lock in order
5549 	 * to handle the case where it is concurrently being released.
5550 	 */
5551 	if (hdr->b_l1hdr.b_state == arc_anon || HDR_EMPTY(hdr)) {
5552 		mutex_exit(&buf->b_evict_lock);
5553 		return;
5554 	}
5555 
5556 	kmutex_t *hash_lock = HDR_LOCK(hdr);
5557 	mutex_enter(hash_lock);
5558 
5559 	if (hdr->b_l1hdr.b_state == arc_anon || HDR_EMPTY(hdr)) {
5560 		mutex_exit(hash_lock);
5561 		mutex_exit(&buf->b_evict_lock);
5562 		ARCSTAT_BUMP(arcstat_access_skip);
5563 		return;
5564 	}
5565 
5566 	mutex_exit(&buf->b_evict_lock);
5567 
5568 	ASSERT(hdr->b_l1hdr.b_state == arc_mru ||
5569 	    hdr->b_l1hdr.b_state == arc_mfu);
5570 
5571 	DTRACE_PROBE1(arc__hit, arc_buf_hdr_t *, hdr);
5572 	arc_access(hdr, hash_lock);
5573 	mutex_exit(hash_lock);
5574 
5575 	ARCSTAT_BUMP(arcstat_hits);
5576 	ARCSTAT_CONDSTAT(!HDR_PREFETCH(hdr) && !HDR_PRESCIENT_PREFETCH(hdr),
5577 	    demand, prefetch, !HDR_ISTYPE_METADATA(hdr), data, metadata, hits);
5578 }
5579 
5580 /* a generic arc_read_done_func_t which you can use */
5581 /* ARGSUSED */
5582 void
5583 arc_bcopy_func(zio_t *zio, const zbookmark_phys_t *zb, const blkptr_t *bp,
5584     arc_buf_t *buf, void *arg)
5585 {
5586 	if (buf == NULL)
5587 		return;
5588 
5589 	bcopy(buf->b_data, arg, arc_buf_size(buf));
5590 	arc_buf_destroy(buf, arg);
5591 }
5592 
5593 /* a generic arc_read_done_func_t */
5594 /* ARGSUSED */
5595 void
5596 arc_getbuf_func(zio_t *zio, const zbookmark_phys_t *zb, const blkptr_t *bp,
5597     arc_buf_t *buf, void *arg)
5598 {
5599 	arc_buf_t **bufp = arg;
5600 
5601 	if (buf == NULL) {
5602 		ASSERT(zio == NULL || zio->io_error != 0);
5603 		*bufp = NULL;
5604 	} else {
5605 		ASSERT(zio == NULL || zio->io_error == 0);
5606 		*bufp = buf;
5607 		ASSERT(buf->b_data != NULL);
5608 	}
5609 }
5610 
5611 static void
5612 arc_hdr_verify(arc_buf_hdr_t *hdr, blkptr_t *bp)
5613 {
5614 	if (BP_IS_HOLE(bp) || BP_IS_EMBEDDED(bp)) {
5615 		ASSERT3U(HDR_GET_PSIZE(hdr), ==, 0);
5616 		ASSERT3U(arc_hdr_get_compress(hdr), ==, ZIO_COMPRESS_OFF);
5617 	} else {
5618 		if (HDR_COMPRESSION_ENABLED(hdr)) {
5619 			ASSERT3U(arc_hdr_get_compress(hdr), ==,
5620 			    BP_GET_COMPRESS(bp));
5621 		}
5622 		ASSERT3U(HDR_GET_LSIZE(hdr), ==, BP_GET_LSIZE(bp));
5623 		ASSERT3U(HDR_GET_PSIZE(hdr), ==, BP_GET_PSIZE(bp));
5624 		ASSERT3U(!!HDR_PROTECTED(hdr), ==, BP_IS_PROTECTED(bp));
5625 	}
5626 }
5627 
5628 static void
5629 arc_read_done(zio_t *zio)
5630 {
5631 	blkptr_t 	*bp = zio->io_bp;
5632 	arc_buf_hdr_t	*hdr = zio->io_private;
5633 	kmutex_t	*hash_lock = NULL;
5634 	arc_callback_t	*callback_list;
5635 	arc_callback_t	*acb;
5636 	boolean_t	freeable = B_FALSE;
5637 
5638 	/*
5639 	 * The hdr was inserted into hash-table and removed from lists
5640 	 * prior to starting I/O.  We should find this header, since
5641 	 * it's in the hash table, and it should be legit since it's
5642 	 * not possible to evict it during the I/O.  The only possible
5643 	 * reason for it not to be found is if we were freed during the
5644 	 * read.
5645 	 */
5646 	if (HDR_IN_HASH_TABLE(hdr)) {
5647 		arc_buf_hdr_t *found;
5648 
5649 		ASSERT3U(hdr->b_birth, ==, BP_PHYSICAL_BIRTH(zio->io_bp));
5650 		ASSERT3U(hdr->b_dva.dva_word[0], ==,
5651 		    BP_IDENTITY(zio->io_bp)->dva_word[0]);
5652 		ASSERT3U(hdr->b_dva.dva_word[1], ==,
5653 		    BP_IDENTITY(zio->io_bp)->dva_word[1]);
5654 
5655 		found = buf_hash_find(hdr->b_spa, zio->io_bp, &hash_lock);
5656 
5657 		ASSERT((found == hdr &&
5658 		    DVA_EQUAL(&hdr->b_dva, BP_IDENTITY(zio->io_bp))) ||
5659 		    (found == hdr && HDR_L2_READING(hdr)));
5660 		ASSERT3P(hash_lock, !=, NULL);
5661 	}
5662 
5663 	if (BP_IS_PROTECTED(bp)) {
5664 		hdr->b_crypt_hdr.b_ot = BP_GET_TYPE(bp);
5665 		hdr->b_crypt_hdr.b_dsobj = zio->io_bookmark.zb_objset;
5666 		zio_crypt_decode_params_bp(bp, hdr->b_crypt_hdr.b_salt,
5667 		    hdr->b_crypt_hdr.b_iv);
5668 
5669 		if (BP_GET_TYPE(bp) == DMU_OT_INTENT_LOG) {
5670 			void *tmpbuf;
5671 
5672 			tmpbuf = abd_borrow_buf_copy(zio->io_abd,
5673 			    sizeof (zil_chain_t));
5674 			zio_crypt_decode_mac_zil(tmpbuf,
5675 			    hdr->b_crypt_hdr.b_mac);
5676 			abd_return_buf(zio->io_abd, tmpbuf,
5677 			    sizeof (zil_chain_t));
5678 		} else {
5679 			zio_crypt_decode_mac_bp(bp, hdr->b_crypt_hdr.b_mac);
5680 		}
5681 	}
5682 
5683 	if (zio->io_error == 0) {
5684 		/* byteswap if necessary */
5685 		if (BP_SHOULD_BYTESWAP(zio->io_bp)) {
5686 			if (BP_GET_LEVEL(zio->io_bp) > 0) {
5687 				hdr->b_l1hdr.b_byteswap = DMU_BSWAP_UINT64;
5688 			} else {
5689 				hdr->b_l1hdr.b_byteswap =
5690 				    DMU_OT_BYTESWAP(BP_GET_TYPE(zio->io_bp));
5691 			}
5692 		} else {
5693 			hdr->b_l1hdr.b_byteswap = DMU_BSWAP_NUMFUNCS;
5694 		}
5695 		if (!HDR_L2_READING(hdr)) {
5696 			hdr->b_complevel = zio->io_prop.zp_complevel;
5697 		}
5698 	}
5699 
5700 	arc_hdr_clear_flags(hdr, ARC_FLAG_L2_EVICTED);
5701 	if (l2arc_noprefetch && HDR_PREFETCH(hdr))
5702 		arc_hdr_clear_flags(hdr, ARC_FLAG_L2CACHE);
5703 
5704 	callback_list = hdr->b_l1hdr.b_acb;
5705 	ASSERT3P(callback_list, !=, NULL);
5706 
5707 	if (hash_lock && zio->io_error == 0 &&
5708 	    hdr->b_l1hdr.b_state == arc_anon) {
5709 		/*
5710 		 * Only call arc_access on anonymous buffers.  This is because
5711 		 * if we've issued an I/O for an evicted buffer, we've already
5712 		 * called arc_access (to prevent any simultaneous readers from
5713 		 * getting confused).
5714 		 */
5715 		arc_access(hdr, hash_lock);
5716 	}
5717 
5718 	/*
5719 	 * If a read request has a callback (i.e. acb_done is not NULL), then we
5720 	 * make a buf containing the data according to the parameters which were
5721 	 * passed in. The implementation of arc_buf_alloc_impl() ensures that we
5722 	 * aren't needlessly decompressing the data multiple times.
5723 	 */
5724 	int callback_cnt = 0;
5725 	for (acb = callback_list; acb != NULL; acb = acb->acb_next) {
5726 		if (!acb->acb_done || acb->acb_nobuf)
5727 			continue;
5728 
5729 		callback_cnt++;
5730 
5731 		if (zio->io_error != 0)
5732 			continue;
5733 
5734 		int error = arc_buf_alloc_impl(hdr, zio->io_spa,
5735 		    &acb->acb_zb, acb->acb_private, acb->acb_encrypted,
5736 		    acb->acb_compressed, acb->acb_noauth, B_TRUE,
5737 		    &acb->acb_buf);
5738 
5739 		/*
5740 		 * Assert non-speculative zios didn't fail because an
5741 		 * encryption key wasn't loaded
5742 		 */
5743 		ASSERT((zio->io_flags & ZIO_FLAG_SPECULATIVE) ||
5744 		    error != EACCES);
5745 
5746 		/*
5747 		 * If we failed to decrypt, report an error now (as the zio
5748 		 * layer would have done if it had done the transforms).
5749 		 */
5750 		if (error == ECKSUM) {
5751 			ASSERT(BP_IS_PROTECTED(bp));
5752 			error = SET_ERROR(EIO);
5753 			if ((zio->io_flags & ZIO_FLAG_SPECULATIVE) == 0) {
5754 				spa_log_error(zio->io_spa, &acb->acb_zb);
5755 				(void) zfs_ereport_post(
5756 				    FM_EREPORT_ZFS_AUTHENTICATION,
5757 				    zio->io_spa, NULL, &acb->acb_zb, zio, 0);
5758 			}
5759 		}
5760 
5761 		if (error != 0) {
5762 			/*
5763 			 * Decompression or decryption failed.  Set
5764 			 * io_error so that when we call acb_done
5765 			 * (below), we will indicate that the read
5766 			 * failed. Note that in the unusual case
5767 			 * where one callback is compressed and another
5768 			 * uncompressed, we will mark all of them
5769 			 * as failed, even though the uncompressed
5770 			 * one can't actually fail.  In this case,
5771 			 * the hdr will not be anonymous, because
5772 			 * if there are multiple callbacks, it's
5773 			 * because multiple threads found the same
5774 			 * arc buf in the hash table.
5775 			 */
5776 			zio->io_error = error;
5777 		}
5778 	}
5779 
5780 	/*
5781 	 * If there are multiple callbacks, we must have the hash lock,
5782 	 * because the only way for multiple threads to find this hdr is
5783 	 * in the hash table.  This ensures that if there are multiple
5784 	 * callbacks, the hdr is not anonymous.  If it were anonymous,
5785 	 * we couldn't use arc_buf_destroy() in the error case below.
5786 	 */
5787 	ASSERT(callback_cnt < 2 || hash_lock != NULL);
5788 
5789 	hdr->b_l1hdr.b_acb = NULL;
5790 	arc_hdr_clear_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
5791 	if (callback_cnt == 0)
5792 		ASSERT(hdr->b_l1hdr.b_pabd != NULL || HDR_HAS_RABD(hdr));
5793 
5794 	ASSERT(zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt) ||
5795 	    callback_list != NULL);
5796 
5797 	if (zio->io_error == 0) {
5798 		arc_hdr_verify(hdr, zio->io_bp);
5799 	} else {
5800 		arc_hdr_set_flags(hdr, ARC_FLAG_IO_ERROR);
5801 		if (hdr->b_l1hdr.b_state != arc_anon)
5802 			arc_change_state(arc_anon, hdr, hash_lock);
5803 		if (HDR_IN_HASH_TABLE(hdr))
5804 			buf_hash_remove(hdr);
5805 		freeable = zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt);
5806 	}
5807 
5808 	/*
5809 	 * Broadcast before we drop the hash_lock to avoid the possibility
5810 	 * that the hdr (and hence the cv) might be freed before we get to
5811 	 * the cv_broadcast().
5812 	 */
5813 	cv_broadcast(&hdr->b_l1hdr.b_cv);
5814 
5815 	if (hash_lock != NULL) {
5816 		mutex_exit(hash_lock);
5817 	} else {
5818 		/*
5819 		 * This block was freed while we waited for the read to
5820 		 * complete.  It has been removed from the hash table and
5821 		 * moved to the anonymous state (so that it won't show up
5822 		 * in the cache).
5823 		 */
5824 		ASSERT3P(hdr->b_l1hdr.b_state, ==, arc_anon);
5825 		freeable = zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt);
5826 	}
5827 
5828 	/* execute each callback and free its structure */
5829 	while ((acb = callback_list) != NULL) {
5830 		if (acb->acb_done != NULL) {
5831 			if (zio->io_error != 0 && acb->acb_buf != NULL) {
5832 				/*
5833 				 * If arc_buf_alloc_impl() fails during
5834 				 * decompression, the buf will still be
5835 				 * allocated, and needs to be freed here.
5836 				 */
5837 				arc_buf_destroy(acb->acb_buf,
5838 				    acb->acb_private);
5839 				acb->acb_buf = NULL;
5840 			}
5841 			acb->acb_done(zio, &zio->io_bookmark, zio->io_bp,
5842 			    acb->acb_buf, acb->acb_private);
5843 		}
5844 
5845 		if (acb->acb_zio_dummy != NULL) {
5846 			acb->acb_zio_dummy->io_error = zio->io_error;
5847 			zio_nowait(acb->acb_zio_dummy);
5848 		}
5849 
5850 		callback_list = acb->acb_next;
5851 		kmem_free(acb, sizeof (arc_callback_t));
5852 	}
5853 
5854 	if (freeable)
5855 		arc_hdr_destroy(hdr);
5856 }
5857 
5858 /*
5859  * "Read" the block at the specified DVA (in bp) via the
5860  * cache.  If the block is found in the cache, invoke the provided
5861  * callback immediately and return.  Note that the `zio' parameter
5862  * in the callback will be NULL in this case, since no IO was
5863  * required.  If the block is not in the cache pass the read request
5864  * on to the spa with a substitute callback function, so that the
5865  * requested block will be added to the cache.
5866  *
5867  * If a read request arrives for a block that has a read in-progress,
5868  * either wait for the in-progress read to complete (and return the
5869  * results); or, if this is a read with a "done" func, add a record
5870  * to the read to invoke the "done" func when the read completes,
5871  * and return; or just return.
5872  *
5873  * arc_read_done() will invoke all the requested "done" functions
5874  * for readers of this block.
5875  */
5876 int
5877 arc_read(zio_t *pio, spa_t *spa, const blkptr_t *bp,
5878     arc_read_done_func_t *done, void *private, zio_priority_t priority,
5879     int zio_flags, arc_flags_t *arc_flags, const zbookmark_phys_t *zb)
5880 {
5881 	arc_buf_hdr_t *hdr = NULL;
5882 	kmutex_t *hash_lock = NULL;
5883 	zio_t *rzio;
5884 	uint64_t guid = spa_load_guid(spa);
5885 	boolean_t compressed_read = (zio_flags & ZIO_FLAG_RAW_COMPRESS) != 0;
5886 	boolean_t encrypted_read = BP_IS_ENCRYPTED(bp) &&
5887 	    (zio_flags & ZIO_FLAG_RAW_ENCRYPT) != 0;
5888 	boolean_t noauth_read = BP_IS_AUTHENTICATED(bp) &&
5889 	    (zio_flags & ZIO_FLAG_RAW_ENCRYPT) != 0;
5890 	boolean_t embedded_bp = !!BP_IS_EMBEDDED(bp);
5891 	boolean_t no_buf = *arc_flags & ARC_FLAG_NO_BUF;
5892 	int rc = 0;
5893 
5894 	ASSERT(!embedded_bp ||
5895 	    BPE_GET_ETYPE(bp) == BP_EMBEDDED_TYPE_DATA);
5896 	ASSERT(!BP_IS_HOLE(bp));
5897 	ASSERT(!BP_IS_REDACTED(bp));
5898 
5899 	/*
5900 	 * Normally SPL_FSTRANS will already be set since kernel threads which
5901 	 * expect to call the DMU interfaces will set it when created.  System
5902 	 * calls are similarly handled by setting/cleaning the bit in the
5903 	 * registered callback (module/os/.../zfs/zpl_*).
5904 	 *
5905 	 * External consumers such as Lustre which call the exported DMU
5906 	 * interfaces may not have set SPL_FSTRANS.  To avoid a deadlock
5907 	 * on the hash_lock always set and clear the bit.
5908 	 */
5909 	fstrans_cookie_t cookie = spl_fstrans_mark();
5910 top:
5911 	if (!embedded_bp) {
5912 		/*
5913 		 * Embedded BP's have no DVA and require no I/O to "read".
5914 		 * Create an anonymous arc buf to back it.
5915 		 */
5916 		if (!zfs_blkptr_verify(spa, bp, zio_flags &
5917 		    ZIO_FLAG_CONFIG_WRITER, BLK_VERIFY_LOG)) {
5918 			rc = SET_ERROR(ECKSUM);
5919 			goto out;
5920 		}
5921 
5922 		hdr = buf_hash_find(guid, bp, &hash_lock);
5923 	}
5924 
5925 	/*
5926 	 * Determine if we have an L1 cache hit or a cache miss. For simplicity
5927 	 * we maintain encrypted data separately from compressed / uncompressed
5928 	 * data. If the user is requesting raw encrypted data and we don't have
5929 	 * that in the header we will read from disk to guarantee that we can
5930 	 * get it even if the encryption keys aren't loaded.
5931 	 */
5932 	if (hdr != NULL && HDR_HAS_L1HDR(hdr) && (HDR_HAS_RABD(hdr) ||
5933 	    (hdr->b_l1hdr.b_pabd != NULL && !encrypted_read))) {
5934 		arc_buf_t *buf = NULL;
5935 		*arc_flags |= ARC_FLAG_CACHED;
5936 
5937 		if (HDR_IO_IN_PROGRESS(hdr)) {
5938 			zio_t *head_zio = hdr->b_l1hdr.b_acb->acb_zio_head;
5939 
5940 			if (*arc_flags & ARC_FLAG_CACHED_ONLY) {
5941 				mutex_exit(hash_lock);
5942 				ARCSTAT_BUMP(arcstat_cached_only_in_progress);
5943 				rc = SET_ERROR(ENOENT);
5944 				goto out;
5945 			}
5946 
5947 			ASSERT3P(head_zio, !=, NULL);
5948 			if ((hdr->b_flags & ARC_FLAG_PRIO_ASYNC_READ) &&
5949 			    priority == ZIO_PRIORITY_SYNC_READ) {
5950 				/*
5951 				 * This is a sync read that needs to wait for
5952 				 * an in-flight async read. Request that the
5953 				 * zio have its priority upgraded.
5954 				 */
5955 				zio_change_priority(head_zio, priority);
5956 				DTRACE_PROBE1(arc__async__upgrade__sync,
5957 				    arc_buf_hdr_t *, hdr);
5958 				ARCSTAT_BUMP(arcstat_async_upgrade_sync);
5959 			}
5960 			if (hdr->b_flags & ARC_FLAG_PREDICTIVE_PREFETCH) {
5961 				arc_hdr_clear_flags(hdr,
5962 				    ARC_FLAG_PREDICTIVE_PREFETCH);
5963 			}
5964 
5965 			if (*arc_flags & ARC_FLAG_WAIT) {
5966 				cv_wait(&hdr->b_l1hdr.b_cv, hash_lock);
5967 				mutex_exit(hash_lock);
5968 				goto top;
5969 			}
5970 			ASSERT(*arc_flags & ARC_FLAG_NOWAIT);
5971 
5972 			if (done) {
5973 				arc_callback_t *acb = NULL;
5974 
5975 				acb = kmem_zalloc(sizeof (arc_callback_t),
5976 				    KM_SLEEP);
5977 				acb->acb_done = done;
5978 				acb->acb_private = private;
5979 				acb->acb_compressed = compressed_read;
5980 				acb->acb_encrypted = encrypted_read;
5981 				acb->acb_noauth = noauth_read;
5982 				acb->acb_nobuf = no_buf;
5983 				acb->acb_zb = *zb;
5984 				if (pio != NULL)
5985 					acb->acb_zio_dummy = zio_null(pio,
5986 					    spa, NULL, NULL, NULL, zio_flags);
5987 
5988 				ASSERT3P(acb->acb_done, !=, NULL);
5989 				acb->acb_zio_head = head_zio;
5990 				acb->acb_next = hdr->b_l1hdr.b_acb;
5991 				hdr->b_l1hdr.b_acb = acb;
5992 			}
5993 			mutex_exit(hash_lock);
5994 			goto out;
5995 		}
5996 
5997 		ASSERT(hdr->b_l1hdr.b_state == arc_mru ||
5998 		    hdr->b_l1hdr.b_state == arc_mfu);
5999 
6000 		if (done && !no_buf) {
6001 			if (hdr->b_flags & ARC_FLAG_PREDICTIVE_PREFETCH) {
6002 				/*
6003 				 * This is a demand read which does not have to
6004 				 * wait for i/o because we did a predictive
6005 				 * prefetch i/o for it, which has completed.
6006 				 */
6007 				DTRACE_PROBE1(
6008 				    arc__demand__hit__predictive__prefetch,
6009 				    arc_buf_hdr_t *, hdr);
6010 				ARCSTAT_BUMP(
6011 				    arcstat_demand_hit_predictive_prefetch);
6012 				arc_hdr_clear_flags(hdr,
6013 				    ARC_FLAG_PREDICTIVE_PREFETCH);
6014 			}
6015 
6016 			if (hdr->b_flags & ARC_FLAG_PRESCIENT_PREFETCH) {
6017 				ARCSTAT_BUMP(
6018 				    arcstat_demand_hit_prescient_prefetch);
6019 				arc_hdr_clear_flags(hdr,
6020 				    ARC_FLAG_PRESCIENT_PREFETCH);
6021 			}
6022 
6023 			ASSERT(!embedded_bp || !BP_IS_HOLE(bp));
6024 
6025 			/* Get a buf with the desired data in it. */
6026 			rc = arc_buf_alloc_impl(hdr, spa, zb, private,
6027 			    encrypted_read, compressed_read, noauth_read,
6028 			    B_TRUE, &buf);
6029 			if (rc == ECKSUM) {
6030 				/*
6031 				 * Convert authentication and decryption errors
6032 				 * to EIO (and generate an ereport if needed)
6033 				 * before leaving the ARC.
6034 				 */
6035 				rc = SET_ERROR(EIO);
6036 				if ((zio_flags & ZIO_FLAG_SPECULATIVE) == 0) {
6037 					spa_log_error(spa, zb);
6038 					(void) zfs_ereport_post(
6039 					    FM_EREPORT_ZFS_AUTHENTICATION,
6040 					    spa, NULL, zb, NULL, 0);
6041 				}
6042 			}
6043 			if (rc != 0) {
6044 				(void) remove_reference(hdr, hash_lock,
6045 				    private);
6046 				arc_buf_destroy_impl(buf);
6047 				buf = NULL;
6048 			}
6049 
6050 			/* assert any errors weren't due to unloaded keys */
6051 			ASSERT((zio_flags & ZIO_FLAG_SPECULATIVE) ||
6052 			    rc != EACCES);
6053 		} else if (*arc_flags & ARC_FLAG_PREFETCH &&
6054 		    zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt)) {
6055 			if (HDR_HAS_L2HDR(hdr))
6056 				l2arc_hdr_arcstats_decrement_state(hdr);
6057 			arc_hdr_set_flags(hdr, ARC_FLAG_PREFETCH);
6058 			if (HDR_HAS_L2HDR(hdr))
6059 				l2arc_hdr_arcstats_increment_state(hdr);
6060 		}
6061 		DTRACE_PROBE1(arc__hit, arc_buf_hdr_t *, hdr);
6062 		arc_access(hdr, hash_lock);
6063 		if (*arc_flags & ARC_FLAG_PRESCIENT_PREFETCH)
6064 			arc_hdr_set_flags(hdr, ARC_FLAG_PRESCIENT_PREFETCH);
6065 		if (*arc_flags & ARC_FLAG_L2CACHE)
6066 			arc_hdr_set_flags(hdr, ARC_FLAG_L2CACHE);
6067 		mutex_exit(hash_lock);
6068 		ARCSTAT_BUMP(arcstat_hits);
6069 		ARCSTAT_CONDSTAT(!HDR_PREFETCH(hdr),
6070 		    demand, prefetch, !HDR_ISTYPE_METADATA(hdr),
6071 		    data, metadata, hits);
6072 
6073 		if (done)
6074 			done(NULL, zb, bp, buf, private);
6075 	} else {
6076 		uint64_t lsize = BP_GET_LSIZE(bp);
6077 		uint64_t psize = BP_GET_PSIZE(bp);
6078 		arc_callback_t *acb;
6079 		vdev_t *vd = NULL;
6080 		uint64_t addr = 0;
6081 		boolean_t devw = B_FALSE;
6082 		uint64_t size;
6083 		abd_t *hdr_abd;
6084 		int alloc_flags = encrypted_read ? ARC_HDR_ALLOC_RDATA : 0;
6085 
6086 		if (*arc_flags & ARC_FLAG_CACHED_ONLY) {
6087 			rc = SET_ERROR(ENOENT);
6088 			if (hash_lock != NULL)
6089 				mutex_exit(hash_lock);
6090 			goto out;
6091 		}
6092 
6093 		if (hdr == NULL) {
6094 			/*
6095 			 * This block is not in the cache or it has
6096 			 * embedded data.
6097 			 */
6098 			arc_buf_hdr_t *exists = NULL;
6099 			arc_buf_contents_t type = BP_GET_BUFC_TYPE(bp);
6100 			hdr = arc_hdr_alloc(spa_load_guid(spa), psize, lsize,
6101 			    BP_IS_PROTECTED(bp), BP_GET_COMPRESS(bp), 0, type,
6102 			    encrypted_read);
6103 
6104 			if (!embedded_bp) {
6105 				hdr->b_dva = *BP_IDENTITY(bp);
6106 				hdr->b_birth = BP_PHYSICAL_BIRTH(bp);
6107 				exists = buf_hash_insert(hdr, &hash_lock);
6108 			}
6109 			if (exists != NULL) {
6110 				/* somebody beat us to the hash insert */
6111 				mutex_exit(hash_lock);
6112 				buf_discard_identity(hdr);
6113 				arc_hdr_destroy(hdr);
6114 				goto top; /* restart the IO request */
6115 			}
6116 		} else {
6117 			/*
6118 			 * This block is in the ghost cache or encrypted data
6119 			 * was requested and we didn't have it. If it was
6120 			 * L2-only (and thus didn't have an L1 hdr),
6121 			 * we realloc the header to add an L1 hdr.
6122 			 */
6123 			if (!HDR_HAS_L1HDR(hdr)) {
6124 				hdr = arc_hdr_realloc(hdr, hdr_l2only_cache,
6125 				    hdr_full_cache);
6126 			}
6127 
6128 			if (GHOST_STATE(hdr->b_l1hdr.b_state)) {
6129 				ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
6130 				ASSERT(!HDR_HAS_RABD(hdr));
6131 				ASSERT(!HDR_IO_IN_PROGRESS(hdr));
6132 				ASSERT0(zfs_refcount_count(
6133 				    &hdr->b_l1hdr.b_refcnt));
6134 				ASSERT3P(hdr->b_l1hdr.b_buf, ==, NULL);
6135 				ASSERT3P(hdr->b_l1hdr.b_freeze_cksum, ==, NULL);
6136 			} else if (HDR_IO_IN_PROGRESS(hdr)) {
6137 				/*
6138 				 * If this header already had an IO in progress
6139 				 * and we are performing another IO to fetch
6140 				 * encrypted data we must wait until the first
6141 				 * IO completes so as not to confuse
6142 				 * arc_read_done(). This should be very rare
6143 				 * and so the performance impact shouldn't
6144 				 * matter.
6145 				 */
6146 				cv_wait(&hdr->b_l1hdr.b_cv, hash_lock);
6147 				mutex_exit(hash_lock);
6148 				goto top;
6149 			}
6150 
6151 			/*
6152 			 * This is a delicate dance that we play here.
6153 			 * This hdr might be in the ghost list so we access
6154 			 * it to move it out of the ghost list before we
6155 			 * initiate the read. If it's a prefetch then
6156 			 * it won't have a callback so we'll remove the
6157 			 * reference that arc_buf_alloc_impl() created. We
6158 			 * do this after we've called arc_access() to
6159 			 * avoid hitting an assert in remove_reference().
6160 			 */
6161 			arc_adapt(arc_hdr_size(hdr), hdr->b_l1hdr.b_state);
6162 			arc_access(hdr, hash_lock);
6163 			arc_hdr_alloc_abd(hdr, alloc_flags);
6164 		}
6165 
6166 		if (encrypted_read) {
6167 			ASSERT(HDR_HAS_RABD(hdr));
6168 			size = HDR_GET_PSIZE(hdr);
6169 			hdr_abd = hdr->b_crypt_hdr.b_rabd;
6170 			zio_flags |= ZIO_FLAG_RAW;
6171 		} else {
6172 			ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
6173 			size = arc_hdr_size(hdr);
6174 			hdr_abd = hdr->b_l1hdr.b_pabd;
6175 
6176 			if (arc_hdr_get_compress(hdr) != ZIO_COMPRESS_OFF) {
6177 				zio_flags |= ZIO_FLAG_RAW_COMPRESS;
6178 			}
6179 
6180 			/*
6181 			 * For authenticated bp's, we do not ask the ZIO layer
6182 			 * to authenticate them since this will cause the entire
6183 			 * IO to fail if the key isn't loaded. Instead, we
6184 			 * defer authentication until arc_buf_fill(), which will
6185 			 * verify the data when the key is available.
6186 			 */
6187 			if (BP_IS_AUTHENTICATED(bp))
6188 				zio_flags |= ZIO_FLAG_RAW_ENCRYPT;
6189 		}
6190 
6191 		if (*arc_flags & ARC_FLAG_PREFETCH &&
6192 		    zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt)) {
6193 			if (HDR_HAS_L2HDR(hdr))
6194 				l2arc_hdr_arcstats_decrement_state(hdr);
6195 			arc_hdr_set_flags(hdr, ARC_FLAG_PREFETCH);
6196 			if (HDR_HAS_L2HDR(hdr))
6197 				l2arc_hdr_arcstats_increment_state(hdr);
6198 		}
6199 		if (*arc_flags & ARC_FLAG_PRESCIENT_PREFETCH)
6200 			arc_hdr_set_flags(hdr, ARC_FLAG_PRESCIENT_PREFETCH);
6201 		if (*arc_flags & ARC_FLAG_L2CACHE)
6202 			arc_hdr_set_flags(hdr, ARC_FLAG_L2CACHE);
6203 		if (BP_IS_AUTHENTICATED(bp))
6204 			arc_hdr_set_flags(hdr, ARC_FLAG_NOAUTH);
6205 		if (BP_GET_LEVEL(bp) > 0)
6206 			arc_hdr_set_flags(hdr, ARC_FLAG_INDIRECT);
6207 		if (*arc_flags & ARC_FLAG_PREDICTIVE_PREFETCH)
6208 			arc_hdr_set_flags(hdr, ARC_FLAG_PREDICTIVE_PREFETCH);
6209 		ASSERT(!GHOST_STATE(hdr->b_l1hdr.b_state));
6210 
6211 		acb = kmem_zalloc(sizeof (arc_callback_t), KM_SLEEP);
6212 		acb->acb_done = done;
6213 		acb->acb_private = private;
6214 		acb->acb_compressed = compressed_read;
6215 		acb->acb_encrypted = encrypted_read;
6216 		acb->acb_noauth = noauth_read;
6217 		acb->acb_zb = *zb;
6218 
6219 		ASSERT3P(hdr->b_l1hdr.b_acb, ==, NULL);
6220 		hdr->b_l1hdr.b_acb = acb;
6221 		arc_hdr_set_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
6222 
6223 		if (HDR_HAS_L2HDR(hdr) &&
6224 		    (vd = hdr->b_l2hdr.b_dev->l2ad_vdev) != NULL) {
6225 			devw = hdr->b_l2hdr.b_dev->l2ad_writing;
6226 			addr = hdr->b_l2hdr.b_daddr;
6227 			/*
6228 			 * Lock out L2ARC device removal.
6229 			 */
6230 			if (vdev_is_dead(vd) ||
6231 			    !spa_config_tryenter(spa, SCL_L2ARC, vd, RW_READER))
6232 				vd = NULL;
6233 		}
6234 
6235 		/*
6236 		 * We count both async reads and scrub IOs as asynchronous so
6237 		 * that both can be upgraded in the event of a cache hit while
6238 		 * the read IO is still in-flight.
6239 		 */
6240 		if (priority == ZIO_PRIORITY_ASYNC_READ ||
6241 		    priority == ZIO_PRIORITY_SCRUB)
6242 			arc_hdr_set_flags(hdr, ARC_FLAG_PRIO_ASYNC_READ);
6243 		else
6244 			arc_hdr_clear_flags(hdr, ARC_FLAG_PRIO_ASYNC_READ);
6245 
6246 		/*
6247 		 * At this point, we have a level 1 cache miss or a blkptr
6248 		 * with embedded data.  Try again in L2ARC if possible.
6249 		 */
6250 		ASSERT3U(HDR_GET_LSIZE(hdr), ==, lsize);
6251 
6252 		/*
6253 		 * Skip ARC stat bump for block pointers with embedded
6254 		 * data. The data are read from the blkptr itself via
6255 		 * decode_embedded_bp_compressed().
6256 		 */
6257 		if (!embedded_bp) {
6258 			DTRACE_PROBE4(arc__miss, arc_buf_hdr_t *, hdr,
6259 			    blkptr_t *, bp, uint64_t, lsize,
6260 			    zbookmark_phys_t *, zb);
6261 			ARCSTAT_BUMP(arcstat_misses);
6262 			ARCSTAT_CONDSTAT(!HDR_PREFETCH(hdr),
6263 			    demand, prefetch, !HDR_ISTYPE_METADATA(hdr), data,
6264 			    metadata, misses);
6265 			zfs_racct_read(size, 1);
6266 		}
6267 
6268 		/* Check if the spa even has l2 configured */
6269 		const boolean_t spa_has_l2 = l2arc_ndev != 0 &&
6270 		    spa->spa_l2cache.sav_count > 0;
6271 
6272 		if (vd != NULL && spa_has_l2 && !(l2arc_norw && devw)) {
6273 			/*
6274 			 * Read from the L2ARC if the following are true:
6275 			 * 1. The L2ARC vdev was previously cached.
6276 			 * 2. This buffer still has L2ARC metadata.
6277 			 * 3. This buffer isn't currently writing to the L2ARC.
6278 			 * 4. The L2ARC entry wasn't evicted, which may
6279 			 *    also have invalidated the vdev.
6280 			 * 5. This isn't prefetch or l2arc_noprefetch is 0.
6281 			 */
6282 			if (HDR_HAS_L2HDR(hdr) &&
6283 			    !HDR_L2_WRITING(hdr) && !HDR_L2_EVICTED(hdr) &&
6284 			    !(l2arc_noprefetch && HDR_PREFETCH(hdr))) {
6285 				l2arc_read_callback_t *cb;
6286 				abd_t *abd;
6287 				uint64_t asize;
6288 
6289 				DTRACE_PROBE1(l2arc__hit, arc_buf_hdr_t *, hdr);
6290 				ARCSTAT_BUMP(arcstat_l2_hits);
6291 				atomic_inc_32(&hdr->b_l2hdr.b_hits);
6292 
6293 				cb = kmem_zalloc(sizeof (l2arc_read_callback_t),
6294 				    KM_SLEEP);
6295 				cb->l2rcb_hdr = hdr;
6296 				cb->l2rcb_bp = *bp;
6297 				cb->l2rcb_zb = *zb;
6298 				cb->l2rcb_flags = zio_flags;
6299 
6300 				/*
6301 				 * When Compressed ARC is disabled, but the
6302 				 * L2ARC block is compressed, arc_hdr_size()
6303 				 * will have returned LSIZE rather than PSIZE.
6304 				 */
6305 				if (HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF &&
6306 				    !HDR_COMPRESSION_ENABLED(hdr) &&
6307 				    HDR_GET_PSIZE(hdr) != 0) {
6308 					size = HDR_GET_PSIZE(hdr);
6309 				}
6310 
6311 				asize = vdev_psize_to_asize(vd, size);
6312 				if (asize != size) {
6313 					abd = abd_alloc_for_io(asize,
6314 					    HDR_ISTYPE_METADATA(hdr));
6315 					cb->l2rcb_abd = abd;
6316 				} else {
6317 					abd = hdr_abd;
6318 				}
6319 
6320 				ASSERT(addr >= VDEV_LABEL_START_SIZE &&
6321 				    addr + asize <= vd->vdev_psize -
6322 				    VDEV_LABEL_END_SIZE);
6323 
6324 				/*
6325 				 * l2arc read.  The SCL_L2ARC lock will be
6326 				 * released by l2arc_read_done().
6327 				 * Issue a null zio if the underlying buffer
6328 				 * was squashed to zero size by compression.
6329 				 */
6330 				ASSERT3U(arc_hdr_get_compress(hdr), !=,
6331 				    ZIO_COMPRESS_EMPTY);
6332 				rzio = zio_read_phys(pio, vd, addr,
6333 				    asize, abd,
6334 				    ZIO_CHECKSUM_OFF,
6335 				    l2arc_read_done, cb, priority,
6336 				    zio_flags | ZIO_FLAG_DONT_CACHE |
6337 				    ZIO_FLAG_CANFAIL |
6338 				    ZIO_FLAG_DONT_PROPAGATE |
6339 				    ZIO_FLAG_DONT_RETRY, B_FALSE);
6340 				acb->acb_zio_head = rzio;
6341 
6342 				if (hash_lock != NULL)
6343 					mutex_exit(hash_lock);
6344 
6345 				DTRACE_PROBE2(l2arc__read, vdev_t *, vd,
6346 				    zio_t *, rzio);
6347 				ARCSTAT_INCR(arcstat_l2_read_bytes,
6348 				    HDR_GET_PSIZE(hdr));
6349 
6350 				if (*arc_flags & ARC_FLAG_NOWAIT) {
6351 					zio_nowait(rzio);
6352 					goto out;
6353 				}
6354 
6355 				ASSERT(*arc_flags & ARC_FLAG_WAIT);
6356 				if (zio_wait(rzio) == 0)
6357 					goto out;
6358 
6359 				/* l2arc read error; goto zio_read() */
6360 				if (hash_lock != NULL)
6361 					mutex_enter(hash_lock);
6362 			} else {
6363 				DTRACE_PROBE1(l2arc__miss,
6364 				    arc_buf_hdr_t *, hdr);
6365 				ARCSTAT_BUMP(arcstat_l2_misses);
6366 				if (HDR_L2_WRITING(hdr))
6367 					ARCSTAT_BUMP(arcstat_l2_rw_clash);
6368 				spa_config_exit(spa, SCL_L2ARC, vd);
6369 			}
6370 		} else {
6371 			if (vd != NULL)
6372 				spa_config_exit(spa, SCL_L2ARC, vd);
6373 
6374 			/*
6375 			 * Only a spa with l2 should contribute to l2
6376 			 * miss stats.  (Including the case of having a
6377 			 * faulted cache device - that's also a miss.)
6378 			 */
6379 			if (spa_has_l2) {
6380 				/*
6381 				 * Skip ARC stat bump for block pointers with
6382 				 * embedded data. The data are read from the
6383 				 * blkptr itself via
6384 				 * decode_embedded_bp_compressed().
6385 				 */
6386 				if (!embedded_bp) {
6387 					DTRACE_PROBE1(l2arc__miss,
6388 					    arc_buf_hdr_t *, hdr);
6389 					ARCSTAT_BUMP(arcstat_l2_misses);
6390 				}
6391 			}
6392 		}
6393 
6394 		rzio = zio_read(pio, spa, bp, hdr_abd, size,
6395 		    arc_read_done, hdr, priority, zio_flags, zb);
6396 		acb->acb_zio_head = rzio;
6397 
6398 		if (hash_lock != NULL)
6399 			mutex_exit(hash_lock);
6400 
6401 		if (*arc_flags & ARC_FLAG_WAIT) {
6402 			rc = zio_wait(rzio);
6403 			goto out;
6404 		}
6405 
6406 		ASSERT(*arc_flags & ARC_FLAG_NOWAIT);
6407 		zio_nowait(rzio);
6408 	}
6409 
6410 out:
6411 	/* embedded bps don't actually go to disk */
6412 	if (!embedded_bp)
6413 		spa_read_history_add(spa, zb, *arc_flags);
6414 	spl_fstrans_unmark(cookie);
6415 	return (rc);
6416 }
6417 
6418 arc_prune_t *
6419 arc_add_prune_callback(arc_prune_func_t *func, void *private)
6420 {
6421 	arc_prune_t *p;
6422 
6423 	p = kmem_alloc(sizeof (*p), KM_SLEEP);
6424 	p->p_pfunc = func;
6425 	p->p_private = private;
6426 	list_link_init(&p->p_node);
6427 	zfs_refcount_create(&p->p_refcnt);
6428 
6429 	mutex_enter(&arc_prune_mtx);
6430 	zfs_refcount_add(&p->p_refcnt, &arc_prune_list);
6431 	list_insert_head(&arc_prune_list, p);
6432 	mutex_exit(&arc_prune_mtx);
6433 
6434 	return (p);
6435 }
6436 
6437 void
6438 arc_remove_prune_callback(arc_prune_t *p)
6439 {
6440 	boolean_t wait = B_FALSE;
6441 	mutex_enter(&arc_prune_mtx);
6442 	list_remove(&arc_prune_list, p);
6443 	if (zfs_refcount_remove(&p->p_refcnt, &arc_prune_list) > 0)
6444 		wait = B_TRUE;
6445 	mutex_exit(&arc_prune_mtx);
6446 
6447 	/* wait for arc_prune_task to finish */
6448 	if (wait)
6449 		taskq_wait_outstanding(arc_prune_taskq, 0);
6450 	ASSERT0(zfs_refcount_count(&p->p_refcnt));
6451 	zfs_refcount_destroy(&p->p_refcnt);
6452 	kmem_free(p, sizeof (*p));
6453 }
6454 
6455 /*
6456  * Notify the arc that a block was freed, and thus will never be used again.
6457  */
6458 void
6459 arc_freed(spa_t *spa, const blkptr_t *bp)
6460 {
6461 	arc_buf_hdr_t *hdr;
6462 	kmutex_t *hash_lock;
6463 	uint64_t guid = spa_load_guid(spa);
6464 
6465 	ASSERT(!BP_IS_EMBEDDED(bp));
6466 
6467 	hdr = buf_hash_find(guid, bp, &hash_lock);
6468 	if (hdr == NULL)
6469 		return;
6470 
6471 	/*
6472 	 * We might be trying to free a block that is still doing I/O
6473 	 * (i.e. prefetch) or has a reference (i.e. a dedup-ed,
6474 	 * dmu_sync-ed block). If this block is being prefetched, then it
6475 	 * would still have the ARC_FLAG_IO_IN_PROGRESS flag set on the hdr
6476 	 * until the I/O completes. A block may also have a reference if it is
6477 	 * part of a dedup-ed, dmu_synced write. The dmu_sync() function would
6478 	 * have written the new block to its final resting place on disk but
6479 	 * without the dedup flag set. This would have left the hdr in the MRU
6480 	 * state and discoverable. When the txg finally syncs it detects that
6481 	 * the block was overridden in open context and issues an override I/O.
6482 	 * Since this is a dedup block, the override I/O will determine if the
6483 	 * block is already in the DDT. If so, then it will replace the io_bp
6484 	 * with the bp from the DDT and allow the I/O to finish. When the I/O
6485 	 * reaches the done callback, dbuf_write_override_done, it will
6486 	 * check to see if the io_bp and io_bp_override are identical.
6487 	 * If they are not, then it indicates that the bp was replaced with
6488 	 * the bp in the DDT and the override bp is freed. This allows
6489 	 * us to arrive here with a reference on a block that is being
6490 	 * freed. So if we have an I/O in progress, or a reference to
6491 	 * this hdr, then we don't destroy the hdr.
6492 	 */
6493 	if (!HDR_HAS_L1HDR(hdr) || (!HDR_IO_IN_PROGRESS(hdr) &&
6494 	    zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt))) {
6495 		arc_change_state(arc_anon, hdr, hash_lock);
6496 		arc_hdr_destroy(hdr);
6497 		mutex_exit(hash_lock);
6498 	} else {
6499 		mutex_exit(hash_lock);
6500 	}
6501 
6502 }
6503 
6504 /*
6505  * Release this buffer from the cache, making it an anonymous buffer.  This
6506  * must be done after a read and prior to modifying the buffer contents.
6507  * If the buffer has more than one reference, we must make
6508  * a new hdr for the buffer.
6509  */
6510 void
6511 arc_release(arc_buf_t *buf, void *tag)
6512 {
6513 	arc_buf_hdr_t *hdr = buf->b_hdr;
6514 
6515 	/*
6516 	 * It would be nice to assert that if its DMU metadata (level >
6517 	 * 0 || it's the dnode file), then it must be syncing context.
6518 	 * But we don't know that information at this level.
6519 	 */
6520 
6521 	mutex_enter(&buf->b_evict_lock);
6522 
6523 	ASSERT(HDR_HAS_L1HDR(hdr));
6524 
6525 	/*
6526 	 * We don't grab the hash lock prior to this check, because if
6527 	 * the buffer's header is in the arc_anon state, it won't be
6528 	 * linked into the hash table.
6529 	 */
6530 	if (hdr->b_l1hdr.b_state == arc_anon) {
6531 		mutex_exit(&buf->b_evict_lock);
6532 		ASSERT(!HDR_IO_IN_PROGRESS(hdr));
6533 		ASSERT(!HDR_IN_HASH_TABLE(hdr));
6534 		ASSERT(!HDR_HAS_L2HDR(hdr));
6535 		ASSERT(HDR_EMPTY(hdr));
6536 
6537 		ASSERT3U(hdr->b_l1hdr.b_bufcnt, ==, 1);
6538 		ASSERT3S(zfs_refcount_count(&hdr->b_l1hdr.b_refcnt), ==, 1);
6539 		ASSERT(!list_link_active(&hdr->b_l1hdr.b_arc_node));
6540 
6541 		hdr->b_l1hdr.b_arc_access = 0;
6542 
6543 		/*
6544 		 * If the buf is being overridden then it may already
6545 		 * have a hdr that is not empty.
6546 		 */
6547 		buf_discard_identity(hdr);
6548 		arc_buf_thaw(buf);
6549 
6550 		return;
6551 	}
6552 
6553 	kmutex_t *hash_lock = HDR_LOCK(hdr);
6554 	mutex_enter(hash_lock);
6555 
6556 	/*
6557 	 * This assignment is only valid as long as the hash_lock is
6558 	 * held, we must be careful not to reference state or the
6559 	 * b_state field after dropping the lock.
6560 	 */
6561 	arc_state_t *state = hdr->b_l1hdr.b_state;
6562 	ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
6563 	ASSERT3P(state, !=, arc_anon);
6564 
6565 	/* this buffer is not on any list */
6566 	ASSERT3S(zfs_refcount_count(&hdr->b_l1hdr.b_refcnt), >, 0);
6567 
6568 	if (HDR_HAS_L2HDR(hdr)) {
6569 		mutex_enter(&hdr->b_l2hdr.b_dev->l2ad_mtx);
6570 
6571 		/*
6572 		 * We have to recheck this conditional again now that
6573 		 * we're holding the l2ad_mtx to prevent a race with
6574 		 * another thread which might be concurrently calling
6575 		 * l2arc_evict(). In that case, l2arc_evict() might have
6576 		 * destroyed the header's L2 portion as we were waiting
6577 		 * to acquire the l2ad_mtx.
6578 		 */
6579 		if (HDR_HAS_L2HDR(hdr))
6580 			arc_hdr_l2hdr_destroy(hdr);
6581 
6582 		mutex_exit(&hdr->b_l2hdr.b_dev->l2ad_mtx);
6583 	}
6584 
6585 	/*
6586 	 * Do we have more than one buf?
6587 	 */
6588 	if (hdr->b_l1hdr.b_bufcnt > 1) {
6589 		arc_buf_hdr_t *nhdr;
6590 		uint64_t spa = hdr->b_spa;
6591 		uint64_t psize = HDR_GET_PSIZE(hdr);
6592 		uint64_t lsize = HDR_GET_LSIZE(hdr);
6593 		boolean_t protected = HDR_PROTECTED(hdr);
6594 		enum zio_compress compress = arc_hdr_get_compress(hdr);
6595 		arc_buf_contents_t type = arc_buf_type(hdr);
6596 		VERIFY3U(hdr->b_type, ==, type);
6597 
6598 		ASSERT(hdr->b_l1hdr.b_buf != buf || buf->b_next != NULL);
6599 		(void) remove_reference(hdr, hash_lock, tag);
6600 
6601 		if (arc_buf_is_shared(buf) && !ARC_BUF_COMPRESSED(buf)) {
6602 			ASSERT3P(hdr->b_l1hdr.b_buf, !=, buf);
6603 			ASSERT(ARC_BUF_LAST(buf));
6604 		}
6605 
6606 		/*
6607 		 * Pull the data off of this hdr and attach it to
6608 		 * a new anonymous hdr. Also find the last buffer
6609 		 * in the hdr's buffer list.
6610 		 */
6611 		arc_buf_t *lastbuf = arc_buf_remove(hdr, buf);
6612 		ASSERT3P(lastbuf, !=, NULL);
6613 
6614 		/*
6615 		 * If the current arc_buf_t and the hdr are sharing their data
6616 		 * buffer, then we must stop sharing that block.
6617 		 */
6618 		if (arc_buf_is_shared(buf)) {
6619 			ASSERT3P(hdr->b_l1hdr.b_buf, !=, buf);
6620 			VERIFY(!arc_buf_is_shared(lastbuf));
6621 
6622 			/*
6623 			 * First, sever the block sharing relationship between
6624 			 * buf and the arc_buf_hdr_t.
6625 			 */
6626 			arc_unshare_buf(hdr, buf);
6627 
6628 			/*
6629 			 * Now we need to recreate the hdr's b_pabd. Since we
6630 			 * have lastbuf handy, we try to share with it, but if
6631 			 * we can't then we allocate a new b_pabd and copy the
6632 			 * data from buf into it.
6633 			 */
6634 			if (arc_can_share(hdr, lastbuf)) {
6635 				arc_share_buf(hdr, lastbuf);
6636 			} else {
6637 				arc_hdr_alloc_abd(hdr, ARC_HDR_DO_ADAPT);
6638 				abd_copy_from_buf(hdr->b_l1hdr.b_pabd,
6639 				    buf->b_data, psize);
6640 			}
6641 			VERIFY3P(lastbuf->b_data, !=, NULL);
6642 		} else if (HDR_SHARED_DATA(hdr)) {
6643 			/*
6644 			 * Uncompressed shared buffers are always at the end
6645 			 * of the list. Compressed buffers don't have the
6646 			 * same requirements. This makes it hard to
6647 			 * simply assert that the lastbuf is shared so
6648 			 * we rely on the hdr's compression flags to determine
6649 			 * if we have a compressed, shared buffer.
6650 			 */
6651 			ASSERT(arc_buf_is_shared(lastbuf) ||
6652 			    arc_hdr_get_compress(hdr) != ZIO_COMPRESS_OFF);
6653 			ASSERT(!ARC_BUF_SHARED(buf));
6654 		}
6655 
6656 		ASSERT(hdr->b_l1hdr.b_pabd != NULL || HDR_HAS_RABD(hdr));
6657 		ASSERT3P(state, !=, arc_l2c_only);
6658 
6659 		(void) zfs_refcount_remove_many(&state->arcs_size,
6660 		    arc_buf_size(buf), buf);
6661 
6662 		if (zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt)) {
6663 			ASSERT3P(state, !=, arc_l2c_only);
6664 			(void) zfs_refcount_remove_many(
6665 			    &state->arcs_esize[type],
6666 			    arc_buf_size(buf), buf);
6667 		}
6668 
6669 		hdr->b_l1hdr.b_bufcnt -= 1;
6670 		if (ARC_BUF_ENCRYPTED(buf))
6671 			hdr->b_crypt_hdr.b_ebufcnt -= 1;
6672 
6673 		arc_cksum_verify(buf);
6674 		arc_buf_unwatch(buf);
6675 
6676 		/* if this is the last uncompressed buf free the checksum */
6677 		if (!arc_hdr_has_uncompressed_buf(hdr))
6678 			arc_cksum_free(hdr);
6679 
6680 		mutex_exit(hash_lock);
6681 
6682 		/*
6683 		 * Allocate a new hdr. The new hdr will contain a b_pabd
6684 		 * buffer which will be freed in arc_write().
6685 		 */
6686 		nhdr = arc_hdr_alloc(spa, psize, lsize, protected,
6687 		    compress, hdr->b_complevel, type, HDR_HAS_RABD(hdr));
6688 		ASSERT3P(nhdr->b_l1hdr.b_buf, ==, NULL);
6689 		ASSERT0(nhdr->b_l1hdr.b_bufcnt);
6690 		ASSERT0(zfs_refcount_count(&nhdr->b_l1hdr.b_refcnt));
6691 		VERIFY3U(nhdr->b_type, ==, type);
6692 		ASSERT(!HDR_SHARED_DATA(nhdr));
6693 
6694 		nhdr->b_l1hdr.b_buf = buf;
6695 		nhdr->b_l1hdr.b_bufcnt = 1;
6696 		if (ARC_BUF_ENCRYPTED(buf))
6697 			nhdr->b_crypt_hdr.b_ebufcnt = 1;
6698 		nhdr->b_l1hdr.b_mru_hits = 0;
6699 		nhdr->b_l1hdr.b_mru_ghost_hits = 0;
6700 		nhdr->b_l1hdr.b_mfu_hits = 0;
6701 		nhdr->b_l1hdr.b_mfu_ghost_hits = 0;
6702 		nhdr->b_l1hdr.b_l2_hits = 0;
6703 		(void) zfs_refcount_add(&nhdr->b_l1hdr.b_refcnt, tag);
6704 		buf->b_hdr = nhdr;
6705 
6706 		mutex_exit(&buf->b_evict_lock);
6707 		(void) zfs_refcount_add_many(&arc_anon->arcs_size,
6708 		    arc_buf_size(buf), buf);
6709 	} else {
6710 		mutex_exit(&buf->b_evict_lock);
6711 		ASSERT(zfs_refcount_count(&hdr->b_l1hdr.b_refcnt) == 1);
6712 		/* protected by hash lock, or hdr is on arc_anon */
6713 		ASSERT(!multilist_link_active(&hdr->b_l1hdr.b_arc_node));
6714 		ASSERT(!HDR_IO_IN_PROGRESS(hdr));
6715 		hdr->b_l1hdr.b_mru_hits = 0;
6716 		hdr->b_l1hdr.b_mru_ghost_hits = 0;
6717 		hdr->b_l1hdr.b_mfu_hits = 0;
6718 		hdr->b_l1hdr.b_mfu_ghost_hits = 0;
6719 		hdr->b_l1hdr.b_l2_hits = 0;
6720 		arc_change_state(arc_anon, hdr, hash_lock);
6721 		hdr->b_l1hdr.b_arc_access = 0;
6722 
6723 		mutex_exit(hash_lock);
6724 		buf_discard_identity(hdr);
6725 		arc_buf_thaw(buf);
6726 	}
6727 }
6728 
6729 int
6730 arc_released(arc_buf_t *buf)
6731 {
6732 	int released;
6733 
6734 	mutex_enter(&buf->b_evict_lock);
6735 	released = (buf->b_data != NULL &&
6736 	    buf->b_hdr->b_l1hdr.b_state == arc_anon);
6737 	mutex_exit(&buf->b_evict_lock);
6738 	return (released);
6739 }
6740 
6741 #ifdef ZFS_DEBUG
6742 int
6743 arc_referenced(arc_buf_t *buf)
6744 {
6745 	int referenced;
6746 
6747 	mutex_enter(&buf->b_evict_lock);
6748 	referenced = (zfs_refcount_count(&buf->b_hdr->b_l1hdr.b_refcnt));
6749 	mutex_exit(&buf->b_evict_lock);
6750 	return (referenced);
6751 }
6752 #endif
6753 
6754 static void
6755 arc_write_ready(zio_t *zio)
6756 {
6757 	arc_write_callback_t *callback = zio->io_private;
6758 	arc_buf_t *buf = callback->awcb_buf;
6759 	arc_buf_hdr_t *hdr = buf->b_hdr;
6760 	blkptr_t *bp = zio->io_bp;
6761 	uint64_t psize = BP_IS_HOLE(bp) ? 0 : BP_GET_PSIZE(bp);
6762 	fstrans_cookie_t cookie = spl_fstrans_mark();
6763 
6764 	ASSERT(HDR_HAS_L1HDR(hdr));
6765 	ASSERT(!zfs_refcount_is_zero(&buf->b_hdr->b_l1hdr.b_refcnt));
6766 	ASSERT(hdr->b_l1hdr.b_bufcnt > 0);
6767 
6768 	/*
6769 	 * If we're reexecuting this zio because the pool suspended, then
6770 	 * cleanup any state that was previously set the first time the
6771 	 * callback was invoked.
6772 	 */
6773 	if (zio->io_flags & ZIO_FLAG_REEXECUTED) {
6774 		arc_cksum_free(hdr);
6775 		arc_buf_unwatch(buf);
6776 		if (hdr->b_l1hdr.b_pabd != NULL) {
6777 			if (arc_buf_is_shared(buf)) {
6778 				arc_unshare_buf(hdr, buf);
6779 			} else {
6780 				arc_hdr_free_abd(hdr, B_FALSE);
6781 			}
6782 		}
6783 
6784 		if (HDR_HAS_RABD(hdr))
6785 			arc_hdr_free_abd(hdr, B_TRUE);
6786 	}
6787 	ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
6788 	ASSERT(!HDR_HAS_RABD(hdr));
6789 	ASSERT(!HDR_SHARED_DATA(hdr));
6790 	ASSERT(!arc_buf_is_shared(buf));
6791 
6792 	callback->awcb_ready(zio, buf, callback->awcb_private);
6793 
6794 	if (HDR_IO_IN_PROGRESS(hdr))
6795 		ASSERT(zio->io_flags & ZIO_FLAG_REEXECUTED);
6796 
6797 	arc_hdr_set_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
6798 
6799 	if (BP_IS_PROTECTED(bp) != !!HDR_PROTECTED(hdr))
6800 		hdr = arc_hdr_realloc_crypt(hdr, BP_IS_PROTECTED(bp));
6801 
6802 	if (BP_IS_PROTECTED(bp)) {
6803 		/* ZIL blocks are written through zio_rewrite */
6804 		ASSERT3U(BP_GET_TYPE(bp), !=, DMU_OT_INTENT_LOG);
6805 		ASSERT(HDR_PROTECTED(hdr));
6806 
6807 		if (BP_SHOULD_BYTESWAP(bp)) {
6808 			if (BP_GET_LEVEL(bp) > 0) {
6809 				hdr->b_l1hdr.b_byteswap = DMU_BSWAP_UINT64;
6810 			} else {
6811 				hdr->b_l1hdr.b_byteswap =
6812 				    DMU_OT_BYTESWAP(BP_GET_TYPE(bp));
6813 			}
6814 		} else {
6815 			hdr->b_l1hdr.b_byteswap = DMU_BSWAP_NUMFUNCS;
6816 		}
6817 
6818 		hdr->b_crypt_hdr.b_ot = BP_GET_TYPE(bp);
6819 		hdr->b_crypt_hdr.b_dsobj = zio->io_bookmark.zb_objset;
6820 		zio_crypt_decode_params_bp(bp, hdr->b_crypt_hdr.b_salt,
6821 		    hdr->b_crypt_hdr.b_iv);
6822 		zio_crypt_decode_mac_bp(bp, hdr->b_crypt_hdr.b_mac);
6823 	}
6824 
6825 	/*
6826 	 * If this block was written for raw encryption but the zio layer
6827 	 * ended up only authenticating it, adjust the buffer flags now.
6828 	 */
6829 	if (BP_IS_AUTHENTICATED(bp) && ARC_BUF_ENCRYPTED(buf)) {
6830 		arc_hdr_set_flags(hdr, ARC_FLAG_NOAUTH);
6831 		buf->b_flags &= ~ARC_BUF_FLAG_ENCRYPTED;
6832 		if (BP_GET_COMPRESS(bp) == ZIO_COMPRESS_OFF)
6833 			buf->b_flags &= ~ARC_BUF_FLAG_COMPRESSED;
6834 	} else if (BP_IS_HOLE(bp) && ARC_BUF_ENCRYPTED(buf)) {
6835 		buf->b_flags &= ~ARC_BUF_FLAG_ENCRYPTED;
6836 		buf->b_flags &= ~ARC_BUF_FLAG_COMPRESSED;
6837 	}
6838 
6839 	/* this must be done after the buffer flags are adjusted */
6840 	arc_cksum_compute(buf);
6841 
6842 	enum zio_compress compress;
6843 	if (BP_IS_HOLE(bp) || BP_IS_EMBEDDED(bp)) {
6844 		compress = ZIO_COMPRESS_OFF;
6845 	} else {
6846 		ASSERT3U(HDR_GET_LSIZE(hdr), ==, BP_GET_LSIZE(bp));
6847 		compress = BP_GET_COMPRESS(bp);
6848 	}
6849 	HDR_SET_PSIZE(hdr, psize);
6850 	arc_hdr_set_compress(hdr, compress);
6851 	hdr->b_complevel = zio->io_prop.zp_complevel;
6852 
6853 	if (zio->io_error != 0 || psize == 0)
6854 		goto out;
6855 
6856 	/*
6857 	 * Fill the hdr with data. If the buffer is encrypted we have no choice
6858 	 * but to copy the data into b_radb. If the hdr is compressed, the data
6859 	 * we want is available from the zio, otherwise we can take it from
6860 	 * the buf.
6861 	 *
6862 	 * We might be able to share the buf's data with the hdr here. However,
6863 	 * doing so would cause the ARC to be full of linear ABDs if we write a
6864 	 * lot of shareable data. As a compromise, we check whether scattered
6865 	 * ABDs are allowed, and assume that if they are then the user wants
6866 	 * the ARC to be primarily filled with them regardless of the data being
6867 	 * written. Therefore, if they're allowed then we allocate one and copy
6868 	 * the data into it; otherwise, we share the data directly if we can.
6869 	 */
6870 	if (ARC_BUF_ENCRYPTED(buf)) {
6871 		ASSERT3U(psize, >, 0);
6872 		ASSERT(ARC_BUF_COMPRESSED(buf));
6873 		arc_hdr_alloc_abd(hdr, ARC_HDR_DO_ADAPT|ARC_HDR_ALLOC_RDATA);
6874 		abd_copy(hdr->b_crypt_hdr.b_rabd, zio->io_abd, psize);
6875 	} else if (!abd_size_alloc_linear(arc_buf_size(buf)) ||
6876 	    !arc_can_share(hdr, buf)) {
6877 		/*
6878 		 * Ideally, we would always copy the io_abd into b_pabd, but the
6879 		 * user may have disabled compressed ARC, thus we must check the
6880 		 * hdr's compression setting rather than the io_bp's.
6881 		 */
6882 		if (BP_IS_ENCRYPTED(bp)) {
6883 			ASSERT3U(psize, >, 0);
6884 			arc_hdr_alloc_abd(hdr,
6885 			    ARC_HDR_DO_ADAPT|ARC_HDR_ALLOC_RDATA);
6886 			abd_copy(hdr->b_crypt_hdr.b_rabd, zio->io_abd, psize);
6887 		} else if (arc_hdr_get_compress(hdr) != ZIO_COMPRESS_OFF &&
6888 		    !ARC_BUF_COMPRESSED(buf)) {
6889 			ASSERT3U(psize, >, 0);
6890 			arc_hdr_alloc_abd(hdr, ARC_HDR_DO_ADAPT);
6891 			abd_copy(hdr->b_l1hdr.b_pabd, zio->io_abd, psize);
6892 		} else {
6893 			ASSERT3U(zio->io_orig_size, ==, arc_hdr_size(hdr));
6894 			arc_hdr_alloc_abd(hdr, ARC_HDR_DO_ADAPT);
6895 			abd_copy_from_buf(hdr->b_l1hdr.b_pabd, buf->b_data,
6896 			    arc_buf_size(buf));
6897 		}
6898 	} else {
6899 		ASSERT3P(buf->b_data, ==, abd_to_buf(zio->io_orig_abd));
6900 		ASSERT3U(zio->io_orig_size, ==, arc_buf_size(buf));
6901 		ASSERT3U(hdr->b_l1hdr.b_bufcnt, ==, 1);
6902 
6903 		arc_share_buf(hdr, buf);
6904 	}
6905 
6906 out:
6907 	arc_hdr_verify(hdr, bp);
6908 	spl_fstrans_unmark(cookie);
6909 }
6910 
6911 static void
6912 arc_write_children_ready(zio_t *zio)
6913 {
6914 	arc_write_callback_t *callback = zio->io_private;
6915 	arc_buf_t *buf = callback->awcb_buf;
6916 
6917 	callback->awcb_children_ready(zio, buf, callback->awcb_private);
6918 }
6919 
6920 /*
6921  * The SPA calls this callback for each physical write that happens on behalf
6922  * of a logical write.  See the comment in dbuf_write_physdone() for details.
6923  */
6924 static void
6925 arc_write_physdone(zio_t *zio)
6926 {
6927 	arc_write_callback_t *cb = zio->io_private;
6928 	if (cb->awcb_physdone != NULL)
6929 		cb->awcb_physdone(zio, cb->awcb_buf, cb->awcb_private);
6930 }
6931 
6932 static void
6933 arc_write_done(zio_t *zio)
6934 {
6935 	arc_write_callback_t *callback = zio->io_private;
6936 	arc_buf_t *buf = callback->awcb_buf;
6937 	arc_buf_hdr_t *hdr = buf->b_hdr;
6938 
6939 	ASSERT3P(hdr->b_l1hdr.b_acb, ==, NULL);
6940 
6941 	if (zio->io_error == 0) {
6942 		arc_hdr_verify(hdr, zio->io_bp);
6943 
6944 		if (BP_IS_HOLE(zio->io_bp) || BP_IS_EMBEDDED(zio->io_bp)) {
6945 			buf_discard_identity(hdr);
6946 		} else {
6947 			hdr->b_dva = *BP_IDENTITY(zio->io_bp);
6948 			hdr->b_birth = BP_PHYSICAL_BIRTH(zio->io_bp);
6949 		}
6950 	} else {
6951 		ASSERT(HDR_EMPTY(hdr));
6952 	}
6953 
6954 	/*
6955 	 * If the block to be written was all-zero or compressed enough to be
6956 	 * embedded in the BP, no write was performed so there will be no
6957 	 * dva/birth/checksum.  The buffer must therefore remain anonymous
6958 	 * (and uncached).
6959 	 */
6960 	if (!HDR_EMPTY(hdr)) {
6961 		arc_buf_hdr_t *exists;
6962 		kmutex_t *hash_lock;
6963 
6964 		ASSERT3U(zio->io_error, ==, 0);
6965 
6966 		arc_cksum_verify(buf);
6967 
6968 		exists = buf_hash_insert(hdr, &hash_lock);
6969 		if (exists != NULL) {
6970 			/*
6971 			 * This can only happen if we overwrite for
6972 			 * sync-to-convergence, because we remove
6973 			 * buffers from the hash table when we arc_free().
6974 			 */
6975 			if (zio->io_flags & ZIO_FLAG_IO_REWRITE) {
6976 				if (!BP_EQUAL(&zio->io_bp_orig, zio->io_bp))
6977 					panic("bad overwrite, hdr=%p exists=%p",
6978 					    (void *)hdr, (void *)exists);
6979 				ASSERT(zfs_refcount_is_zero(
6980 				    &exists->b_l1hdr.b_refcnt));
6981 				arc_change_state(arc_anon, exists, hash_lock);
6982 				arc_hdr_destroy(exists);
6983 				mutex_exit(hash_lock);
6984 				exists = buf_hash_insert(hdr, &hash_lock);
6985 				ASSERT3P(exists, ==, NULL);
6986 			} else if (zio->io_flags & ZIO_FLAG_NOPWRITE) {
6987 				/* nopwrite */
6988 				ASSERT(zio->io_prop.zp_nopwrite);
6989 				if (!BP_EQUAL(&zio->io_bp_orig, zio->io_bp))
6990 					panic("bad nopwrite, hdr=%p exists=%p",
6991 					    (void *)hdr, (void *)exists);
6992 			} else {
6993 				/* Dedup */
6994 				ASSERT(hdr->b_l1hdr.b_bufcnt == 1);
6995 				ASSERT(hdr->b_l1hdr.b_state == arc_anon);
6996 				ASSERT(BP_GET_DEDUP(zio->io_bp));
6997 				ASSERT(BP_GET_LEVEL(zio->io_bp) == 0);
6998 			}
6999 		}
7000 		arc_hdr_clear_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
7001 		/* if it's not anon, we are doing a scrub */
7002 		if (exists == NULL && hdr->b_l1hdr.b_state == arc_anon)
7003 			arc_access(hdr, hash_lock);
7004 		mutex_exit(hash_lock);
7005 	} else {
7006 		arc_hdr_clear_flags(hdr, ARC_FLAG_IO_IN_PROGRESS);
7007 	}
7008 
7009 	ASSERT(!zfs_refcount_is_zero(&hdr->b_l1hdr.b_refcnt));
7010 	callback->awcb_done(zio, buf, callback->awcb_private);
7011 
7012 	abd_free(zio->io_abd);
7013 	kmem_free(callback, sizeof (arc_write_callback_t));
7014 }
7015 
7016 zio_t *
7017 arc_write(zio_t *pio, spa_t *spa, uint64_t txg,
7018     blkptr_t *bp, arc_buf_t *buf, boolean_t l2arc,
7019     const zio_prop_t *zp, arc_write_done_func_t *ready,
7020     arc_write_done_func_t *children_ready, arc_write_done_func_t *physdone,
7021     arc_write_done_func_t *done, void *private, zio_priority_t priority,
7022     int zio_flags, const zbookmark_phys_t *zb)
7023 {
7024 	arc_buf_hdr_t *hdr = buf->b_hdr;
7025 	arc_write_callback_t *callback;
7026 	zio_t *zio;
7027 	zio_prop_t localprop = *zp;
7028 
7029 	ASSERT3P(ready, !=, NULL);
7030 	ASSERT3P(done, !=, NULL);
7031 	ASSERT(!HDR_IO_ERROR(hdr));
7032 	ASSERT(!HDR_IO_IN_PROGRESS(hdr));
7033 	ASSERT3P(hdr->b_l1hdr.b_acb, ==, NULL);
7034 	ASSERT3U(hdr->b_l1hdr.b_bufcnt, >, 0);
7035 	if (l2arc)
7036 		arc_hdr_set_flags(hdr, ARC_FLAG_L2CACHE);
7037 
7038 	if (ARC_BUF_ENCRYPTED(buf)) {
7039 		ASSERT(ARC_BUF_COMPRESSED(buf));
7040 		localprop.zp_encrypt = B_TRUE;
7041 		localprop.zp_compress = HDR_GET_COMPRESS(hdr);
7042 		localprop.zp_complevel = hdr->b_complevel;
7043 		localprop.zp_byteorder =
7044 		    (hdr->b_l1hdr.b_byteswap == DMU_BSWAP_NUMFUNCS) ?
7045 		    ZFS_HOST_BYTEORDER : !ZFS_HOST_BYTEORDER;
7046 		bcopy(hdr->b_crypt_hdr.b_salt, localprop.zp_salt,
7047 		    ZIO_DATA_SALT_LEN);
7048 		bcopy(hdr->b_crypt_hdr.b_iv, localprop.zp_iv,
7049 		    ZIO_DATA_IV_LEN);
7050 		bcopy(hdr->b_crypt_hdr.b_mac, localprop.zp_mac,
7051 		    ZIO_DATA_MAC_LEN);
7052 		if (DMU_OT_IS_ENCRYPTED(localprop.zp_type)) {
7053 			localprop.zp_nopwrite = B_FALSE;
7054 			localprop.zp_copies =
7055 			    MIN(localprop.zp_copies, SPA_DVAS_PER_BP - 1);
7056 		}
7057 		zio_flags |= ZIO_FLAG_RAW;
7058 	} else if (ARC_BUF_COMPRESSED(buf)) {
7059 		ASSERT3U(HDR_GET_LSIZE(hdr), !=, arc_buf_size(buf));
7060 		localprop.zp_compress = HDR_GET_COMPRESS(hdr);
7061 		localprop.zp_complevel = hdr->b_complevel;
7062 		zio_flags |= ZIO_FLAG_RAW_COMPRESS;
7063 	}
7064 	callback = kmem_zalloc(sizeof (arc_write_callback_t), KM_SLEEP);
7065 	callback->awcb_ready = ready;
7066 	callback->awcb_children_ready = children_ready;
7067 	callback->awcb_physdone = physdone;
7068 	callback->awcb_done = done;
7069 	callback->awcb_private = private;
7070 	callback->awcb_buf = buf;
7071 
7072 	/*
7073 	 * The hdr's b_pabd is now stale, free it now. A new data block
7074 	 * will be allocated when the zio pipeline calls arc_write_ready().
7075 	 */
7076 	if (hdr->b_l1hdr.b_pabd != NULL) {
7077 		/*
7078 		 * If the buf is currently sharing the data block with
7079 		 * the hdr then we need to break that relationship here.
7080 		 * The hdr will remain with a NULL data pointer and the
7081 		 * buf will take sole ownership of the block.
7082 		 */
7083 		if (arc_buf_is_shared(buf)) {
7084 			arc_unshare_buf(hdr, buf);
7085 		} else {
7086 			arc_hdr_free_abd(hdr, B_FALSE);
7087 		}
7088 		VERIFY3P(buf->b_data, !=, NULL);
7089 	}
7090 
7091 	if (HDR_HAS_RABD(hdr))
7092 		arc_hdr_free_abd(hdr, B_TRUE);
7093 
7094 	if (!(zio_flags & ZIO_FLAG_RAW))
7095 		arc_hdr_set_compress(hdr, ZIO_COMPRESS_OFF);
7096 
7097 	ASSERT(!arc_buf_is_shared(buf));
7098 	ASSERT3P(hdr->b_l1hdr.b_pabd, ==, NULL);
7099 
7100 	zio = zio_write(pio, spa, txg, bp,
7101 	    abd_get_from_buf(buf->b_data, HDR_GET_LSIZE(hdr)),
7102 	    HDR_GET_LSIZE(hdr), arc_buf_size(buf), &localprop, arc_write_ready,
7103 	    (children_ready != NULL) ? arc_write_children_ready : NULL,
7104 	    arc_write_physdone, arc_write_done, callback,
7105 	    priority, zio_flags, zb);
7106 
7107 	return (zio);
7108 }
7109 
7110 void
7111 arc_tempreserve_clear(uint64_t reserve)
7112 {
7113 	atomic_add_64(&arc_tempreserve, -reserve);
7114 	ASSERT((int64_t)arc_tempreserve >= 0);
7115 }
7116 
7117 int
7118 arc_tempreserve_space(spa_t *spa, uint64_t reserve, uint64_t txg)
7119 {
7120 	int error;
7121 	uint64_t anon_size;
7122 
7123 	if (!arc_no_grow &&
7124 	    reserve > arc_c/4 &&
7125 	    reserve * 4 > (2ULL << SPA_MAXBLOCKSHIFT))
7126 		arc_c = MIN(arc_c_max, reserve * 4);
7127 
7128 	/*
7129 	 * Throttle when the calculated memory footprint for the TXG
7130 	 * exceeds the target ARC size.
7131 	 */
7132 	if (reserve > arc_c) {
7133 		DMU_TX_STAT_BUMP(dmu_tx_memory_reserve);
7134 		return (SET_ERROR(ERESTART));
7135 	}
7136 
7137 	/*
7138 	 * Don't count loaned bufs as in flight dirty data to prevent long
7139 	 * network delays from blocking transactions that are ready to be
7140 	 * assigned to a txg.
7141 	 */
7142 
7143 	/* assert that it has not wrapped around */
7144 	ASSERT3S(atomic_add_64_nv(&arc_loaned_bytes, 0), >=, 0);
7145 
7146 	anon_size = MAX((int64_t)(zfs_refcount_count(&arc_anon->arcs_size) -
7147 	    arc_loaned_bytes), 0);
7148 
7149 	/*
7150 	 * Writes will, almost always, require additional memory allocations
7151 	 * in order to compress/encrypt/etc the data.  We therefore need to
7152 	 * make sure that there is sufficient available memory for this.
7153 	 */
7154 	error = arc_memory_throttle(spa, reserve, txg);
7155 	if (error != 0)
7156 		return (error);
7157 
7158 	/*
7159 	 * Throttle writes when the amount of dirty data in the cache
7160 	 * gets too large.  We try to keep the cache less than half full
7161 	 * of dirty blocks so that our sync times don't grow too large.
7162 	 *
7163 	 * In the case of one pool being built on another pool, we want
7164 	 * to make sure we don't end up throttling the lower (backing)
7165 	 * pool when the upper pool is the majority contributor to dirty
7166 	 * data. To insure we make forward progress during throttling, we
7167 	 * also check the current pool's net dirty data and only throttle
7168 	 * if it exceeds zfs_arc_pool_dirty_percent of the anonymous dirty
7169 	 * data in the cache.
7170 	 *
7171 	 * Note: if two requests come in concurrently, we might let them
7172 	 * both succeed, when one of them should fail.  Not a huge deal.
7173 	 */
7174 	uint64_t total_dirty = reserve + arc_tempreserve + anon_size;
7175 	uint64_t spa_dirty_anon = spa_dirty_data(spa);
7176 	uint64_t rarc_c = arc_warm ? arc_c : arc_c_max;
7177 	if (total_dirty > rarc_c * zfs_arc_dirty_limit_percent / 100 &&
7178 	    anon_size > rarc_c * zfs_arc_anon_limit_percent / 100 &&
7179 	    spa_dirty_anon > anon_size * zfs_arc_pool_dirty_percent / 100) {
7180 #ifdef ZFS_DEBUG
7181 		uint64_t meta_esize = zfs_refcount_count(
7182 		    &arc_anon->arcs_esize[ARC_BUFC_METADATA]);
7183 		uint64_t data_esize =
7184 		    zfs_refcount_count(&arc_anon->arcs_esize[ARC_BUFC_DATA]);
7185 		dprintf("failing, arc_tempreserve=%lluK anon_meta=%lluK "
7186 		    "anon_data=%lluK tempreserve=%lluK rarc_c=%lluK\n",
7187 		    (u_longlong_t)arc_tempreserve >> 10,
7188 		    (u_longlong_t)meta_esize >> 10,
7189 		    (u_longlong_t)data_esize >> 10,
7190 		    (u_longlong_t)reserve >> 10,
7191 		    (u_longlong_t)rarc_c >> 10);
7192 #endif
7193 		DMU_TX_STAT_BUMP(dmu_tx_dirty_throttle);
7194 		return (SET_ERROR(ERESTART));
7195 	}
7196 	atomic_add_64(&arc_tempreserve, reserve);
7197 	return (0);
7198 }
7199 
7200 static void
7201 arc_kstat_update_state(arc_state_t *state, kstat_named_t *size,
7202     kstat_named_t *evict_data, kstat_named_t *evict_metadata)
7203 {
7204 	size->value.ui64 = zfs_refcount_count(&state->arcs_size);
7205 	evict_data->value.ui64 =
7206 	    zfs_refcount_count(&state->arcs_esize[ARC_BUFC_DATA]);
7207 	evict_metadata->value.ui64 =
7208 	    zfs_refcount_count(&state->arcs_esize[ARC_BUFC_METADATA]);
7209 }
7210 
7211 static int
7212 arc_kstat_update(kstat_t *ksp, int rw)
7213 {
7214 	arc_stats_t *as = ksp->ks_data;
7215 
7216 	if (rw == KSTAT_WRITE)
7217 		return (SET_ERROR(EACCES));
7218 
7219 	as->arcstat_hits.value.ui64 =
7220 	    wmsum_value(&arc_sums.arcstat_hits);
7221 	as->arcstat_misses.value.ui64 =
7222 	    wmsum_value(&arc_sums.arcstat_misses);
7223 	as->arcstat_demand_data_hits.value.ui64 =
7224 	    wmsum_value(&arc_sums.arcstat_demand_data_hits);
7225 	as->arcstat_demand_data_misses.value.ui64 =
7226 	    wmsum_value(&arc_sums.arcstat_demand_data_misses);
7227 	as->arcstat_demand_metadata_hits.value.ui64 =
7228 	    wmsum_value(&arc_sums.arcstat_demand_metadata_hits);
7229 	as->arcstat_demand_metadata_misses.value.ui64 =
7230 	    wmsum_value(&arc_sums.arcstat_demand_metadata_misses);
7231 	as->arcstat_prefetch_data_hits.value.ui64 =
7232 	    wmsum_value(&arc_sums.arcstat_prefetch_data_hits);
7233 	as->arcstat_prefetch_data_misses.value.ui64 =
7234 	    wmsum_value(&arc_sums.arcstat_prefetch_data_misses);
7235 	as->arcstat_prefetch_metadata_hits.value.ui64 =
7236 	    wmsum_value(&arc_sums.arcstat_prefetch_metadata_hits);
7237 	as->arcstat_prefetch_metadata_misses.value.ui64 =
7238 	    wmsum_value(&arc_sums.arcstat_prefetch_metadata_misses);
7239 	as->arcstat_mru_hits.value.ui64 =
7240 	    wmsum_value(&arc_sums.arcstat_mru_hits);
7241 	as->arcstat_mru_ghost_hits.value.ui64 =
7242 	    wmsum_value(&arc_sums.arcstat_mru_ghost_hits);
7243 	as->arcstat_mfu_hits.value.ui64 =
7244 	    wmsum_value(&arc_sums.arcstat_mfu_hits);
7245 	as->arcstat_mfu_ghost_hits.value.ui64 =
7246 	    wmsum_value(&arc_sums.arcstat_mfu_ghost_hits);
7247 	as->arcstat_deleted.value.ui64 =
7248 	    wmsum_value(&arc_sums.arcstat_deleted);
7249 	as->arcstat_mutex_miss.value.ui64 =
7250 	    wmsum_value(&arc_sums.arcstat_mutex_miss);
7251 	as->arcstat_access_skip.value.ui64 =
7252 	    wmsum_value(&arc_sums.arcstat_access_skip);
7253 	as->arcstat_evict_skip.value.ui64 =
7254 	    wmsum_value(&arc_sums.arcstat_evict_skip);
7255 	as->arcstat_evict_not_enough.value.ui64 =
7256 	    wmsum_value(&arc_sums.arcstat_evict_not_enough);
7257 	as->arcstat_evict_l2_cached.value.ui64 =
7258 	    wmsum_value(&arc_sums.arcstat_evict_l2_cached);
7259 	as->arcstat_evict_l2_eligible.value.ui64 =
7260 	    wmsum_value(&arc_sums.arcstat_evict_l2_eligible);
7261 	as->arcstat_evict_l2_eligible_mfu.value.ui64 =
7262 	    wmsum_value(&arc_sums.arcstat_evict_l2_eligible_mfu);
7263 	as->arcstat_evict_l2_eligible_mru.value.ui64 =
7264 	    wmsum_value(&arc_sums.arcstat_evict_l2_eligible_mru);
7265 	as->arcstat_evict_l2_ineligible.value.ui64 =
7266 	    wmsum_value(&arc_sums.arcstat_evict_l2_ineligible);
7267 	as->arcstat_evict_l2_skip.value.ui64 =
7268 	    wmsum_value(&arc_sums.arcstat_evict_l2_skip);
7269 	as->arcstat_hash_collisions.value.ui64 =
7270 	    wmsum_value(&arc_sums.arcstat_hash_collisions);
7271 	as->arcstat_hash_chains.value.ui64 =
7272 	    wmsum_value(&arc_sums.arcstat_hash_chains);
7273 	as->arcstat_size.value.ui64 =
7274 	    aggsum_value(&arc_sums.arcstat_size);
7275 	as->arcstat_compressed_size.value.ui64 =
7276 	    wmsum_value(&arc_sums.arcstat_compressed_size);
7277 	as->arcstat_uncompressed_size.value.ui64 =
7278 	    wmsum_value(&arc_sums.arcstat_uncompressed_size);
7279 	as->arcstat_overhead_size.value.ui64 =
7280 	    wmsum_value(&arc_sums.arcstat_overhead_size);
7281 	as->arcstat_hdr_size.value.ui64 =
7282 	    wmsum_value(&arc_sums.arcstat_hdr_size);
7283 	as->arcstat_data_size.value.ui64 =
7284 	    wmsum_value(&arc_sums.arcstat_data_size);
7285 	as->arcstat_metadata_size.value.ui64 =
7286 	    wmsum_value(&arc_sums.arcstat_metadata_size);
7287 	as->arcstat_dbuf_size.value.ui64 =
7288 	    wmsum_value(&arc_sums.arcstat_dbuf_size);
7289 #if defined(COMPAT_FREEBSD11)
7290 	as->arcstat_other_size.value.ui64 =
7291 	    wmsum_value(&arc_sums.arcstat_bonus_size) +
7292 	    aggsum_value(&arc_sums.arcstat_dnode_size) +
7293 	    wmsum_value(&arc_sums.arcstat_dbuf_size);
7294 #endif
7295 
7296 	arc_kstat_update_state(arc_anon,
7297 	    &as->arcstat_anon_size,
7298 	    &as->arcstat_anon_evictable_data,
7299 	    &as->arcstat_anon_evictable_metadata);
7300 	arc_kstat_update_state(arc_mru,
7301 	    &as->arcstat_mru_size,
7302 	    &as->arcstat_mru_evictable_data,
7303 	    &as->arcstat_mru_evictable_metadata);
7304 	arc_kstat_update_state(arc_mru_ghost,
7305 	    &as->arcstat_mru_ghost_size,
7306 	    &as->arcstat_mru_ghost_evictable_data,
7307 	    &as->arcstat_mru_ghost_evictable_metadata);
7308 	arc_kstat_update_state(arc_mfu,
7309 	    &as->arcstat_mfu_size,
7310 	    &as->arcstat_mfu_evictable_data,
7311 	    &as->arcstat_mfu_evictable_metadata);
7312 	arc_kstat_update_state(arc_mfu_ghost,
7313 	    &as->arcstat_mfu_ghost_size,
7314 	    &as->arcstat_mfu_ghost_evictable_data,
7315 	    &as->arcstat_mfu_ghost_evictable_metadata);
7316 
7317 	as->arcstat_dnode_size.value.ui64 =
7318 	    aggsum_value(&arc_sums.arcstat_dnode_size);
7319 	as->arcstat_bonus_size.value.ui64 =
7320 	    wmsum_value(&arc_sums.arcstat_bonus_size);
7321 	as->arcstat_l2_hits.value.ui64 =
7322 	    wmsum_value(&arc_sums.arcstat_l2_hits);
7323 	as->arcstat_l2_misses.value.ui64 =
7324 	    wmsum_value(&arc_sums.arcstat_l2_misses);
7325 	as->arcstat_l2_prefetch_asize.value.ui64 =
7326 	    wmsum_value(&arc_sums.arcstat_l2_prefetch_asize);
7327 	as->arcstat_l2_mru_asize.value.ui64 =
7328 	    wmsum_value(&arc_sums.arcstat_l2_mru_asize);
7329 	as->arcstat_l2_mfu_asize.value.ui64 =
7330 	    wmsum_value(&arc_sums.arcstat_l2_mfu_asize);
7331 	as->arcstat_l2_bufc_data_asize.value.ui64 =
7332 	    wmsum_value(&arc_sums.arcstat_l2_bufc_data_asize);
7333 	as->arcstat_l2_bufc_metadata_asize.value.ui64 =
7334 	    wmsum_value(&arc_sums.arcstat_l2_bufc_metadata_asize);
7335 	as->arcstat_l2_feeds.value.ui64 =
7336 	    wmsum_value(&arc_sums.arcstat_l2_feeds);
7337 	as->arcstat_l2_rw_clash.value.ui64 =
7338 	    wmsum_value(&arc_sums.arcstat_l2_rw_clash);
7339 	as->arcstat_l2_read_bytes.value.ui64 =
7340 	    wmsum_value(&arc_sums.arcstat_l2_read_bytes);
7341 	as->arcstat_l2_write_bytes.value.ui64 =
7342 	    wmsum_value(&arc_sums.arcstat_l2_write_bytes);
7343 	as->arcstat_l2_writes_sent.value.ui64 =
7344 	    wmsum_value(&arc_sums.arcstat_l2_writes_sent);
7345 	as->arcstat_l2_writes_done.value.ui64 =
7346 	    wmsum_value(&arc_sums.arcstat_l2_writes_done);
7347 	as->arcstat_l2_writes_error.value.ui64 =
7348 	    wmsum_value(&arc_sums.arcstat_l2_writes_error);
7349 	as->arcstat_l2_writes_lock_retry.value.ui64 =
7350 	    wmsum_value(&arc_sums.arcstat_l2_writes_lock_retry);
7351 	as->arcstat_l2_evict_lock_retry.value.ui64 =
7352 	    wmsum_value(&arc_sums.arcstat_l2_evict_lock_retry);
7353 	as->arcstat_l2_evict_reading.value.ui64 =
7354 	    wmsum_value(&arc_sums.arcstat_l2_evict_reading);
7355 	as->arcstat_l2_evict_l1cached.value.ui64 =
7356 	    wmsum_value(&arc_sums.arcstat_l2_evict_l1cached);
7357 	as->arcstat_l2_free_on_write.value.ui64 =
7358 	    wmsum_value(&arc_sums.arcstat_l2_free_on_write);
7359 	as->arcstat_l2_abort_lowmem.value.ui64 =
7360 	    wmsum_value(&arc_sums.arcstat_l2_abort_lowmem);
7361 	as->arcstat_l2_cksum_bad.value.ui64 =
7362 	    wmsum_value(&arc_sums.arcstat_l2_cksum_bad);
7363 	as->arcstat_l2_io_error.value.ui64 =
7364 	    wmsum_value(&arc_sums.arcstat_l2_io_error);
7365 	as->arcstat_l2_lsize.value.ui64 =
7366 	    wmsum_value(&arc_sums.arcstat_l2_lsize);
7367 	as->arcstat_l2_psize.value.ui64 =
7368 	    wmsum_value(&arc_sums.arcstat_l2_psize);
7369 	as->arcstat_l2_hdr_size.value.ui64 =
7370 	    aggsum_value(&arc_sums.arcstat_l2_hdr_size);
7371 	as->arcstat_l2_log_blk_writes.value.ui64 =
7372 	    wmsum_value(&arc_sums.arcstat_l2_log_blk_writes);
7373 	as->arcstat_l2_log_blk_asize.value.ui64 =
7374 	    wmsum_value(&arc_sums.arcstat_l2_log_blk_asize);
7375 	as->arcstat_l2_log_blk_count.value.ui64 =
7376 	    wmsum_value(&arc_sums.arcstat_l2_log_blk_count);
7377 	as->arcstat_l2_rebuild_success.value.ui64 =
7378 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_success);
7379 	as->arcstat_l2_rebuild_abort_unsupported.value.ui64 =
7380 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_abort_unsupported);
7381 	as->arcstat_l2_rebuild_abort_io_errors.value.ui64 =
7382 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_abort_io_errors);
7383 	as->arcstat_l2_rebuild_abort_dh_errors.value.ui64 =
7384 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_abort_dh_errors);
7385 	as->arcstat_l2_rebuild_abort_cksum_lb_errors.value.ui64 =
7386 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_abort_cksum_lb_errors);
7387 	as->arcstat_l2_rebuild_abort_lowmem.value.ui64 =
7388 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_abort_lowmem);
7389 	as->arcstat_l2_rebuild_size.value.ui64 =
7390 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_size);
7391 	as->arcstat_l2_rebuild_asize.value.ui64 =
7392 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_asize);
7393 	as->arcstat_l2_rebuild_bufs.value.ui64 =
7394 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_bufs);
7395 	as->arcstat_l2_rebuild_bufs_precached.value.ui64 =
7396 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_bufs_precached);
7397 	as->arcstat_l2_rebuild_log_blks.value.ui64 =
7398 	    wmsum_value(&arc_sums.arcstat_l2_rebuild_log_blks);
7399 	as->arcstat_memory_throttle_count.value.ui64 =
7400 	    wmsum_value(&arc_sums.arcstat_memory_throttle_count);
7401 	as->arcstat_memory_direct_count.value.ui64 =
7402 	    wmsum_value(&arc_sums.arcstat_memory_direct_count);
7403 	as->arcstat_memory_indirect_count.value.ui64 =
7404 	    wmsum_value(&arc_sums.arcstat_memory_indirect_count);
7405 
7406 	as->arcstat_memory_all_bytes.value.ui64 =
7407 	    arc_all_memory();
7408 	as->arcstat_memory_free_bytes.value.ui64 =
7409 	    arc_free_memory();
7410 	as->arcstat_memory_available_bytes.value.i64 =
7411 	    arc_available_memory();
7412 
7413 	as->arcstat_prune.value.ui64 =
7414 	    wmsum_value(&arc_sums.arcstat_prune);
7415 	as->arcstat_meta_used.value.ui64 =
7416 	    aggsum_value(&arc_sums.arcstat_meta_used);
7417 	as->arcstat_async_upgrade_sync.value.ui64 =
7418 	    wmsum_value(&arc_sums.arcstat_async_upgrade_sync);
7419 	as->arcstat_demand_hit_predictive_prefetch.value.ui64 =
7420 	    wmsum_value(&arc_sums.arcstat_demand_hit_predictive_prefetch);
7421 	as->arcstat_demand_hit_prescient_prefetch.value.ui64 =
7422 	    wmsum_value(&arc_sums.arcstat_demand_hit_prescient_prefetch);
7423 	as->arcstat_raw_size.value.ui64 =
7424 	    wmsum_value(&arc_sums.arcstat_raw_size);
7425 	as->arcstat_cached_only_in_progress.value.ui64 =
7426 	    wmsum_value(&arc_sums.arcstat_cached_only_in_progress);
7427 	as->arcstat_abd_chunk_waste_size.value.ui64 =
7428 	    wmsum_value(&arc_sums.arcstat_abd_chunk_waste_size);
7429 
7430 	return (0);
7431 }
7432 
7433 /*
7434  * This function *must* return indices evenly distributed between all
7435  * sublists of the multilist. This is needed due to how the ARC eviction
7436  * code is laid out; arc_evict_state() assumes ARC buffers are evenly
7437  * distributed between all sublists and uses this assumption when
7438  * deciding which sublist to evict from and how much to evict from it.
7439  */
7440 static unsigned int
7441 arc_state_multilist_index_func(multilist_t *ml, void *obj)
7442 {
7443 	arc_buf_hdr_t *hdr = obj;
7444 
7445 	/*
7446 	 * We rely on b_dva to generate evenly distributed index
7447 	 * numbers using buf_hash below. So, as an added precaution,
7448 	 * let's make sure we never add empty buffers to the arc lists.
7449 	 */
7450 	ASSERT(!HDR_EMPTY(hdr));
7451 
7452 	/*
7453 	 * The assumption here, is the hash value for a given
7454 	 * arc_buf_hdr_t will remain constant throughout its lifetime
7455 	 * (i.e. its b_spa, b_dva, and b_birth fields don't change).
7456 	 * Thus, we don't need to store the header's sublist index
7457 	 * on insertion, as this index can be recalculated on removal.
7458 	 *
7459 	 * Also, the low order bits of the hash value are thought to be
7460 	 * distributed evenly. Otherwise, in the case that the multilist
7461 	 * has a power of two number of sublists, each sublists' usage
7462 	 * would not be evenly distributed. In this context full 64bit
7463 	 * division would be a waste of time, so limit it to 32 bits.
7464 	 */
7465 	return ((unsigned int)buf_hash(hdr->b_spa, &hdr->b_dva, hdr->b_birth) %
7466 	    multilist_get_num_sublists(ml));
7467 }
7468 
7469 #define	WARN_IF_TUNING_IGNORED(tuning, value, do_warn) do {	\
7470 	if ((do_warn) && (tuning) && ((tuning) != (value))) {	\
7471 		cmn_err(CE_WARN,				\
7472 		    "ignoring tunable %s (using %llu instead)",	\
7473 		    (#tuning), (u_longlong_t)(value));	\
7474 	}							\
7475 } while (0)
7476 
7477 /*
7478  * Called during module initialization and periodically thereafter to
7479  * apply reasonable changes to the exposed performance tunings.  Can also be
7480  * called explicitly by param_set_arc_*() functions when ARC tunables are
7481  * updated manually.  Non-zero zfs_* values which differ from the currently set
7482  * values will be applied.
7483  */
7484 void
7485 arc_tuning_update(boolean_t verbose)
7486 {
7487 	uint64_t allmem = arc_all_memory();
7488 	unsigned long limit;
7489 
7490 	/* Valid range: 32M - <arc_c_max> */
7491 	if ((zfs_arc_min) && (zfs_arc_min != arc_c_min) &&
7492 	    (zfs_arc_min >= 2ULL << SPA_MAXBLOCKSHIFT) &&
7493 	    (zfs_arc_min <= arc_c_max)) {
7494 		arc_c_min = zfs_arc_min;
7495 		arc_c = MAX(arc_c, arc_c_min);
7496 	}
7497 	WARN_IF_TUNING_IGNORED(zfs_arc_min, arc_c_min, verbose);
7498 
7499 	/* Valid range: 64M - <all physical memory> */
7500 	if ((zfs_arc_max) && (zfs_arc_max != arc_c_max) &&
7501 	    (zfs_arc_max >= 64 << 20) && (zfs_arc_max < allmem) &&
7502 	    (zfs_arc_max > arc_c_min)) {
7503 		arc_c_max = zfs_arc_max;
7504 		arc_c = MIN(arc_c, arc_c_max);
7505 		arc_p = (arc_c >> 1);
7506 		if (arc_meta_limit > arc_c_max)
7507 			arc_meta_limit = arc_c_max;
7508 		if (arc_dnode_size_limit > arc_meta_limit)
7509 			arc_dnode_size_limit = arc_meta_limit;
7510 	}
7511 	WARN_IF_TUNING_IGNORED(zfs_arc_max, arc_c_max, verbose);
7512 
7513 	/* Valid range: 16M - <arc_c_max> */
7514 	if ((zfs_arc_meta_min) && (zfs_arc_meta_min != arc_meta_min) &&
7515 	    (zfs_arc_meta_min >= 1ULL << SPA_MAXBLOCKSHIFT) &&
7516 	    (zfs_arc_meta_min <= arc_c_max)) {
7517 		arc_meta_min = zfs_arc_meta_min;
7518 		if (arc_meta_limit < arc_meta_min)
7519 			arc_meta_limit = arc_meta_min;
7520 		if (arc_dnode_size_limit < arc_meta_min)
7521 			arc_dnode_size_limit = arc_meta_min;
7522 	}
7523 	WARN_IF_TUNING_IGNORED(zfs_arc_meta_min, arc_meta_min, verbose);
7524 
7525 	/* Valid range: <arc_meta_min> - <arc_c_max> */
7526 	limit = zfs_arc_meta_limit ? zfs_arc_meta_limit :
7527 	    MIN(zfs_arc_meta_limit_percent, 100) * arc_c_max / 100;
7528 	if ((limit != arc_meta_limit) &&
7529 	    (limit >= arc_meta_min) &&
7530 	    (limit <= arc_c_max))
7531 		arc_meta_limit = limit;
7532 	WARN_IF_TUNING_IGNORED(zfs_arc_meta_limit, arc_meta_limit, verbose);
7533 
7534 	/* Valid range: <arc_meta_min> - <arc_meta_limit> */
7535 	limit = zfs_arc_dnode_limit ? zfs_arc_dnode_limit :
7536 	    MIN(zfs_arc_dnode_limit_percent, 100) * arc_meta_limit / 100;
7537 	if ((limit != arc_dnode_size_limit) &&
7538 	    (limit >= arc_meta_min) &&
7539 	    (limit <= arc_meta_limit))
7540 		arc_dnode_size_limit = limit;
7541 	WARN_IF_TUNING_IGNORED(zfs_arc_dnode_limit, arc_dnode_size_limit,
7542 	    verbose);
7543 
7544 	/* Valid range: 1 - N */
7545 	if (zfs_arc_grow_retry)
7546 		arc_grow_retry = zfs_arc_grow_retry;
7547 
7548 	/* Valid range: 1 - N */
7549 	if (zfs_arc_shrink_shift) {
7550 		arc_shrink_shift = zfs_arc_shrink_shift;
7551 		arc_no_grow_shift = MIN(arc_no_grow_shift, arc_shrink_shift -1);
7552 	}
7553 
7554 	/* Valid range: 1 - N */
7555 	if (zfs_arc_p_min_shift)
7556 		arc_p_min_shift = zfs_arc_p_min_shift;
7557 
7558 	/* Valid range: 1 - N ms */
7559 	if (zfs_arc_min_prefetch_ms)
7560 		arc_min_prefetch_ms = zfs_arc_min_prefetch_ms;
7561 
7562 	/* Valid range: 1 - N ms */
7563 	if (zfs_arc_min_prescient_prefetch_ms) {
7564 		arc_min_prescient_prefetch_ms =
7565 		    zfs_arc_min_prescient_prefetch_ms;
7566 	}
7567 
7568 	/* Valid range: 0 - 100 */
7569 	if ((zfs_arc_lotsfree_percent >= 0) &&
7570 	    (zfs_arc_lotsfree_percent <= 100))
7571 		arc_lotsfree_percent = zfs_arc_lotsfree_percent;
7572 	WARN_IF_TUNING_IGNORED(zfs_arc_lotsfree_percent, arc_lotsfree_percent,
7573 	    verbose);
7574 
7575 	/* Valid range: 0 - <all physical memory> */
7576 	if ((zfs_arc_sys_free) && (zfs_arc_sys_free != arc_sys_free))
7577 		arc_sys_free = MIN(MAX(zfs_arc_sys_free, 0), allmem);
7578 	WARN_IF_TUNING_IGNORED(zfs_arc_sys_free, arc_sys_free, verbose);
7579 }
7580 
7581 static void
7582 arc_state_init(void)
7583 {
7584 	multilist_create(&arc_mru->arcs_list[ARC_BUFC_METADATA],
7585 	    sizeof (arc_buf_hdr_t),
7586 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7587 	    arc_state_multilist_index_func);
7588 	multilist_create(&arc_mru->arcs_list[ARC_BUFC_DATA],
7589 	    sizeof (arc_buf_hdr_t),
7590 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7591 	    arc_state_multilist_index_func);
7592 	multilist_create(&arc_mru_ghost->arcs_list[ARC_BUFC_METADATA],
7593 	    sizeof (arc_buf_hdr_t),
7594 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7595 	    arc_state_multilist_index_func);
7596 	multilist_create(&arc_mru_ghost->arcs_list[ARC_BUFC_DATA],
7597 	    sizeof (arc_buf_hdr_t),
7598 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7599 	    arc_state_multilist_index_func);
7600 	multilist_create(&arc_mfu->arcs_list[ARC_BUFC_METADATA],
7601 	    sizeof (arc_buf_hdr_t),
7602 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7603 	    arc_state_multilist_index_func);
7604 	multilist_create(&arc_mfu->arcs_list[ARC_BUFC_DATA],
7605 	    sizeof (arc_buf_hdr_t),
7606 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7607 	    arc_state_multilist_index_func);
7608 	multilist_create(&arc_mfu_ghost->arcs_list[ARC_BUFC_METADATA],
7609 	    sizeof (arc_buf_hdr_t),
7610 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7611 	    arc_state_multilist_index_func);
7612 	multilist_create(&arc_mfu_ghost->arcs_list[ARC_BUFC_DATA],
7613 	    sizeof (arc_buf_hdr_t),
7614 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7615 	    arc_state_multilist_index_func);
7616 	multilist_create(&arc_l2c_only->arcs_list[ARC_BUFC_METADATA],
7617 	    sizeof (arc_buf_hdr_t),
7618 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7619 	    arc_state_multilist_index_func);
7620 	multilist_create(&arc_l2c_only->arcs_list[ARC_BUFC_DATA],
7621 	    sizeof (arc_buf_hdr_t),
7622 	    offsetof(arc_buf_hdr_t, b_l1hdr.b_arc_node),
7623 	    arc_state_multilist_index_func);
7624 
7625 	zfs_refcount_create(&arc_anon->arcs_esize[ARC_BUFC_METADATA]);
7626 	zfs_refcount_create(&arc_anon->arcs_esize[ARC_BUFC_DATA]);
7627 	zfs_refcount_create(&arc_mru->arcs_esize[ARC_BUFC_METADATA]);
7628 	zfs_refcount_create(&arc_mru->arcs_esize[ARC_BUFC_DATA]);
7629 	zfs_refcount_create(&arc_mru_ghost->arcs_esize[ARC_BUFC_METADATA]);
7630 	zfs_refcount_create(&arc_mru_ghost->arcs_esize[ARC_BUFC_DATA]);
7631 	zfs_refcount_create(&arc_mfu->arcs_esize[ARC_BUFC_METADATA]);
7632 	zfs_refcount_create(&arc_mfu->arcs_esize[ARC_BUFC_DATA]);
7633 	zfs_refcount_create(&arc_mfu_ghost->arcs_esize[ARC_BUFC_METADATA]);
7634 	zfs_refcount_create(&arc_mfu_ghost->arcs_esize[ARC_BUFC_DATA]);
7635 	zfs_refcount_create(&arc_l2c_only->arcs_esize[ARC_BUFC_METADATA]);
7636 	zfs_refcount_create(&arc_l2c_only->arcs_esize[ARC_BUFC_DATA]);
7637 
7638 	zfs_refcount_create(&arc_anon->arcs_size);
7639 	zfs_refcount_create(&arc_mru->arcs_size);
7640 	zfs_refcount_create(&arc_mru_ghost->arcs_size);
7641 	zfs_refcount_create(&arc_mfu->arcs_size);
7642 	zfs_refcount_create(&arc_mfu_ghost->arcs_size);
7643 	zfs_refcount_create(&arc_l2c_only->arcs_size);
7644 
7645 	wmsum_init(&arc_sums.arcstat_hits, 0);
7646 	wmsum_init(&arc_sums.arcstat_misses, 0);
7647 	wmsum_init(&arc_sums.arcstat_demand_data_hits, 0);
7648 	wmsum_init(&arc_sums.arcstat_demand_data_misses, 0);
7649 	wmsum_init(&arc_sums.arcstat_demand_metadata_hits, 0);
7650 	wmsum_init(&arc_sums.arcstat_demand_metadata_misses, 0);
7651 	wmsum_init(&arc_sums.arcstat_prefetch_data_hits, 0);
7652 	wmsum_init(&arc_sums.arcstat_prefetch_data_misses, 0);
7653 	wmsum_init(&arc_sums.arcstat_prefetch_metadata_hits, 0);
7654 	wmsum_init(&arc_sums.arcstat_prefetch_metadata_misses, 0);
7655 	wmsum_init(&arc_sums.arcstat_mru_hits, 0);
7656 	wmsum_init(&arc_sums.arcstat_mru_ghost_hits, 0);
7657 	wmsum_init(&arc_sums.arcstat_mfu_hits, 0);
7658 	wmsum_init(&arc_sums.arcstat_mfu_ghost_hits, 0);
7659 	wmsum_init(&arc_sums.arcstat_deleted, 0);
7660 	wmsum_init(&arc_sums.arcstat_mutex_miss, 0);
7661 	wmsum_init(&arc_sums.arcstat_access_skip, 0);
7662 	wmsum_init(&arc_sums.arcstat_evict_skip, 0);
7663 	wmsum_init(&arc_sums.arcstat_evict_not_enough, 0);
7664 	wmsum_init(&arc_sums.arcstat_evict_l2_cached, 0);
7665 	wmsum_init(&arc_sums.arcstat_evict_l2_eligible, 0);
7666 	wmsum_init(&arc_sums.arcstat_evict_l2_eligible_mfu, 0);
7667 	wmsum_init(&arc_sums.arcstat_evict_l2_eligible_mru, 0);
7668 	wmsum_init(&arc_sums.arcstat_evict_l2_ineligible, 0);
7669 	wmsum_init(&arc_sums.arcstat_evict_l2_skip, 0);
7670 	wmsum_init(&arc_sums.arcstat_hash_collisions, 0);
7671 	wmsum_init(&arc_sums.arcstat_hash_chains, 0);
7672 	aggsum_init(&arc_sums.arcstat_size, 0);
7673 	wmsum_init(&arc_sums.arcstat_compressed_size, 0);
7674 	wmsum_init(&arc_sums.arcstat_uncompressed_size, 0);
7675 	wmsum_init(&arc_sums.arcstat_overhead_size, 0);
7676 	wmsum_init(&arc_sums.arcstat_hdr_size, 0);
7677 	wmsum_init(&arc_sums.arcstat_data_size, 0);
7678 	wmsum_init(&arc_sums.arcstat_metadata_size, 0);
7679 	wmsum_init(&arc_sums.arcstat_dbuf_size, 0);
7680 	aggsum_init(&arc_sums.arcstat_dnode_size, 0);
7681 	wmsum_init(&arc_sums.arcstat_bonus_size, 0);
7682 	wmsum_init(&arc_sums.arcstat_l2_hits, 0);
7683 	wmsum_init(&arc_sums.arcstat_l2_misses, 0);
7684 	wmsum_init(&arc_sums.arcstat_l2_prefetch_asize, 0);
7685 	wmsum_init(&arc_sums.arcstat_l2_mru_asize, 0);
7686 	wmsum_init(&arc_sums.arcstat_l2_mfu_asize, 0);
7687 	wmsum_init(&arc_sums.arcstat_l2_bufc_data_asize, 0);
7688 	wmsum_init(&arc_sums.arcstat_l2_bufc_metadata_asize, 0);
7689 	wmsum_init(&arc_sums.arcstat_l2_feeds, 0);
7690 	wmsum_init(&arc_sums.arcstat_l2_rw_clash, 0);
7691 	wmsum_init(&arc_sums.arcstat_l2_read_bytes, 0);
7692 	wmsum_init(&arc_sums.arcstat_l2_write_bytes, 0);
7693 	wmsum_init(&arc_sums.arcstat_l2_writes_sent, 0);
7694 	wmsum_init(&arc_sums.arcstat_l2_writes_done, 0);
7695 	wmsum_init(&arc_sums.arcstat_l2_writes_error, 0);
7696 	wmsum_init(&arc_sums.arcstat_l2_writes_lock_retry, 0);
7697 	wmsum_init(&arc_sums.arcstat_l2_evict_lock_retry, 0);
7698 	wmsum_init(&arc_sums.arcstat_l2_evict_reading, 0);
7699 	wmsum_init(&arc_sums.arcstat_l2_evict_l1cached, 0);
7700 	wmsum_init(&arc_sums.arcstat_l2_free_on_write, 0);
7701 	wmsum_init(&arc_sums.arcstat_l2_abort_lowmem, 0);
7702 	wmsum_init(&arc_sums.arcstat_l2_cksum_bad, 0);
7703 	wmsum_init(&arc_sums.arcstat_l2_io_error, 0);
7704 	wmsum_init(&arc_sums.arcstat_l2_lsize, 0);
7705 	wmsum_init(&arc_sums.arcstat_l2_psize, 0);
7706 	aggsum_init(&arc_sums.arcstat_l2_hdr_size, 0);
7707 	wmsum_init(&arc_sums.arcstat_l2_log_blk_writes, 0);
7708 	wmsum_init(&arc_sums.arcstat_l2_log_blk_asize, 0);
7709 	wmsum_init(&arc_sums.arcstat_l2_log_blk_count, 0);
7710 	wmsum_init(&arc_sums.arcstat_l2_rebuild_success, 0);
7711 	wmsum_init(&arc_sums.arcstat_l2_rebuild_abort_unsupported, 0);
7712 	wmsum_init(&arc_sums.arcstat_l2_rebuild_abort_io_errors, 0);
7713 	wmsum_init(&arc_sums.arcstat_l2_rebuild_abort_dh_errors, 0);
7714 	wmsum_init(&arc_sums.arcstat_l2_rebuild_abort_cksum_lb_errors, 0);
7715 	wmsum_init(&arc_sums.arcstat_l2_rebuild_abort_lowmem, 0);
7716 	wmsum_init(&arc_sums.arcstat_l2_rebuild_size, 0);
7717 	wmsum_init(&arc_sums.arcstat_l2_rebuild_asize, 0);
7718 	wmsum_init(&arc_sums.arcstat_l2_rebuild_bufs, 0);
7719 	wmsum_init(&arc_sums.arcstat_l2_rebuild_bufs_precached, 0);
7720 	wmsum_init(&arc_sums.arcstat_l2_rebuild_log_blks, 0);
7721 	wmsum_init(&arc_sums.arcstat_memory_throttle_count, 0);
7722 	wmsum_init(&arc_sums.arcstat_memory_direct_count, 0);
7723 	wmsum_init(&arc_sums.arcstat_memory_indirect_count, 0);
7724 	wmsum_init(&arc_sums.arcstat_prune, 0);
7725 	aggsum_init(&arc_sums.arcstat_meta_used, 0);
7726 	wmsum_init(&arc_sums.arcstat_async_upgrade_sync, 0);
7727 	wmsum_init(&arc_sums.arcstat_demand_hit_predictive_prefetch, 0);
7728 	wmsum_init(&arc_sums.arcstat_demand_hit_prescient_prefetch, 0);
7729 	wmsum_init(&arc_sums.arcstat_raw_size, 0);
7730 	wmsum_init(&arc_sums.arcstat_cached_only_in_progress, 0);
7731 	wmsum_init(&arc_sums.arcstat_abd_chunk_waste_size, 0);
7732 
7733 	arc_anon->arcs_state = ARC_STATE_ANON;
7734 	arc_mru->arcs_state = ARC_STATE_MRU;
7735 	arc_mru_ghost->arcs_state = ARC_STATE_MRU_GHOST;
7736 	arc_mfu->arcs_state = ARC_STATE_MFU;
7737 	arc_mfu_ghost->arcs_state = ARC_STATE_MFU_GHOST;
7738 	arc_l2c_only->arcs_state = ARC_STATE_L2C_ONLY;
7739 }
7740 
7741 static void
7742 arc_state_fini(void)
7743 {
7744 	zfs_refcount_destroy(&arc_anon->arcs_esize[ARC_BUFC_METADATA]);
7745 	zfs_refcount_destroy(&arc_anon->arcs_esize[ARC_BUFC_DATA]);
7746 	zfs_refcount_destroy(&arc_mru->arcs_esize[ARC_BUFC_METADATA]);
7747 	zfs_refcount_destroy(&arc_mru->arcs_esize[ARC_BUFC_DATA]);
7748 	zfs_refcount_destroy(&arc_mru_ghost->arcs_esize[ARC_BUFC_METADATA]);
7749 	zfs_refcount_destroy(&arc_mru_ghost->arcs_esize[ARC_BUFC_DATA]);
7750 	zfs_refcount_destroy(&arc_mfu->arcs_esize[ARC_BUFC_METADATA]);
7751 	zfs_refcount_destroy(&arc_mfu->arcs_esize[ARC_BUFC_DATA]);
7752 	zfs_refcount_destroy(&arc_mfu_ghost->arcs_esize[ARC_BUFC_METADATA]);
7753 	zfs_refcount_destroy(&arc_mfu_ghost->arcs_esize[ARC_BUFC_DATA]);
7754 	zfs_refcount_destroy(&arc_l2c_only->arcs_esize[ARC_BUFC_METADATA]);
7755 	zfs_refcount_destroy(&arc_l2c_only->arcs_esize[ARC_BUFC_DATA]);
7756 
7757 	zfs_refcount_destroy(&arc_anon->arcs_size);
7758 	zfs_refcount_destroy(&arc_mru->arcs_size);
7759 	zfs_refcount_destroy(&arc_mru_ghost->arcs_size);
7760 	zfs_refcount_destroy(&arc_mfu->arcs_size);
7761 	zfs_refcount_destroy(&arc_mfu_ghost->arcs_size);
7762 	zfs_refcount_destroy(&arc_l2c_only->arcs_size);
7763 
7764 	multilist_destroy(&arc_mru->arcs_list[ARC_BUFC_METADATA]);
7765 	multilist_destroy(&arc_mru_ghost->arcs_list[ARC_BUFC_METADATA]);
7766 	multilist_destroy(&arc_mfu->arcs_list[ARC_BUFC_METADATA]);
7767 	multilist_destroy(&arc_mfu_ghost->arcs_list[ARC_BUFC_METADATA]);
7768 	multilist_destroy(&arc_mru->arcs_list[ARC_BUFC_DATA]);
7769 	multilist_destroy(&arc_mru_ghost->arcs_list[ARC_BUFC_DATA]);
7770 	multilist_destroy(&arc_mfu->arcs_list[ARC_BUFC_DATA]);
7771 	multilist_destroy(&arc_mfu_ghost->arcs_list[ARC_BUFC_DATA]);
7772 	multilist_destroy(&arc_l2c_only->arcs_list[ARC_BUFC_METADATA]);
7773 	multilist_destroy(&arc_l2c_only->arcs_list[ARC_BUFC_DATA]);
7774 
7775 	wmsum_fini(&arc_sums.arcstat_hits);
7776 	wmsum_fini(&arc_sums.arcstat_misses);
7777 	wmsum_fini(&arc_sums.arcstat_demand_data_hits);
7778 	wmsum_fini(&arc_sums.arcstat_demand_data_misses);
7779 	wmsum_fini(&arc_sums.arcstat_demand_metadata_hits);
7780 	wmsum_fini(&arc_sums.arcstat_demand_metadata_misses);
7781 	wmsum_fini(&arc_sums.arcstat_prefetch_data_hits);
7782 	wmsum_fini(&arc_sums.arcstat_prefetch_data_misses);
7783 	wmsum_fini(&arc_sums.arcstat_prefetch_metadata_hits);
7784 	wmsum_fini(&arc_sums.arcstat_prefetch_metadata_misses);
7785 	wmsum_fini(&arc_sums.arcstat_mru_hits);
7786 	wmsum_fini(&arc_sums.arcstat_mru_ghost_hits);
7787 	wmsum_fini(&arc_sums.arcstat_mfu_hits);
7788 	wmsum_fini(&arc_sums.arcstat_mfu_ghost_hits);
7789 	wmsum_fini(&arc_sums.arcstat_deleted);
7790 	wmsum_fini(&arc_sums.arcstat_mutex_miss);
7791 	wmsum_fini(&arc_sums.arcstat_access_skip);
7792 	wmsum_fini(&arc_sums.arcstat_evict_skip);
7793 	wmsum_fini(&arc_sums.arcstat_evict_not_enough);
7794 	wmsum_fini(&arc_sums.arcstat_evict_l2_cached);
7795 	wmsum_fini(&arc_sums.arcstat_evict_l2_eligible);
7796 	wmsum_fini(&arc_sums.arcstat_evict_l2_eligible_mfu);
7797 	wmsum_fini(&arc_sums.arcstat_evict_l2_eligible_mru);
7798 	wmsum_fini(&arc_sums.arcstat_evict_l2_ineligible);
7799 	wmsum_fini(&arc_sums.arcstat_evict_l2_skip);
7800 	wmsum_fini(&arc_sums.arcstat_hash_collisions);
7801 	wmsum_fini(&arc_sums.arcstat_hash_chains);
7802 	aggsum_fini(&arc_sums.arcstat_size);
7803 	wmsum_fini(&arc_sums.arcstat_compressed_size);
7804 	wmsum_fini(&arc_sums.arcstat_uncompressed_size);
7805 	wmsum_fini(&arc_sums.arcstat_overhead_size);
7806 	wmsum_fini(&arc_sums.arcstat_hdr_size);
7807 	wmsum_fini(&arc_sums.arcstat_data_size);
7808 	wmsum_fini(&arc_sums.arcstat_metadata_size);
7809 	wmsum_fini(&arc_sums.arcstat_dbuf_size);
7810 	aggsum_fini(&arc_sums.arcstat_dnode_size);
7811 	wmsum_fini(&arc_sums.arcstat_bonus_size);
7812 	wmsum_fini(&arc_sums.arcstat_l2_hits);
7813 	wmsum_fini(&arc_sums.arcstat_l2_misses);
7814 	wmsum_fini(&arc_sums.arcstat_l2_prefetch_asize);
7815 	wmsum_fini(&arc_sums.arcstat_l2_mru_asize);
7816 	wmsum_fini(&arc_sums.arcstat_l2_mfu_asize);
7817 	wmsum_fini(&arc_sums.arcstat_l2_bufc_data_asize);
7818 	wmsum_fini(&arc_sums.arcstat_l2_bufc_metadata_asize);
7819 	wmsum_fini(&arc_sums.arcstat_l2_feeds);
7820 	wmsum_fini(&arc_sums.arcstat_l2_rw_clash);
7821 	wmsum_fini(&arc_sums.arcstat_l2_read_bytes);
7822 	wmsum_fini(&arc_sums.arcstat_l2_write_bytes);
7823 	wmsum_fini(&arc_sums.arcstat_l2_writes_sent);
7824 	wmsum_fini(&arc_sums.arcstat_l2_writes_done);
7825 	wmsum_fini(&arc_sums.arcstat_l2_writes_error);
7826 	wmsum_fini(&arc_sums.arcstat_l2_writes_lock_retry);
7827 	wmsum_fini(&arc_sums.arcstat_l2_evict_lock_retry);
7828 	wmsum_fini(&arc_sums.arcstat_l2_evict_reading);
7829 	wmsum_fini(&arc_sums.arcstat_l2_evict_l1cached);
7830 	wmsum_fini(&arc_sums.arcstat_l2_free_on_write);
7831 	wmsum_fini(&arc_sums.arcstat_l2_abort_lowmem);
7832 	wmsum_fini(&arc_sums.arcstat_l2_cksum_bad);
7833 	wmsum_fini(&arc_sums.arcstat_l2_io_error);
7834 	wmsum_fini(&arc_sums.arcstat_l2_lsize);
7835 	wmsum_fini(&arc_sums.arcstat_l2_psize);
7836 	aggsum_fini(&arc_sums.arcstat_l2_hdr_size);
7837 	wmsum_fini(&arc_sums.arcstat_l2_log_blk_writes);
7838 	wmsum_fini(&arc_sums.arcstat_l2_log_blk_asize);
7839 	wmsum_fini(&arc_sums.arcstat_l2_log_blk_count);
7840 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_success);
7841 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_abort_unsupported);
7842 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_abort_io_errors);
7843 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_abort_dh_errors);
7844 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_abort_cksum_lb_errors);
7845 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_abort_lowmem);
7846 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_size);
7847 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_asize);
7848 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_bufs);
7849 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_bufs_precached);
7850 	wmsum_fini(&arc_sums.arcstat_l2_rebuild_log_blks);
7851 	wmsum_fini(&arc_sums.arcstat_memory_throttle_count);
7852 	wmsum_fini(&arc_sums.arcstat_memory_direct_count);
7853 	wmsum_fini(&arc_sums.arcstat_memory_indirect_count);
7854 	wmsum_fini(&arc_sums.arcstat_prune);
7855 	aggsum_fini(&arc_sums.arcstat_meta_used);
7856 	wmsum_fini(&arc_sums.arcstat_async_upgrade_sync);
7857 	wmsum_fini(&arc_sums.arcstat_demand_hit_predictive_prefetch);
7858 	wmsum_fini(&arc_sums.arcstat_demand_hit_prescient_prefetch);
7859 	wmsum_fini(&arc_sums.arcstat_raw_size);
7860 	wmsum_fini(&arc_sums.arcstat_cached_only_in_progress);
7861 	wmsum_fini(&arc_sums.arcstat_abd_chunk_waste_size);
7862 }
7863 
7864 uint64_t
7865 arc_target_bytes(void)
7866 {
7867 	return (arc_c);
7868 }
7869 
7870 void
7871 arc_set_limits(uint64_t allmem)
7872 {
7873 	/* Set min cache to 1/32 of all memory, or 32MB, whichever is more. */
7874 	arc_c_min = MAX(allmem / 32, 2ULL << SPA_MAXBLOCKSHIFT);
7875 
7876 	/* How to set default max varies by platform. */
7877 	arc_c_max = arc_default_max(arc_c_min, allmem);
7878 }
7879 void
7880 arc_init(void)
7881 {
7882 	uint64_t percent, allmem = arc_all_memory();
7883 	mutex_init(&arc_evict_lock, NULL, MUTEX_DEFAULT, NULL);
7884 	list_create(&arc_evict_waiters, sizeof (arc_evict_waiter_t),
7885 	    offsetof(arc_evict_waiter_t, aew_node));
7886 
7887 	arc_min_prefetch_ms = 1000;
7888 	arc_min_prescient_prefetch_ms = 6000;
7889 
7890 #if defined(_KERNEL)
7891 	arc_lowmem_init();
7892 #endif
7893 
7894 	arc_set_limits(allmem);
7895 
7896 #ifndef _KERNEL
7897 	/*
7898 	 * In userland, there's only the memory pressure that we artificially
7899 	 * create (see arc_available_memory()).  Don't let arc_c get too
7900 	 * small, because it can cause transactions to be larger than
7901 	 * arc_c, causing arc_tempreserve_space() to fail.
7902 	 */
7903 	arc_c_min = MAX(arc_c_max / 2, 2ULL << SPA_MAXBLOCKSHIFT);
7904 #endif
7905 
7906 	arc_c = arc_c_min;
7907 	arc_p = (arc_c >> 1);
7908 
7909 	/* Set min to 1/2 of arc_c_min */
7910 	arc_meta_min = 1ULL << SPA_MAXBLOCKSHIFT;
7911 	/*
7912 	 * Set arc_meta_limit to a percent of arc_c_max with a floor of
7913 	 * arc_meta_min, and a ceiling of arc_c_max.
7914 	 */
7915 	percent = MIN(zfs_arc_meta_limit_percent, 100);
7916 	arc_meta_limit = MAX(arc_meta_min, (percent * arc_c_max) / 100);
7917 	percent = MIN(zfs_arc_dnode_limit_percent, 100);
7918 	arc_dnode_size_limit = (percent * arc_meta_limit) / 100;
7919 
7920 	/* Apply user specified tunings */
7921 	arc_tuning_update(B_TRUE);
7922 
7923 	/* if kmem_flags are set, lets try to use less memory */
7924 	if (kmem_debugging())
7925 		arc_c = arc_c / 2;
7926 	if (arc_c < arc_c_min)
7927 		arc_c = arc_c_min;
7928 
7929 	arc_register_hotplug();
7930 
7931 	arc_state_init();
7932 
7933 	buf_init();
7934 
7935 	list_create(&arc_prune_list, sizeof (arc_prune_t),
7936 	    offsetof(arc_prune_t, p_node));
7937 	mutex_init(&arc_prune_mtx, NULL, MUTEX_DEFAULT, NULL);
7938 
7939 	arc_prune_taskq = taskq_create("arc_prune", 100, defclsyspri,
7940 	    boot_ncpus, INT_MAX, TASKQ_PREPOPULATE | TASKQ_DYNAMIC |
7941 	    TASKQ_THREADS_CPU_PCT);
7942 
7943 	arc_ksp = kstat_create("zfs", 0, "arcstats", "misc", KSTAT_TYPE_NAMED,
7944 	    sizeof (arc_stats) / sizeof (kstat_named_t), KSTAT_FLAG_VIRTUAL);
7945 
7946 	if (arc_ksp != NULL) {
7947 		arc_ksp->ks_data = &arc_stats;
7948 		arc_ksp->ks_update = arc_kstat_update;
7949 		kstat_install(arc_ksp);
7950 	}
7951 
7952 	arc_evict_zthr = zthr_create("arc_evict",
7953 	    arc_evict_cb_check, arc_evict_cb, NULL);
7954 	arc_reap_zthr = zthr_create_timer("arc_reap",
7955 	    arc_reap_cb_check, arc_reap_cb, NULL, SEC2NSEC(1));
7956 
7957 	arc_warm = B_FALSE;
7958 
7959 	/*
7960 	 * Calculate maximum amount of dirty data per pool.
7961 	 *
7962 	 * If it has been set by a module parameter, take that.
7963 	 * Otherwise, use a percentage of physical memory defined by
7964 	 * zfs_dirty_data_max_percent (default 10%) with a cap at
7965 	 * zfs_dirty_data_max_max (default 4G or 25% of physical memory).
7966 	 */
7967 #ifdef __LP64__
7968 	if (zfs_dirty_data_max_max == 0)
7969 		zfs_dirty_data_max_max = MIN(4ULL * 1024 * 1024 * 1024,
7970 		    allmem * zfs_dirty_data_max_max_percent / 100);
7971 #else
7972 	if (zfs_dirty_data_max_max == 0)
7973 		zfs_dirty_data_max_max = MIN(1ULL * 1024 * 1024 * 1024,
7974 		    allmem * zfs_dirty_data_max_max_percent / 100);
7975 #endif
7976 
7977 	if (zfs_dirty_data_max == 0) {
7978 		zfs_dirty_data_max = allmem *
7979 		    zfs_dirty_data_max_percent / 100;
7980 		zfs_dirty_data_max = MIN(zfs_dirty_data_max,
7981 		    zfs_dirty_data_max_max);
7982 	}
7983 
7984 	if (zfs_wrlog_data_max == 0) {
7985 
7986 		/*
7987 		 * dp_wrlog_total is reduced for each txg at the end of
7988 		 * spa_sync(). However, dp_dirty_total is reduced every time
7989 		 * a block is written out. Thus under normal operation,
7990 		 * dp_wrlog_total could grow 2 times as big as
7991 		 * zfs_dirty_data_max.
7992 		 */
7993 		zfs_wrlog_data_max = zfs_dirty_data_max * 2;
7994 	}
7995 }
7996 
7997 void
7998 arc_fini(void)
7999 {
8000 	arc_prune_t *p;
8001 
8002 #ifdef _KERNEL
8003 	arc_lowmem_fini();
8004 #endif /* _KERNEL */
8005 
8006 	/* Use B_TRUE to ensure *all* buffers are evicted */
8007 	arc_flush(NULL, B_TRUE);
8008 
8009 	if (arc_ksp != NULL) {
8010 		kstat_delete(arc_ksp);
8011 		arc_ksp = NULL;
8012 	}
8013 
8014 	taskq_wait(arc_prune_taskq);
8015 	taskq_destroy(arc_prune_taskq);
8016 
8017 	mutex_enter(&arc_prune_mtx);
8018 	while ((p = list_head(&arc_prune_list)) != NULL) {
8019 		list_remove(&arc_prune_list, p);
8020 		zfs_refcount_remove(&p->p_refcnt, &arc_prune_list);
8021 		zfs_refcount_destroy(&p->p_refcnt);
8022 		kmem_free(p, sizeof (*p));
8023 	}
8024 	mutex_exit(&arc_prune_mtx);
8025 
8026 	list_destroy(&arc_prune_list);
8027 	mutex_destroy(&arc_prune_mtx);
8028 
8029 	(void) zthr_cancel(arc_evict_zthr);
8030 	(void) zthr_cancel(arc_reap_zthr);
8031 
8032 	mutex_destroy(&arc_evict_lock);
8033 	list_destroy(&arc_evict_waiters);
8034 
8035 	/*
8036 	 * Free any buffers that were tagged for destruction.  This needs
8037 	 * to occur before arc_state_fini() runs and destroys the aggsum
8038 	 * values which are updated when freeing scatter ABDs.
8039 	 */
8040 	l2arc_do_free_on_write();
8041 
8042 	/*
8043 	 * buf_fini() must proceed arc_state_fini() because buf_fin() may
8044 	 * trigger the release of kmem magazines, which can callback to
8045 	 * arc_space_return() which accesses aggsums freed in act_state_fini().
8046 	 */
8047 	buf_fini();
8048 	arc_state_fini();
8049 
8050 	arc_unregister_hotplug();
8051 
8052 	/*
8053 	 * We destroy the zthrs after all the ARC state has been
8054 	 * torn down to avoid the case of them receiving any
8055 	 * wakeup() signals after they are destroyed.
8056 	 */
8057 	zthr_destroy(arc_evict_zthr);
8058 	zthr_destroy(arc_reap_zthr);
8059 
8060 	ASSERT0(arc_loaned_bytes);
8061 }
8062 
8063 /*
8064  * Level 2 ARC
8065  *
8066  * The level 2 ARC (L2ARC) is a cache layer in-between main memory and disk.
8067  * It uses dedicated storage devices to hold cached data, which are populated
8068  * using large infrequent writes.  The main role of this cache is to boost
8069  * the performance of random read workloads.  The intended L2ARC devices
8070  * include short-stroked disks, solid state disks, and other media with
8071  * substantially faster read latency than disk.
8072  *
8073  *                 +-----------------------+
8074  *                 |         ARC           |
8075  *                 +-----------------------+
8076  *                    |         ^     ^
8077  *                    |         |     |
8078  *      l2arc_feed_thread()    arc_read()
8079  *                    |         |     |
8080  *                    |  l2arc read   |
8081  *                    V         |     |
8082  *               +---------------+    |
8083  *               |     L2ARC     |    |
8084  *               +---------------+    |
8085  *                   |    ^           |
8086  *          l2arc_write() |           |
8087  *                   |    |           |
8088  *                   V    |           |
8089  *                 +-------+      +-------+
8090  *                 | vdev  |      | vdev  |
8091  *                 | cache |      | cache |
8092  *                 +-------+      +-------+
8093  *                 +=========+     .-----.
8094  *                 :  L2ARC  :    |-_____-|
8095  *                 : devices :    | Disks |
8096  *                 +=========+    `-_____-'
8097  *
8098  * Read requests are satisfied from the following sources, in order:
8099  *
8100  *	1) ARC
8101  *	2) vdev cache of L2ARC devices
8102  *	3) L2ARC devices
8103  *	4) vdev cache of disks
8104  *	5) disks
8105  *
8106  * Some L2ARC device types exhibit extremely slow write performance.
8107  * To accommodate for this there are some significant differences between
8108  * the L2ARC and traditional cache design:
8109  *
8110  * 1. There is no eviction path from the ARC to the L2ARC.  Evictions from
8111  * the ARC behave as usual, freeing buffers and placing headers on ghost
8112  * lists.  The ARC does not send buffers to the L2ARC during eviction as
8113  * this would add inflated write latencies for all ARC memory pressure.
8114  *
8115  * 2. The L2ARC attempts to cache data from the ARC before it is evicted.
8116  * It does this by periodically scanning buffers from the eviction-end of
8117  * the MFU and MRU ARC lists, copying them to the L2ARC devices if they are
8118  * not already there. It scans until a headroom of buffers is satisfied,
8119  * which itself is a buffer for ARC eviction. If a compressible buffer is
8120  * found during scanning and selected for writing to an L2ARC device, we
8121  * temporarily boost scanning headroom during the next scan cycle to make
8122  * sure we adapt to compression effects (which might significantly reduce
8123  * the data volume we write to L2ARC). The thread that does this is
8124  * l2arc_feed_thread(), illustrated below; example sizes are included to
8125  * provide a better sense of ratio than this diagram:
8126  *
8127  *	       head -->                        tail
8128  *	        +---------------------+----------+
8129  *	ARC_mfu |:::::#:::::::::::::::|o#o###o###|-->.   # already on L2ARC
8130  *	        +---------------------+----------+   |   o L2ARC eligible
8131  *	ARC_mru |:#:::::::::::::::::::|#o#ooo####|-->|   : ARC buffer
8132  *	        +---------------------+----------+   |
8133  *	             15.9 Gbytes      ^ 32 Mbytes    |
8134  *	                           headroom          |
8135  *	                                      l2arc_feed_thread()
8136  *	                                             |
8137  *	                 l2arc write hand <--[oooo]--'
8138  *	                         |           8 Mbyte
8139  *	                         |          write max
8140  *	                         V
8141  *		  +==============================+
8142  *	L2ARC dev |####|#|###|###|    |####| ... |
8143  *	          +==============================+
8144  *	                     32 Gbytes
8145  *
8146  * 3. If an ARC buffer is copied to the L2ARC but then hit instead of
8147  * evicted, then the L2ARC has cached a buffer much sooner than it probably
8148  * needed to, potentially wasting L2ARC device bandwidth and storage.  It is
8149  * safe to say that this is an uncommon case, since buffers at the end of
8150  * the ARC lists have moved there due to inactivity.
8151  *
8152  * 4. If the ARC evicts faster than the L2ARC can maintain a headroom,
8153  * then the L2ARC simply misses copying some buffers.  This serves as a
8154  * pressure valve to prevent heavy read workloads from both stalling the ARC
8155  * with waits and clogging the L2ARC with writes.  This also helps prevent
8156  * the potential for the L2ARC to churn if it attempts to cache content too
8157  * quickly, such as during backups of the entire pool.
8158  *
8159  * 5. After system boot and before the ARC has filled main memory, there are
8160  * no evictions from the ARC and so the tails of the ARC_mfu and ARC_mru
8161  * lists can remain mostly static.  Instead of searching from tail of these
8162  * lists as pictured, the l2arc_feed_thread() will search from the list heads
8163  * for eligible buffers, greatly increasing its chance of finding them.
8164  *
8165  * The L2ARC device write speed is also boosted during this time so that
8166  * the L2ARC warms up faster.  Since there have been no ARC evictions yet,
8167  * there are no L2ARC reads, and no fear of degrading read performance
8168  * through increased writes.
8169  *
8170  * 6. Writes to the L2ARC devices are grouped and sent in-sequence, so that
8171  * the vdev queue can aggregate them into larger and fewer writes.  Each
8172  * device is written to in a rotor fashion, sweeping writes through
8173  * available space then repeating.
8174  *
8175  * 7. The L2ARC does not store dirty content.  It never needs to flush
8176  * write buffers back to disk based storage.
8177  *
8178  * 8. If an ARC buffer is written (and dirtied) which also exists in the
8179  * L2ARC, the now stale L2ARC buffer is immediately dropped.
8180  *
8181  * The performance of the L2ARC can be tweaked by a number of tunables, which
8182  * may be necessary for different workloads:
8183  *
8184  *	l2arc_write_max		max write bytes per interval
8185  *	l2arc_write_boost	extra write bytes during device warmup
8186  *	l2arc_noprefetch	skip caching prefetched buffers
8187  *	l2arc_headroom		number of max device writes to precache
8188  *	l2arc_headroom_boost	when we find compressed buffers during ARC
8189  *				scanning, we multiply headroom by this
8190  *				percentage factor for the next scan cycle,
8191  *				since more compressed buffers are likely to
8192  *				be present
8193  *	l2arc_feed_secs		seconds between L2ARC writing
8194  *
8195  * Tunables may be removed or added as future performance improvements are
8196  * integrated, and also may become zpool properties.
8197  *
8198  * There are three key functions that control how the L2ARC warms up:
8199  *
8200  *	l2arc_write_eligible()	check if a buffer is eligible to cache
8201  *	l2arc_write_size()	calculate how much to write
8202  *	l2arc_write_interval()	calculate sleep delay between writes
8203  *
8204  * These three functions determine what to write, how much, and how quickly
8205  * to send writes.
8206  *
8207  * L2ARC persistence:
8208  *
8209  * When writing buffers to L2ARC, we periodically add some metadata to
8210  * make sure we can pick them up after reboot, thus dramatically reducing
8211  * the impact that any downtime has on the performance of storage systems
8212  * with large caches.
8213  *
8214  * The implementation works fairly simply by integrating the following two
8215  * modifications:
8216  *
8217  * *) When writing to the L2ARC, we occasionally write a "l2arc log block",
8218  *    which is an additional piece of metadata which describes what's been
8219  *    written. This allows us to rebuild the arc_buf_hdr_t structures of the
8220  *    main ARC buffers. There are 2 linked-lists of log blocks headed by
8221  *    dh_start_lbps[2]. We alternate which chain we append to, so they are
8222  *    time-wise and offset-wise interleaved, but that is an optimization rather
8223  *    than for correctness. The log block also includes a pointer to the
8224  *    previous block in its chain.
8225  *
8226  * *) We reserve SPA_MINBLOCKSIZE of space at the start of each L2ARC device
8227  *    for our header bookkeeping purposes. This contains a device header,
8228  *    which contains our top-level reference structures. We update it each
8229  *    time we write a new log block, so that we're able to locate it in the
8230  *    L2ARC device. If this write results in an inconsistent device header
8231  *    (e.g. due to power failure), we detect this by verifying the header's
8232  *    checksum and simply fail to reconstruct the L2ARC after reboot.
8233  *
8234  * Implementation diagram:
8235  *
8236  * +=== L2ARC device (not to scale) ======================================+
8237  * |       ___two newest log block pointers__.__________                  |
8238  * |      /                                   \dh_start_lbps[1]           |
8239  * |	 /				       \         \dh_start_lbps[0]|
8240  * |.___/__.                                    V         V               |
8241  * ||L2 dev|....|lb |bufs |lb |bufs |lb |bufs |lb |bufs |lb |---(empty)---|
8242  * ||   hdr|      ^         /^       /^        /         /                |
8243  * |+------+  ...--\-------/  \-----/--\------/         /                 |
8244  * |                \--------------/    \--------------/                  |
8245  * +======================================================================+
8246  *
8247  * As can be seen on the diagram, rather than using a simple linked list,
8248  * we use a pair of linked lists with alternating elements. This is a
8249  * performance enhancement due to the fact that we only find out the
8250  * address of the next log block access once the current block has been
8251  * completely read in. Obviously, this hurts performance, because we'd be
8252  * keeping the device's I/O queue at only a 1 operation deep, thus
8253  * incurring a large amount of I/O round-trip latency. Having two lists
8254  * allows us to fetch two log blocks ahead of where we are currently
8255  * rebuilding L2ARC buffers.
8256  *
8257  * On-device data structures:
8258  *
8259  * L2ARC device header:	l2arc_dev_hdr_phys_t
8260  * L2ARC log block:	l2arc_log_blk_phys_t
8261  *
8262  * L2ARC reconstruction:
8263  *
8264  * When writing data, we simply write in the standard rotary fashion,
8265  * evicting buffers as we go and simply writing new data over them (writing
8266  * a new log block every now and then). This obviously means that once we
8267  * loop around the end of the device, we will start cutting into an already
8268  * committed log block (and its referenced data buffers), like so:
8269  *
8270  *    current write head__       __old tail
8271  *                        \     /
8272  *                        V    V
8273  * <--|bufs |lb |bufs |lb |    |bufs |lb |bufs |lb |-->
8274  *                         ^    ^^^^^^^^^___________________________________
8275  *                         |                                                \
8276  *                   <<nextwrite>> may overwrite this blk and/or its bufs --'
8277  *
8278  * When importing the pool, we detect this situation and use it to stop
8279  * our scanning process (see l2arc_rebuild).
8280  *
8281  * There is one significant caveat to consider when rebuilding ARC contents
8282  * from an L2ARC device: what about invalidated buffers? Given the above
8283  * construction, we cannot update blocks which we've already written to amend
8284  * them to remove buffers which were invalidated. Thus, during reconstruction,
8285  * we might be populating the cache with buffers for data that's not on the
8286  * main pool anymore, or may have been overwritten!
8287  *
8288  * As it turns out, this isn't a problem. Every arc_read request includes
8289  * both the DVA and, crucially, the birth TXG of the BP the caller is
8290  * looking for. So even if the cache were populated by completely rotten
8291  * blocks for data that had been long deleted and/or overwritten, we'll
8292  * never actually return bad data from the cache, since the DVA with the
8293  * birth TXG uniquely identify a block in space and time - once created,
8294  * a block is immutable on disk. The worst thing we have done is wasted
8295  * some time and memory at l2arc rebuild to reconstruct outdated ARC
8296  * entries that will get dropped from the l2arc as it is being updated
8297  * with new blocks.
8298  *
8299  * L2ARC buffers that have been evicted by l2arc_evict() ahead of the write
8300  * hand are not restored. This is done by saving the offset (in bytes)
8301  * l2arc_evict() has evicted to in the L2ARC device header and taking it
8302  * into account when restoring buffers.
8303  */
8304 
8305 static boolean_t
8306 l2arc_write_eligible(uint64_t spa_guid, arc_buf_hdr_t *hdr)
8307 {
8308 	/*
8309 	 * A buffer is *not* eligible for the L2ARC if it:
8310 	 * 1. belongs to a different spa.
8311 	 * 2. is already cached on the L2ARC.
8312 	 * 3. has an I/O in progress (it may be an incomplete read).
8313 	 * 4. is flagged not eligible (zfs property).
8314 	 */
8315 	if (hdr->b_spa != spa_guid || HDR_HAS_L2HDR(hdr) ||
8316 	    HDR_IO_IN_PROGRESS(hdr) || !HDR_L2CACHE(hdr))
8317 		return (B_FALSE);
8318 
8319 	return (B_TRUE);
8320 }
8321 
8322 static uint64_t
8323 l2arc_write_size(l2arc_dev_t *dev)
8324 {
8325 	uint64_t size, dev_size, tsize;
8326 
8327 	/*
8328 	 * Make sure our globals have meaningful values in case the user
8329 	 * altered them.
8330 	 */
8331 	size = l2arc_write_max;
8332 	if (size == 0) {
8333 		cmn_err(CE_NOTE, "Bad value for l2arc_write_max, value must "
8334 		    "be greater than zero, resetting it to the default (%d)",
8335 		    L2ARC_WRITE_SIZE);
8336 		size = l2arc_write_max = L2ARC_WRITE_SIZE;
8337 	}
8338 
8339 	if (arc_warm == B_FALSE)
8340 		size += l2arc_write_boost;
8341 
8342 	/*
8343 	 * Make sure the write size does not exceed the size of the cache
8344 	 * device. This is important in l2arc_evict(), otherwise infinite
8345 	 * iteration can occur.
8346 	 */
8347 	dev_size = dev->l2ad_end - dev->l2ad_start;
8348 	tsize = size + l2arc_log_blk_overhead(size, dev);
8349 	if (dev->l2ad_vdev->vdev_has_trim && l2arc_trim_ahead > 0)
8350 		tsize += MAX(64 * 1024 * 1024,
8351 		    (tsize * l2arc_trim_ahead) / 100);
8352 
8353 	if (tsize >= dev_size) {
8354 		cmn_err(CE_NOTE, "l2arc_write_max or l2arc_write_boost "
8355 		    "plus the overhead of log blocks (persistent L2ARC, "
8356 		    "%llu bytes) exceeds the size of the cache device "
8357 		    "(guid %llu), resetting them to the default (%d)",
8358 		    (u_longlong_t)l2arc_log_blk_overhead(size, dev),
8359 		    (u_longlong_t)dev->l2ad_vdev->vdev_guid, L2ARC_WRITE_SIZE);
8360 		size = l2arc_write_max = l2arc_write_boost = L2ARC_WRITE_SIZE;
8361 
8362 		if (arc_warm == B_FALSE)
8363 			size += l2arc_write_boost;
8364 	}
8365 
8366 	return (size);
8367 
8368 }
8369 
8370 static clock_t
8371 l2arc_write_interval(clock_t began, uint64_t wanted, uint64_t wrote)
8372 {
8373 	clock_t interval, next, now;
8374 
8375 	/*
8376 	 * If the ARC lists are busy, increase our write rate; if the
8377 	 * lists are stale, idle back.  This is achieved by checking
8378 	 * how much we previously wrote - if it was more than half of
8379 	 * what we wanted, schedule the next write much sooner.
8380 	 */
8381 	if (l2arc_feed_again && wrote > (wanted / 2))
8382 		interval = (hz * l2arc_feed_min_ms) / 1000;
8383 	else
8384 		interval = hz * l2arc_feed_secs;
8385 
8386 	now = ddi_get_lbolt();
8387 	next = MAX(now, MIN(now + interval, began + interval));
8388 
8389 	return (next);
8390 }
8391 
8392 /*
8393  * Cycle through L2ARC devices.  This is how L2ARC load balances.
8394  * If a device is returned, this also returns holding the spa config lock.
8395  */
8396 static l2arc_dev_t *
8397 l2arc_dev_get_next(void)
8398 {
8399 	l2arc_dev_t *first, *next = NULL;
8400 
8401 	/*
8402 	 * Lock out the removal of spas (spa_namespace_lock), then removal
8403 	 * of cache devices (l2arc_dev_mtx).  Once a device has been selected,
8404 	 * both locks will be dropped and a spa config lock held instead.
8405 	 */
8406 	mutex_enter(&spa_namespace_lock);
8407 	mutex_enter(&l2arc_dev_mtx);
8408 
8409 	/* if there are no vdevs, there is nothing to do */
8410 	if (l2arc_ndev == 0)
8411 		goto out;
8412 
8413 	first = NULL;
8414 	next = l2arc_dev_last;
8415 	do {
8416 		/* loop around the list looking for a non-faulted vdev */
8417 		if (next == NULL) {
8418 			next = list_head(l2arc_dev_list);
8419 		} else {
8420 			next = list_next(l2arc_dev_list, next);
8421 			if (next == NULL)
8422 				next = list_head(l2arc_dev_list);
8423 		}
8424 
8425 		/* if we have come back to the start, bail out */
8426 		if (first == NULL)
8427 			first = next;
8428 		else if (next == first)
8429 			break;
8430 
8431 	} while (vdev_is_dead(next->l2ad_vdev) || next->l2ad_rebuild ||
8432 	    next->l2ad_trim_all);
8433 
8434 	/* if we were unable to find any usable vdevs, return NULL */
8435 	if (vdev_is_dead(next->l2ad_vdev) || next->l2ad_rebuild ||
8436 	    next->l2ad_trim_all)
8437 		next = NULL;
8438 
8439 	l2arc_dev_last = next;
8440 
8441 out:
8442 	mutex_exit(&l2arc_dev_mtx);
8443 
8444 	/*
8445 	 * Grab the config lock to prevent the 'next' device from being
8446 	 * removed while we are writing to it.
8447 	 */
8448 	if (next != NULL)
8449 		spa_config_enter(next->l2ad_spa, SCL_L2ARC, next, RW_READER);
8450 	mutex_exit(&spa_namespace_lock);
8451 
8452 	return (next);
8453 }
8454 
8455 /*
8456  * Free buffers that were tagged for destruction.
8457  */
8458 static void
8459 l2arc_do_free_on_write(void)
8460 {
8461 	list_t *buflist;
8462 	l2arc_data_free_t *df, *df_prev;
8463 
8464 	mutex_enter(&l2arc_free_on_write_mtx);
8465 	buflist = l2arc_free_on_write;
8466 
8467 	for (df = list_tail(buflist); df; df = df_prev) {
8468 		df_prev = list_prev(buflist, df);
8469 		ASSERT3P(df->l2df_abd, !=, NULL);
8470 		abd_free(df->l2df_abd);
8471 		list_remove(buflist, df);
8472 		kmem_free(df, sizeof (l2arc_data_free_t));
8473 	}
8474 
8475 	mutex_exit(&l2arc_free_on_write_mtx);
8476 }
8477 
8478 /*
8479  * A write to a cache device has completed.  Update all headers to allow
8480  * reads from these buffers to begin.
8481  */
8482 static void
8483 l2arc_write_done(zio_t *zio)
8484 {
8485 	l2arc_write_callback_t	*cb;
8486 	l2arc_lb_abd_buf_t	*abd_buf;
8487 	l2arc_lb_ptr_buf_t	*lb_ptr_buf;
8488 	l2arc_dev_t		*dev;
8489 	l2arc_dev_hdr_phys_t	*l2dhdr;
8490 	list_t			*buflist;
8491 	arc_buf_hdr_t		*head, *hdr, *hdr_prev;
8492 	kmutex_t		*hash_lock;
8493 	int64_t			bytes_dropped = 0;
8494 
8495 	cb = zio->io_private;
8496 	ASSERT3P(cb, !=, NULL);
8497 	dev = cb->l2wcb_dev;
8498 	l2dhdr = dev->l2ad_dev_hdr;
8499 	ASSERT3P(dev, !=, NULL);
8500 	head = cb->l2wcb_head;
8501 	ASSERT3P(head, !=, NULL);
8502 	buflist = &dev->l2ad_buflist;
8503 	ASSERT3P(buflist, !=, NULL);
8504 	DTRACE_PROBE2(l2arc__iodone, zio_t *, zio,
8505 	    l2arc_write_callback_t *, cb);
8506 
8507 	/*
8508 	 * All writes completed, or an error was hit.
8509 	 */
8510 top:
8511 	mutex_enter(&dev->l2ad_mtx);
8512 	for (hdr = list_prev(buflist, head); hdr; hdr = hdr_prev) {
8513 		hdr_prev = list_prev(buflist, hdr);
8514 
8515 		hash_lock = HDR_LOCK(hdr);
8516 
8517 		/*
8518 		 * We cannot use mutex_enter or else we can deadlock
8519 		 * with l2arc_write_buffers (due to swapping the order
8520 		 * the hash lock and l2ad_mtx are taken).
8521 		 */
8522 		if (!mutex_tryenter(hash_lock)) {
8523 			/*
8524 			 * Missed the hash lock. We must retry so we
8525 			 * don't leave the ARC_FLAG_L2_WRITING bit set.
8526 			 */
8527 			ARCSTAT_BUMP(arcstat_l2_writes_lock_retry);
8528 
8529 			/*
8530 			 * We don't want to rescan the headers we've
8531 			 * already marked as having been written out, so
8532 			 * we reinsert the head node so we can pick up
8533 			 * where we left off.
8534 			 */
8535 			list_remove(buflist, head);
8536 			list_insert_after(buflist, hdr, head);
8537 
8538 			mutex_exit(&dev->l2ad_mtx);
8539 
8540 			/*
8541 			 * We wait for the hash lock to become available
8542 			 * to try and prevent busy waiting, and increase
8543 			 * the chance we'll be able to acquire the lock
8544 			 * the next time around.
8545 			 */
8546 			mutex_enter(hash_lock);
8547 			mutex_exit(hash_lock);
8548 			goto top;
8549 		}
8550 
8551 		/*
8552 		 * We could not have been moved into the arc_l2c_only
8553 		 * state while in-flight due to our ARC_FLAG_L2_WRITING
8554 		 * bit being set. Let's just ensure that's being enforced.
8555 		 */
8556 		ASSERT(HDR_HAS_L1HDR(hdr));
8557 
8558 		/*
8559 		 * Skipped - drop L2ARC entry and mark the header as no
8560 		 * longer L2 eligibile.
8561 		 */
8562 		if (zio->io_error != 0) {
8563 			/*
8564 			 * Error - drop L2ARC entry.
8565 			 */
8566 			list_remove(buflist, hdr);
8567 			arc_hdr_clear_flags(hdr, ARC_FLAG_HAS_L2HDR);
8568 
8569 			uint64_t psize = HDR_GET_PSIZE(hdr);
8570 			l2arc_hdr_arcstats_decrement(hdr);
8571 
8572 			bytes_dropped +=
8573 			    vdev_psize_to_asize(dev->l2ad_vdev, psize);
8574 			(void) zfs_refcount_remove_many(&dev->l2ad_alloc,
8575 			    arc_hdr_size(hdr), hdr);
8576 		}
8577 
8578 		/*
8579 		 * Allow ARC to begin reads and ghost list evictions to
8580 		 * this L2ARC entry.
8581 		 */
8582 		arc_hdr_clear_flags(hdr, ARC_FLAG_L2_WRITING);
8583 
8584 		mutex_exit(hash_lock);
8585 	}
8586 
8587 	/*
8588 	 * Free the allocated abd buffers for writing the log blocks.
8589 	 * If the zio failed reclaim the allocated space and remove the
8590 	 * pointers to these log blocks from the log block pointer list
8591 	 * of the L2ARC device.
8592 	 */
8593 	while ((abd_buf = list_remove_tail(&cb->l2wcb_abd_list)) != NULL) {
8594 		abd_free(abd_buf->abd);
8595 		zio_buf_free(abd_buf, sizeof (*abd_buf));
8596 		if (zio->io_error != 0) {
8597 			lb_ptr_buf = list_remove_head(&dev->l2ad_lbptr_list);
8598 			/*
8599 			 * L2BLK_GET_PSIZE returns aligned size for log
8600 			 * blocks.
8601 			 */
8602 			uint64_t asize =
8603 			    L2BLK_GET_PSIZE((lb_ptr_buf->lb_ptr)->lbp_prop);
8604 			bytes_dropped += asize;
8605 			ARCSTAT_INCR(arcstat_l2_log_blk_asize, -asize);
8606 			ARCSTAT_BUMPDOWN(arcstat_l2_log_blk_count);
8607 			zfs_refcount_remove_many(&dev->l2ad_lb_asize, asize,
8608 			    lb_ptr_buf);
8609 			zfs_refcount_remove(&dev->l2ad_lb_count, lb_ptr_buf);
8610 			kmem_free(lb_ptr_buf->lb_ptr,
8611 			    sizeof (l2arc_log_blkptr_t));
8612 			kmem_free(lb_ptr_buf, sizeof (l2arc_lb_ptr_buf_t));
8613 		}
8614 	}
8615 	list_destroy(&cb->l2wcb_abd_list);
8616 
8617 	if (zio->io_error != 0) {
8618 		ARCSTAT_BUMP(arcstat_l2_writes_error);
8619 
8620 		/*
8621 		 * Restore the lbps array in the header to its previous state.
8622 		 * If the list of log block pointers is empty, zero out the
8623 		 * log block pointers in the device header.
8624 		 */
8625 		lb_ptr_buf = list_head(&dev->l2ad_lbptr_list);
8626 		for (int i = 0; i < 2; i++) {
8627 			if (lb_ptr_buf == NULL) {
8628 				/*
8629 				 * If the list is empty zero out the device
8630 				 * header. Otherwise zero out the second log
8631 				 * block pointer in the header.
8632 				 */
8633 				if (i == 0) {
8634 					bzero(l2dhdr, dev->l2ad_dev_hdr_asize);
8635 				} else {
8636 					bzero(&l2dhdr->dh_start_lbps[i],
8637 					    sizeof (l2arc_log_blkptr_t));
8638 				}
8639 				break;
8640 			}
8641 			bcopy(lb_ptr_buf->lb_ptr, &l2dhdr->dh_start_lbps[i],
8642 			    sizeof (l2arc_log_blkptr_t));
8643 			lb_ptr_buf = list_next(&dev->l2ad_lbptr_list,
8644 			    lb_ptr_buf);
8645 		}
8646 	}
8647 
8648 	ARCSTAT_BUMP(arcstat_l2_writes_done);
8649 	list_remove(buflist, head);
8650 	ASSERT(!HDR_HAS_L1HDR(head));
8651 	kmem_cache_free(hdr_l2only_cache, head);
8652 	mutex_exit(&dev->l2ad_mtx);
8653 
8654 	ASSERT(dev->l2ad_vdev != NULL);
8655 	vdev_space_update(dev->l2ad_vdev, -bytes_dropped, 0, 0);
8656 
8657 	l2arc_do_free_on_write();
8658 
8659 	kmem_free(cb, sizeof (l2arc_write_callback_t));
8660 }
8661 
8662 static int
8663 l2arc_untransform(zio_t *zio, l2arc_read_callback_t *cb)
8664 {
8665 	int ret;
8666 	spa_t *spa = zio->io_spa;
8667 	arc_buf_hdr_t *hdr = cb->l2rcb_hdr;
8668 	blkptr_t *bp = zio->io_bp;
8669 	uint8_t salt[ZIO_DATA_SALT_LEN];
8670 	uint8_t iv[ZIO_DATA_IV_LEN];
8671 	uint8_t mac[ZIO_DATA_MAC_LEN];
8672 	boolean_t no_crypt = B_FALSE;
8673 
8674 	/*
8675 	 * ZIL data is never be written to the L2ARC, so we don't need
8676 	 * special handling for its unique MAC storage.
8677 	 */
8678 	ASSERT3U(BP_GET_TYPE(bp), !=, DMU_OT_INTENT_LOG);
8679 	ASSERT(MUTEX_HELD(HDR_LOCK(hdr)));
8680 	ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
8681 
8682 	/*
8683 	 * If the data was encrypted, decrypt it now. Note that
8684 	 * we must check the bp here and not the hdr, since the
8685 	 * hdr does not have its encryption parameters updated
8686 	 * until arc_read_done().
8687 	 */
8688 	if (BP_IS_ENCRYPTED(bp)) {
8689 		abd_t *eabd = arc_get_data_abd(hdr, arc_hdr_size(hdr), hdr,
8690 		    B_TRUE);
8691 
8692 		zio_crypt_decode_params_bp(bp, salt, iv);
8693 		zio_crypt_decode_mac_bp(bp, mac);
8694 
8695 		ret = spa_do_crypt_abd(B_FALSE, spa, &cb->l2rcb_zb,
8696 		    BP_GET_TYPE(bp), BP_GET_DEDUP(bp), BP_SHOULD_BYTESWAP(bp),
8697 		    salt, iv, mac, HDR_GET_PSIZE(hdr), eabd,
8698 		    hdr->b_l1hdr.b_pabd, &no_crypt);
8699 		if (ret != 0) {
8700 			arc_free_data_abd(hdr, eabd, arc_hdr_size(hdr), hdr);
8701 			goto error;
8702 		}
8703 
8704 		/*
8705 		 * If we actually performed decryption, replace b_pabd
8706 		 * with the decrypted data. Otherwise we can just throw
8707 		 * our decryption buffer away.
8708 		 */
8709 		if (!no_crypt) {
8710 			arc_free_data_abd(hdr, hdr->b_l1hdr.b_pabd,
8711 			    arc_hdr_size(hdr), hdr);
8712 			hdr->b_l1hdr.b_pabd = eabd;
8713 			zio->io_abd = eabd;
8714 		} else {
8715 			arc_free_data_abd(hdr, eabd, arc_hdr_size(hdr), hdr);
8716 		}
8717 	}
8718 
8719 	/*
8720 	 * If the L2ARC block was compressed, but ARC compression
8721 	 * is disabled we decompress the data into a new buffer and
8722 	 * replace the existing data.
8723 	 */
8724 	if (HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF &&
8725 	    !HDR_COMPRESSION_ENABLED(hdr)) {
8726 		abd_t *cabd = arc_get_data_abd(hdr, arc_hdr_size(hdr), hdr,
8727 		    B_TRUE);
8728 		void *tmp = abd_borrow_buf(cabd, arc_hdr_size(hdr));
8729 
8730 		ret = zio_decompress_data(HDR_GET_COMPRESS(hdr),
8731 		    hdr->b_l1hdr.b_pabd, tmp, HDR_GET_PSIZE(hdr),
8732 		    HDR_GET_LSIZE(hdr), &hdr->b_complevel);
8733 		if (ret != 0) {
8734 			abd_return_buf_copy(cabd, tmp, arc_hdr_size(hdr));
8735 			arc_free_data_abd(hdr, cabd, arc_hdr_size(hdr), hdr);
8736 			goto error;
8737 		}
8738 
8739 		abd_return_buf_copy(cabd, tmp, arc_hdr_size(hdr));
8740 		arc_free_data_abd(hdr, hdr->b_l1hdr.b_pabd,
8741 		    arc_hdr_size(hdr), hdr);
8742 		hdr->b_l1hdr.b_pabd = cabd;
8743 		zio->io_abd = cabd;
8744 		zio->io_size = HDR_GET_LSIZE(hdr);
8745 	}
8746 
8747 	return (0);
8748 
8749 error:
8750 	return (ret);
8751 }
8752 
8753 
8754 /*
8755  * A read to a cache device completed.  Validate buffer contents before
8756  * handing over to the regular ARC routines.
8757  */
8758 static void
8759 l2arc_read_done(zio_t *zio)
8760 {
8761 	int tfm_error = 0;
8762 	l2arc_read_callback_t *cb = zio->io_private;
8763 	arc_buf_hdr_t *hdr;
8764 	kmutex_t *hash_lock;
8765 	boolean_t valid_cksum;
8766 	boolean_t using_rdata = (BP_IS_ENCRYPTED(&cb->l2rcb_bp) &&
8767 	    (cb->l2rcb_flags & ZIO_FLAG_RAW_ENCRYPT));
8768 
8769 	ASSERT3P(zio->io_vd, !=, NULL);
8770 	ASSERT(zio->io_flags & ZIO_FLAG_DONT_PROPAGATE);
8771 
8772 	spa_config_exit(zio->io_spa, SCL_L2ARC, zio->io_vd);
8773 
8774 	ASSERT3P(cb, !=, NULL);
8775 	hdr = cb->l2rcb_hdr;
8776 	ASSERT3P(hdr, !=, NULL);
8777 
8778 	hash_lock = HDR_LOCK(hdr);
8779 	mutex_enter(hash_lock);
8780 	ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
8781 
8782 	/*
8783 	 * If the data was read into a temporary buffer,
8784 	 * move it and free the buffer.
8785 	 */
8786 	if (cb->l2rcb_abd != NULL) {
8787 		ASSERT3U(arc_hdr_size(hdr), <, zio->io_size);
8788 		if (zio->io_error == 0) {
8789 			if (using_rdata) {
8790 				abd_copy(hdr->b_crypt_hdr.b_rabd,
8791 				    cb->l2rcb_abd, arc_hdr_size(hdr));
8792 			} else {
8793 				abd_copy(hdr->b_l1hdr.b_pabd,
8794 				    cb->l2rcb_abd, arc_hdr_size(hdr));
8795 			}
8796 		}
8797 
8798 		/*
8799 		 * The following must be done regardless of whether
8800 		 * there was an error:
8801 		 * - free the temporary buffer
8802 		 * - point zio to the real ARC buffer
8803 		 * - set zio size accordingly
8804 		 * These are required because zio is either re-used for
8805 		 * an I/O of the block in the case of the error
8806 		 * or the zio is passed to arc_read_done() and it
8807 		 * needs real data.
8808 		 */
8809 		abd_free(cb->l2rcb_abd);
8810 		zio->io_size = zio->io_orig_size = arc_hdr_size(hdr);
8811 
8812 		if (using_rdata) {
8813 			ASSERT(HDR_HAS_RABD(hdr));
8814 			zio->io_abd = zio->io_orig_abd =
8815 			    hdr->b_crypt_hdr.b_rabd;
8816 		} else {
8817 			ASSERT3P(hdr->b_l1hdr.b_pabd, !=, NULL);
8818 			zio->io_abd = zio->io_orig_abd = hdr->b_l1hdr.b_pabd;
8819 		}
8820 	}
8821 
8822 	ASSERT3P(zio->io_abd, !=, NULL);
8823 
8824 	/*
8825 	 * Check this survived the L2ARC journey.
8826 	 */
8827 	ASSERT(zio->io_abd == hdr->b_l1hdr.b_pabd ||
8828 	    (HDR_HAS_RABD(hdr) && zio->io_abd == hdr->b_crypt_hdr.b_rabd));
8829 	zio->io_bp_copy = cb->l2rcb_bp;	/* XXX fix in L2ARC 2.0	*/
8830 	zio->io_bp = &zio->io_bp_copy;	/* XXX fix in L2ARC 2.0	*/
8831 	zio->io_prop.zp_complevel = hdr->b_complevel;
8832 
8833 	valid_cksum = arc_cksum_is_equal(hdr, zio);
8834 
8835 	/*
8836 	 * b_rabd will always match the data as it exists on disk if it is
8837 	 * being used. Therefore if we are reading into b_rabd we do not
8838 	 * attempt to untransform the data.
8839 	 */
8840 	if (valid_cksum && !using_rdata)
8841 		tfm_error = l2arc_untransform(zio, cb);
8842 
8843 	if (valid_cksum && tfm_error == 0 && zio->io_error == 0 &&
8844 	    !HDR_L2_EVICTED(hdr)) {
8845 		mutex_exit(hash_lock);
8846 		zio->io_private = hdr;
8847 		arc_read_done(zio);
8848 	} else {
8849 		/*
8850 		 * Buffer didn't survive caching.  Increment stats and
8851 		 * reissue to the original storage device.
8852 		 */
8853 		if (zio->io_error != 0) {
8854 			ARCSTAT_BUMP(arcstat_l2_io_error);
8855 		} else {
8856 			zio->io_error = SET_ERROR(EIO);
8857 		}
8858 		if (!valid_cksum || tfm_error != 0)
8859 			ARCSTAT_BUMP(arcstat_l2_cksum_bad);
8860 
8861 		/*
8862 		 * If there's no waiter, issue an async i/o to the primary
8863 		 * storage now.  If there *is* a waiter, the caller must
8864 		 * issue the i/o in a context where it's OK to block.
8865 		 */
8866 		if (zio->io_waiter == NULL) {
8867 			zio_t *pio = zio_unique_parent(zio);
8868 			void *abd = (using_rdata) ?
8869 			    hdr->b_crypt_hdr.b_rabd : hdr->b_l1hdr.b_pabd;
8870 
8871 			ASSERT(!pio || pio->io_child_type == ZIO_CHILD_LOGICAL);
8872 
8873 			zio = zio_read(pio, zio->io_spa, zio->io_bp,
8874 			    abd, zio->io_size, arc_read_done,
8875 			    hdr, zio->io_priority, cb->l2rcb_flags,
8876 			    &cb->l2rcb_zb);
8877 
8878 			/*
8879 			 * Original ZIO will be freed, so we need to update
8880 			 * ARC header with the new ZIO pointer to be used
8881 			 * by zio_change_priority() in arc_read().
8882 			 */
8883 			for (struct arc_callback *acb = hdr->b_l1hdr.b_acb;
8884 			    acb != NULL; acb = acb->acb_next)
8885 				acb->acb_zio_head = zio;
8886 
8887 			mutex_exit(hash_lock);
8888 			zio_nowait(zio);
8889 		} else {
8890 			mutex_exit(hash_lock);
8891 		}
8892 	}
8893 
8894 	kmem_free(cb, sizeof (l2arc_read_callback_t));
8895 }
8896 
8897 /*
8898  * This is the list priority from which the L2ARC will search for pages to
8899  * cache.  This is used within loops (0..3) to cycle through lists in the
8900  * desired order.  This order can have a significant effect on cache
8901  * performance.
8902  *
8903  * Currently the metadata lists are hit first, MFU then MRU, followed by
8904  * the data lists.  This function returns a locked list, and also returns
8905  * the lock pointer.
8906  */
8907 static multilist_sublist_t *
8908 l2arc_sublist_lock(int list_num)
8909 {
8910 	multilist_t *ml = NULL;
8911 	unsigned int idx;
8912 
8913 	ASSERT(list_num >= 0 && list_num < L2ARC_FEED_TYPES);
8914 
8915 	switch (list_num) {
8916 	case 0:
8917 		ml = &arc_mfu->arcs_list[ARC_BUFC_METADATA];
8918 		break;
8919 	case 1:
8920 		ml = &arc_mru->arcs_list[ARC_BUFC_METADATA];
8921 		break;
8922 	case 2:
8923 		ml = &arc_mfu->arcs_list[ARC_BUFC_DATA];
8924 		break;
8925 	case 3:
8926 		ml = &arc_mru->arcs_list[ARC_BUFC_DATA];
8927 		break;
8928 	default:
8929 		return (NULL);
8930 	}
8931 
8932 	/*
8933 	 * Return a randomly-selected sublist. This is acceptable
8934 	 * because the caller feeds only a little bit of data for each
8935 	 * call (8MB). Subsequent calls will result in different
8936 	 * sublists being selected.
8937 	 */
8938 	idx = multilist_get_random_index(ml);
8939 	return (multilist_sublist_lock(ml, idx));
8940 }
8941 
8942 /*
8943  * Calculates the maximum overhead of L2ARC metadata log blocks for a given
8944  * L2ARC write size. l2arc_evict and l2arc_write_size need to include this
8945  * overhead in processing to make sure there is enough headroom available
8946  * when writing buffers.
8947  */
8948 static inline uint64_t
8949 l2arc_log_blk_overhead(uint64_t write_sz, l2arc_dev_t *dev)
8950 {
8951 	if (dev->l2ad_log_entries == 0) {
8952 		return (0);
8953 	} else {
8954 		uint64_t log_entries = write_sz >> SPA_MINBLOCKSHIFT;
8955 
8956 		uint64_t log_blocks = (log_entries +
8957 		    dev->l2ad_log_entries - 1) /
8958 		    dev->l2ad_log_entries;
8959 
8960 		return (vdev_psize_to_asize(dev->l2ad_vdev,
8961 		    sizeof (l2arc_log_blk_phys_t)) * log_blocks);
8962 	}
8963 }
8964 
8965 /*
8966  * Evict buffers from the device write hand to the distance specified in
8967  * bytes. This distance may span populated buffers, it may span nothing.
8968  * This is clearing a region on the L2ARC device ready for writing.
8969  * If the 'all' boolean is set, every buffer is evicted.
8970  */
8971 static void
8972 l2arc_evict(l2arc_dev_t *dev, uint64_t distance, boolean_t all)
8973 {
8974 	list_t *buflist;
8975 	arc_buf_hdr_t *hdr, *hdr_prev;
8976 	kmutex_t *hash_lock;
8977 	uint64_t taddr;
8978 	l2arc_lb_ptr_buf_t *lb_ptr_buf, *lb_ptr_buf_prev;
8979 	vdev_t *vd = dev->l2ad_vdev;
8980 	boolean_t rerun;
8981 
8982 	buflist = &dev->l2ad_buflist;
8983 
8984 	/*
8985 	 * We need to add in the worst case scenario of log block overhead.
8986 	 */
8987 	distance += l2arc_log_blk_overhead(distance, dev);
8988 	if (vd->vdev_has_trim && l2arc_trim_ahead > 0) {
8989 		/*
8990 		 * Trim ahead of the write size 64MB or (l2arc_trim_ahead/100)
8991 		 * times the write size, whichever is greater.
8992 		 */
8993 		distance += MAX(64 * 1024 * 1024,
8994 		    (distance * l2arc_trim_ahead) / 100);
8995 	}
8996 
8997 top:
8998 	rerun = B_FALSE;
8999 	if (dev->l2ad_hand >= (dev->l2ad_end - distance)) {
9000 		/*
9001 		 * When there is no space to accommodate upcoming writes,
9002 		 * evict to the end. Then bump the write and evict hands
9003 		 * to the start and iterate. This iteration does not
9004 		 * happen indefinitely as we make sure in
9005 		 * l2arc_write_size() that when the write hand is reset,
9006 		 * the write size does not exceed the end of the device.
9007 		 */
9008 		rerun = B_TRUE;
9009 		taddr = dev->l2ad_end;
9010 	} else {
9011 		taddr = dev->l2ad_hand + distance;
9012 	}
9013 	DTRACE_PROBE4(l2arc__evict, l2arc_dev_t *, dev, list_t *, buflist,
9014 	    uint64_t, taddr, boolean_t, all);
9015 
9016 	if (!all) {
9017 		/*
9018 		 * This check has to be placed after deciding whether to
9019 		 * iterate (rerun).
9020 		 */
9021 		if (dev->l2ad_first) {
9022 			/*
9023 			 * This is the first sweep through the device. There is
9024 			 * nothing to evict. We have already trimmmed the
9025 			 * whole device.
9026 			 */
9027 			goto out;
9028 		} else {
9029 			/*
9030 			 * Trim the space to be evicted.
9031 			 */
9032 			if (vd->vdev_has_trim && dev->l2ad_evict < taddr &&
9033 			    l2arc_trim_ahead > 0) {
9034 				/*
9035 				 * We have to drop the spa_config lock because
9036 				 * vdev_trim_range() will acquire it.
9037 				 * l2ad_evict already accounts for the label
9038 				 * size. To prevent vdev_trim_ranges() from
9039 				 * adding it again, we subtract it from
9040 				 * l2ad_evict.
9041 				 */
9042 				spa_config_exit(dev->l2ad_spa, SCL_L2ARC, dev);
9043 				vdev_trim_simple(vd,
9044 				    dev->l2ad_evict - VDEV_LABEL_START_SIZE,
9045 				    taddr - dev->l2ad_evict);
9046 				spa_config_enter(dev->l2ad_spa, SCL_L2ARC, dev,
9047 				    RW_READER);
9048 			}
9049 
9050 			/*
9051 			 * When rebuilding L2ARC we retrieve the evict hand
9052 			 * from the header of the device. Of note, l2arc_evict()
9053 			 * does not actually delete buffers from the cache
9054 			 * device, but trimming may do so depending on the
9055 			 * hardware implementation. Thus keeping track of the
9056 			 * evict hand is useful.
9057 			 */
9058 			dev->l2ad_evict = MAX(dev->l2ad_evict, taddr);
9059 		}
9060 	}
9061 
9062 retry:
9063 	mutex_enter(&dev->l2ad_mtx);
9064 	/*
9065 	 * We have to account for evicted log blocks. Run vdev_space_update()
9066 	 * on log blocks whose offset (in bytes) is before the evicted offset
9067 	 * (in bytes) by searching in the list of pointers to log blocks
9068 	 * present in the L2ARC device.
9069 	 */
9070 	for (lb_ptr_buf = list_tail(&dev->l2ad_lbptr_list); lb_ptr_buf;
9071 	    lb_ptr_buf = lb_ptr_buf_prev) {
9072 
9073 		lb_ptr_buf_prev = list_prev(&dev->l2ad_lbptr_list, lb_ptr_buf);
9074 
9075 		/* L2BLK_GET_PSIZE returns aligned size for log blocks */
9076 		uint64_t asize = L2BLK_GET_PSIZE(
9077 		    (lb_ptr_buf->lb_ptr)->lbp_prop);
9078 
9079 		/*
9080 		 * We don't worry about log blocks left behind (ie
9081 		 * lbp_payload_start < l2ad_hand) because l2arc_write_buffers()
9082 		 * will never write more than l2arc_evict() evicts.
9083 		 */
9084 		if (!all && l2arc_log_blkptr_valid(dev, lb_ptr_buf->lb_ptr)) {
9085 			break;
9086 		} else {
9087 			vdev_space_update(vd, -asize, 0, 0);
9088 			ARCSTAT_INCR(arcstat_l2_log_blk_asize, -asize);
9089 			ARCSTAT_BUMPDOWN(arcstat_l2_log_blk_count);
9090 			zfs_refcount_remove_many(&dev->l2ad_lb_asize, asize,
9091 			    lb_ptr_buf);
9092 			zfs_refcount_remove(&dev->l2ad_lb_count, lb_ptr_buf);
9093 			list_remove(&dev->l2ad_lbptr_list, lb_ptr_buf);
9094 			kmem_free(lb_ptr_buf->lb_ptr,
9095 			    sizeof (l2arc_log_blkptr_t));
9096 			kmem_free(lb_ptr_buf, sizeof (l2arc_lb_ptr_buf_t));
9097 		}
9098 	}
9099 
9100 	for (hdr = list_tail(buflist); hdr; hdr = hdr_prev) {
9101 		hdr_prev = list_prev(buflist, hdr);
9102 
9103 		ASSERT(!HDR_EMPTY(hdr));
9104 		hash_lock = HDR_LOCK(hdr);
9105 
9106 		/*
9107 		 * We cannot use mutex_enter or else we can deadlock
9108 		 * with l2arc_write_buffers (due to swapping the order
9109 		 * the hash lock and l2ad_mtx are taken).
9110 		 */
9111 		if (!mutex_tryenter(hash_lock)) {
9112 			/*
9113 			 * Missed the hash lock.  Retry.
9114 			 */
9115 			ARCSTAT_BUMP(arcstat_l2_evict_lock_retry);
9116 			mutex_exit(&dev->l2ad_mtx);
9117 			mutex_enter(hash_lock);
9118 			mutex_exit(hash_lock);
9119 			goto retry;
9120 		}
9121 
9122 		/*
9123 		 * A header can't be on this list if it doesn't have L2 header.
9124 		 */
9125 		ASSERT(HDR_HAS_L2HDR(hdr));
9126 
9127 		/* Ensure this header has finished being written. */
9128 		ASSERT(!HDR_L2_WRITING(hdr));
9129 		ASSERT(!HDR_L2_WRITE_HEAD(hdr));
9130 
9131 		if (!all && (hdr->b_l2hdr.b_daddr >= dev->l2ad_evict ||
9132 		    hdr->b_l2hdr.b_daddr < dev->l2ad_hand)) {
9133 			/*
9134 			 * We've evicted to the target address,
9135 			 * or the end of the device.
9136 			 */
9137 			mutex_exit(hash_lock);
9138 			break;
9139 		}
9140 
9141 		if (!HDR_HAS_L1HDR(hdr)) {
9142 			ASSERT(!HDR_L2_READING(hdr));
9143 			/*
9144 			 * This doesn't exist in the ARC.  Destroy.
9145 			 * arc_hdr_destroy() will call list_remove()
9146 			 * and decrement arcstat_l2_lsize.
9147 			 */
9148 			arc_change_state(arc_anon, hdr, hash_lock);
9149 			arc_hdr_destroy(hdr);
9150 		} else {
9151 			ASSERT(hdr->b_l1hdr.b_state != arc_l2c_only);
9152 			ARCSTAT_BUMP(arcstat_l2_evict_l1cached);
9153 			/*
9154 			 * Invalidate issued or about to be issued
9155 			 * reads, since we may be about to write
9156 			 * over this location.
9157 			 */
9158 			if (HDR_L2_READING(hdr)) {
9159 				ARCSTAT_BUMP(arcstat_l2_evict_reading);
9160 				arc_hdr_set_flags(hdr, ARC_FLAG_L2_EVICTED);
9161 			}
9162 
9163 			arc_hdr_l2hdr_destroy(hdr);
9164 		}
9165 		mutex_exit(hash_lock);
9166 	}
9167 	mutex_exit(&dev->l2ad_mtx);
9168 
9169 out:
9170 	/*
9171 	 * We need to check if we evict all buffers, otherwise we may iterate
9172 	 * unnecessarily.
9173 	 */
9174 	if (!all && rerun) {
9175 		/*
9176 		 * Bump device hand to the device start if it is approaching the
9177 		 * end. l2arc_evict() has already evicted ahead for this case.
9178 		 */
9179 		dev->l2ad_hand = dev->l2ad_start;
9180 		dev->l2ad_evict = dev->l2ad_start;
9181 		dev->l2ad_first = B_FALSE;
9182 		goto top;
9183 	}
9184 
9185 	if (!all) {
9186 		/*
9187 		 * In case of cache device removal (all) the following
9188 		 * assertions may be violated without functional consequences
9189 		 * as the device is about to be removed.
9190 		 */
9191 		ASSERT3U(dev->l2ad_hand + distance, <, dev->l2ad_end);
9192 		if (!dev->l2ad_first)
9193 			ASSERT3U(dev->l2ad_hand, <, dev->l2ad_evict);
9194 	}
9195 }
9196 
9197 /*
9198  * Handle any abd transforms that might be required for writing to the L2ARC.
9199  * If successful, this function will always return an abd with the data
9200  * transformed as it is on disk in a new abd of asize bytes.
9201  */
9202 static int
9203 l2arc_apply_transforms(spa_t *spa, arc_buf_hdr_t *hdr, uint64_t asize,
9204     abd_t **abd_out)
9205 {
9206 	int ret;
9207 	void *tmp = NULL;
9208 	abd_t *cabd = NULL, *eabd = NULL, *to_write = hdr->b_l1hdr.b_pabd;
9209 	enum zio_compress compress = HDR_GET_COMPRESS(hdr);
9210 	uint64_t psize = HDR_GET_PSIZE(hdr);
9211 	uint64_t size = arc_hdr_size(hdr);
9212 	boolean_t ismd = HDR_ISTYPE_METADATA(hdr);
9213 	boolean_t bswap = (hdr->b_l1hdr.b_byteswap != DMU_BSWAP_NUMFUNCS);
9214 	dsl_crypto_key_t *dck = NULL;
9215 	uint8_t mac[ZIO_DATA_MAC_LEN] = { 0 };
9216 	boolean_t no_crypt = B_FALSE;
9217 
9218 	ASSERT((HDR_GET_COMPRESS(hdr) != ZIO_COMPRESS_OFF &&
9219 	    !HDR_COMPRESSION_ENABLED(hdr)) ||
9220 	    HDR_ENCRYPTED(hdr) || HDR_SHARED_DATA(hdr) || psize != asize);
9221 	ASSERT3U(psize, <=, asize);
9222 
9223 	/*
9224 	 * If this data simply needs its own buffer, we simply allocate it
9225 	 * and copy the data. This may be done to eliminate a dependency on a
9226 	 * shared buffer or to reallocate the buffer to match asize.
9227 	 */
9228 	if (HDR_HAS_RABD(hdr) && asize != psize) {
9229 		ASSERT3U(asize, >=, psize);
9230 		to_write = abd_alloc_for_io(asize, ismd);
9231 		abd_copy(to_write, hdr->b_crypt_hdr.b_rabd, psize);
9232 		if (psize != asize)
9233 			abd_zero_off(to_write, psize, asize - psize);
9234 		goto out;
9235 	}
9236 
9237 	if ((compress == ZIO_COMPRESS_OFF || HDR_COMPRESSION_ENABLED(hdr)) &&
9238 	    !HDR_ENCRYPTED(hdr)) {
9239 		ASSERT3U(size, ==, psize);
9240 		to_write = abd_alloc_for_io(asize, ismd);
9241 		abd_copy(to_write, hdr->b_l1hdr.b_pabd, size);
9242 		if (size != asize)
9243 			abd_zero_off(to_write, size, asize - size);
9244 		goto out;
9245 	}
9246 
9247 	if (compress != ZIO_COMPRESS_OFF && !HDR_COMPRESSION_ENABLED(hdr)) {
9248 		cabd = abd_alloc_for_io(asize, ismd);
9249 		tmp = abd_borrow_buf(cabd, asize);
9250 
9251 		psize = zio_compress_data(compress, to_write, tmp, size,
9252 		    hdr->b_complevel);
9253 
9254 		if (psize >= size) {
9255 			abd_return_buf(cabd, tmp, asize);
9256 			HDR_SET_COMPRESS(hdr, ZIO_COMPRESS_OFF);
9257 			to_write = cabd;
9258 			abd_copy(to_write, hdr->b_l1hdr.b_pabd, size);
9259 			if (size != asize)
9260 				abd_zero_off(to_write, size, asize - size);
9261 			goto encrypt;
9262 		}
9263 		ASSERT3U(psize, <=, HDR_GET_PSIZE(hdr));
9264 		if (psize < asize)
9265 			bzero((char *)tmp + psize, asize - psize);
9266 		psize = HDR_GET_PSIZE(hdr);
9267 		abd_return_buf_copy(cabd, tmp, asize);
9268 		to_write = cabd;
9269 	}
9270 
9271 encrypt:
9272 	if (HDR_ENCRYPTED(hdr)) {
9273 		eabd = abd_alloc_for_io(asize, ismd);
9274 
9275 		/*
9276 		 * If the dataset was disowned before the buffer
9277 		 * made it to this point, the key to re-encrypt
9278 		 * it won't be available. In this case we simply
9279 		 * won't write the buffer to the L2ARC.
9280 		 */
9281 		ret = spa_keystore_lookup_key(spa, hdr->b_crypt_hdr.b_dsobj,
9282 		    FTAG, &dck);
9283 		if (ret != 0)
9284 			goto error;
9285 
9286 		ret = zio_do_crypt_abd(B_TRUE, &dck->dck_key,
9287 		    hdr->b_crypt_hdr.b_ot, bswap, hdr->b_crypt_hdr.b_salt,
9288 		    hdr->b_crypt_hdr.b_iv, mac, psize, to_write, eabd,
9289 		    &no_crypt);
9290 		if (ret != 0)
9291 			goto error;
9292 
9293 		if (no_crypt)
9294 			abd_copy(eabd, to_write, psize);
9295 
9296 		if (psize != asize)
9297 			abd_zero_off(eabd, psize, asize - psize);
9298 
9299 		/* assert that the MAC we got here matches the one we saved */
9300 		ASSERT0(bcmp(mac, hdr->b_crypt_hdr.b_mac, ZIO_DATA_MAC_LEN));
9301 		spa_keystore_dsl_key_rele(spa, dck, FTAG);
9302 
9303 		if (to_write == cabd)
9304 			abd_free(cabd);
9305 
9306 		to_write = eabd;
9307 	}
9308 
9309 out:
9310 	ASSERT3P(to_write, !=, hdr->b_l1hdr.b_pabd);
9311 	*abd_out = to_write;
9312 	return (0);
9313 
9314 error:
9315 	if (dck != NULL)
9316 		spa_keystore_dsl_key_rele(spa, dck, FTAG);
9317 	if (cabd != NULL)
9318 		abd_free(cabd);
9319 	if (eabd != NULL)
9320 		abd_free(eabd);
9321 
9322 	*abd_out = NULL;
9323 	return (ret);
9324 }
9325 
9326 static void
9327 l2arc_blk_fetch_done(zio_t *zio)
9328 {
9329 	l2arc_read_callback_t *cb;
9330 
9331 	cb = zio->io_private;
9332 	if (cb->l2rcb_abd != NULL)
9333 		abd_free(cb->l2rcb_abd);
9334 	kmem_free(cb, sizeof (l2arc_read_callback_t));
9335 }
9336 
9337 /*
9338  * Find and write ARC buffers to the L2ARC device.
9339  *
9340  * An ARC_FLAG_L2_WRITING flag is set so that the L2ARC buffers are not valid
9341  * for reading until they have completed writing.
9342  * The headroom_boost is an in-out parameter used to maintain headroom boost
9343  * state between calls to this function.
9344  *
9345  * Returns the number of bytes actually written (which may be smaller than
9346  * the delta by which the device hand has changed due to alignment and the
9347  * writing of log blocks).
9348  */
9349 static uint64_t
9350 l2arc_write_buffers(spa_t *spa, l2arc_dev_t *dev, uint64_t target_sz)
9351 {
9352 	arc_buf_hdr_t 		*hdr, *hdr_prev, *head;
9353 	uint64_t 		write_asize, write_psize, write_lsize, headroom;
9354 	boolean_t		full;
9355 	l2arc_write_callback_t	*cb = NULL;
9356 	zio_t 			*pio, *wzio;
9357 	uint64_t 		guid = spa_load_guid(spa);
9358 	l2arc_dev_hdr_phys_t	*l2dhdr = dev->l2ad_dev_hdr;
9359 
9360 	ASSERT3P(dev->l2ad_vdev, !=, NULL);
9361 
9362 	pio = NULL;
9363 	write_lsize = write_asize = write_psize = 0;
9364 	full = B_FALSE;
9365 	head = kmem_cache_alloc(hdr_l2only_cache, KM_PUSHPAGE);
9366 	arc_hdr_set_flags(head, ARC_FLAG_L2_WRITE_HEAD | ARC_FLAG_HAS_L2HDR);
9367 
9368 	/*
9369 	 * Copy buffers for L2ARC writing.
9370 	 */
9371 	for (int pass = 0; pass < L2ARC_FEED_TYPES; pass++) {
9372 		/*
9373 		 * If pass == 1 or 3, we cache MRU metadata and data
9374 		 * respectively.
9375 		 */
9376 		if (l2arc_mfuonly) {
9377 			if (pass == 1 || pass == 3)
9378 				continue;
9379 		}
9380 
9381 		multilist_sublist_t *mls = l2arc_sublist_lock(pass);
9382 		uint64_t passed_sz = 0;
9383 
9384 		VERIFY3P(mls, !=, NULL);
9385 
9386 		/*
9387 		 * L2ARC fast warmup.
9388 		 *
9389 		 * Until the ARC is warm and starts to evict, read from the
9390 		 * head of the ARC lists rather than the tail.
9391 		 */
9392 		if (arc_warm == B_FALSE)
9393 			hdr = multilist_sublist_head(mls);
9394 		else
9395 			hdr = multilist_sublist_tail(mls);
9396 
9397 		headroom = target_sz * l2arc_headroom;
9398 		if (zfs_compressed_arc_enabled)
9399 			headroom = (headroom * l2arc_headroom_boost) / 100;
9400 
9401 		for (; hdr; hdr = hdr_prev) {
9402 			kmutex_t *hash_lock;
9403 			abd_t *to_write = NULL;
9404 
9405 			if (arc_warm == B_FALSE)
9406 				hdr_prev = multilist_sublist_next(mls, hdr);
9407 			else
9408 				hdr_prev = multilist_sublist_prev(mls, hdr);
9409 
9410 			hash_lock = HDR_LOCK(hdr);
9411 			if (!mutex_tryenter(hash_lock)) {
9412 				/*
9413 				 * Skip this buffer rather than waiting.
9414 				 */
9415 				continue;
9416 			}
9417 
9418 			passed_sz += HDR_GET_LSIZE(hdr);
9419 			if (l2arc_headroom != 0 && passed_sz > headroom) {
9420 				/*
9421 				 * Searched too far.
9422 				 */
9423 				mutex_exit(hash_lock);
9424 				break;
9425 			}
9426 
9427 			if (!l2arc_write_eligible(guid, hdr)) {
9428 				mutex_exit(hash_lock);
9429 				continue;
9430 			}
9431 
9432 			/*
9433 			 * We rely on the L1 portion of the header below, so
9434 			 * it's invalid for this header to have been evicted out
9435 			 * of the ghost cache, prior to being written out. The
9436 			 * ARC_FLAG_L2_WRITING bit ensures this won't happen.
9437 			 */
9438 			ASSERT(HDR_HAS_L1HDR(hdr));
9439 
9440 			ASSERT3U(HDR_GET_PSIZE(hdr), >, 0);
9441 			ASSERT3U(arc_hdr_size(hdr), >, 0);
9442 			ASSERT(hdr->b_l1hdr.b_pabd != NULL ||
9443 			    HDR_HAS_RABD(hdr));
9444 			uint64_t psize = HDR_GET_PSIZE(hdr);
9445 			uint64_t asize = vdev_psize_to_asize(dev->l2ad_vdev,
9446 			    psize);
9447 
9448 			if ((write_asize + asize) > target_sz) {
9449 				full = B_TRUE;
9450 				mutex_exit(hash_lock);
9451 				break;
9452 			}
9453 
9454 			/*
9455 			 * We rely on the L1 portion of the header below, so
9456 			 * it's invalid for this header to have been evicted out
9457 			 * of the ghost cache, prior to being written out. The
9458 			 * ARC_FLAG_L2_WRITING bit ensures this won't happen.
9459 			 */
9460 			arc_hdr_set_flags(hdr, ARC_FLAG_L2_WRITING);
9461 			ASSERT(HDR_HAS_L1HDR(hdr));
9462 
9463 			ASSERT3U(HDR_GET_PSIZE(hdr), >, 0);
9464 			ASSERT(hdr->b_l1hdr.b_pabd != NULL ||
9465 			    HDR_HAS_RABD(hdr));
9466 			ASSERT3U(arc_hdr_size(hdr), >, 0);
9467 
9468 			/*
9469 			 * If this header has b_rabd, we can use this since it
9470 			 * must always match the data exactly as it exists on
9471 			 * disk. Otherwise, the L2ARC can normally use the
9472 			 * hdr's data, but if we're sharing data between the
9473 			 * hdr and one of its bufs, L2ARC needs its own copy of
9474 			 * the data so that the ZIO below can't race with the
9475 			 * buf consumer. To ensure that this copy will be
9476 			 * available for the lifetime of the ZIO and be cleaned
9477 			 * up afterwards, we add it to the l2arc_free_on_write
9478 			 * queue. If we need to apply any transforms to the
9479 			 * data (compression, encryption) we will also need the
9480 			 * extra buffer.
9481 			 */
9482 			if (HDR_HAS_RABD(hdr) && psize == asize) {
9483 				to_write = hdr->b_crypt_hdr.b_rabd;
9484 			} else if ((HDR_COMPRESSION_ENABLED(hdr) ||
9485 			    HDR_GET_COMPRESS(hdr) == ZIO_COMPRESS_OFF) &&
9486 			    !HDR_ENCRYPTED(hdr) && !HDR_SHARED_DATA(hdr) &&
9487 			    psize == asize) {
9488 				to_write = hdr->b_l1hdr.b_pabd;
9489 			} else {
9490 				int ret;
9491 				arc_buf_contents_t type = arc_buf_type(hdr);
9492 
9493 				ret = l2arc_apply_transforms(spa, hdr, asize,
9494 				    &to_write);
9495 				if (ret != 0) {
9496 					arc_hdr_clear_flags(hdr,
9497 					    ARC_FLAG_L2_WRITING);
9498 					mutex_exit(hash_lock);
9499 					continue;
9500 				}
9501 
9502 				l2arc_free_abd_on_write(to_write, asize, type);
9503 			}
9504 
9505 			if (pio == NULL) {
9506 				/*
9507 				 * Insert a dummy header on the buflist so
9508 				 * l2arc_write_done() can find where the
9509 				 * write buffers begin without searching.
9510 				 */
9511 				mutex_enter(&dev->l2ad_mtx);
9512 				list_insert_head(&dev->l2ad_buflist, head);
9513 				mutex_exit(&dev->l2ad_mtx);
9514 
9515 				cb = kmem_alloc(
9516 				    sizeof (l2arc_write_callback_t), KM_SLEEP);
9517 				cb->l2wcb_dev = dev;
9518 				cb->l2wcb_head = head;
9519 				/*
9520 				 * Create a list to save allocated abd buffers
9521 				 * for l2arc_log_blk_commit().
9522 				 */
9523 				list_create(&cb->l2wcb_abd_list,
9524 				    sizeof (l2arc_lb_abd_buf_t),
9525 				    offsetof(l2arc_lb_abd_buf_t, node));
9526 				pio = zio_root(spa, l2arc_write_done, cb,
9527 				    ZIO_FLAG_CANFAIL);
9528 			}
9529 
9530 			hdr->b_l2hdr.b_dev = dev;
9531 			hdr->b_l2hdr.b_hits = 0;
9532 
9533 			hdr->b_l2hdr.b_daddr = dev->l2ad_hand;
9534 			hdr->b_l2hdr.b_arcs_state =
9535 			    hdr->b_l1hdr.b_state->arcs_state;
9536 			arc_hdr_set_flags(hdr, ARC_FLAG_HAS_L2HDR);
9537 
9538 			mutex_enter(&dev->l2ad_mtx);
9539 			list_insert_head(&dev->l2ad_buflist, hdr);
9540 			mutex_exit(&dev->l2ad_mtx);
9541 
9542 			(void) zfs_refcount_add_many(&dev->l2ad_alloc,
9543 			    arc_hdr_size(hdr), hdr);
9544 
9545 			wzio = zio_write_phys(pio, dev->l2ad_vdev,
9546 			    hdr->b_l2hdr.b_daddr, asize, to_write,
9547 			    ZIO_CHECKSUM_OFF, NULL, hdr,
9548 			    ZIO_PRIORITY_ASYNC_WRITE,
9549 			    ZIO_FLAG_CANFAIL, B_FALSE);
9550 
9551 			write_lsize += HDR_GET_LSIZE(hdr);
9552 			DTRACE_PROBE2(l2arc__write, vdev_t *, dev->l2ad_vdev,
9553 			    zio_t *, wzio);
9554 
9555 			write_psize += psize;
9556 			write_asize += asize;
9557 			dev->l2ad_hand += asize;
9558 			l2arc_hdr_arcstats_increment(hdr);
9559 			vdev_space_update(dev->l2ad_vdev, asize, 0, 0);
9560 
9561 			mutex_exit(hash_lock);
9562 
9563 			/*
9564 			 * Append buf info to current log and commit if full.
9565 			 * arcstat_l2_{size,asize} kstats are updated
9566 			 * internally.
9567 			 */
9568 			if (l2arc_log_blk_insert(dev, hdr))
9569 				l2arc_log_blk_commit(dev, pio, cb);
9570 
9571 			zio_nowait(wzio);
9572 		}
9573 
9574 		multilist_sublist_unlock(mls);
9575 
9576 		if (full == B_TRUE)
9577 			break;
9578 	}
9579 
9580 	/* No buffers selected for writing? */
9581 	if (pio == NULL) {
9582 		ASSERT0(write_lsize);
9583 		ASSERT(!HDR_HAS_L1HDR(head));
9584 		kmem_cache_free(hdr_l2only_cache, head);
9585 
9586 		/*
9587 		 * Although we did not write any buffers l2ad_evict may
9588 		 * have advanced.
9589 		 */
9590 		if (dev->l2ad_evict != l2dhdr->dh_evict)
9591 			l2arc_dev_hdr_update(dev);
9592 
9593 		return (0);
9594 	}
9595 
9596 	if (!dev->l2ad_first)
9597 		ASSERT3U(dev->l2ad_hand, <=, dev->l2ad_evict);
9598 
9599 	ASSERT3U(write_asize, <=, target_sz);
9600 	ARCSTAT_BUMP(arcstat_l2_writes_sent);
9601 	ARCSTAT_INCR(arcstat_l2_write_bytes, write_psize);
9602 
9603 	dev->l2ad_writing = B_TRUE;
9604 	(void) zio_wait(pio);
9605 	dev->l2ad_writing = B_FALSE;
9606 
9607 	/*
9608 	 * Update the device header after the zio completes as
9609 	 * l2arc_write_done() may have updated the memory holding the log block
9610 	 * pointers in the device header.
9611 	 */
9612 	l2arc_dev_hdr_update(dev);
9613 
9614 	return (write_asize);
9615 }
9616 
9617 static boolean_t
9618 l2arc_hdr_limit_reached(void)
9619 {
9620 	int64_t s = aggsum_upper_bound(&arc_sums.arcstat_l2_hdr_size);
9621 
9622 	return (arc_reclaim_needed() || (s > arc_meta_limit * 3 / 4) ||
9623 	    (s > (arc_warm ? arc_c : arc_c_max) * l2arc_meta_percent / 100));
9624 }
9625 
9626 /*
9627  * This thread feeds the L2ARC at regular intervals.  This is the beating
9628  * heart of the L2ARC.
9629  */
9630 /* ARGSUSED */
9631 static void
9632 l2arc_feed_thread(void *unused)
9633 {
9634 	callb_cpr_t cpr;
9635 	l2arc_dev_t *dev;
9636 	spa_t *spa;
9637 	uint64_t size, wrote;
9638 	clock_t begin, next = ddi_get_lbolt();
9639 	fstrans_cookie_t cookie;
9640 
9641 	CALLB_CPR_INIT(&cpr, &l2arc_feed_thr_lock, callb_generic_cpr, FTAG);
9642 
9643 	mutex_enter(&l2arc_feed_thr_lock);
9644 
9645 	cookie = spl_fstrans_mark();
9646 	while (l2arc_thread_exit == 0) {
9647 		CALLB_CPR_SAFE_BEGIN(&cpr);
9648 		(void) cv_timedwait_idle(&l2arc_feed_thr_cv,
9649 		    &l2arc_feed_thr_lock, next);
9650 		CALLB_CPR_SAFE_END(&cpr, &l2arc_feed_thr_lock);
9651 		next = ddi_get_lbolt() + hz;
9652 
9653 		/*
9654 		 * Quick check for L2ARC devices.
9655 		 */
9656 		mutex_enter(&l2arc_dev_mtx);
9657 		if (l2arc_ndev == 0) {
9658 			mutex_exit(&l2arc_dev_mtx);
9659 			continue;
9660 		}
9661 		mutex_exit(&l2arc_dev_mtx);
9662 		begin = ddi_get_lbolt();
9663 
9664 		/*
9665 		 * This selects the next l2arc device to write to, and in
9666 		 * doing so the next spa to feed from: dev->l2ad_spa.   This
9667 		 * will return NULL if there are now no l2arc devices or if
9668 		 * they are all faulted.
9669 		 *
9670 		 * If a device is returned, its spa's config lock is also
9671 		 * held to prevent device removal.  l2arc_dev_get_next()
9672 		 * will grab and release l2arc_dev_mtx.
9673 		 */
9674 		if ((dev = l2arc_dev_get_next()) == NULL)
9675 			continue;
9676 
9677 		spa = dev->l2ad_spa;
9678 		ASSERT3P(spa, !=, NULL);
9679 
9680 		/*
9681 		 * If the pool is read-only then force the feed thread to
9682 		 * sleep a little longer.
9683 		 */
9684 		if (!spa_writeable(spa)) {
9685 			next = ddi_get_lbolt() + 5 * l2arc_feed_secs * hz;
9686 			spa_config_exit(spa, SCL_L2ARC, dev);
9687 			continue;
9688 		}
9689 
9690 		/*
9691 		 * Avoid contributing to memory pressure.
9692 		 */
9693 		if (l2arc_hdr_limit_reached()) {
9694 			ARCSTAT_BUMP(arcstat_l2_abort_lowmem);
9695 			spa_config_exit(spa, SCL_L2ARC, dev);
9696 			continue;
9697 		}
9698 
9699 		ARCSTAT_BUMP(arcstat_l2_feeds);
9700 
9701 		size = l2arc_write_size(dev);
9702 
9703 		/*
9704 		 * Evict L2ARC buffers that will be overwritten.
9705 		 */
9706 		l2arc_evict(dev, size, B_FALSE);
9707 
9708 		/*
9709 		 * Write ARC buffers.
9710 		 */
9711 		wrote = l2arc_write_buffers(spa, dev, size);
9712 
9713 		/*
9714 		 * Calculate interval between writes.
9715 		 */
9716 		next = l2arc_write_interval(begin, size, wrote);
9717 		spa_config_exit(spa, SCL_L2ARC, dev);
9718 	}
9719 	spl_fstrans_unmark(cookie);
9720 
9721 	l2arc_thread_exit = 0;
9722 	cv_broadcast(&l2arc_feed_thr_cv);
9723 	CALLB_CPR_EXIT(&cpr);		/* drops l2arc_feed_thr_lock */
9724 	thread_exit();
9725 }
9726 
9727 boolean_t
9728 l2arc_vdev_present(vdev_t *vd)
9729 {
9730 	return (l2arc_vdev_get(vd) != NULL);
9731 }
9732 
9733 /*
9734  * Returns the l2arc_dev_t associated with a particular vdev_t or NULL if
9735  * the vdev_t isn't an L2ARC device.
9736  */
9737 l2arc_dev_t *
9738 l2arc_vdev_get(vdev_t *vd)
9739 {
9740 	l2arc_dev_t	*dev;
9741 
9742 	mutex_enter(&l2arc_dev_mtx);
9743 	for (dev = list_head(l2arc_dev_list); dev != NULL;
9744 	    dev = list_next(l2arc_dev_list, dev)) {
9745 		if (dev->l2ad_vdev == vd)
9746 			break;
9747 	}
9748 	mutex_exit(&l2arc_dev_mtx);
9749 
9750 	return (dev);
9751 }
9752 
9753 static void
9754 l2arc_rebuild_dev(l2arc_dev_t *dev, boolean_t reopen)
9755 {
9756 	l2arc_dev_hdr_phys_t *l2dhdr = dev->l2ad_dev_hdr;
9757 	uint64_t l2dhdr_asize = dev->l2ad_dev_hdr_asize;
9758 	spa_t *spa = dev->l2ad_spa;
9759 
9760 	/*
9761 	 * The L2ARC has to hold at least the payload of one log block for
9762 	 * them to be restored (persistent L2ARC). The payload of a log block
9763 	 * depends on the amount of its log entries. We always write log blocks
9764 	 * with 1022 entries. How many of them are committed or restored depends
9765 	 * on the size of the L2ARC device. Thus the maximum payload of
9766 	 * one log block is 1022 * SPA_MAXBLOCKSIZE = 16GB. If the L2ARC device
9767 	 * is less than that, we reduce the amount of committed and restored
9768 	 * log entries per block so as to enable persistence.
9769 	 */
9770 	if (dev->l2ad_end < l2arc_rebuild_blocks_min_l2size) {
9771 		dev->l2ad_log_entries = 0;
9772 	} else {
9773 		dev->l2ad_log_entries = MIN((dev->l2ad_end -
9774 		    dev->l2ad_start) >> SPA_MAXBLOCKSHIFT,
9775 		    L2ARC_LOG_BLK_MAX_ENTRIES);
9776 	}
9777 
9778 	/*
9779 	 * Read the device header, if an error is returned do not rebuild L2ARC.
9780 	 */
9781 	if (l2arc_dev_hdr_read(dev) == 0 && dev->l2ad_log_entries > 0) {
9782 		/*
9783 		 * If we are onlining a cache device (vdev_reopen) that was
9784 		 * still present (l2arc_vdev_present()) and rebuild is enabled,
9785 		 * we should evict all ARC buffers and pointers to log blocks
9786 		 * and reclaim their space before restoring its contents to
9787 		 * L2ARC.
9788 		 */
9789 		if (reopen) {
9790 			if (!l2arc_rebuild_enabled) {
9791 				return;
9792 			} else {
9793 				l2arc_evict(dev, 0, B_TRUE);
9794 				/* start a new log block */
9795 				dev->l2ad_log_ent_idx = 0;
9796 				dev->l2ad_log_blk_payload_asize = 0;
9797 				dev->l2ad_log_blk_payload_start = 0;
9798 			}
9799 		}
9800 		/*
9801 		 * Just mark the device as pending for a rebuild. We won't
9802 		 * be starting a rebuild in line here as it would block pool
9803 		 * import. Instead spa_load_impl will hand that off to an
9804 		 * async task which will call l2arc_spa_rebuild_start.
9805 		 */
9806 		dev->l2ad_rebuild = B_TRUE;
9807 	} else if (spa_writeable(spa)) {
9808 		/*
9809 		 * In this case TRIM the whole device if l2arc_trim_ahead > 0,
9810 		 * otherwise create a new header. We zero out the memory holding
9811 		 * the header to reset dh_start_lbps. If we TRIM the whole
9812 		 * device the new header will be written by
9813 		 * vdev_trim_l2arc_thread() at the end of the TRIM to update the
9814 		 * trim_state in the header too. When reading the header, if
9815 		 * trim_state is not VDEV_TRIM_COMPLETE and l2arc_trim_ahead > 0
9816 		 * we opt to TRIM the whole device again.
9817 		 */
9818 		if (l2arc_trim_ahead > 0) {
9819 			dev->l2ad_trim_all = B_TRUE;
9820 		} else {
9821 			bzero(l2dhdr, l2dhdr_asize);
9822 			l2arc_dev_hdr_update(dev);
9823 		}
9824 	}
9825 }
9826 
9827 /*
9828  * Add a vdev for use by the L2ARC.  By this point the spa has already
9829  * validated the vdev and opened it.
9830  */
9831 void
9832 l2arc_add_vdev(spa_t *spa, vdev_t *vd)
9833 {
9834 	l2arc_dev_t		*adddev;
9835 	uint64_t		l2dhdr_asize;
9836 
9837 	ASSERT(!l2arc_vdev_present(vd));
9838 
9839 	/*
9840 	 * Create a new l2arc device entry.
9841 	 */
9842 	adddev = vmem_zalloc(sizeof (l2arc_dev_t), KM_SLEEP);
9843 	adddev->l2ad_spa = spa;
9844 	adddev->l2ad_vdev = vd;
9845 	/* leave extra size for an l2arc device header */
9846 	l2dhdr_asize = adddev->l2ad_dev_hdr_asize =
9847 	    MAX(sizeof (*adddev->l2ad_dev_hdr), 1 << vd->vdev_ashift);
9848 	adddev->l2ad_start = VDEV_LABEL_START_SIZE + l2dhdr_asize;
9849 	adddev->l2ad_end = VDEV_LABEL_START_SIZE + vdev_get_min_asize(vd);
9850 	ASSERT3U(adddev->l2ad_start, <, adddev->l2ad_end);
9851 	adddev->l2ad_hand = adddev->l2ad_start;
9852 	adddev->l2ad_evict = adddev->l2ad_start;
9853 	adddev->l2ad_first = B_TRUE;
9854 	adddev->l2ad_writing = B_FALSE;
9855 	adddev->l2ad_trim_all = B_FALSE;
9856 	list_link_init(&adddev->l2ad_node);
9857 	adddev->l2ad_dev_hdr = kmem_zalloc(l2dhdr_asize, KM_SLEEP);
9858 
9859 	mutex_init(&adddev->l2ad_mtx, NULL, MUTEX_DEFAULT, NULL);
9860 	/*
9861 	 * This is a list of all ARC buffers that are still valid on the
9862 	 * device.
9863 	 */
9864 	list_create(&adddev->l2ad_buflist, sizeof (arc_buf_hdr_t),
9865 	    offsetof(arc_buf_hdr_t, b_l2hdr.b_l2node));
9866 
9867 	/*
9868 	 * This is a list of pointers to log blocks that are still present
9869 	 * on the device.
9870 	 */
9871 	list_create(&adddev->l2ad_lbptr_list, sizeof (l2arc_lb_ptr_buf_t),
9872 	    offsetof(l2arc_lb_ptr_buf_t, node));
9873 
9874 	vdev_space_update(vd, 0, 0, adddev->l2ad_end - adddev->l2ad_hand);
9875 	zfs_refcount_create(&adddev->l2ad_alloc);
9876 	zfs_refcount_create(&adddev->l2ad_lb_asize);
9877 	zfs_refcount_create(&adddev->l2ad_lb_count);
9878 
9879 	/*
9880 	 * Decide if dev is eligible for L2ARC rebuild or whole device
9881 	 * trimming. This has to happen before the device is added in the
9882 	 * cache device list and l2arc_dev_mtx is released. Otherwise
9883 	 * l2arc_feed_thread() might already start writing on the
9884 	 * device.
9885 	 */
9886 	l2arc_rebuild_dev(adddev, B_FALSE);
9887 
9888 	/*
9889 	 * Add device to global list
9890 	 */
9891 	mutex_enter(&l2arc_dev_mtx);
9892 	list_insert_head(l2arc_dev_list, adddev);
9893 	atomic_inc_64(&l2arc_ndev);
9894 	mutex_exit(&l2arc_dev_mtx);
9895 }
9896 
9897 /*
9898  * Decide if a vdev is eligible for L2ARC rebuild, called from vdev_reopen()
9899  * in case of onlining a cache device.
9900  */
9901 void
9902 l2arc_rebuild_vdev(vdev_t *vd, boolean_t reopen)
9903 {
9904 	l2arc_dev_t		*dev = NULL;
9905 
9906 	dev = l2arc_vdev_get(vd);
9907 	ASSERT3P(dev, !=, NULL);
9908 
9909 	/*
9910 	 * In contrast to l2arc_add_vdev() we do not have to worry about
9911 	 * l2arc_feed_thread() invalidating previous content when onlining a
9912 	 * cache device. The device parameters (l2ad*) are not cleared when
9913 	 * offlining the device and writing new buffers will not invalidate
9914 	 * all previous content. In worst case only buffers that have not had
9915 	 * their log block written to the device will be lost.
9916 	 * When onlining the cache device (ie offline->online without exporting
9917 	 * the pool in between) this happens:
9918 	 * vdev_reopen() -> vdev_open() -> l2arc_rebuild_vdev()
9919 	 * 			|			|
9920 	 * 		vdev_is_dead() = B_FALSE	l2ad_rebuild = B_TRUE
9921 	 * During the time where vdev_is_dead = B_FALSE and until l2ad_rebuild
9922 	 * is set to B_TRUE we might write additional buffers to the device.
9923 	 */
9924 	l2arc_rebuild_dev(dev, reopen);
9925 }
9926 
9927 /*
9928  * Remove a vdev from the L2ARC.
9929  */
9930 void
9931 l2arc_remove_vdev(vdev_t *vd)
9932 {
9933 	l2arc_dev_t *remdev = NULL;
9934 
9935 	/*
9936 	 * Find the device by vdev
9937 	 */
9938 	remdev = l2arc_vdev_get(vd);
9939 	ASSERT3P(remdev, !=, NULL);
9940 
9941 	/*
9942 	 * Cancel any ongoing or scheduled rebuild.
9943 	 */
9944 	mutex_enter(&l2arc_rebuild_thr_lock);
9945 	if (remdev->l2ad_rebuild_began == B_TRUE) {
9946 		remdev->l2ad_rebuild_cancel = B_TRUE;
9947 		while (remdev->l2ad_rebuild == B_TRUE)
9948 			cv_wait(&l2arc_rebuild_thr_cv, &l2arc_rebuild_thr_lock);
9949 	}
9950 	mutex_exit(&l2arc_rebuild_thr_lock);
9951 
9952 	/*
9953 	 * Remove device from global list
9954 	 */
9955 	mutex_enter(&l2arc_dev_mtx);
9956 	list_remove(l2arc_dev_list, remdev);
9957 	l2arc_dev_last = NULL;		/* may have been invalidated */
9958 	atomic_dec_64(&l2arc_ndev);
9959 	mutex_exit(&l2arc_dev_mtx);
9960 
9961 	/*
9962 	 * Clear all buflists and ARC references.  L2ARC device flush.
9963 	 */
9964 	l2arc_evict(remdev, 0, B_TRUE);
9965 	list_destroy(&remdev->l2ad_buflist);
9966 	ASSERT(list_is_empty(&remdev->l2ad_lbptr_list));
9967 	list_destroy(&remdev->l2ad_lbptr_list);
9968 	mutex_destroy(&remdev->l2ad_mtx);
9969 	zfs_refcount_destroy(&remdev->l2ad_alloc);
9970 	zfs_refcount_destroy(&remdev->l2ad_lb_asize);
9971 	zfs_refcount_destroy(&remdev->l2ad_lb_count);
9972 	kmem_free(remdev->l2ad_dev_hdr, remdev->l2ad_dev_hdr_asize);
9973 	vmem_free(remdev, sizeof (l2arc_dev_t));
9974 }
9975 
9976 void
9977 l2arc_init(void)
9978 {
9979 	l2arc_thread_exit = 0;
9980 	l2arc_ndev = 0;
9981 
9982 	mutex_init(&l2arc_feed_thr_lock, NULL, MUTEX_DEFAULT, NULL);
9983 	cv_init(&l2arc_feed_thr_cv, NULL, CV_DEFAULT, NULL);
9984 	mutex_init(&l2arc_rebuild_thr_lock, NULL, MUTEX_DEFAULT, NULL);
9985 	cv_init(&l2arc_rebuild_thr_cv, NULL, CV_DEFAULT, NULL);
9986 	mutex_init(&l2arc_dev_mtx, NULL, MUTEX_DEFAULT, NULL);
9987 	mutex_init(&l2arc_free_on_write_mtx, NULL, MUTEX_DEFAULT, NULL);
9988 
9989 	l2arc_dev_list = &L2ARC_dev_list;
9990 	l2arc_free_on_write = &L2ARC_free_on_write;
9991 	list_create(l2arc_dev_list, sizeof (l2arc_dev_t),
9992 	    offsetof(l2arc_dev_t, l2ad_node));
9993 	list_create(l2arc_free_on_write, sizeof (l2arc_data_free_t),
9994 	    offsetof(l2arc_data_free_t, l2df_list_node));
9995 }
9996 
9997 void
9998 l2arc_fini(void)
9999 {
10000 	mutex_destroy(&l2arc_feed_thr_lock);
10001 	cv_destroy(&l2arc_feed_thr_cv);
10002 	mutex_destroy(&l2arc_rebuild_thr_lock);
10003 	cv_destroy(&l2arc_rebuild_thr_cv);
10004 	mutex_destroy(&l2arc_dev_mtx);
10005 	mutex_destroy(&l2arc_free_on_write_mtx);
10006 
10007 	list_destroy(l2arc_dev_list);
10008 	list_destroy(l2arc_free_on_write);
10009 }
10010 
10011 void
10012 l2arc_start(void)
10013 {
10014 	if (!(spa_mode_global & SPA_MODE_WRITE))
10015 		return;
10016 
10017 	(void) thread_create(NULL, 0, l2arc_feed_thread, NULL, 0, &p0,
10018 	    TS_RUN, defclsyspri);
10019 }
10020 
10021 void
10022 l2arc_stop(void)
10023 {
10024 	if (!(spa_mode_global & SPA_MODE_WRITE))
10025 		return;
10026 
10027 	mutex_enter(&l2arc_feed_thr_lock);
10028 	cv_signal(&l2arc_feed_thr_cv);	/* kick thread out of startup */
10029 	l2arc_thread_exit = 1;
10030 	while (l2arc_thread_exit != 0)
10031 		cv_wait(&l2arc_feed_thr_cv, &l2arc_feed_thr_lock);
10032 	mutex_exit(&l2arc_feed_thr_lock);
10033 }
10034 
10035 /*
10036  * Punches out rebuild threads for the L2ARC devices in a spa. This should
10037  * be called after pool import from the spa async thread, since starting
10038  * these threads directly from spa_import() will make them part of the
10039  * "zpool import" context and delay process exit (and thus pool import).
10040  */
10041 void
10042 l2arc_spa_rebuild_start(spa_t *spa)
10043 {
10044 	ASSERT(MUTEX_HELD(&spa_namespace_lock));
10045 
10046 	/*
10047 	 * Locate the spa's l2arc devices and kick off rebuild threads.
10048 	 */
10049 	for (int i = 0; i < spa->spa_l2cache.sav_count; i++) {
10050 		l2arc_dev_t *dev =
10051 		    l2arc_vdev_get(spa->spa_l2cache.sav_vdevs[i]);
10052 		if (dev == NULL) {
10053 			/* Don't attempt a rebuild if the vdev is UNAVAIL */
10054 			continue;
10055 		}
10056 		mutex_enter(&l2arc_rebuild_thr_lock);
10057 		if (dev->l2ad_rebuild && !dev->l2ad_rebuild_cancel) {
10058 			dev->l2ad_rebuild_began = B_TRUE;
10059 			(void) thread_create(NULL, 0, l2arc_dev_rebuild_thread,
10060 			    dev, 0, &p0, TS_RUN, minclsyspri);
10061 		}
10062 		mutex_exit(&l2arc_rebuild_thr_lock);
10063 	}
10064 }
10065 
10066 /*
10067  * Main entry point for L2ARC rebuilding.
10068  */
10069 static void
10070 l2arc_dev_rebuild_thread(void *arg)
10071 {
10072 	l2arc_dev_t *dev = arg;
10073 
10074 	VERIFY(!dev->l2ad_rebuild_cancel);
10075 	VERIFY(dev->l2ad_rebuild);
10076 	(void) l2arc_rebuild(dev);
10077 	mutex_enter(&l2arc_rebuild_thr_lock);
10078 	dev->l2ad_rebuild_began = B_FALSE;
10079 	dev->l2ad_rebuild = B_FALSE;
10080 	mutex_exit(&l2arc_rebuild_thr_lock);
10081 
10082 	thread_exit();
10083 }
10084 
10085 /*
10086  * This function implements the actual L2ARC metadata rebuild. It:
10087  * starts reading the log block chain and restores each block's contents
10088  * to memory (reconstructing arc_buf_hdr_t's).
10089  *
10090  * Operation stops under any of the following conditions:
10091  *
10092  * 1) We reach the end of the log block chain.
10093  * 2) We encounter *any* error condition (cksum errors, io errors)
10094  */
10095 static int
10096 l2arc_rebuild(l2arc_dev_t *dev)
10097 {
10098 	vdev_t			*vd = dev->l2ad_vdev;
10099 	spa_t			*spa = vd->vdev_spa;
10100 	int			err = 0;
10101 	l2arc_dev_hdr_phys_t	*l2dhdr = dev->l2ad_dev_hdr;
10102 	l2arc_log_blk_phys_t	*this_lb, *next_lb;
10103 	zio_t			*this_io = NULL, *next_io = NULL;
10104 	l2arc_log_blkptr_t	lbps[2];
10105 	l2arc_lb_ptr_buf_t	*lb_ptr_buf;
10106 	boolean_t		lock_held;
10107 
10108 	this_lb = vmem_zalloc(sizeof (*this_lb), KM_SLEEP);
10109 	next_lb = vmem_zalloc(sizeof (*next_lb), KM_SLEEP);
10110 
10111 	/*
10112 	 * We prevent device removal while issuing reads to the device,
10113 	 * then during the rebuilding phases we drop this lock again so
10114 	 * that a spa_unload or device remove can be initiated - this is
10115 	 * safe, because the spa will signal us to stop before removing
10116 	 * our device and wait for us to stop.
10117 	 */
10118 	spa_config_enter(spa, SCL_L2ARC, vd, RW_READER);
10119 	lock_held = B_TRUE;
10120 
10121 	/*
10122 	 * Retrieve the persistent L2ARC device state.
10123 	 * L2BLK_GET_PSIZE returns aligned size for log blocks.
10124 	 */
10125 	dev->l2ad_evict = MAX(l2dhdr->dh_evict, dev->l2ad_start);
10126 	dev->l2ad_hand = MAX(l2dhdr->dh_start_lbps[0].lbp_daddr +
10127 	    L2BLK_GET_PSIZE((&l2dhdr->dh_start_lbps[0])->lbp_prop),
10128 	    dev->l2ad_start);
10129 	dev->l2ad_first = !!(l2dhdr->dh_flags & L2ARC_DEV_HDR_EVICT_FIRST);
10130 
10131 	vd->vdev_trim_action_time = l2dhdr->dh_trim_action_time;
10132 	vd->vdev_trim_state = l2dhdr->dh_trim_state;
10133 
10134 	/*
10135 	 * In case the zfs module parameter l2arc_rebuild_enabled is false
10136 	 * we do not start the rebuild process.
10137 	 */
10138 	if (!l2arc_rebuild_enabled)
10139 		goto out;
10140 
10141 	/* Prepare the rebuild process */
10142 	bcopy(l2dhdr->dh_start_lbps, lbps, sizeof (lbps));
10143 
10144 	/* Start the rebuild process */
10145 	for (;;) {
10146 		if (!l2arc_log_blkptr_valid(dev, &lbps[0]))
10147 			break;
10148 
10149 		if ((err = l2arc_log_blk_read(dev, &lbps[0], &lbps[1],
10150 		    this_lb, next_lb, this_io, &next_io)) != 0)
10151 			goto out;
10152 
10153 		/*
10154 		 * Our memory pressure valve. If the system is running low
10155 		 * on memory, rather than swamping memory with new ARC buf
10156 		 * hdrs, we opt not to rebuild the L2ARC. At this point,
10157 		 * however, we have already set up our L2ARC dev to chain in
10158 		 * new metadata log blocks, so the user may choose to offline/
10159 		 * online the L2ARC dev at a later time (or re-import the pool)
10160 		 * to reconstruct it (when there's less memory pressure).
10161 		 */
10162 		if (l2arc_hdr_limit_reached()) {
10163 			ARCSTAT_BUMP(arcstat_l2_rebuild_abort_lowmem);
10164 			cmn_err(CE_NOTE, "System running low on memory, "
10165 			    "aborting L2ARC rebuild.");
10166 			err = SET_ERROR(ENOMEM);
10167 			goto out;
10168 		}
10169 
10170 		spa_config_exit(spa, SCL_L2ARC, vd);
10171 		lock_held = B_FALSE;
10172 
10173 		/*
10174 		 * Now that we know that the next_lb checks out alright, we
10175 		 * can start reconstruction from this log block.
10176 		 * L2BLK_GET_PSIZE returns aligned size for log blocks.
10177 		 */
10178 		uint64_t asize = L2BLK_GET_PSIZE((&lbps[0])->lbp_prop);
10179 		l2arc_log_blk_restore(dev, this_lb, asize);
10180 
10181 		/*
10182 		 * log block restored, include its pointer in the list of
10183 		 * pointers to log blocks present in the L2ARC device.
10184 		 */
10185 		lb_ptr_buf = kmem_zalloc(sizeof (l2arc_lb_ptr_buf_t), KM_SLEEP);
10186 		lb_ptr_buf->lb_ptr = kmem_zalloc(sizeof (l2arc_log_blkptr_t),
10187 		    KM_SLEEP);
10188 		bcopy(&lbps[0], lb_ptr_buf->lb_ptr,
10189 		    sizeof (l2arc_log_blkptr_t));
10190 		mutex_enter(&dev->l2ad_mtx);
10191 		list_insert_tail(&dev->l2ad_lbptr_list, lb_ptr_buf);
10192 		ARCSTAT_INCR(arcstat_l2_log_blk_asize, asize);
10193 		ARCSTAT_BUMP(arcstat_l2_log_blk_count);
10194 		zfs_refcount_add_many(&dev->l2ad_lb_asize, asize, lb_ptr_buf);
10195 		zfs_refcount_add(&dev->l2ad_lb_count, lb_ptr_buf);
10196 		mutex_exit(&dev->l2ad_mtx);
10197 		vdev_space_update(vd, asize, 0, 0);
10198 
10199 		/*
10200 		 * Protection against loops of log blocks:
10201 		 *
10202 		 *				       l2ad_hand  l2ad_evict
10203 		 *                                         V	      V
10204 		 * l2ad_start |=======================================| l2ad_end
10205 		 *             -----|||----|||---|||----|||
10206 		 *                  (3)    (2)   (1)    (0)
10207 		 *             ---|||---|||----|||---|||
10208 		 *		  (7)   (6)    (5)   (4)
10209 		 *
10210 		 * In this situation the pointer of log block (4) passes
10211 		 * l2arc_log_blkptr_valid() but the log block should not be
10212 		 * restored as it is overwritten by the payload of log block
10213 		 * (0). Only log blocks (0)-(3) should be restored. We check
10214 		 * whether l2ad_evict lies in between the payload starting
10215 		 * offset of the next log block (lbps[1].lbp_payload_start)
10216 		 * and the payload starting offset of the present log block
10217 		 * (lbps[0].lbp_payload_start). If true and this isn't the
10218 		 * first pass, we are looping from the beginning and we should
10219 		 * stop.
10220 		 */
10221 		if (l2arc_range_check_overlap(lbps[1].lbp_payload_start,
10222 		    lbps[0].lbp_payload_start, dev->l2ad_evict) &&
10223 		    !dev->l2ad_first)
10224 			goto out;
10225 
10226 		cond_resched();
10227 		for (;;) {
10228 			mutex_enter(&l2arc_rebuild_thr_lock);
10229 			if (dev->l2ad_rebuild_cancel) {
10230 				dev->l2ad_rebuild = B_FALSE;
10231 				cv_signal(&l2arc_rebuild_thr_cv);
10232 				mutex_exit(&l2arc_rebuild_thr_lock);
10233 				err = SET_ERROR(ECANCELED);
10234 				goto out;
10235 			}
10236 			mutex_exit(&l2arc_rebuild_thr_lock);
10237 			if (spa_config_tryenter(spa, SCL_L2ARC, vd,
10238 			    RW_READER)) {
10239 				lock_held = B_TRUE;
10240 				break;
10241 			}
10242 			/*
10243 			 * L2ARC config lock held by somebody in writer,
10244 			 * possibly due to them trying to remove us. They'll
10245 			 * likely to want us to shut down, so after a little
10246 			 * delay, we check l2ad_rebuild_cancel and retry
10247 			 * the lock again.
10248 			 */
10249 			delay(1);
10250 		}
10251 
10252 		/*
10253 		 * Continue with the next log block.
10254 		 */
10255 		lbps[0] = lbps[1];
10256 		lbps[1] = this_lb->lb_prev_lbp;
10257 		PTR_SWAP(this_lb, next_lb);
10258 		this_io = next_io;
10259 		next_io = NULL;
10260 	}
10261 
10262 	if (this_io != NULL)
10263 		l2arc_log_blk_fetch_abort(this_io);
10264 out:
10265 	if (next_io != NULL)
10266 		l2arc_log_blk_fetch_abort(next_io);
10267 	vmem_free(this_lb, sizeof (*this_lb));
10268 	vmem_free(next_lb, sizeof (*next_lb));
10269 
10270 	if (!l2arc_rebuild_enabled) {
10271 		spa_history_log_internal(spa, "L2ARC rebuild", NULL,
10272 		    "disabled");
10273 	} else if (err == 0 && zfs_refcount_count(&dev->l2ad_lb_count) > 0) {
10274 		ARCSTAT_BUMP(arcstat_l2_rebuild_success);
10275 		spa_history_log_internal(spa, "L2ARC rebuild", NULL,
10276 		    "successful, restored %llu blocks",
10277 		    (u_longlong_t)zfs_refcount_count(&dev->l2ad_lb_count));
10278 	} else if (err == 0 && zfs_refcount_count(&dev->l2ad_lb_count) == 0) {
10279 		/*
10280 		 * No error but also nothing restored, meaning the lbps array
10281 		 * in the device header points to invalid/non-present log
10282 		 * blocks. Reset the header.
10283 		 */
10284 		spa_history_log_internal(spa, "L2ARC rebuild", NULL,
10285 		    "no valid log blocks");
10286 		bzero(l2dhdr, dev->l2ad_dev_hdr_asize);
10287 		l2arc_dev_hdr_update(dev);
10288 	} else if (err == ECANCELED) {
10289 		/*
10290 		 * In case the rebuild was canceled do not log to spa history
10291 		 * log as the pool may be in the process of being removed.
10292 		 */
10293 		zfs_dbgmsg("L2ARC rebuild aborted, restored %llu blocks",
10294 		    (u_longlong_t)zfs_refcount_count(&dev->l2ad_lb_count));
10295 	} else if (err != 0) {
10296 		spa_history_log_internal(spa, "L2ARC rebuild", NULL,
10297 		    "aborted, restored %llu blocks",
10298 		    (u_longlong_t)zfs_refcount_count(&dev->l2ad_lb_count));
10299 	}
10300 
10301 	if (lock_held)
10302 		spa_config_exit(spa, SCL_L2ARC, vd);
10303 
10304 	return (err);
10305 }
10306 
10307 /*
10308  * Attempts to read the device header on the provided L2ARC device and writes
10309  * it to `hdr'. On success, this function returns 0, otherwise the appropriate
10310  * error code is returned.
10311  */
10312 static int
10313 l2arc_dev_hdr_read(l2arc_dev_t *dev)
10314 {
10315 	int			err;
10316 	uint64_t		guid;
10317 	l2arc_dev_hdr_phys_t	*l2dhdr = dev->l2ad_dev_hdr;
10318 	const uint64_t		l2dhdr_asize = dev->l2ad_dev_hdr_asize;
10319 	abd_t 			*abd;
10320 
10321 	guid = spa_guid(dev->l2ad_vdev->vdev_spa);
10322 
10323 	abd = abd_get_from_buf(l2dhdr, l2dhdr_asize);
10324 
10325 	err = zio_wait(zio_read_phys(NULL, dev->l2ad_vdev,
10326 	    VDEV_LABEL_START_SIZE, l2dhdr_asize, abd,
10327 	    ZIO_CHECKSUM_LABEL, NULL, NULL, ZIO_PRIORITY_SYNC_READ,
10328 	    ZIO_FLAG_DONT_CACHE | ZIO_FLAG_CANFAIL |
10329 	    ZIO_FLAG_DONT_PROPAGATE | ZIO_FLAG_DONT_RETRY |
10330 	    ZIO_FLAG_SPECULATIVE, B_FALSE));
10331 
10332 	abd_free(abd);
10333 
10334 	if (err != 0) {
10335 		ARCSTAT_BUMP(arcstat_l2_rebuild_abort_dh_errors);
10336 		zfs_dbgmsg("L2ARC IO error (%d) while reading device header, "
10337 		    "vdev guid: %llu", err,
10338 		    (u_longlong_t)dev->l2ad_vdev->vdev_guid);
10339 		return (err);
10340 	}
10341 
10342 	if (l2dhdr->dh_magic == BSWAP_64(L2ARC_DEV_HDR_MAGIC))
10343 		byteswap_uint64_array(l2dhdr, sizeof (*l2dhdr));
10344 
10345 	if (l2dhdr->dh_magic != L2ARC_DEV_HDR_MAGIC ||
10346 	    l2dhdr->dh_spa_guid != guid ||
10347 	    l2dhdr->dh_vdev_guid != dev->l2ad_vdev->vdev_guid ||
10348 	    l2dhdr->dh_version != L2ARC_PERSISTENT_VERSION ||
10349 	    l2dhdr->dh_log_entries != dev->l2ad_log_entries ||
10350 	    l2dhdr->dh_end != dev->l2ad_end ||
10351 	    !l2arc_range_check_overlap(dev->l2ad_start, dev->l2ad_end,
10352 	    l2dhdr->dh_evict) ||
10353 	    (l2dhdr->dh_trim_state != VDEV_TRIM_COMPLETE &&
10354 	    l2arc_trim_ahead > 0)) {
10355 		/*
10356 		 * Attempt to rebuild a device containing no actual dev hdr
10357 		 * or containing a header from some other pool or from another
10358 		 * version of persistent L2ARC.
10359 		 */
10360 		ARCSTAT_BUMP(arcstat_l2_rebuild_abort_unsupported);
10361 		return (SET_ERROR(ENOTSUP));
10362 	}
10363 
10364 	return (0);
10365 }
10366 
10367 /*
10368  * Reads L2ARC log blocks from storage and validates their contents.
10369  *
10370  * This function implements a simple fetcher to make sure that while
10371  * we're processing one buffer the L2ARC is already fetching the next
10372  * one in the chain.
10373  *
10374  * The arguments this_lp and next_lp point to the current and next log block
10375  * address in the block chain. Similarly, this_lb and next_lb hold the
10376  * l2arc_log_blk_phys_t's of the current and next L2ARC blk.
10377  *
10378  * The `this_io' and `next_io' arguments are used for block fetching.
10379  * When issuing the first blk IO during rebuild, you should pass NULL for
10380  * `this_io'. This function will then issue a sync IO to read the block and
10381  * also issue an async IO to fetch the next block in the block chain. The
10382  * fetched IO is returned in `next_io'. On subsequent calls to this
10383  * function, pass the value returned in `next_io' from the previous call
10384  * as `this_io' and a fresh `next_io' pointer to hold the next fetch IO.
10385  * Prior to the call, you should initialize your `next_io' pointer to be
10386  * NULL. If no fetch IO was issued, the pointer is left set at NULL.
10387  *
10388  * On success, this function returns 0, otherwise it returns an appropriate
10389  * error code. On error the fetching IO is aborted and cleared before
10390  * returning from this function. Therefore, if we return `success', the
10391  * caller can assume that we have taken care of cleanup of fetch IOs.
10392  */
10393 static int
10394 l2arc_log_blk_read(l2arc_dev_t *dev,
10395     const l2arc_log_blkptr_t *this_lbp, const l2arc_log_blkptr_t *next_lbp,
10396     l2arc_log_blk_phys_t *this_lb, l2arc_log_blk_phys_t *next_lb,
10397     zio_t *this_io, zio_t **next_io)
10398 {
10399 	int		err = 0;
10400 	zio_cksum_t	cksum;
10401 	abd_t		*abd = NULL;
10402 	uint64_t	asize;
10403 
10404 	ASSERT(this_lbp != NULL && next_lbp != NULL);
10405 	ASSERT(this_lb != NULL && next_lb != NULL);
10406 	ASSERT(next_io != NULL && *next_io == NULL);
10407 	ASSERT(l2arc_log_blkptr_valid(dev, this_lbp));
10408 
10409 	/*
10410 	 * Check to see if we have issued the IO for this log block in a
10411 	 * previous run. If not, this is the first call, so issue it now.
10412 	 */
10413 	if (this_io == NULL) {
10414 		this_io = l2arc_log_blk_fetch(dev->l2ad_vdev, this_lbp,
10415 		    this_lb);
10416 	}
10417 
10418 	/*
10419 	 * Peek to see if we can start issuing the next IO immediately.
10420 	 */
10421 	if (l2arc_log_blkptr_valid(dev, next_lbp)) {
10422 		/*
10423 		 * Start issuing IO for the next log block early - this
10424 		 * should help keep the L2ARC device busy while we
10425 		 * decompress and restore this log block.
10426 		 */
10427 		*next_io = l2arc_log_blk_fetch(dev->l2ad_vdev, next_lbp,
10428 		    next_lb);
10429 	}
10430 
10431 	/* Wait for the IO to read this log block to complete */
10432 	if ((err = zio_wait(this_io)) != 0) {
10433 		ARCSTAT_BUMP(arcstat_l2_rebuild_abort_io_errors);
10434 		zfs_dbgmsg("L2ARC IO error (%d) while reading log block, "
10435 		    "offset: %llu, vdev guid: %llu", err,
10436 		    (u_longlong_t)this_lbp->lbp_daddr,
10437 		    (u_longlong_t)dev->l2ad_vdev->vdev_guid);
10438 		goto cleanup;
10439 	}
10440 
10441 	/*
10442 	 * Make sure the buffer checks out.
10443 	 * L2BLK_GET_PSIZE returns aligned size for log blocks.
10444 	 */
10445 	asize = L2BLK_GET_PSIZE((this_lbp)->lbp_prop);
10446 	fletcher_4_native(this_lb, asize, NULL, &cksum);
10447 	if (!ZIO_CHECKSUM_EQUAL(cksum, this_lbp->lbp_cksum)) {
10448 		ARCSTAT_BUMP(arcstat_l2_rebuild_abort_cksum_lb_errors);
10449 		zfs_dbgmsg("L2ARC log block cksum failed, offset: %llu, "
10450 		    "vdev guid: %llu, l2ad_hand: %llu, l2ad_evict: %llu",
10451 		    (u_longlong_t)this_lbp->lbp_daddr,
10452 		    (u_longlong_t)dev->l2ad_vdev->vdev_guid,
10453 		    (u_longlong_t)dev->l2ad_hand,
10454 		    (u_longlong_t)dev->l2ad_evict);
10455 		err = SET_ERROR(ECKSUM);
10456 		goto cleanup;
10457 	}
10458 
10459 	/* Now we can take our time decoding this buffer */
10460 	switch (L2BLK_GET_COMPRESS((this_lbp)->lbp_prop)) {
10461 	case ZIO_COMPRESS_OFF:
10462 		break;
10463 	case ZIO_COMPRESS_LZ4:
10464 		abd = abd_alloc_for_io(asize, B_TRUE);
10465 		abd_copy_from_buf_off(abd, this_lb, 0, asize);
10466 		if ((err = zio_decompress_data(
10467 		    L2BLK_GET_COMPRESS((this_lbp)->lbp_prop),
10468 		    abd, this_lb, asize, sizeof (*this_lb), NULL)) != 0) {
10469 			err = SET_ERROR(EINVAL);
10470 			goto cleanup;
10471 		}
10472 		break;
10473 	default:
10474 		err = SET_ERROR(EINVAL);
10475 		goto cleanup;
10476 	}
10477 	if (this_lb->lb_magic == BSWAP_64(L2ARC_LOG_BLK_MAGIC))
10478 		byteswap_uint64_array(this_lb, sizeof (*this_lb));
10479 	if (this_lb->lb_magic != L2ARC_LOG_BLK_MAGIC) {
10480 		err = SET_ERROR(EINVAL);
10481 		goto cleanup;
10482 	}
10483 cleanup:
10484 	/* Abort an in-flight fetch I/O in case of error */
10485 	if (err != 0 && *next_io != NULL) {
10486 		l2arc_log_blk_fetch_abort(*next_io);
10487 		*next_io = NULL;
10488 	}
10489 	if (abd != NULL)
10490 		abd_free(abd);
10491 	return (err);
10492 }
10493 
10494 /*
10495  * Restores the payload of a log block to ARC. This creates empty ARC hdr
10496  * entries which only contain an l2arc hdr, essentially restoring the
10497  * buffers to their L2ARC evicted state. This function also updates space
10498  * usage on the L2ARC vdev to make sure it tracks restored buffers.
10499  */
10500 static void
10501 l2arc_log_blk_restore(l2arc_dev_t *dev, const l2arc_log_blk_phys_t *lb,
10502     uint64_t lb_asize)
10503 {
10504 	uint64_t	size = 0, asize = 0;
10505 	uint64_t	log_entries = dev->l2ad_log_entries;
10506 
10507 	/*
10508 	 * Usually arc_adapt() is called only for data, not headers, but
10509 	 * since we may allocate significant amount of memory here, let ARC
10510 	 * grow its arc_c.
10511 	 */
10512 	arc_adapt(log_entries * HDR_L2ONLY_SIZE, arc_l2c_only);
10513 
10514 	for (int i = log_entries - 1; i >= 0; i--) {
10515 		/*
10516 		 * Restore goes in the reverse temporal direction to preserve
10517 		 * correct temporal ordering of buffers in the l2ad_buflist.
10518 		 * l2arc_hdr_restore also does a list_insert_tail instead of
10519 		 * list_insert_head on the l2ad_buflist:
10520 		 *
10521 		 *		LIST	l2ad_buflist		LIST
10522 		 *		HEAD  <------ (time) ------	TAIL
10523 		 * direction	+-----+-----+-----+-----+-----+    direction
10524 		 * of l2arc <== | buf | buf | buf | buf | buf | ===> of rebuild
10525 		 * fill		+-----+-----+-----+-----+-----+
10526 		 *		^				^
10527 		 *		|				|
10528 		 *		|				|
10529 		 *	l2arc_feed_thread		l2arc_rebuild
10530 		 *	will place new bufs here	restores bufs here
10531 		 *
10532 		 * During l2arc_rebuild() the device is not used by
10533 		 * l2arc_feed_thread() as dev->l2ad_rebuild is set to true.
10534 		 */
10535 		size += L2BLK_GET_LSIZE((&lb->lb_entries[i])->le_prop);
10536 		asize += vdev_psize_to_asize(dev->l2ad_vdev,
10537 		    L2BLK_GET_PSIZE((&lb->lb_entries[i])->le_prop));
10538 		l2arc_hdr_restore(&lb->lb_entries[i], dev);
10539 	}
10540 
10541 	/*
10542 	 * Record rebuild stats:
10543 	 *	size		Logical size of restored buffers in the L2ARC
10544 	 *	asize		Aligned size of restored buffers in the L2ARC
10545 	 */
10546 	ARCSTAT_INCR(arcstat_l2_rebuild_size, size);
10547 	ARCSTAT_INCR(arcstat_l2_rebuild_asize, asize);
10548 	ARCSTAT_INCR(arcstat_l2_rebuild_bufs, log_entries);
10549 	ARCSTAT_F_AVG(arcstat_l2_log_blk_avg_asize, lb_asize);
10550 	ARCSTAT_F_AVG(arcstat_l2_data_to_meta_ratio, asize / lb_asize);
10551 	ARCSTAT_BUMP(arcstat_l2_rebuild_log_blks);
10552 }
10553 
10554 /*
10555  * Restores a single ARC buf hdr from a log entry. The ARC buffer is put
10556  * into a state indicating that it has been evicted to L2ARC.
10557  */
10558 static void
10559 l2arc_hdr_restore(const l2arc_log_ent_phys_t *le, l2arc_dev_t *dev)
10560 {
10561 	arc_buf_hdr_t		*hdr, *exists;
10562 	kmutex_t		*hash_lock;
10563 	arc_buf_contents_t	type = L2BLK_GET_TYPE((le)->le_prop);
10564 	uint64_t		asize;
10565 
10566 	/*
10567 	 * Do all the allocation before grabbing any locks, this lets us
10568 	 * sleep if memory is full and we don't have to deal with failed
10569 	 * allocations.
10570 	 */
10571 	hdr = arc_buf_alloc_l2only(L2BLK_GET_LSIZE((le)->le_prop), type,
10572 	    dev, le->le_dva, le->le_daddr,
10573 	    L2BLK_GET_PSIZE((le)->le_prop), le->le_birth,
10574 	    L2BLK_GET_COMPRESS((le)->le_prop), le->le_complevel,
10575 	    L2BLK_GET_PROTECTED((le)->le_prop),
10576 	    L2BLK_GET_PREFETCH((le)->le_prop),
10577 	    L2BLK_GET_STATE((le)->le_prop));
10578 	asize = vdev_psize_to_asize(dev->l2ad_vdev,
10579 	    L2BLK_GET_PSIZE((le)->le_prop));
10580 
10581 	/*
10582 	 * vdev_space_update() has to be called before arc_hdr_destroy() to
10583 	 * avoid underflow since the latter also calls vdev_space_update().
10584 	 */
10585 	l2arc_hdr_arcstats_increment(hdr);
10586 	vdev_space_update(dev->l2ad_vdev, asize, 0, 0);
10587 
10588 	mutex_enter(&dev->l2ad_mtx);
10589 	list_insert_tail(&dev->l2ad_buflist, hdr);
10590 	(void) zfs_refcount_add_many(&dev->l2ad_alloc, arc_hdr_size(hdr), hdr);
10591 	mutex_exit(&dev->l2ad_mtx);
10592 
10593 	exists = buf_hash_insert(hdr, &hash_lock);
10594 	if (exists) {
10595 		/* Buffer was already cached, no need to restore it. */
10596 		arc_hdr_destroy(hdr);
10597 		/*
10598 		 * If the buffer is already cached, check whether it has
10599 		 * L2ARC metadata. If not, enter them and update the flag.
10600 		 * This is important is case of onlining a cache device, since
10601 		 * we previously evicted all L2ARC metadata from ARC.
10602 		 */
10603 		if (!HDR_HAS_L2HDR(exists)) {
10604 			arc_hdr_set_flags(exists, ARC_FLAG_HAS_L2HDR);
10605 			exists->b_l2hdr.b_dev = dev;
10606 			exists->b_l2hdr.b_daddr = le->le_daddr;
10607 			exists->b_l2hdr.b_arcs_state =
10608 			    L2BLK_GET_STATE((le)->le_prop);
10609 			mutex_enter(&dev->l2ad_mtx);
10610 			list_insert_tail(&dev->l2ad_buflist, exists);
10611 			(void) zfs_refcount_add_many(&dev->l2ad_alloc,
10612 			    arc_hdr_size(exists), exists);
10613 			mutex_exit(&dev->l2ad_mtx);
10614 			l2arc_hdr_arcstats_increment(exists);
10615 			vdev_space_update(dev->l2ad_vdev, asize, 0, 0);
10616 		}
10617 		ARCSTAT_BUMP(arcstat_l2_rebuild_bufs_precached);
10618 	}
10619 
10620 	mutex_exit(hash_lock);
10621 }
10622 
10623 /*
10624  * Starts an asynchronous read IO to read a log block. This is used in log
10625  * block reconstruction to start reading the next block before we are done
10626  * decoding and reconstructing the current block, to keep the l2arc device
10627  * nice and hot with read IO to process.
10628  * The returned zio will contain a newly allocated memory buffers for the IO
10629  * data which should then be freed by the caller once the zio is no longer
10630  * needed (i.e. due to it having completed). If you wish to abort this
10631  * zio, you should do so using l2arc_log_blk_fetch_abort, which takes
10632  * care of disposing of the allocated buffers correctly.
10633  */
10634 static zio_t *
10635 l2arc_log_blk_fetch(vdev_t *vd, const l2arc_log_blkptr_t *lbp,
10636     l2arc_log_blk_phys_t *lb)
10637 {
10638 	uint32_t		asize;
10639 	zio_t			*pio;
10640 	l2arc_read_callback_t	*cb;
10641 
10642 	/* L2BLK_GET_PSIZE returns aligned size for log blocks */
10643 	asize = L2BLK_GET_PSIZE((lbp)->lbp_prop);
10644 	ASSERT(asize <= sizeof (l2arc_log_blk_phys_t));
10645 
10646 	cb = kmem_zalloc(sizeof (l2arc_read_callback_t), KM_SLEEP);
10647 	cb->l2rcb_abd = abd_get_from_buf(lb, asize);
10648 	pio = zio_root(vd->vdev_spa, l2arc_blk_fetch_done, cb,
10649 	    ZIO_FLAG_DONT_CACHE | ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_PROPAGATE |
10650 	    ZIO_FLAG_DONT_RETRY);
10651 	(void) zio_nowait(zio_read_phys(pio, vd, lbp->lbp_daddr, asize,
10652 	    cb->l2rcb_abd, ZIO_CHECKSUM_OFF, NULL, NULL,
10653 	    ZIO_PRIORITY_ASYNC_READ, ZIO_FLAG_DONT_CACHE | ZIO_FLAG_CANFAIL |
10654 	    ZIO_FLAG_DONT_PROPAGATE | ZIO_FLAG_DONT_RETRY, B_FALSE));
10655 
10656 	return (pio);
10657 }
10658 
10659 /*
10660  * Aborts a zio returned from l2arc_log_blk_fetch and frees the data
10661  * buffers allocated for it.
10662  */
10663 static void
10664 l2arc_log_blk_fetch_abort(zio_t *zio)
10665 {
10666 	(void) zio_wait(zio);
10667 }
10668 
10669 /*
10670  * Creates a zio to update the device header on an l2arc device.
10671  */
10672 void
10673 l2arc_dev_hdr_update(l2arc_dev_t *dev)
10674 {
10675 	l2arc_dev_hdr_phys_t	*l2dhdr = dev->l2ad_dev_hdr;
10676 	const uint64_t		l2dhdr_asize = dev->l2ad_dev_hdr_asize;
10677 	abd_t			*abd;
10678 	int			err;
10679 
10680 	VERIFY(spa_config_held(dev->l2ad_spa, SCL_STATE_ALL, RW_READER));
10681 
10682 	l2dhdr->dh_magic = L2ARC_DEV_HDR_MAGIC;
10683 	l2dhdr->dh_version = L2ARC_PERSISTENT_VERSION;
10684 	l2dhdr->dh_spa_guid = spa_guid(dev->l2ad_vdev->vdev_spa);
10685 	l2dhdr->dh_vdev_guid = dev->l2ad_vdev->vdev_guid;
10686 	l2dhdr->dh_log_entries = dev->l2ad_log_entries;
10687 	l2dhdr->dh_evict = dev->l2ad_evict;
10688 	l2dhdr->dh_start = dev->l2ad_start;
10689 	l2dhdr->dh_end = dev->l2ad_end;
10690 	l2dhdr->dh_lb_asize = zfs_refcount_count(&dev->l2ad_lb_asize);
10691 	l2dhdr->dh_lb_count = zfs_refcount_count(&dev->l2ad_lb_count);
10692 	l2dhdr->dh_flags = 0;
10693 	l2dhdr->dh_trim_action_time = dev->l2ad_vdev->vdev_trim_action_time;
10694 	l2dhdr->dh_trim_state = dev->l2ad_vdev->vdev_trim_state;
10695 	if (dev->l2ad_first)
10696 		l2dhdr->dh_flags |= L2ARC_DEV_HDR_EVICT_FIRST;
10697 
10698 	abd = abd_get_from_buf(l2dhdr, l2dhdr_asize);
10699 
10700 	err = zio_wait(zio_write_phys(NULL, dev->l2ad_vdev,
10701 	    VDEV_LABEL_START_SIZE, l2dhdr_asize, abd, ZIO_CHECKSUM_LABEL, NULL,
10702 	    NULL, ZIO_PRIORITY_ASYNC_WRITE, ZIO_FLAG_CANFAIL, B_FALSE));
10703 
10704 	abd_free(abd);
10705 
10706 	if (err != 0) {
10707 		zfs_dbgmsg("L2ARC IO error (%d) while writing device header, "
10708 		    "vdev guid: %llu", err,
10709 		    (u_longlong_t)dev->l2ad_vdev->vdev_guid);
10710 	}
10711 }
10712 
10713 /*
10714  * Commits a log block to the L2ARC device. This routine is invoked from
10715  * l2arc_write_buffers when the log block fills up.
10716  * This function allocates some memory to temporarily hold the serialized
10717  * buffer to be written. This is then released in l2arc_write_done.
10718  */
10719 static void
10720 l2arc_log_blk_commit(l2arc_dev_t *dev, zio_t *pio, l2arc_write_callback_t *cb)
10721 {
10722 	l2arc_log_blk_phys_t	*lb = &dev->l2ad_log_blk;
10723 	l2arc_dev_hdr_phys_t	*l2dhdr = dev->l2ad_dev_hdr;
10724 	uint64_t		psize, asize;
10725 	zio_t			*wzio;
10726 	l2arc_lb_abd_buf_t	*abd_buf;
10727 	uint8_t			*tmpbuf;
10728 	l2arc_lb_ptr_buf_t	*lb_ptr_buf;
10729 
10730 	VERIFY3S(dev->l2ad_log_ent_idx, ==, dev->l2ad_log_entries);
10731 
10732 	tmpbuf = zio_buf_alloc(sizeof (*lb));
10733 	abd_buf = zio_buf_alloc(sizeof (*abd_buf));
10734 	abd_buf->abd = abd_get_from_buf(lb, sizeof (*lb));
10735 	lb_ptr_buf = kmem_zalloc(sizeof (l2arc_lb_ptr_buf_t), KM_SLEEP);
10736 	lb_ptr_buf->lb_ptr = kmem_zalloc(sizeof (l2arc_log_blkptr_t), KM_SLEEP);
10737 
10738 	/* link the buffer into the block chain */
10739 	lb->lb_prev_lbp = l2dhdr->dh_start_lbps[1];
10740 	lb->lb_magic = L2ARC_LOG_BLK_MAGIC;
10741 
10742 	/*
10743 	 * l2arc_log_blk_commit() may be called multiple times during a single
10744 	 * l2arc_write_buffers() call. Save the allocated abd buffers in a list
10745 	 * so we can free them in l2arc_write_done() later on.
10746 	 */
10747 	list_insert_tail(&cb->l2wcb_abd_list, abd_buf);
10748 
10749 	/* try to compress the buffer */
10750 	psize = zio_compress_data(ZIO_COMPRESS_LZ4,
10751 	    abd_buf->abd, tmpbuf, sizeof (*lb), 0);
10752 
10753 	/* a log block is never entirely zero */
10754 	ASSERT(psize != 0);
10755 	asize = vdev_psize_to_asize(dev->l2ad_vdev, psize);
10756 	ASSERT(asize <= sizeof (*lb));
10757 
10758 	/*
10759 	 * Update the start log block pointer in the device header to point
10760 	 * to the log block we're about to write.
10761 	 */
10762 	l2dhdr->dh_start_lbps[1] = l2dhdr->dh_start_lbps[0];
10763 	l2dhdr->dh_start_lbps[0].lbp_daddr = dev->l2ad_hand;
10764 	l2dhdr->dh_start_lbps[0].lbp_payload_asize =
10765 	    dev->l2ad_log_blk_payload_asize;
10766 	l2dhdr->dh_start_lbps[0].lbp_payload_start =
10767 	    dev->l2ad_log_blk_payload_start;
10768 	L2BLK_SET_LSIZE(
10769 	    (&l2dhdr->dh_start_lbps[0])->lbp_prop, sizeof (*lb));
10770 	L2BLK_SET_PSIZE(
10771 	    (&l2dhdr->dh_start_lbps[0])->lbp_prop, asize);
10772 	L2BLK_SET_CHECKSUM(
10773 	    (&l2dhdr->dh_start_lbps[0])->lbp_prop,
10774 	    ZIO_CHECKSUM_FLETCHER_4);
10775 	if (asize < sizeof (*lb)) {
10776 		/* compression succeeded */
10777 		bzero(tmpbuf + psize, asize - psize);
10778 		L2BLK_SET_COMPRESS(
10779 		    (&l2dhdr->dh_start_lbps[0])->lbp_prop,
10780 		    ZIO_COMPRESS_LZ4);
10781 	} else {
10782 		/* compression failed */
10783 		bcopy(lb, tmpbuf, sizeof (*lb));
10784 		L2BLK_SET_COMPRESS(
10785 		    (&l2dhdr->dh_start_lbps[0])->lbp_prop,
10786 		    ZIO_COMPRESS_OFF);
10787 	}
10788 
10789 	/* checksum what we're about to write */
10790 	fletcher_4_native(tmpbuf, asize, NULL,
10791 	    &l2dhdr->dh_start_lbps[0].lbp_cksum);
10792 
10793 	abd_free(abd_buf->abd);
10794 
10795 	/* perform the write itself */
10796 	abd_buf->abd = abd_get_from_buf(tmpbuf, sizeof (*lb));
10797 	abd_take_ownership_of_buf(abd_buf->abd, B_TRUE);
10798 	wzio = zio_write_phys(pio, dev->l2ad_vdev, dev->l2ad_hand,
10799 	    asize, abd_buf->abd, ZIO_CHECKSUM_OFF, NULL, NULL,
10800 	    ZIO_PRIORITY_ASYNC_WRITE, ZIO_FLAG_CANFAIL, B_FALSE);
10801 	DTRACE_PROBE2(l2arc__write, vdev_t *, dev->l2ad_vdev, zio_t *, wzio);
10802 	(void) zio_nowait(wzio);
10803 
10804 	dev->l2ad_hand += asize;
10805 	/*
10806 	 * Include the committed log block's pointer  in the list of pointers
10807 	 * to log blocks present in the L2ARC device.
10808 	 */
10809 	bcopy(&l2dhdr->dh_start_lbps[0], lb_ptr_buf->lb_ptr,
10810 	    sizeof (l2arc_log_blkptr_t));
10811 	mutex_enter(&dev->l2ad_mtx);
10812 	list_insert_head(&dev->l2ad_lbptr_list, lb_ptr_buf);
10813 	ARCSTAT_INCR(arcstat_l2_log_blk_asize, asize);
10814 	ARCSTAT_BUMP(arcstat_l2_log_blk_count);
10815 	zfs_refcount_add_many(&dev->l2ad_lb_asize, asize, lb_ptr_buf);
10816 	zfs_refcount_add(&dev->l2ad_lb_count, lb_ptr_buf);
10817 	mutex_exit(&dev->l2ad_mtx);
10818 	vdev_space_update(dev->l2ad_vdev, asize, 0, 0);
10819 
10820 	/* bump the kstats */
10821 	ARCSTAT_INCR(arcstat_l2_write_bytes, asize);
10822 	ARCSTAT_BUMP(arcstat_l2_log_blk_writes);
10823 	ARCSTAT_F_AVG(arcstat_l2_log_blk_avg_asize, asize);
10824 	ARCSTAT_F_AVG(arcstat_l2_data_to_meta_ratio,
10825 	    dev->l2ad_log_blk_payload_asize / asize);
10826 
10827 	/* start a new log block */
10828 	dev->l2ad_log_ent_idx = 0;
10829 	dev->l2ad_log_blk_payload_asize = 0;
10830 	dev->l2ad_log_blk_payload_start = 0;
10831 }
10832 
10833 /*
10834  * Validates an L2ARC log block address to make sure that it can be read
10835  * from the provided L2ARC device.
10836  */
10837 boolean_t
10838 l2arc_log_blkptr_valid(l2arc_dev_t *dev, const l2arc_log_blkptr_t *lbp)
10839 {
10840 	/* L2BLK_GET_PSIZE returns aligned size for log blocks */
10841 	uint64_t asize = L2BLK_GET_PSIZE((lbp)->lbp_prop);
10842 	uint64_t end = lbp->lbp_daddr + asize - 1;
10843 	uint64_t start = lbp->lbp_payload_start;
10844 	boolean_t evicted = B_FALSE;
10845 
10846 	/*
10847 	 * A log block is valid if all of the following conditions are true:
10848 	 * - it fits entirely (including its payload) between l2ad_start and
10849 	 *   l2ad_end
10850 	 * - it has a valid size
10851 	 * - neither the log block itself nor part of its payload was evicted
10852 	 *   by l2arc_evict():
10853 	 *
10854 	 *		l2ad_hand          l2ad_evict
10855 	 *		|			 |	lbp_daddr
10856 	 *		|     start		 |	|  end
10857 	 *		|     |			 |	|  |
10858 	 *		V     V		         V	V  V
10859 	 *   l2ad_start ============================================ l2ad_end
10860 	 *                    --------------------------||||
10861 	 *				^		 ^
10862 	 *				|		log block
10863 	 *				payload
10864 	 */
10865 
10866 	evicted =
10867 	    l2arc_range_check_overlap(start, end, dev->l2ad_hand) ||
10868 	    l2arc_range_check_overlap(start, end, dev->l2ad_evict) ||
10869 	    l2arc_range_check_overlap(dev->l2ad_hand, dev->l2ad_evict, start) ||
10870 	    l2arc_range_check_overlap(dev->l2ad_hand, dev->l2ad_evict, end);
10871 
10872 	return (start >= dev->l2ad_start && end <= dev->l2ad_end &&
10873 	    asize > 0 && asize <= sizeof (l2arc_log_blk_phys_t) &&
10874 	    (!evicted || dev->l2ad_first));
10875 }
10876 
10877 /*
10878  * Inserts ARC buffer header `hdr' into the current L2ARC log block on
10879  * the device. The buffer being inserted must be present in L2ARC.
10880  * Returns B_TRUE if the L2ARC log block is full and needs to be committed
10881  * to L2ARC, or B_FALSE if it still has room for more ARC buffers.
10882  */
10883 static boolean_t
10884 l2arc_log_blk_insert(l2arc_dev_t *dev, const arc_buf_hdr_t *hdr)
10885 {
10886 	l2arc_log_blk_phys_t	*lb = &dev->l2ad_log_blk;
10887 	l2arc_log_ent_phys_t	*le;
10888 
10889 	if (dev->l2ad_log_entries == 0)
10890 		return (B_FALSE);
10891 
10892 	int index = dev->l2ad_log_ent_idx++;
10893 
10894 	ASSERT3S(index, <, dev->l2ad_log_entries);
10895 	ASSERT(HDR_HAS_L2HDR(hdr));
10896 
10897 	le = &lb->lb_entries[index];
10898 	bzero(le, sizeof (*le));
10899 	le->le_dva = hdr->b_dva;
10900 	le->le_birth = hdr->b_birth;
10901 	le->le_daddr = hdr->b_l2hdr.b_daddr;
10902 	if (index == 0)
10903 		dev->l2ad_log_blk_payload_start = le->le_daddr;
10904 	L2BLK_SET_LSIZE((le)->le_prop, HDR_GET_LSIZE(hdr));
10905 	L2BLK_SET_PSIZE((le)->le_prop, HDR_GET_PSIZE(hdr));
10906 	L2BLK_SET_COMPRESS((le)->le_prop, HDR_GET_COMPRESS(hdr));
10907 	le->le_complevel = hdr->b_complevel;
10908 	L2BLK_SET_TYPE((le)->le_prop, hdr->b_type);
10909 	L2BLK_SET_PROTECTED((le)->le_prop, !!(HDR_PROTECTED(hdr)));
10910 	L2BLK_SET_PREFETCH((le)->le_prop, !!(HDR_PREFETCH(hdr)));
10911 	L2BLK_SET_STATE((le)->le_prop, hdr->b_l1hdr.b_state->arcs_state);
10912 
10913 	dev->l2ad_log_blk_payload_asize += vdev_psize_to_asize(dev->l2ad_vdev,
10914 	    HDR_GET_PSIZE(hdr));
10915 
10916 	return (dev->l2ad_log_ent_idx == dev->l2ad_log_entries);
10917 }
10918 
10919 /*
10920  * Checks whether a given L2ARC device address sits in a time-sequential
10921  * range. The trick here is that the L2ARC is a rotary buffer, so we can't
10922  * just do a range comparison, we need to handle the situation in which the
10923  * range wraps around the end of the L2ARC device. Arguments:
10924  *	bottom -- Lower end of the range to check (written to earlier).
10925  *	top    -- Upper end of the range to check (written to later).
10926  *	check  -- The address for which we want to determine if it sits in
10927  *		  between the top and bottom.
10928  *
10929  * The 3-way conditional below represents the following cases:
10930  *
10931  *	bottom < top : Sequentially ordered case:
10932  *	  <check>--------+-------------------+
10933  *	                 |  (overlap here?)  |
10934  *	 L2ARC dev       V                   V
10935  *	 |---------------<bottom>============<top>--------------|
10936  *
10937  *	bottom > top: Looped-around case:
10938  *	                      <check>--------+------------------+
10939  *	                                     |  (overlap here?) |
10940  *	 L2ARC dev                           V                  V
10941  *	 |===============<top>---------------<bottom>===========|
10942  *	 ^               ^
10943  *	 |  (or here?)   |
10944  *	 +---------------+---------<check>
10945  *
10946  *	top == bottom : Just a single address comparison.
10947  */
10948 boolean_t
10949 l2arc_range_check_overlap(uint64_t bottom, uint64_t top, uint64_t check)
10950 {
10951 	if (bottom < top)
10952 		return (bottom <= check && check <= top);
10953 	else if (bottom > top)
10954 		return (check <= top || bottom <= check);
10955 	else
10956 		return (check == top);
10957 }
10958 
10959 EXPORT_SYMBOL(arc_buf_size);
10960 EXPORT_SYMBOL(arc_write);
10961 EXPORT_SYMBOL(arc_read);
10962 EXPORT_SYMBOL(arc_buf_info);
10963 EXPORT_SYMBOL(arc_getbuf_func);
10964 EXPORT_SYMBOL(arc_add_prune_callback);
10965 EXPORT_SYMBOL(arc_remove_prune_callback);
10966 
10967 /* BEGIN CSTYLED */
10968 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, min, param_set_arc_long,
10969 	param_get_long, ZMOD_RW, "Min arc size");
10970 
10971 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, max, param_set_arc_long,
10972 	param_get_long, ZMOD_RW, "Max arc size");
10973 
10974 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, meta_limit, param_set_arc_long,
10975 	param_get_long, ZMOD_RW, "Metadata limit for arc size");
10976 
10977 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, meta_limit_percent,
10978 	param_set_arc_long, param_get_long, ZMOD_RW,
10979 	"Percent of arc size for arc meta limit");
10980 
10981 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, meta_min, param_set_arc_long,
10982 	param_get_long, ZMOD_RW, "Min arc metadata");
10983 
10984 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, meta_prune, INT, ZMOD_RW,
10985 	"Meta objects to scan for prune");
10986 
10987 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, meta_adjust_restarts, INT, ZMOD_RW,
10988 	"Limit number of restarts in arc_evict_meta");
10989 
10990 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, meta_strategy, INT, ZMOD_RW,
10991 	"Meta reclaim strategy");
10992 
10993 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, grow_retry, param_set_arc_int,
10994 	param_get_int, ZMOD_RW, "Seconds before growing arc size");
10995 
10996 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, p_dampener_disable, INT, ZMOD_RW,
10997 	"Disable arc_p adapt dampener");
10998 
10999 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, shrink_shift, param_set_arc_int,
11000 	param_get_int, ZMOD_RW, "log2(fraction of arc to reclaim)");
11001 
11002 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, pc_percent, UINT, ZMOD_RW,
11003 	"Percent of pagecache to reclaim arc to");
11004 
11005 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, p_min_shift, param_set_arc_int,
11006 	param_get_int, ZMOD_RW, "arc_c shift to calc min/max arc_p");
11007 
11008 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, average_blocksize, INT, ZMOD_RD,
11009 	"Target average block size");
11010 
11011 ZFS_MODULE_PARAM(zfs, zfs_, compressed_arc_enabled, INT, ZMOD_RW,
11012 	"Disable compressed arc buffers");
11013 
11014 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, min_prefetch_ms, param_set_arc_int,
11015 	param_get_int, ZMOD_RW, "Min life of prefetch block in ms");
11016 
11017 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, min_prescient_prefetch_ms,
11018 	param_set_arc_int, param_get_int, ZMOD_RW,
11019 	"Min life of prescient prefetched block in ms");
11020 
11021 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, write_max, ULONG, ZMOD_RW,
11022 	"Max write bytes per interval");
11023 
11024 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, write_boost, ULONG, ZMOD_RW,
11025 	"Extra write bytes during device warmup");
11026 
11027 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, headroom, ULONG, ZMOD_RW,
11028 	"Number of max device writes to precache");
11029 
11030 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, headroom_boost, ULONG, ZMOD_RW,
11031 	"Compressed l2arc_headroom multiplier");
11032 
11033 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, trim_ahead, ULONG, ZMOD_RW,
11034 	"TRIM ahead L2ARC write size multiplier");
11035 
11036 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, feed_secs, ULONG, ZMOD_RW,
11037 	"Seconds between L2ARC writing");
11038 
11039 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, feed_min_ms, ULONG, ZMOD_RW,
11040 	"Min feed interval in milliseconds");
11041 
11042 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, noprefetch, INT, ZMOD_RW,
11043 	"Skip caching prefetched buffers");
11044 
11045 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, feed_again, INT, ZMOD_RW,
11046 	"Turbo L2ARC warmup");
11047 
11048 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, norw, INT, ZMOD_RW,
11049 	"No reads during writes");
11050 
11051 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, meta_percent, INT, ZMOD_RW,
11052 	"Percent of ARC size allowed for L2ARC-only headers");
11053 
11054 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, rebuild_enabled, INT, ZMOD_RW,
11055 	"Rebuild the L2ARC when importing a pool");
11056 
11057 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, rebuild_blocks_min_l2size, ULONG, ZMOD_RW,
11058 	"Min size in bytes to write rebuild log blocks in L2ARC");
11059 
11060 ZFS_MODULE_PARAM(zfs_l2arc, l2arc_, mfuonly, INT, ZMOD_RW,
11061 	"Cache only MFU data from ARC into L2ARC");
11062 
11063 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, lotsfree_percent, param_set_arc_int,
11064 	param_get_int, ZMOD_RW, "System free memory I/O throttle in bytes");
11065 
11066 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, sys_free, param_set_arc_long,
11067 	param_get_long, ZMOD_RW, "System free memory target size in bytes");
11068 
11069 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, dnode_limit, param_set_arc_long,
11070 	param_get_long, ZMOD_RW, "Minimum bytes of dnodes in arc");
11071 
11072 ZFS_MODULE_PARAM_CALL(zfs_arc, zfs_arc_, dnode_limit_percent,
11073 	param_set_arc_long, param_get_long, ZMOD_RW,
11074 	"Percent of ARC meta buffers for dnodes");
11075 
11076 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, dnode_reduce_percent, ULONG, ZMOD_RW,
11077 	"Percentage of excess dnodes to try to unpin");
11078 
11079 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, eviction_pct, INT, ZMOD_RW,
11080 	"When full, ARC allocation waits for eviction of this % of alloc size");
11081 
11082 ZFS_MODULE_PARAM(zfs_arc, zfs_arc_, evict_batch_limit, INT, ZMOD_RW,
11083 	"The number of headers to evict per sublist before moving to the next");
11084 /* END CSTYLED */
11085