arc.c revision 206795
1168404Spjd/*
2168404Spjd * CDDL HEADER START
3168404Spjd *
4168404Spjd * The contents of this file are subject to the terms of the
5168404Spjd * Common Development and Distribution License (the "License").
6168404Spjd * You may not use this file except in compliance with the License.
7168404Spjd *
8168404Spjd * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9168404Spjd * or http://www.opensolaris.org/os/licensing.
10168404Spjd * See the License for the specific language governing permissions
11168404Spjd * and limitations under the License.
12168404Spjd *
13168404Spjd * When distributing Covered Code, include this CDDL HEADER in each
14168404Spjd * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15168404Spjd * If applicable, add the following below this CDDL HEADER, with the
16168404Spjd * fields enclosed by brackets "[]" replaced with your own identifying
17168404Spjd * information: Portions Copyright [yyyy] [name of copyright owner]
18168404Spjd *
19168404Spjd * CDDL HEADER END
20168404Spjd */
21168404Spjd/*
22185029Spjd * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23168404Spjd * Use is subject to license terms.
24168404Spjd */
25168404Spjd
26168404Spjd/*
27168404Spjd * DVA-based Adjustable Replacement Cache
28168404Spjd *
29168404Spjd * While much of the theory of operation used here is
30168404Spjd * based on the self-tuning, low overhead replacement cache
31168404Spjd * presented by Megiddo and Modha at FAST 2003, there are some
32168404Spjd * significant differences:
33168404Spjd *
34168404Spjd * 1. The Megiddo and Modha model assumes any page is evictable.
35168404Spjd * Pages in its cache cannot be "locked" into memory.  This makes
36168404Spjd * the eviction algorithm simple: evict the last page in the list.
37168404Spjd * This also make the performance characteristics easy to reason
38168404Spjd * about.  Our cache is not so simple.  At any given moment, some
39168404Spjd * subset of the blocks in the cache are un-evictable because we
40168404Spjd * have handed out a reference to them.  Blocks are only evictable
41168404Spjd * when there are no external references active.  This makes
42168404Spjd * eviction far more problematic:  we choose to evict the evictable
43168404Spjd * blocks that are the "lowest" in the list.
44168404Spjd *
45168404Spjd * There are times when it is not possible to evict the requested
46168404Spjd * space.  In these circumstances we are unable to adjust the cache
47168404Spjd * size.  To prevent the cache growing unbounded at these times we
48185029Spjd * implement a "cache throttle" that slows the flow of new data
49185029Spjd * into the cache until we can make space available.
50168404Spjd *
51168404Spjd * 2. The Megiddo and Modha model assumes a fixed cache size.
52168404Spjd * Pages are evicted when the cache is full and there is a cache
53168404Spjd * miss.  Our model has a variable sized cache.  It grows with
54185029Spjd * high use, but also tries to react to memory pressure from the
55168404Spjd * operating system: decreasing its size when system memory is
56168404Spjd * tight.
57168404Spjd *
58168404Spjd * 3. The Megiddo and Modha model assumes a fixed page size. All
59168404Spjd * elements of the cache are therefor exactly the same size.  So
60168404Spjd * when adjusting the cache size following a cache miss, its simply
61168404Spjd * a matter of choosing a single page to evict.  In our model, we
62168404Spjd * have variable sized cache blocks (rangeing from 512 bytes to
63168404Spjd * 128K bytes).  We therefor choose a set of blocks to evict to make
64168404Spjd * space for a cache miss that approximates as closely as possible
65168404Spjd * the space used by the new block.
66168404Spjd *
67168404Spjd * See also:  "ARC: A Self-Tuning, Low Overhead Replacement Cache"
68168404Spjd * by N. Megiddo & D. Modha, FAST 2003
69168404Spjd */
70168404Spjd
71168404Spjd/*
72168404Spjd * The locking model:
73168404Spjd *
74168404Spjd * A new reference to a cache buffer can be obtained in two
75168404Spjd * ways: 1) via a hash table lookup using the DVA as a key,
76185029Spjd * or 2) via one of the ARC lists.  The arc_read() interface
77168404Spjd * uses method 1, while the internal arc algorithms for
78168404Spjd * adjusting the cache use method 2.  We therefor provide two
79168404Spjd * types of locks: 1) the hash table lock array, and 2) the
80168404Spjd * arc list locks.
81168404Spjd *
82168404Spjd * Buffers do not have their own mutexs, rather they rely on the
83168404Spjd * hash table mutexs for the bulk of their protection (i.e. most
84168404Spjd * fields in the arc_buf_hdr_t are protected by these mutexs).
85168404Spjd *
86168404Spjd * buf_hash_find() returns the appropriate mutex (held) when it
87168404Spjd * locates the requested buffer in the hash table.  It returns
88168404Spjd * NULL for the mutex if the buffer was not in the table.
89168404Spjd *
90168404Spjd * buf_hash_remove() expects the appropriate hash mutex to be
91168404Spjd * already held before it is invoked.
92168404Spjd *
93168404Spjd * Each arc state also has a mutex which is used to protect the
94168404Spjd * buffer list associated with the state.  When attempting to
95168404Spjd * obtain a hash table lock while holding an arc list lock you
96168404Spjd * must use: mutex_tryenter() to avoid deadlock.  Also note that
97168404Spjd * the active state mutex must be held before the ghost state mutex.
98168404Spjd *
99168404Spjd * Arc buffers may have an associated eviction callback function.
100168404Spjd * This function will be invoked prior to removing the buffer (e.g.
101168404Spjd * in arc_do_user_evicts()).  Note however that the data associated
102168404Spjd * with the buffer may be evicted prior to the callback.  The callback
103168404Spjd * must be made with *no locks held* (to prevent deadlock).  Additionally,
104168404Spjd * the users of callbacks must ensure that their private data is
105168404Spjd * protected from simultaneous callbacks from arc_buf_evict()
106168404Spjd * and arc_do_user_evicts().
107168404Spjd *
108168404Spjd * Note that the majority of the performance stats are manipulated
109168404Spjd * with atomic operations.
110185029Spjd *
111185029Spjd * The L2ARC uses the l2arc_buflist_mtx global mutex for the following:
112185029Spjd *
113185029Spjd *	- L2ARC buflist creation
114185029Spjd *	- L2ARC buflist eviction
115185029Spjd *	- L2ARC write completion, which walks L2ARC buflists
116185029Spjd *	- ARC header destruction, as it removes from L2ARC buflists
117185029Spjd *	- ARC header release, as it removes from L2ARC buflists
118168404Spjd */
119168404Spjd
120168404Spjd#include <sys/spa.h>
121168404Spjd#include <sys/zio.h>
122168404Spjd#include <sys/zio_checksum.h>
123168404Spjd#include <sys/zfs_context.h>
124168404Spjd#include <sys/arc.h>
125168404Spjd#include <sys/refcount.h>
126185029Spjd#include <sys/vdev.h>
127168404Spjd#ifdef _KERNEL
128168404Spjd#include <sys/dnlc.h>
129168404Spjd#endif
130168404Spjd#include <sys/callb.h>
131168404Spjd#include <sys/kstat.h>
132168404Spjd#include <sys/sdt.h>
133168404Spjd
134205231Skmacy#include <sys/ktr.h>
135191902Skmacy#include <vm/vm_pageout.h>
136191902Skmacy
137168404Spjdstatic kmutex_t		arc_reclaim_thr_lock;
138168404Spjdstatic kcondvar_t	arc_reclaim_thr_cv;	/* used to signal reclaim thr */
139168404Spjdstatic uint8_t		arc_thread_exit;
140168404Spjd
141185029Spjdextern int zfs_write_limit_shift;
142185029Spjdextern uint64_t zfs_write_limit_max;
143185029Spjdextern kmutex_t zfs_write_limit_lock;
144185029Spjd
145168404Spjd#define	ARC_REDUCE_DNLC_PERCENT	3
146168404Spjduint_t arc_reduce_dnlc_percent = ARC_REDUCE_DNLC_PERCENT;
147168404Spjd
148168404Spjdtypedef enum arc_reclaim_strategy {
149168404Spjd	ARC_RECLAIM_AGGR,		/* Aggressive reclaim strategy */
150168404Spjd	ARC_RECLAIM_CONS		/* Conservative reclaim strategy */
151168404Spjd} arc_reclaim_strategy_t;
152168404Spjd
153168404Spjd/* number of seconds before growing cache again */
154168404Spjdstatic int		arc_grow_retry = 60;
155168404Spjd
156168404Spjd/*
157168404Spjd * minimum lifespan of a prefetch block in clock ticks
158168404Spjd * (initialized in arc_init())
159168404Spjd */
160168404Spjdstatic int		arc_min_prefetch_lifespan;
161168404Spjd
162194043Skmacyextern int zfs_prefetch_disable;
163168404Spjdstatic int arc_dead;
164168404Spjd
165168404Spjd/*
166185029Spjd * The arc has filled available memory and has now warmed up.
167185029Spjd */
168185029Spjdstatic boolean_t arc_warm;
169185029Spjd
170185029Spjd/*
171168404Spjd * These tunables are for performance analysis.
172168404Spjd */
173185029Spjduint64_t zfs_arc_max;
174185029Spjduint64_t zfs_arc_min;
175185029Spjduint64_t zfs_arc_meta_limit = 0;
176185029Spjdint zfs_mdcomp_disable = 0;
177185029Spjd
178185029SpjdTUNABLE_QUAD("vfs.zfs.arc_max", &zfs_arc_max);
179185029SpjdTUNABLE_QUAD("vfs.zfs.arc_min", &zfs_arc_min);
180185029SpjdTUNABLE_QUAD("vfs.zfs.arc_meta_limit", &zfs_arc_meta_limit);
181185029SpjdTUNABLE_INT("vfs.zfs.mdcomp_disable", &zfs_mdcomp_disable);
182168473SpjdSYSCTL_DECL(_vfs_zfs);
183185029SpjdSYSCTL_QUAD(_vfs_zfs, OID_AUTO, arc_max, CTLFLAG_RDTUN, &zfs_arc_max, 0,
184168473Spjd    "Maximum ARC size");
185185029SpjdSYSCTL_QUAD(_vfs_zfs, OID_AUTO, arc_min, CTLFLAG_RDTUN, &zfs_arc_min, 0,
186168473Spjd    "Minimum ARC size");
187185029SpjdSYSCTL_INT(_vfs_zfs, OID_AUTO, mdcomp_disable, CTLFLAG_RDTUN,
188185029Spjd    &zfs_mdcomp_disable, 0, "Disable metadata compression");
189168404Spjd
190205231Skmacy#ifdef ZIO_USE_UMA
191205231Skmacyextern kmem_cache_t	*zio_buf_cache[];
192205231Skmacyextern kmem_cache_t	*zio_data_buf_cache[];
193205231Skmacy#endif
194205231Skmacy
195168404Spjd/*
196185029Spjd * Note that buffers can be in one of 6 states:
197168404Spjd *	ARC_anon	- anonymous (discussed below)
198168404Spjd *	ARC_mru		- recently used, currently cached
199168404Spjd *	ARC_mru_ghost	- recentely used, no longer in cache
200168404Spjd *	ARC_mfu		- frequently used, currently cached
201168404Spjd *	ARC_mfu_ghost	- frequently used, no longer in cache
202185029Spjd *	ARC_l2c_only	- exists in L2ARC but not other states
203185029Spjd * When there are no active references to the buffer, they are
204185029Spjd * are linked onto a list in one of these arc states.  These are
205185029Spjd * the only buffers that can be evicted or deleted.  Within each
206185029Spjd * state there are multiple lists, one for meta-data and one for
207185029Spjd * non-meta-data.  Meta-data (indirect blocks, blocks of dnodes,
208185029Spjd * etc.) is tracked separately so that it can be managed more
209185029Spjd * explicitly: favored over data, limited explicitly.
210168404Spjd *
211168404Spjd * Anonymous buffers are buffers that are not associated with
212168404Spjd * a DVA.  These are buffers that hold dirty block copies
213168404Spjd * before they are written to stable storage.  By definition,
214168404Spjd * they are "ref'd" and are considered part of arc_mru
215168404Spjd * that cannot be freed.  Generally, they will aquire a DVA
216168404Spjd * as they are written and migrate onto the arc_mru list.
217185029Spjd *
218185029Spjd * The ARC_l2c_only state is for buffers that are in the second
219185029Spjd * level ARC but no longer in any of the ARC_m* lists.  The second
220185029Spjd * level ARC itself may also contain buffers that are in any of
221185029Spjd * the ARC_m* states - meaning that a buffer can exist in two
222185029Spjd * places.  The reason for the ARC_l2c_only state is to keep the
223185029Spjd * buffer header in the hash table, so that reads that hit the
224185029Spjd * second level ARC benefit from these fast lookups.
225168404Spjd */
226168404Spjd
227205264Skmacy#define	ARCS_LOCK_PAD		CACHE_LINE_SIZE
228205231Skmacystruct arcs_lock {
229205231Skmacy	kmutex_t	arcs_lock;
230205231Skmacy#ifdef _KERNEL
231205231Skmacy	unsigned char	pad[(ARCS_LOCK_PAD - sizeof (kmutex_t))];
232205231Skmacy#endif
233205231Skmacy};
234205231Skmacy
235205231Skmacy/*
236205231Skmacy * must be power of two for mask use to work
237205231Skmacy *
238205231Skmacy */
239205231Skmacy#define ARC_BUFC_NUMDATALISTS		16
240205231Skmacy#define ARC_BUFC_NUMMETADATALISTS	16
241205231Skmacy#define ARC_BUFC_NUMLISTS	(ARC_BUFC_NUMMETADATALISTS+ARC_BUFC_NUMDATALISTS)
242205231Skmacy
243168404Spjdtypedef struct arc_state {
244185029Spjd	uint64_t arcs_lsize[ARC_BUFC_NUMTYPES];	/* amount of evictable data */
245185029Spjd	uint64_t arcs_size;	/* total amount of data in this state */
246205231Skmacy	list_t	arcs_lists[ARC_BUFC_NUMLISTS]; /* list of evictable buffers */
247205264Skmacy	struct arcs_lock arcs_locks[ARC_BUFC_NUMLISTS] __aligned(CACHE_LINE_SIZE);
248168404Spjd} arc_state_t;
249168404Spjd
250205231Skmacy#define ARCS_LOCK(s, i) &((s)->arcs_locks[(i)].arcs_lock)
251205231Skmacy
252185029Spjd/* The 6 states: */
253168404Spjdstatic arc_state_t ARC_anon;
254168404Spjdstatic arc_state_t ARC_mru;
255168404Spjdstatic arc_state_t ARC_mru_ghost;
256168404Spjdstatic arc_state_t ARC_mfu;
257168404Spjdstatic arc_state_t ARC_mfu_ghost;
258185029Spjdstatic arc_state_t ARC_l2c_only;
259168404Spjd
260168404Spjdtypedef struct arc_stats {
261168404Spjd	kstat_named_t arcstat_hits;
262168404Spjd	kstat_named_t arcstat_misses;
263168404Spjd	kstat_named_t arcstat_demand_data_hits;
264168404Spjd	kstat_named_t arcstat_demand_data_misses;
265168404Spjd	kstat_named_t arcstat_demand_metadata_hits;
266168404Spjd	kstat_named_t arcstat_demand_metadata_misses;
267168404Spjd	kstat_named_t arcstat_prefetch_data_hits;
268168404Spjd	kstat_named_t arcstat_prefetch_data_misses;
269168404Spjd	kstat_named_t arcstat_prefetch_metadata_hits;
270168404Spjd	kstat_named_t arcstat_prefetch_metadata_misses;
271168404Spjd	kstat_named_t arcstat_mru_hits;
272168404Spjd	kstat_named_t arcstat_mru_ghost_hits;
273168404Spjd	kstat_named_t arcstat_mfu_hits;
274168404Spjd	kstat_named_t arcstat_mfu_ghost_hits;
275205231Skmacy	kstat_named_t arcstat_allocated;
276168404Spjd	kstat_named_t arcstat_deleted;
277205231Skmacy	kstat_named_t arcstat_stolen;
278168404Spjd	kstat_named_t arcstat_recycle_miss;
279168404Spjd	kstat_named_t arcstat_mutex_miss;
280168404Spjd	kstat_named_t arcstat_evict_skip;
281168404Spjd	kstat_named_t arcstat_hash_elements;
282168404Spjd	kstat_named_t arcstat_hash_elements_max;
283168404Spjd	kstat_named_t arcstat_hash_collisions;
284168404Spjd	kstat_named_t arcstat_hash_chains;
285168404Spjd	kstat_named_t arcstat_hash_chain_max;
286168404Spjd	kstat_named_t arcstat_p;
287168404Spjd	kstat_named_t arcstat_c;
288168404Spjd	kstat_named_t arcstat_c_min;
289168404Spjd	kstat_named_t arcstat_c_max;
290168404Spjd	kstat_named_t arcstat_size;
291185029Spjd	kstat_named_t arcstat_hdr_size;
292185029Spjd	kstat_named_t arcstat_l2_hits;
293185029Spjd	kstat_named_t arcstat_l2_misses;
294185029Spjd	kstat_named_t arcstat_l2_feeds;
295185029Spjd	kstat_named_t arcstat_l2_rw_clash;
296185029Spjd	kstat_named_t arcstat_l2_writes_sent;
297185029Spjd	kstat_named_t arcstat_l2_writes_done;
298185029Spjd	kstat_named_t arcstat_l2_writes_error;
299185029Spjd	kstat_named_t arcstat_l2_writes_hdr_miss;
300185029Spjd	kstat_named_t arcstat_l2_evict_lock_retry;
301185029Spjd	kstat_named_t arcstat_l2_evict_reading;
302185029Spjd	kstat_named_t arcstat_l2_free_on_write;
303185029Spjd	kstat_named_t arcstat_l2_abort_lowmem;
304185029Spjd	kstat_named_t arcstat_l2_cksum_bad;
305185029Spjd	kstat_named_t arcstat_l2_io_error;
306185029Spjd	kstat_named_t arcstat_l2_size;
307185029Spjd	kstat_named_t arcstat_l2_hdr_size;
308185029Spjd	kstat_named_t arcstat_memory_throttle_count;
309205231Skmacy	kstat_named_t arcstat_l2_write_trylock_fail;
310205231Skmacy	kstat_named_t arcstat_l2_write_in_l2;
311205231Skmacy	kstat_named_t arcstat_l2_write_passed_headroom;
312205231Skmacy	kstat_named_t arcstat_l2_write_spa_mismatch;
313205231Skmacy	kstat_named_t arcstat_l2_write_hdr_io_in_progress;
314205231Skmacy	kstat_named_t arcstat_l2_write_not_cacheable;
315205231Skmacy	kstat_named_t arcstat_l2_write_full;
316205231Skmacy	kstat_named_t arcstat_l2_write_buffer_iter;
317205231Skmacy	kstat_named_t arcstat_l2_write_pios;
318205231Skmacy	kstat_named_t arcstat_l2_write_bytes_written;
319205231Skmacy	kstat_named_t arcstat_l2_write_buffer_bytes_scanned;
320205231Skmacy	kstat_named_t arcstat_l2_write_buffer_list_iter;
321205231Skmacy	kstat_named_t arcstat_l2_write_buffer_list_null_iter;
322168404Spjd} arc_stats_t;
323168404Spjd
324168404Spjdstatic arc_stats_t arc_stats = {
325168404Spjd	{ "hits",			KSTAT_DATA_UINT64 },
326168404Spjd	{ "misses",			KSTAT_DATA_UINT64 },
327168404Spjd	{ "demand_data_hits",		KSTAT_DATA_UINT64 },
328168404Spjd	{ "demand_data_misses",		KSTAT_DATA_UINT64 },
329168404Spjd	{ "demand_metadata_hits",	KSTAT_DATA_UINT64 },
330168404Spjd	{ "demand_metadata_misses",	KSTAT_DATA_UINT64 },
331168404Spjd	{ "prefetch_data_hits",		KSTAT_DATA_UINT64 },
332168404Spjd	{ "prefetch_data_misses",	KSTAT_DATA_UINT64 },
333168404Spjd	{ "prefetch_metadata_hits",	KSTAT_DATA_UINT64 },
334168404Spjd	{ "prefetch_metadata_misses",	KSTAT_DATA_UINT64 },
335168404Spjd	{ "mru_hits",			KSTAT_DATA_UINT64 },
336168404Spjd	{ "mru_ghost_hits",		KSTAT_DATA_UINT64 },
337168404Spjd	{ "mfu_hits",			KSTAT_DATA_UINT64 },
338168404Spjd	{ "mfu_ghost_hits",		KSTAT_DATA_UINT64 },
339205231Skmacy	{ "allocated",			KSTAT_DATA_UINT64 },
340168404Spjd	{ "deleted",			KSTAT_DATA_UINT64 },
341205231Skmacy	{ "stolen",			KSTAT_DATA_UINT64 },
342168404Spjd	{ "recycle_miss",		KSTAT_DATA_UINT64 },
343168404Spjd	{ "mutex_miss",			KSTAT_DATA_UINT64 },
344168404Spjd	{ "evict_skip",			KSTAT_DATA_UINT64 },
345168404Spjd	{ "hash_elements",		KSTAT_DATA_UINT64 },
346168404Spjd	{ "hash_elements_max",		KSTAT_DATA_UINT64 },
347168404Spjd	{ "hash_collisions",		KSTAT_DATA_UINT64 },
348168404Spjd	{ "hash_chains",		KSTAT_DATA_UINT64 },
349168404Spjd	{ "hash_chain_max",		KSTAT_DATA_UINT64 },
350168404Spjd	{ "p",				KSTAT_DATA_UINT64 },
351168404Spjd	{ "c",				KSTAT_DATA_UINT64 },
352168404Spjd	{ "c_min",			KSTAT_DATA_UINT64 },
353168404Spjd	{ "c_max",			KSTAT_DATA_UINT64 },
354185029Spjd	{ "size",			KSTAT_DATA_UINT64 },
355185029Spjd	{ "hdr_size",			KSTAT_DATA_UINT64 },
356185029Spjd	{ "l2_hits",			KSTAT_DATA_UINT64 },
357185029Spjd	{ "l2_misses",			KSTAT_DATA_UINT64 },
358185029Spjd	{ "l2_feeds",			KSTAT_DATA_UINT64 },
359185029Spjd	{ "l2_rw_clash",		KSTAT_DATA_UINT64 },
360185029Spjd	{ "l2_writes_sent",		KSTAT_DATA_UINT64 },
361185029Spjd	{ "l2_writes_done",		KSTAT_DATA_UINT64 },
362185029Spjd	{ "l2_writes_error",		KSTAT_DATA_UINT64 },
363185029Spjd	{ "l2_writes_hdr_miss",		KSTAT_DATA_UINT64 },
364185029Spjd	{ "l2_evict_lock_retry",	KSTAT_DATA_UINT64 },
365185029Spjd	{ "l2_evict_reading",		KSTAT_DATA_UINT64 },
366185029Spjd	{ "l2_free_on_write",		KSTAT_DATA_UINT64 },
367185029Spjd	{ "l2_abort_lowmem",		KSTAT_DATA_UINT64 },
368185029Spjd	{ "l2_cksum_bad",		KSTAT_DATA_UINT64 },
369185029Spjd	{ "l2_io_error",		KSTAT_DATA_UINT64 },
370185029Spjd	{ "l2_size",			KSTAT_DATA_UINT64 },
371185029Spjd	{ "l2_hdr_size",		KSTAT_DATA_UINT64 },
372205231Skmacy	{ "memory_throttle_count",	KSTAT_DATA_UINT64 },
373205231Skmacy	{ "l2_write_trylock_fail", 	KSTAT_DATA_UINT64 },
374205231Skmacy	{ "l2_write_in_l2", 		KSTAT_DATA_UINT64 },
375205231Skmacy	{ "l2_write_passed_headroom", 	KSTAT_DATA_UINT64 },
376205231Skmacy	{ "l2_write_spa_mismatch", 	KSTAT_DATA_UINT64 },
377205231Skmacy	{ "l2_write_io_in_progress", 	KSTAT_DATA_UINT64 },
378205231Skmacy	{ "l2_write_not_cacheable", 	KSTAT_DATA_UINT64 },
379205231Skmacy	{ "l2_write_full", 		KSTAT_DATA_UINT64 },
380205231Skmacy	{ "l2_write_buffer_iter", 	KSTAT_DATA_UINT64 },
381205231Skmacy	{ "l2_write_pios", 		KSTAT_DATA_UINT64 },
382205231Skmacy	{ "l2_write_bytes_written", 		KSTAT_DATA_UINT64 },
383205231Skmacy	{ "l2_write_buffer_bytes_scanned", 	KSTAT_DATA_UINT64 },
384205231Skmacy	{ "l2_write_buffer_list_iter", 	KSTAT_DATA_UINT64 },
385205231Skmacy	{ "l2_write_buffer_list_null_iter", 	KSTAT_DATA_UINT64 }
386168404Spjd};
387168404Spjd
388168404Spjd#define	ARCSTAT(stat)	(arc_stats.stat.value.ui64)
389168404Spjd
390168404Spjd#define	ARCSTAT_INCR(stat, val) \
391168404Spjd	atomic_add_64(&arc_stats.stat.value.ui64, (val));
392168404Spjd
393168404Spjd#define	ARCSTAT_BUMP(stat) 	ARCSTAT_INCR(stat, 1)
394168404Spjd#define	ARCSTAT_BUMPDOWN(stat)	ARCSTAT_INCR(stat, -1)
395168404Spjd
396168404Spjd#define	ARCSTAT_MAX(stat, val) {					\
397168404Spjd	uint64_t m;							\
398168404Spjd	while ((val) > (m = arc_stats.stat.value.ui64) &&		\
399168404Spjd	    (m != atomic_cas_64(&arc_stats.stat.value.ui64, m, (val))))	\
400168404Spjd		continue;						\
401168404Spjd}
402168404Spjd
403168404Spjd#define	ARCSTAT_MAXSTAT(stat) \
404168404Spjd	ARCSTAT_MAX(stat##_max, arc_stats.stat.value.ui64)
405168404Spjd
406168404Spjd/*
407168404Spjd * We define a macro to allow ARC hits/misses to be easily broken down by
408168404Spjd * two separate conditions, giving a total of four different subtypes for
409168404Spjd * each of hits and misses (so eight statistics total).
410168404Spjd */
411168404Spjd#define	ARCSTAT_CONDSTAT(cond1, stat1, notstat1, cond2, stat2, notstat2, stat) \
412168404Spjd	if (cond1) {							\
413168404Spjd		if (cond2) {						\
414168404Spjd			ARCSTAT_BUMP(arcstat_##stat1##_##stat2##_##stat); \
415168404Spjd		} else {						\
416168404Spjd			ARCSTAT_BUMP(arcstat_##stat1##_##notstat2##_##stat); \
417168404Spjd		}							\
418168404Spjd	} else {							\
419168404Spjd		if (cond2) {						\
420168404Spjd			ARCSTAT_BUMP(arcstat_##notstat1##_##stat2##_##stat); \
421168404Spjd		} else {						\
422168404Spjd			ARCSTAT_BUMP(arcstat_##notstat1##_##notstat2##_##stat);\
423168404Spjd		}							\
424168404Spjd	}
425168404Spjd
426168404Spjdkstat_t			*arc_ksp;
427168404Spjdstatic arc_state_t 	*arc_anon;
428168404Spjdstatic arc_state_t	*arc_mru;
429168404Spjdstatic arc_state_t	*arc_mru_ghost;
430168404Spjdstatic arc_state_t	*arc_mfu;
431168404Spjdstatic arc_state_t	*arc_mfu_ghost;
432185029Spjdstatic arc_state_t	*arc_l2c_only;
433168404Spjd
434168404Spjd/*
435168404Spjd * There are several ARC variables that are critical to export as kstats --
436168404Spjd * but we don't want to have to grovel around in the kstat whenever we wish to
437168404Spjd * manipulate them.  For these variables, we therefore define them to be in
438168404Spjd * terms of the statistic variable.  This assures that we are not introducing
439168404Spjd * the possibility of inconsistency by having shadow copies of the variables,
440168404Spjd * while still allowing the code to be readable.
441168404Spjd */
442168404Spjd#define	arc_size	ARCSTAT(arcstat_size)	/* actual total arc size */
443168404Spjd#define	arc_p		ARCSTAT(arcstat_p)	/* target size of MRU */
444168404Spjd#define	arc_c		ARCSTAT(arcstat_c)	/* target size of cache */
445168404Spjd#define	arc_c_min	ARCSTAT(arcstat_c_min)	/* min target cache size */
446168404Spjd#define	arc_c_max	ARCSTAT(arcstat_c_max)	/* max target cache size */
447168404Spjd
448168404Spjdstatic int		arc_no_grow;	/* Don't try to grow cache size */
449168404Spjdstatic uint64_t		arc_tempreserve;
450185029Spjdstatic uint64_t		arc_meta_used;
451185029Spjdstatic uint64_t		arc_meta_limit;
452185029Spjdstatic uint64_t		arc_meta_max = 0;
453185029SpjdSYSCTL_QUAD(_vfs_zfs, OID_AUTO, arc_meta_used, CTLFLAG_RDTUN,
454185029Spjd    &arc_meta_used, 0, "ARC metadata used");
455185029SpjdSYSCTL_QUAD(_vfs_zfs, OID_AUTO, arc_meta_limit, CTLFLAG_RDTUN,
456185029Spjd    &arc_meta_limit, 0, "ARC metadata limit");
457168404Spjd
458185029Spjdtypedef struct l2arc_buf_hdr l2arc_buf_hdr_t;
459185029Spjd
460168404Spjdtypedef struct arc_callback arc_callback_t;
461168404Spjd
462168404Spjdstruct arc_callback {
463168404Spjd	void			*acb_private;
464168404Spjd	arc_done_func_t		*acb_done;
465168404Spjd	arc_buf_t		*acb_buf;
466168404Spjd	zio_t			*acb_zio_dummy;
467168404Spjd	arc_callback_t		*acb_next;
468168404Spjd};
469168404Spjd
470168404Spjdtypedef struct arc_write_callback arc_write_callback_t;
471168404Spjd
472168404Spjdstruct arc_write_callback {
473168404Spjd	void		*awcb_private;
474168404Spjd	arc_done_func_t	*awcb_ready;
475168404Spjd	arc_done_func_t	*awcb_done;
476168404Spjd	arc_buf_t	*awcb_buf;
477168404Spjd};
478168404Spjd
479168404Spjdstruct arc_buf_hdr {
480168404Spjd	/* protected by hash lock */
481168404Spjd	dva_t			b_dva;
482168404Spjd	uint64_t		b_birth;
483168404Spjd	uint64_t		b_cksum0;
484168404Spjd
485168404Spjd	kmutex_t		b_freeze_lock;
486168404Spjd	zio_cksum_t		*b_freeze_cksum;
487168404Spjd
488168404Spjd	arc_buf_hdr_t		*b_hash_next;
489168404Spjd	arc_buf_t		*b_buf;
490168404Spjd	uint32_t		b_flags;
491168404Spjd	uint32_t		b_datacnt;
492168404Spjd
493168404Spjd	arc_callback_t		*b_acb;
494168404Spjd	kcondvar_t		b_cv;
495168404Spjd
496168404Spjd	/* immutable */
497168404Spjd	arc_buf_contents_t	b_type;
498168404Spjd	uint64_t		b_size;
499168404Spjd	spa_t			*b_spa;
500168404Spjd
501168404Spjd	/* protected by arc state mutex */
502168404Spjd	arc_state_t		*b_state;
503168404Spjd	list_node_t		b_arc_node;
504168404Spjd
505168404Spjd	/* updated atomically */
506168404Spjd	clock_t			b_arc_access;
507168404Spjd
508168404Spjd	/* self protecting */
509168404Spjd	refcount_t		b_refcnt;
510185029Spjd
511185029Spjd	l2arc_buf_hdr_t		*b_l2hdr;
512185029Spjd	list_node_t		b_l2node;
513168404Spjd};
514168404Spjd
515168404Spjdstatic arc_buf_t *arc_eviction_list;
516168404Spjdstatic kmutex_t arc_eviction_mtx;
517168404Spjdstatic arc_buf_hdr_t arc_eviction_hdr;
518168404Spjdstatic void arc_get_data_buf(arc_buf_t *buf);
519168404Spjdstatic void arc_access(arc_buf_hdr_t *buf, kmutex_t *hash_lock);
520185029Spjdstatic int arc_evict_needed(arc_buf_contents_t type);
521185029Spjdstatic void arc_evict_ghost(arc_state_t *state, spa_t *spa, int64_t bytes);
522168404Spjd
523168404Spjd#define	GHOST_STATE(state)	\
524185029Spjd	((state) == arc_mru_ghost || (state) == arc_mfu_ghost ||	\
525185029Spjd	(state) == arc_l2c_only)
526168404Spjd
527168404Spjd/*
528168404Spjd * Private ARC flags.  These flags are private ARC only flags that will show up
529168404Spjd * in b_flags in the arc_hdr_buf_t.  Some flags are publicly declared, and can
530168404Spjd * be passed in as arc_flags in things like arc_read.  However, these flags
531168404Spjd * should never be passed and should only be set by ARC code.  When adding new
532168404Spjd * public flags, make sure not to smash the private ones.
533168404Spjd */
534168404Spjd
535168404Spjd#define	ARC_IN_HASH_TABLE	(1 << 9)	/* this buffer is hashed */
536168404Spjd#define	ARC_IO_IN_PROGRESS	(1 << 10)	/* I/O in progress for buf */
537168404Spjd#define	ARC_IO_ERROR		(1 << 11)	/* I/O failed for buf */
538168404Spjd#define	ARC_FREED_IN_READ	(1 << 12)	/* buf freed while in read */
539168404Spjd#define	ARC_BUF_AVAILABLE	(1 << 13)	/* block not in active use */
540168404Spjd#define	ARC_INDIRECT		(1 << 14)	/* this is an indirect block */
541185029Spjd#define	ARC_FREE_IN_PROGRESS	(1 << 15)	/* hdr about to be freed */
542185029Spjd#define	ARC_L2_WRITING		(1 << 16)	/* L2ARC write in progress */
543185029Spjd#define	ARC_L2_EVICTED		(1 << 17)	/* evicted during I/O */
544185029Spjd#define	ARC_L2_WRITE_HEAD	(1 << 18)	/* head of write list */
545185029Spjd#define	ARC_STORED		(1 << 19)	/* has been store()d to */
546168404Spjd
547168404Spjd#define	HDR_IN_HASH_TABLE(hdr)	((hdr)->b_flags & ARC_IN_HASH_TABLE)
548168404Spjd#define	HDR_IO_IN_PROGRESS(hdr)	((hdr)->b_flags & ARC_IO_IN_PROGRESS)
549168404Spjd#define	HDR_IO_ERROR(hdr)	((hdr)->b_flags & ARC_IO_ERROR)
550168404Spjd#define	HDR_FREED_IN_READ(hdr)	((hdr)->b_flags & ARC_FREED_IN_READ)
551168404Spjd#define	HDR_BUF_AVAILABLE(hdr)	((hdr)->b_flags & ARC_BUF_AVAILABLE)
552185029Spjd#define	HDR_FREE_IN_PROGRESS(hdr)	((hdr)->b_flags & ARC_FREE_IN_PROGRESS)
553185029Spjd#define	HDR_L2CACHE(hdr)	((hdr)->b_flags & ARC_L2CACHE)
554185029Spjd#define	HDR_L2_READING(hdr)	((hdr)->b_flags & ARC_IO_IN_PROGRESS &&	\
555185029Spjd				    (hdr)->b_l2hdr != NULL)
556185029Spjd#define	HDR_L2_WRITING(hdr)	((hdr)->b_flags & ARC_L2_WRITING)
557185029Spjd#define	HDR_L2_EVICTED(hdr)	((hdr)->b_flags & ARC_L2_EVICTED)
558185029Spjd#define	HDR_L2_WRITE_HEAD(hdr)	((hdr)->b_flags & ARC_L2_WRITE_HEAD)
559168404Spjd
560168404Spjd/*
561185029Spjd * Other sizes
562185029Spjd */
563185029Spjd
564185029Spjd#define	HDR_SIZE ((int64_t)sizeof (arc_buf_hdr_t))
565185029Spjd#define	L2HDR_SIZE ((int64_t)sizeof (l2arc_buf_hdr_t))
566185029Spjd
567185029Spjd/*
568168404Spjd * Hash table routines
569168404Spjd */
570168404Spjd
571205253Skmacy#define	HT_LOCK_PAD	CACHE_LINE_SIZE
572168404Spjd
573168404Spjdstruct ht_lock {
574168404Spjd	kmutex_t	ht_lock;
575168404Spjd#ifdef _KERNEL
576168404Spjd	unsigned char	pad[(HT_LOCK_PAD - sizeof (kmutex_t))];
577168404Spjd#endif
578168404Spjd};
579168404Spjd
580168404Spjd#define	BUF_LOCKS 256
581168404Spjdtypedef struct buf_hash_table {
582168404Spjd	uint64_t ht_mask;
583168404Spjd	arc_buf_hdr_t **ht_table;
584205264Skmacy	struct ht_lock ht_locks[BUF_LOCKS] __aligned(CACHE_LINE_SIZE);
585168404Spjd} buf_hash_table_t;
586168404Spjd
587168404Spjdstatic buf_hash_table_t buf_hash_table;
588168404Spjd
589168404Spjd#define	BUF_HASH_INDEX(spa, dva, birth) \
590168404Spjd	(buf_hash(spa, dva, birth) & buf_hash_table.ht_mask)
591168404Spjd#define	BUF_HASH_LOCK_NTRY(idx) (buf_hash_table.ht_locks[idx & (BUF_LOCKS-1)])
592168404Spjd#define	BUF_HASH_LOCK(idx)	(&(BUF_HASH_LOCK_NTRY(idx).ht_lock))
593168404Spjd#define	HDR_LOCK(buf) \
594168404Spjd	(BUF_HASH_LOCK(BUF_HASH_INDEX(buf->b_spa, &buf->b_dva, buf->b_birth)))
595168404Spjd
596168404Spjduint64_t zfs_crc64_table[256];
597168404Spjd
598205133Skmacy#ifdef ZIO_USE_UMA
599205133Skmacyextern kmem_cache_t	*zio_buf_cache[];
600205133Skmacyextern kmem_cache_t	*zio_data_buf_cache[];
601205133Skmacy#endif
602205133Skmacy
603185029Spjd/*
604185029Spjd * Level 2 ARC
605185029Spjd */
606185029Spjd
607205231Skmacy#define	L2ARC_WRITE_SIZE	(64 * 1024 * 1024)	/* initial write max */
608205231Skmacy#define	L2ARC_HEADROOM		128		/* num of writes */
609185029Spjd#define	L2ARC_FEED_SECS		1		/* caching interval */
610205231Skmacy#define	L2ARC_FEED_SECS_SHIFT	1		/* caching interval shift */
611185029Spjd
612185029Spjd#define	l2arc_writes_sent	ARCSTAT(arcstat_l2_writes_sent)
613185029Spjd#define	l2arc_writes_done	ARCSTAT(arcstat_l2_writes_done)
614185029Spjd
615185029Spjd/*
616185029Spjd * L2ARC Performance Tunables
617185029Spjd */
618185029Spjduint64_t l2arc_write_max = L2ARC_WRITE_SIZE;	/* default max write size */
619185029Spjduint64_t l2arc_write_boost = L2ARC_WRITE_SIZE;	/* extra write during warmup */
620185029Spjduint64_t l2arc_headroom = L2ARC_HEADROOM;	/* number of dev writes */
621185029Spjduint64_t l2arc_feed_secs = L2ARC_FEED_SECS;	/* interval seconds */
622205231Skmacyuint64_t l2arc_feed_secs_shift = L2ARC_FEED_SECS_SHIFT;	/* interval seconds shift */
623205231Skmacyboolean_t l2arc_noprefetch = B_FALSE;		/* don't cache prefetch bufs */
624185029Spjd
625205231Skmacy
626205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_write_max, CTLFLAG_RW,
627205231Skmacy    &l2arc_write_max, 0, "max write size");
628205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_write_boost, CTLFLAG_RW,
629205231Skmacy    &l2arc_write_boost, 0, "extra write during warmup");
630205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_headroom, CTLFLAG_RW,
631205231Skmacy    &l2arc_headroom, 0, "number of dev writes");
632205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_feed_secs, CTLFLAG_RW,
633205231Skmacy    &l2arc_feed_secs, 0, "interval seconds");
634205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_feed_secs_shift, CTLFLAG_RW,
635205231Skmacy    &l2arc_feed_secs_shift, 0, "power of 2 division of feed seconds");
636205231Skmacy
637205231SkmacySYSCTL_INT(_vfs_zfs, OID_AUTO, l2arc_noprefetch, CTLFLAG_RW,
638205231Skmacy    &l2arc_noprefetch, 0, "don't cache prefetch bufs");
639205231Skmacy
640205231Skmacy
641205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, anon_size, CTLFLAG_RD,
642205231Skmacy    &ARC_anon.arcs_size, 0, "size of anonymous state");
643205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, anon_metadata_lsize, CTLFLAG_RD,
644205231Skmacy    &ARC_anon.arcs_lsize[ARC_BUFC_METADATA], 0, "size of anonymous state");
645205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, anon_data_lsize, CTLFLAG_RD,
646205231Skmacy    &ARC_anon.arcs_lsize[ARC_BUFC_DATA], 0, "size of anonymous state");
647205231Skmacy
648205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_size, CTLFLAG_RD,
649205231Skmacy    &ARC_mru.arcs_size, 0, "size of mru state");
650205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_metadata_lsize, CTLFLAG_RD,
651205231Skmacy    &ARC_mru.arcs_lsize[ARC_BUFC_METADATA], 0, "size of metadata in mru state");
652205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_data_lsize, CTLFLAG_RD,
653205231Skmacy    &ARC_mru.arcs_lsize[ARC_BUFC_DATA], 0, "size of data in mru state");
654205231Skmacy
655205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_ghost_size, CTLFLAG_RD,
656205231Skmacy    &ARC_mru_ghost.arcs_size, 0, "size of mru ghost state");
657205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_ghost_metadata_lsize, CTLFLAG_RD,
658205231Skmacy    &ARC_mru_ghost.arcs_lsize[ARC_BUFC_METADATA], 0,
659205231Skmacy    "size of metadata in mru ghost state");
660205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_ghost_data_lsize, CTLFLAG_RD,
661205231Skmacy    &ARC_mru_ghost.arcs_lsize[ARC_BUFC_DATA], 0,
662205231Skmacy    "size of data in mru ghost state");
663205231Skmacy
664205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_size, CTLFLAG_RD,
665205231Skmacy    &ARC_mfu.arcs_size, 0, "size of mfu state");
666205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_metadata_lsize, CTLFLAG_RD,
667205231Skmacy    &ARC_mfu.arcs_lsize[ARC_BUFC_METADATA], 0, "size of metadata in mfu state");
668205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_data_lsize, CTLFLAG_RD,
669205231Skmacy    &ARC_mfu.arcs_lsize[ARC_BUFC_DATA], 0, "size of data in mfu state");
670205231Skmacy
671205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_ghost_size, CTLFLAG_RD,
672205231Skmacy    &ARC_mfu_ghost.arcs_size, 0, "size of mfu ghost state");
673205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_ghost_metadata_lsize, CTLFLAG_RD,
674205231Skmacy    &ARC_mfu_ghost.arcs_lsize[ARC_BUFC_METADATA], 0,
675205231Skmacy    "size of metadata in mfu ghost state");
676205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_ghost_data_lsize, CTLFLAG_RD,
677205231Skmacy    &ARC_mfu_ghost.arcs_lsize[ARC_BUFC_DATA], 0,
678205231Skmacy    "size of data in mfu ghost state");
679205231Skmacy
680205231SkmacySYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2c_only_size, CTLFLAG_RD,
681205231Skmacy    &ARC_l2c_only.arcs_size, 0, "size of mru state");
682205231Skmacy
683185029Spjd/*
684185029Spjd * L2ARC Internals
685185029Spjd */
686185029Spjdtypedef struct l2arc_dev {
687185029Spjd	vdev_t			*l2ad_vdev;	/* vdev */
688185029Spjd	spa_t			*l2ad_spa;	/* spa */
689185029Spjd	uint64_t		l2ad_hand;	/* next write location */
690185029Spjd	uint64_t		l2ad_write;	/* desired write size, bytes */
691185029Spjd	uint64_t		l2ad_boost;	/* warmup write boost, bytes */
692185029Spjd	uint64_t		l2ad_start;	/* first addr on device */
693185029Spjd	uint64_t		l2ad_end;	/* last addr on device */
694185029Spjd	uint64_t		l2ad_evict;	/* last addr eviction reached */
695185029Spjd	boolean_t		l2ad_first;	/* first sweep through */
696185029Spjd	list_t			*l2ad_buflist;	/* buffer list */
697185029Spjd	list_node_t		l2ad_node;	/* device list node */
698185029Spjd} l2arc_dev_t;
699185029Spjd
700185029Spjdstatic list_t L2ARC_dev_list;			/* device list */
701185029Spjdstatic list_t *l2arc_dev_list;			/* device list pointer */
702185029Spjdstatic kmutex_t l2arc_dev_mtx;			/* device list mutex */
703185029Spjdstatic l2arc_dev_t *l2arc_dev_last;		/* last device used */
704185029Spjdstatic kmutex_t l2arc_buflist_mtx;		/* mutex for all buflists */
705185029Spjdstatic list_t L2ARC_free_on_write;		/* free after write buf list */
706185029Spjdstatic list_t *l2arc_free_on_write;		/* free after write list ptr */
707185029Spjdstatic kmutex_t l2arc_free_on_write_mtx;	/* mutex for list */
708185029Spjdstatic uint64_t l2arc_ndev;			/* number of devices */
709185029Spjd
710185029Spjdtypedef struct l2arc_read_callback {
711185029Spjd	arc_buf_t	*l2rcb_buf;		/* read buffer */
712185029Spjd	spa_t		*l2rcb_spa;		/* spa */
713185029Spjd	blkptr_t	l2rcb_bp;		/* original blkptr */
714185029Spjd	zbookmark_t	l2rcb_zb;		/* original bookmark */
715185029Spjd	int		l2rcb_flags;		/* original flags */
716185029Spjd} l2arc_read_callback_t;
717185029Spjd
718185029Spjdtypedef struct l2arc_write_callback {
719185029Spjd	l2arc_dev_t	*l2wcb_dev;		/* device info */
720185029Spjd	arc_buf_hdr_t	*l2wcb_head;		/* head of write buflist */
721185029Spjd} l2arc_write_callback_t;
722185029Spjd
723185029Spjdstruct l2arc_buf_hdr {
724185029Spjd	/* protected by arc_buf_hdr  mutex */
725185029Spjd	l2arc_dev_t	*b_dev;			/* L2ARC device */
726185029Spjd	daddr_t		b_daddr;		/* disk address, offset byte */
727185029Spjd};
728185029Spjd
729185029Spjdtypedef struct l2arc_data_free {
730185029Spjd	/* protected by l2arc_free_on_write_mtx */
731185029Spjd	void		*l2df_data;
732185029Spjd	size_t		l2df_size;
733185029Spjd	void		(*l2df_func)(void *, size_t);
734185029Spjd	list_node_t	l2df_list_node;
735185029Spjd} l2arc_data_free_t;
736185029Spjd
737185029Spjdstatic kmutex_t l2arc_feed_thr_lock;
738185029Spjdstatic kcondvar_t l2arc_feed_thr_cv;
739185029Spjdstatic uint8_t l2arc_thread_exit;
740185029Spjd
741185029Spjdstatic void l2arc_read_done(zio_t *zio);
742185029Spjdstatic void l2arc_hdr_stat_add(void);
743185029Spjdstatic void l2arc_hdr_stat_remove(void);
744185029Spjd
745168404Spjdstatic uint64_t
746185029Spjdbuf_hash(spa_t *spa, const dva_t *dva, uint64_t birth)
747168404Spjd{
748168404Spjd	uintptr_t spav = (uintptr_t)spa;
749168404Spjd	uint8_t *vdva = (uint8_t *)dva;
750168404Spjd	uint64_t crc = -1ULL;
751168404Spjd	int i;
752168404Spjd
753168404Spjd	ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
754168404Spjd
755168404Spjd	for (i = 0; i < sizeof (dva_t); i++)
756168404Spjd		crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF];
757168404Spjd
758168404Spjd	crc ^= (spav>>8) ^ birth;
759168404Spjd
760168404Spjd	return (crc);
761168404Spjd}
762168404Spjd
763168404Spjd#define	BUF_EMPTY(buf)						\
764168404Spjd	((buf)->b_dva.dva_word[0] == 0 &&			\
765168404Spjd	(buf)->b_dva.dva_word[1] == 0 &&			\
766168404Spjd	(buf)->b_birth == 0)
767168404Spjd
768168404Spjd#define	BUF_EQUAL(spa, dva, birth, buf)				\
769168404Spjd	((buf)->b_dva.dva_word[0] == (dva)->dva_word[0]) &&	\
770168404Spjd	((buf)->b_dva.dva_word[1] == (dva)->dva_word[1]) &&	\
771168404Spjd	((buf)->b_birth == birth) && ((buf)->b_spa == spa)
772168404Spjd
773168404Spjdstatic arc_buf_hdr_t *
774185029Spjdbuf_hash_find(spa_t *spa, const dva_t *dva, uint64_t birth, kmutex_t **lockp)
775168404Spjd{
776168404Spjd	uint64_t idx = BUF_HASH_INDEX(spa, dva, birth);
777168404Spjd	kmutex_t *hash_lock = BUF_HASH_LOCK(idx);
778168404Spjd	arc_buf_hdr_t *buf;
779168404Spjd
780168404Spjd	mutex_enter(hash_lock);
781168404Spjd	for (buf = buf_hash_table.ht_table[idx]; buf != NULL;
782168404Spjd	    buf = buf->b_hash_next) {
783168404Spjd		if (BUF_EQUAL(spa, dva, birth, buf)) {
784168404Spjd			*lockp = hash_lock;
785168404Spjd			return (buf);
786168404Spjd		}
787168404Spjd	}
788168404Spjd	mutex_exit(hash_lock);
789168404Spjd	*lockp = NULL;
790168404Spjd	return (NULL);
791168404Spjd}
792168404Spjd
793168404Spjd/*
794168404Spjd * Insert an entry into the hash table.  If there is already an element
795168404Spjd * equal to elem in the hash table, then the already existing element
796168404Spjd * will be returned and the new element will not be inserted.
797168404Spjd * Otherwise returns NULL.
798168404Spjd */
799168404Spjdstatic arc_buf_hdr_t *
800168404Spjdbuf_hash_insert(arc_buf_hdr_t *buf, kmutex_t **lockp)
801168404Spjd{
802168404Spjd	uint64_t idx = BUF_HASH_INDEX(buf->b_spa, &buf->b_dva, buf->b_birth);
803168404Spjd	kmutex_t *hash_lock = BUF_HASH_LOCK(idx);
804168404Spjd	arc_buf_hdr_t *fbuf;
805168404Spjd	uint32_t i;
806168404Spjd
807168404Spjd	ASSERT(!HDR_IN_HASH_TABLE(buf));
808168404Spjd	*lockp = hash_lock;
809168404Spjd	mutex_enter(hash_lock);
810168404Spjd	for (fbuf = buf_hash_table.ht_table[idx], i = 0; fbuf != NULL;
811168404Spjd	    fbuf = fbuf->b_hash_next, i++) {
812168404Spjd		if (BUF_EQUAL(buf->b_spa, &buf->b_dva, buf->b_birth, fbuf))
813168404Spjd			return (fbuf);
814168404Spjd	}
815168404Spjd
816168404Spjd	buf->b_hash_next = buf_hash_table.ht_table[idx];
817168404Spjd	buf_hash_table.ht_table[idx] = buf;
818168404Spjd	buf->b_flags |= ARC_IN_HASH_TABLE;
819168404Spjd
820168404Spjd	/* collect some hash table performance data */
821168404Spjd	if (i > 0) {
822168404Spjd		ARCSTAT_BUMP(arcstat_hash_collisions);
823168404Spjd		if (i == 1)
824168404Spjd			ARCSTAT_BUMP(arcstat_hash_chains);
825168404Spjd
826168404Spjd		ARCSTAT_MAX(arcstat_hash_chain_max, i);
827168404Spjd	}
828168404Spjd
829168404Spjd	ARCSTAT_BUMP(arcstat_hash_elements);
830168404Spjd	ARCSTAT_MAXSTAT(arcstat_hash_elements);
831168404Spjd
832168404Spjd	return (NULL);
833168404Spjd}
834168404Spjd
835168404Spjdstatic void
836168404Spjdbuf_hash_remove(arc_buf_hdr_t *buf)
837168404Spjd{
838168404Spjd	arc_buf_hdr_t *fbuf, **bufp;
839168404Spjd	uint64_t idx = BUF_HASH_INDEX(buf->b_spa, &buf->b_dva, buf->b_birth);
840168404Spjd
841168404Spjd	ASSERT(MUTEX_HELD(BUF_HASH_LOCK(idx)));
842168404Spjd	ASSERT(HDR_IN_HASH_TABLE(buf));
843168404Spjd
844168404Spjd	bufp = &buf_hash_table.ht_table[idx];
845168404Spjd	while ((fbuf = *bufp) != buf) {
846168404Spjd		ASSERT(fbuf != NULL);
847168404Spjd		bufp = &fbuf->b_hash_next;
848168404Spjd	}
849168404Spjd	*bufp = buf->b_hash_next;
850168404Spjd	buf->b_hash_next = NULL;
851168404Spjd	buf->b_flags &= ~ARC_IN_HASH_TABLE;
852168404Spjd
853168404Spjd	/* collect some hash table performance data */
854168404Spjd	ARCSTAT_BUMPDOWN(arcstat_hash_elements);
855168404Spjd
856168404Spjd	if (buf_hash_table.ht_table[idx] &&
857168404Spjd	    buf_hash_table.ht_table[idx]->b_hash_next == NULL)
858168404Spjd		ARCSTAT_BUMPDOWN(arcstat_hash_chains);
859168404Spjd}
860168404Spjd
861168404Spjd/*
862168404Spjd * Global data structures and functions for the buf kmem cache.
863168404Spjd */
864168404Spjdstatic kmem_cache_t *hdr_cache;
865168404Spjdstatic kmem_cache_t *buf_cache;
866168404Spjd
867168404Spjdstatic void
868168404Spjdbuf_fini(void)
869168404Spjd{
870168404Spjd	int i;
871168404Spjd
872168404Spjd	kmem_free(buf_hash_table.ht_table,
873168404Spjd	    (buf_hash_table.ht_mask + 1) * sizeof (void *));
874168404Spjd	for (i = 0; i < BUF_LOCKS; i++)
875168404Spjd		mutex_destroy(&buf_hash_table.ht_locks[i].ht_lock);
876168404Spjd	kmem_cache_destroy(hdr_cache);
877168404Spjd	kmem_cache_destroy(buf_cache);
878168404Spjd}
879168404Spjd
880168404Spjd/*
881168404Spjd * Constructor callback - called when the cache is empty
882168404Spjd * and a new buf is requested.
883168404Spjd */
884168404Spjd/* ARGSUSED */
885168404Spjdstatic int
886168404Spjdhdr_cons(void *vbuf, void *unused, int kmflag)
887168404Spjd{
888168404Spjd	arc_buf_hdr_t *buf = vbuf;
889168404Spjd
890168404Spjd	bzero(buf, sizeof (arc_buf_hdr_t));
891168404Spjd	refcount_create(&buf->b_refcnt);
892168404Spjd	cv_init(&buf->b_cv, NULL, CV_DEFAULT, NULL);
893185029Spjd	mutex_init(&buf->b_freeze_lock, NULL, MUTEX_DEFAULT, NULL);
894185029Spjd
895185029Spjd	ARCSTAT_INCR(arcstat_hdr_size, HDR_SIZE);
896168404Spjd	return (0);
897168404Spjd}
898168404Spjd
899185029Spjd/* ARGSUSED */
900185029Spjdstatic int
901185029Spjdbuf_cons(void *vbuf, void *unused, int kmflag)
902185029Spjd{
903185029Spjd	arc_buf_t *buf = vbuf;
904185029Spjd
905185029Spjd	bzero(buf, sizeof (arc_buf_t));
906185029Spjd	rw_init(&buf->b_lock, NULL, RW_DEFAULT, NULL);
907185029Spjd	return (0);
908185029Spjd}
909185029Spjd
910168404Spjd/*
911168404Spjd * Destructor callback - called when a cached buf is
912168404Spjd * no longer required.
913168404Spjd */
914168404Spjd/* ARGSUSED */
915168404Spjdstatic void
916168404Spjdhdr_dest(void *vbuf, void *unused)
917168404Spjd{
918168404Spjd	arc_buf_hdr_t *buf = vbuf;
919168404Spjd
920168404Spjd	refcount_destroy(&buf->b_refcnt);
921168404Spjd	cv_destroy(&buf->b_cv);
922185029Spjd	mutex_destroy(&buf->b_freeze_lock);
923185029Spjd
924185029Spjd	ARCSTAT_INCR(arcstat_hdr_size, -HDR_SIZE);
925168404Spjd}
926168404Spjd
927185029Spjd/* ARGSUSED */
928185029Spjdstatic void
929185029Spjdbuf_dest(void *vbuf, void *unused)
930185029Spjd{
931185029Spjd	arc_buf_t *buf = vbuf;
932185029Spjd
933185029Spjd	rw_destroy(&buf->b_lock);
934185029Spjd}
935185029Spjd
936168404Spjd/*
937168404Spjd * Reclaim callback -- invoked when memory is low.
938168404Spjd */
939168404Spjd/* ARGSUSED */
940168404Spjdstatic void
941168404Spjdhdr_recl(void *unused)
942168404Spjd{
943168404Spjd	dprintf("hdr_recl called\n");
944168404Spjd	/*
945168404Spjd	 * umem calls the reclaim func when we destroy the buf cache,
946168404Spjd	 * which is after we do arc_fini().
947168404Spjd	 */
948168404Spjd	if (!arc_dead)
949168404Spjd		cv_signal(&arc_reclaim_thr_cv);
950168404Spjd}
951168404Spjd
952168404Spjdstatic void
953168404Spjdbuf_init(void)
954168404Spjd{
955168404Spjd	uint64_t *ct;
956168404Spjd	uint64_t hsize = 1ULL << 12;
957168404Spjd	int i, j;
958168404Spjd
959168404Spjd	/*
960168404Spjd	 * The hash table is big enough to fill all of physical memory
961168404Spjd	 * with an average 64K block size.  The table will take up
962168404Spjd	 * totalmem*sizeof(void*)/64K (eg. 128KB/GB with 8-byte pointers).
963168404Spjd	 */
964168696Spjd	while (hsize * 65536 < (uint64_t)physmem * PAGESIZE)
965168404Spjd		hsize <<= 1;
966168404Spjdretry:
967168404Spjd	buf_hash_table.ht_mask = hsize - 1;
968168404Spjd	buf_hash_table.ht_table =
969168404Spjd	    kmem_zalloc(hsize * sizeof (void*), KM_NOSLEEP);
970168404Spjd	if (buf_hash_table.ht_table == NULL) {
971168404Spjd		ASSERT(hsize > (1ULL << 8));
972168404Spjd		hsize >>= 1;
973168404Spjd		goto retry;
974168404Spjd	}
975168404Spjd
976168404Spjd	hdr_cache = kmem_cache_create("arc_buf_hdr_t", sizeof (arc_buf_hdr_t),
977168404Spjd	    0, hdr_cons, hdr_dest, hdr_recl, NULL, NULL, 0);
978168404Spjd	buf_cache = kmem_cache_create("arc_buf_t", sizeof (arc_buf_t),
979185029Spjd	    0, buf_cons, buf_dest, NULL, NULL, NULL, 0);
980168404Spjd
981168404Spjd	for (i = 0; i < 256; i++)
982168404Spjd		for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--)
983168404Spjd			*ct = (*ct >> 1) ^ (-(*ct & 1) & ZFS_CRC64_POLY);
984168404Spjd
985168404Spjd	for (i = 0; i < BUF_LOCKS; i++) {
986168404Spjd		mutex_init(&buf_hash_table.ht_locks[i].ht_lock,
987168404Spjd		    NULL, MUTEX_DEFAULT, NULL);
988168404Spjd	}
989168404Spjd}
990168404Spjd
991168404Spjd#define	ARC_MINTIME	(hz>>4) /* 62 ms */
992168404Spjd
993168404Spjdstatic void
994168404Spjdarc_cksum_verify(arc_buf_t *buf)
995168404Spjd{
996168404Spjd	zio_cksum_t zc;
997168404Spjd
998168404Spjd	if (!(zfs_flags & ZFS_DEBUG_MODIFY))
999168404Spjd		return;
1000168404Spjd
1001168404Spjd	mutex_enter(&buf->b_hdr->b_freeze_lock);
1002168404Spjd	if (buf->b_hdr->b_freeze_cksum == NULL ||
1003168404Spjd	    (buf->b_hdr->b_flags & ARC_IO_ERROR)) {
1004168404Spjd		mutex_exit(&buf->b_hdr->b_freeze_lock);
1005168404Spjd		return;
1006168404Spjd	}
1007168404Spjd	fletcher_2_native(buf->b_data, buf->b_hdr->b_size, &zc);
1008168404Spjd	if (!ZIO_CHECKSUM_EQUAL(*buf->b_hdr->b_freeze_cksum, zc))
1009168404Spjd		panic("buffer modified while frozen!");
1010168404Spjd	mutex_exit(&buf->b_hdr->b_freeze_lock);
1011168404Spjd}
1012168404Spjd
1013185029Spjdstatic int
1014185029Spjdarc_cksum_equal(arc_buf_t *buf)
1015185029Spjd{
1016185029Spjd	zio_cksum_t zc;
1017185029Spjd	int equal;
1018185029Spjd
1019185029Spjd	mutex_enter(&buf->b_hdr->b_freeze_lock);
1020185029Spjd	fletcher_2_native(buf->b_data, buf->b_hdr->b_size, &zc);
1021185029Spjd	equal = ZIO_CHECKSUM_EQUAL(*buf->b_hdr->b_freeze_cksum, zc);
1022185029Spjd	mutex_exit(&buf->b_hdr->b_freeze_lock);
1023185029Spjd
1024185029Spjd	return (equal);
1025185029Spjd}
1026185029Spjd
1027168404Spjdstatic void
1028185029Spjdarc_cksum_compute(arc_buf_t *buf, boolean_t force)
1029168404Spjd{
1030185029Spjd	if (!force && !(zfs_flags & ZFS_DEBUG_MODIFY))
1031168404Spjd		return;
1032168404Spjd
1033168404Spjd	mutex_enter(&buf->b_hdr->b_freeze_lock);
1034168404Spjd	if (buf->b_hdr->b_freeze_cksum != NULL) {
1035168404Spjd		mutex_exit(&buf->b_hdr->b_freeze_lock);
1036168404Spjd		return;
1037168404Spjd	}
1038168404Spjd	buf->b_hdr->b_freeze_cksum = kmem_alloc(sizeof (zio_cksum_t), KM_SLEEP);
1039168404Spjd	fletcher_2_native(buf->b_data, buf->b_hdr->b_size,
1040168404Spjd	    buf->b_hdr->b_freeze_cksum);
1041168404Spjd	mutex_exit(&buf->b_hdr->b_freeze_lock);
1042168404Spjd}
1043168404Spjd
1044168404Spjdvoid
1045168404Spjdarc_buf_thaw(arc_buf_t *buf)
1046168404Spjd{
1047185029Spjd	if (zfs_flags & ZFS_DEBUG_MODIFY) {
1048185029Spjd		if (buf->b_hdr->b_state != arc_anon)
1049185029Spjd			panic("modifying non-anon buffer!");
1050185029Spjd		if (buf->b_hdr->b_flags & ARC_IO_IN_PROGRESS)
1051185029Spjd			panic("modifying buffer while i/o in progress!");
1052185029Spjd		arc_cksum_verify(buf);
1053185029Spjd	}
1054168404Spjd
1055168404Spjd	mutex_enter(&buf->b_hdr->b_freeze_lock);
1056168404Spjd	if (buf->b_hdr->b_freeze_cksum != NULL) {
1057168404Spjd		kmem_free(buf->b_hdr->b_freeze_cksum, sizeof (zio_cksum_t));
1058168404Spjd		buf->b_hdr->b_freeze_cksum = NULL;
1059168404Spjd	}
1060168404Spjd	mutex_exit(&buf->b_hdr->b_freeze_lock);
1061168404Spjd}
1062168404Spjd
1063168404Spjdvoid
1064168404Spjdarc_buf_freeze(arc_buf_t *buf)
1065168404Spjd{
1066168404Spjd	if (!(zfs_flags & ZFS_DEBUG_MODIFY))
1067168404Spjd		return;
1068168404Spjd
1069168404Spjd	ASSERT(buf->b_hdr->b_freeze_cksum != NULL ||
1070168404Spjd	    buf->b_hdr->b_state == arc_anon);
1071185029Spjd	arc_cksum_compute(buf, B_FALSE);
1072168404Spjd}
1073168404Spjd
1074168404Spjdstatic void
1075205231Skmacyget_buf_info(arc_buf_hdr_t *ab, arc_state_t *state, list_t **list, kmutex_t **lock)
1076205231Skmacy{
1077205231Skmacy	uint64_t buf_hashid = buf_hash(ab->b_spa, &ab->b_dva, ab->b_birth);
1078205231Skmacy
1079205231Skmacy	if (ab->b_type == ARC_BUFC_METADATA)
1080205231Skmacy		buf_hashid &= (ARC_BUFC_NUMMETADATALISTS-1);
1081205231Skmacy	else {
1082205231Skmacy		buf_hashid &= (ARC_BUFC_NUMDATALISTS-1);
1083205231Skmacy		buf_hashid += ARC_BUFC_NUMMETADATALISTS;
1084205231Skmacy	}
1085205231Skmacy
1086205231Skmacy	*list = &state->arcs_lists[buf_hashid];
1087205231Skmacy	*lock = ARCS_LOCK(state, buf_hashid);
1088205231Skmacy}
1089205231Skmacy
1090205231Skmacy
1091205231Skmacystatic void
1092168404Spjdadd_reference(arc_buf_hdr_t *ab, kmutex_t *hash_lock, void *tag)
1093168404Spjd{
1094205231Skmacy
1095168404Spjd	ASSERT(MUTEX_HELD(hash_lock));
1096168404Spjd
1097168404Spjd	if ((refcount_add(&ab->b_refcnt, tag) == 1) &&
1098168404Spjd	    (ab->b_state != arc_anon)) {
1099205231Skmacy		list_t *list;
1100205231Skmacy		kmutex_t *lock;
1101168404Spjd		uint64_t delta = ab->b_size * ab->b_datacnt;
1102185029Spjd		uint64_t *size = &ab->b_state->arcs_lsize[ab->b_type];
1103168404Spjd
1104205231Skmacy		get_buf_info(ab, ab->b_state, &list, &lock);
1105205231Skmacy		ASSERT(!MUTEX_HELD(lock));
1106205231Skmacy		mutex_enter(lock);
1107168404Spjd		ASSERT(list_link_active(&ab->b_arc_node));
1108185029Spjd		list_remove(list, ab);
1109168404Spjd		if (GHOST_STATE(ab->b_state)) {
1110168404Spjd			ASSERT3U(ab->b_datacnt, ==, 0);
1111168404Spjd			ASSERT3P(ab->b_buf, ==, NULL);
1112168404Spjd			delta = ab->b_size;
1113168404Spjd		}
1114168404Spjd		ASSERT(delta > 0);
1115185029Spjd		ASSERT3U(*size, >=, delta);
1116185029Spjd		atomic_add_64(size, -delta);
1117206794Spjd		mutex_exit(lock);
1118185029Spjd		/* remove the prefetch flag if we get a reference */
1119168404Spjd		if (ab->b_flags & ARC_PREFETCH)
1120168404Spjd			ab->b_flags &= ~ARC_PREFETCH;
1121168404Spjd	}
1122168404Spjd}
1123168404Spjd
1124168404Spjdstatic int
1125168404Spjdremove_reference(arc_buf_hdr_t *ab, kmutex_t *hash_lock, void *tag)
1126168404Spjd{
1127168404Spjd	int cnt;
1128168404Spjd	arc_state_t *state = ab->b_state;
1129168404Spjd
1130168404Spjd	ASSERT(state == arc_anon || MUTEX_HELD(hash_lock));
1131168404Spjd	ASSERT(!GHOST_STATE(state));
1132168404Spjd
1133168404Spjd	if (((cnt = refcount_remove(&ab->b_refcnt, tag)) == 0) &&
1134168404Spjd	    (state != arc_anon)) {
1135185029Spjd		uint64_t *size = &state->arcs_lsize[ab->b_type];
1136205231Skmacy		list_t *list;
1137205231Skmacy		kmutex_t *lock;
1138185029Spjd
1139205231Skmacy		get_buf_info(ab, state, &list, &lock);
1140205231Skmacy		ASSERT(!MUTEX_HELD(lock));
1141205231Skmacy		mutex_enter(lock);
1142168404Spjd		ASSERT(!list_link_active(&ab->b_arc_node));
1143205231Skmacy		list_insert_head(list, ab);
1144168404Spjd		ASSERT(ab->b_datacnt > 0);
1145185029Spjd		atomic_add_64(size, ab->b_size * ab->b_datacnt);
1146206794Spjd		mutex_exit(lock);
1147168404Spjd	}
1148168404Spjd	return (cnt);
1149168404Spjd}
1150168404Spjd
1151168404Spjd/*
1152168404Spjd * Move the supplied buffer to the indicated state.  The mutex
1153168404Spjd * for the buffer must be held by the caller.
1154168404Spjd */
1155168404Spjdstatic void
1156168404Spjdarc_change_state(arc_state_t *new_state, arc_buf_hdr_t *ab, kmutex_t *hash_lock)
1157168404Spjd{
1158168404Spjd	arc_state_t *old_state = ab->b_state;
1159168404Spjd	int64_t refcnt = refcount_count(&ab->b_refcnt);
1160168404Spjd	uint64_t from_delta, to_delta;
1161205231Skmacy	list_t *list;
1162205231Skmacy	kmutex_t *lock;
1163168404Spjd
1164168404Spjd	ASSERT(MUTEX_HELD(hash_lock));
1165168404Spjd	ASSERT(new_state != old_state);
1166168404Spjd	ASSERT(refcnt == 0 || ab->b_datacnt > 0);
1167168404Spjd	ASSERT(ab->b_datacnt == 0 || !GHOST_STATE(new_state));
1168168404Spjd
1169168404Spjd	from_delta = to_delta = ab->b_datacnt * ab->b_size;
1170168404Spjd
1171168404Spjd	/*
1172168404Spjd	 * If this buffer is evictable, transfer it from the
1173168404Spjd	 * old state list to the new state list.
1174168404Spjd	 */
1175168404Spjd	if (refcnt == 0) {
1176168404Spjd		if (old_state != arc_anon) {
1177205231Skmacy			int use_mutex;
1178185029Spjd			uint64_t *size = &old_state->arcs_lsize[ab->b_type];
1179168404Spjd
1180205231Skmacy			get_buf_info(ab, old_state, &list, &lock);
1181205231Skmacy			use_mutex = !MUTEX_HELD(lock);
1182205231Skmacy
1183168404Spjd			if (use_mutex)
1184205231Skmacy				mutex_enter(lock);
1185168404Spjd
1186168404Spjd			ASSERT(list_link_active(&ab->b_arc_node));
1187205231Skmacy			list_remove(list, ab);
1188168404Spjd
1189168404Spjd			/*
1190168404Spjd			 * If prefetching out of the ghost cache,
1191168404Spjd			 * we will have a non-null datacnt.
1192168404Spjd			 */
1193168404Spjd			if (GHOST_STATE(old_state) && ab->b_datacnt == 0) {
1194168404Spjd				/* ghost elements have a ghost size */
1195168404Spjd				ASSERT(ab->b_buf == NULL);
1196168404Spjd				from_delta = ab->b_size;
1197168404Spjd			}
1198185029Spjd			ASSERT3U(*size, >=, from_delta);
1199185029Spjd			atomic_add_64(size, -from_delta);
1200168404Spjd
1201168404Spjd			if (use_mutex)
1202205231Skmacy				mutex_exit(lock);
1203168404Spjd		}
1204168404Spjd		if (new_state != arc_anon) {
1205205231Skmacy			int use_mutex;
1206185029Spjd			uint64_t *size = &new_state->arcs_lsize[ab->b_type];
1207168404Spjd
1208205231Skmacy			get_buf_info(ab, new_state, &list, &lock);
1209205231Skmacy			use_mutex = !MUTEX_HELD(lock);
1210205231Skmacy
1211205231Skmacy
1212168404Spjd			if (use_mutex)
1213205231Skmacy				mutex_enter(lock);
1214168404Spjd
1215205231Skmacy			list_insert_head(list, ab);
1216168404Spjd
1217168404Spjd			/* ghost elements have a ghost size */
1218168404Spjd			if (GHOST_STATE(new_state)) {
1219168404Spjd				ASSERT(ab->b_datacnt == 0);
1220168404Spjd				ASSERT(ab->b_buf == NULL);
1221168404Spjd				to_delta = ab->b_size;
1222168404Spjd			}
1223185029Spjd			atomic_add_64(size, to_delta);
1224168404Spjd
1225168404Spjd			if (use_mutex)
1226205231Skmacy				mutex_exit(lock);
1227168404Spjd		}
1228168404Spjd	}
1229168404Spjd
1230168404Spjd	ASSERT(!BUF_EMPTY(ab));
1231185029Spjd	if (new_state == arc_anon) {
1232168404Spjd		buf_hash_remove(ab);
1233168404Spjd	}
1234168404Spjd
1235168404Spjd	/* adjust state sizes */
1236168404Spjd	if (to_delta)
1237168404Spjd		atomic_add_64(&new_state->arcs_size, to_delta);
1238168404Spjd	if (from_delta) {
1239168404Spjd		ASSERT3U(old_state->arcs_size, >=, from_delta);
1240168404Spjd		atomic_add_64(&old_state->arcs_size, -from_delta);
1241168404Spjd	}
1242168404Spjd	ab->b_state = new_state;
1243185029Spjd
1244185029Spjd	/* adjust l2arc hdr stats */
1245185029Spjd	if (new_state == arc_l2c_only)
1246185029Spjd		l2arc_hdr_stat_add();
1247185029Spjd	else if (old_state == arc_l2c_only)
1248185029Spjd		l2arc_hdr_stat_remove();
1249168404Spjd}
1250168404Spjd
1251185029Spjdvoid
1252185029Spjdarc_space_consume(uint64_t space)
1253185029Spjd{
1254185029Spjd	atomic_add_64(&arc_meta_used, space);
1255185029Spjd	atomic_add_64(&arc_size, space);
1256185029Spjd}
1257185029Spjd
1258185029Spjdvoid
1259185029Spjdarc_space_return(uint64_t space)
1260185029Spjd{
1261185029Spjd	ASSERT(arc_meta_used >= space);
1262185029Spjd	if (arc_meta_max < arc_meta_used)
1263185029Spjd		arc_meta_max = arc_meta_used;
1264185029Spjd	atomic_add_64(&arc_meta_used, -space);
1265185029Spjd	ASSERT(arc_size >= space);
1266185029Spjd	atomic_add_64(&arc_size, -space);
1267185029Spjd}
1268185029Spjd
1269185029Spjdvoid *
1270185029Spjdarc_data_buf_alloc(uint64_t size)
1271185029Spjd{
1272185029Spjd	if (arc_evict_needed(ARC_BUFC_DATA))
1273185029Spjd		cv_signal(&arc_reclaim_thr_cv);
1274185029Spjd	atomic_add_64(&arc_size, size);
1275185029Spjd	return (zio_data_buf_alloc(size));
1276185029Spjd}
1277185029Spjd
1278185029Spjdvoid
1279185029Spjdarc_data_buf_free(void *buf, uint64_t size)
1280185029Spjd{
1281185029Spjd	zio_data_buf_free(buf, size);
1282185029Spjd	ASSERT(arc_size >= size);
1283185029Spjd	atomic_add_64(&arc_size, -size);
1284185029Spjd}
1285185029Spjd
1286168404Spjdarc_buf_t *
1287168404Spjdarc_buf_alloc(spa_t *spa, int size, void *tag, arc_buf_contents_t type)
1288168404Spjd{
1289168404Spjd	arc_buf_hdr_t *hdr;
1290168404Spjd	arc_buf_t *buf;
1291168404Spjd
1292168404Spjd	ASSERT3U(size, >, 0);
1293185029Spjd	hdr = kmem_cache_alloc(hdr_cache, KM_PUSHPAGE);
1294168404Spjd	ASSERT(BUF_EMPTY(hdr));
1295168404Spjd	hdr->b_size = size;
1296168404Spjd	hdr->b_type = type;
1297168404Spjd	hdr->b_spa = spa;
1298168404Spjd	hdr->b_state = arc_anon;
1299168404Spjd	hdr->b_arc_access = 0;
1300185029Spjd	buf = kmem_cache_alloc(buf_cache, KM_PUSHPAGE);
1301168404Spjd	buf->b_hdr = hdr;
1302168404Spjd	buf->b_data = NULL;
1303168404Spjd	buf->b_efunc = NULL;
1304168404Spjd	buf->b_private = NULL;
1305168404Spjd	buf->b_next = NULL;
1306168404Spjd	hdr->b_buf = buf;
1307168404Spjd	arc_get_data_buf(buf);
1308168404Spjd	hdr->b_datacnt = 1;
1309168404Spjd	hdr->b_flags = 0;
1310168404Spjd	ASSERT(refcount_is_zero(&hdr->b_refcnt));
1311168404Spjd	(void) refcount_add(&hdr->b_refcnt, tag);
1312168404Spjd
1313168404Spjd	return (buf);
1314168404Spjd}
1315168404Spjd
1316168404Spjdstatic arc_buf_t *
1317168404Spjdarc_buf_clone(arc_buf_t *from)
1318168404Spjd{
1319168404Spjd	arc_buf_t *buf;
1320168404Spjd	arc_buf_hdr_t *hdr = from->b_hdr;
1321168404Spjd	uint64_t size = hdr->b_size;
1322168404Spjd
1323185029Spjd	buf = kmem_cache_alloc(buf_cache, KM_PUSHPAGE);
1324168404Spjd	buf->b_hdr = hdr;
1325168404Spjd	buf->b_data = NULL;
1326168404Spjd	buf->b_efunc = NULL;
1327168404Spjd	buf->b_private = NULL;
1328168404Spjd	buf->b_next = hdr->b_buf;
1329168404Spjd	hdr->b_buf = buf;
1330168404Spjd	arc_get_data_buf(buf);
1331168404Spjd	bcopy(from->b_data, buf->b_data, size);
1332168404Spjd	hdr->b_datacnt += 1;
1333168404Spjd	return (buf);
1334168404Spjd}
1335168404Spjd
1336168404Spjdvoid
1337168404Spjdarc_buf_add_ref(arc_buf_t *buf, void* tag)
1338168404Spjd{
1339168404Spjd	arc_buf_hdr_t *hdr;
1340168404Spjd	kmutex_t *hash_lock;
1341168404Spjd
1342168404Spjd	/*
1343185029Spjd	 * Check to see if this buffer is evicted.  Callers
1344185029Spjd	 * must verify b_data != NULL to know if the add_ref
1345185029Spjd	 * was successful.
1346168404Spjd	 */
1347185029Spjd	rw_enter(&buf->b_lock, RW_READER);
1348185029Spjd	if (buf->b_data == NULL) {
1349185029Spjd		rw_exit(&buf->b_lock);
1350168404Spjd		return;
1351168404Spjd	}
1352185029Spjd	hdr = buf->b_hdr;
1353185029Spjd	ASSERT(hdr != NULL);
1354168404Spjd	hash_lock = HDR_LOCK(hdr);
1355168404Spjd	mutex_enter(hash_lock);
1356185029Spjd	rw_exit(&buf->b_lock);
1357168404Spjd
1358168404Spjd	ASSERT(hdr->b_state == arc_mru || hdr->b_state == arc_mfu);
1359168404Spjd	add_reference(hdr, hash_lock, tag);
1360168404Spjd	arc_access(hdr, hash_lock);
1361168404Spjd	mutex_exit(hash_lock);
1362168404Spjd	ARCSTAT_BUMP(arcstat_hits);
1363168404Spjd	ARCSTAT_CONDSTAT(!(hdr->b_flags & ARC_PREFETCH),
1364168404Spjd	    demand, prefetch, hdr->b_type != ARC_BUFC_METADATA,
1365168404Spjd	    data, metadata, hits);
1366168404Spjd}
1367168404Spjd
1368185029Spjd/*
1369185029Spjd * Free the arc data buffer.  If it is an l2arc write in progress,
1370185029Spjd * the buffer is placed on l2arc_free_on_write to be freed later.
1371185029Spjd */
1372168404Spjdstatic void
1373185029Spjdarc_buf_data_free(arc_buf_hdr_t *hdr, void (*free_func)(void *, size_t),
1374185029Spjd    void *data, size_t size)
1375185029Spjd{
1376185029Spjd	if (HDR_L2_WRITING(hdr)) {
1377185029Spjd		l2arc_data_free_t *df;
1378185029Spjd		df = kmem_alloc(sizeof (l2arc_data_free_t), KM_SLEEP);
1379185029Spjd		df->l2df_data = data;
1380185029Spjd		df->l2df_size = size;
1381185029Spjd		df->l2df_func = free_func;
1382185029Spjd		mutex_enter(&l2arc_free_on_write_mtx);
1383185029Spjd		list_insert_head(l2arc_free_on_write, df);
1384185029Spjd		mutex_exit(&l2arc_free_on_write_mtx);
1385185029Spjd		ARCSTAT_BUMP(arcstat_l2_free_on_write);
1386185029Spjd	} else {
1387185029Spjd		free_func(data, size);
1388185029Spjd	}
1389185029Spjd}
1390185029Spjd
1391185029Spjdstatic void
1392168404Spjdarc_buf_destroy(arc_buf_t *buf, boolean_t recycle, boolean_t all)
1393168404Spjd{
1394168404Spjd	arc_buf_t **bufp;
1395168404Spjd
1396168404Spjd	/* free up data associated with the buf */
1397168404Spjd	if (buf->b_data) {
1398168404Spjd		arc_state_t *state = buf->b_hdr->b_state;
1399168404Spjd		uint64_t size = buf->b_hdr->b_size;
1400168404Spjd		arc_buf_contents_t type = buf->b_hdr->b_type;
1401168404Spjd
1402168404Spjd		arc_cksum_verify(buf);
1403168404Spjd		if (!recycle) {
1404168404Spjd			if (type == ARC_BUFC_METADATA) {
1405185029Spjd				arc_buf_data_free(buf->b_hdr, zio_buf_free,
1406185029Spjd				    buf->b_data, size);
1407185029Spjd				arc_space_return(size);
1408168404Spjd			} else {
1409168404Spjd				ASSERT(type == ARC_BUFC_DATA);
1410185029Spjd				arc_buf_data_free(buf->b_hdr,
1411185029Spjd				    zio_data_buf_free, buf->b_data, size);
1412185029Spjd				atomic_add_64(&arc_size, -size);
1413168404Spjd			}
1414168404Spjd		}
1415168404Spjd		if (list_link_active(&buf->b_hdr->b_arc_node)) {
1416185029Spjd			uint64_t *cnt = &state->arcs_lsize[type];
1417185029Spjd
1418168404Spjd			ASSERT(refcount_is_zero(&buf->b_hdr->b_refcnt));
1419168404Spjd			ASSERT(state != arc_anon);
1420185029Spjd
1421185029Spjd			ASSERT3U(*cnt, >=, size);
1422185029Spjd			atomic_add_64(cnt, -size);
1423168404Spjd		}
1424168404Spjd		ASSERT3U(state->arcs_size, >=, size);
1425168404Spjd		atomic_add_64(&state->arcs_size, -size);
1426168404Spjd		buf->b_data = NULL;
1427168404Spjd		ASSERT(buf->b_hdr->b_datacnt > 0);
1428168404Spjd		buf->b_hdr->b_datacnt -= 1;
1429168404Spjd	}
1430168404Spjd
1431168404Spjd	/* only remove the buf if requested */
1432168404Spjd	if (!all)
1433168404Spjd		return;
1434168404Spjd
1435168404Spjd	/* remove the buf from the hdr list */
1436168404Spjd	for (bufp = &buf->b_hdr->b_buf; *bufp != buf; bufp = &(*bufp)->b_next)
1437168404Spjd		continue;
1438168404Spjd	*bufp = buf->b_next;
1439168404Spjd
1440168404Spjd	ASSERT(buf->b_efunc == NULL);
1441168404Spjd
1442168404Spjd	/* clean up the buf */
1443168404Spjd	buf->b_hdr = NULL;
1444168404Spjd	kmem_cache_free(buf_cache, buf);
1445168404Spjd}
1446168404Spjd
1447168404Spjdstatic void
1448168404Spjdarc_hdr_destroy(arc_buf_hdr_t *hdr)
1449168404Spjd{
1450168404Spjd	ASSERT(refcount_is_zero(&hdr->b_refcnt));
1451168404Spjd	ASSERT3P(hdr->b_state, ==, arc_anon);
1452168404Spjd	ASSERT(!HDR_IO_IN_PROGRESS(hdr));
1453185029Spjd	ASSERT(!(hdr->b_flags & ARC_STORED));
1454168404Spjd
1455185029Spjd	if (hdr->b_l2hdr != NULL) {
1456185029Spjd		if (!MUTEX_HELD(&l2arc_buflist_mtx)) {
1457185029Spjd			/*
1458185029Spjd			 * To prevent arc_free() and l2arc_evict() from
1459185029Spjd			 * attempting to free the same buffer at the same time,
1460185029Spjd			 * a FREE_IN_PROGRESS flag is given to arc_free() to
1461185029Spjd			 * give it priority.  l2arc_evict() can't destroy this
1462185029Spjd			 * header while we are waiting on l2arc_buflist_mtx.
1463185029Spjd			 *
1464185029Spjd			 * The hdr may be removed from l2ad_buflist before we
1465185029Spjd			 * grab l2arc_buflist_mtx, so b_l2hdr is rechecked.
1466185029Spjd			 */
1467185029Spjd			mutex_enter(&l2arc_buflist_mtx);
1468185029Spjd			if (hdr->b_l2hdr != NULL) {
1469185029Spjd				list_remove(hdr->b_l2hdr->b_dev->l2ad_buflist,
1470185029Spjd				    hdr);
1471185029Spjd			}
1472185029Spjd			mutex_exit(&l2arc_buflist_mtx);
1473185029Spjd		} else {
1474185029Spjd			list_remove(hdr->b_l2hdr->b_dev->l2ad_buflist, hdr);
1475185029Spjd		}
1476185029Spjd		ARCSTAT_INCR(arcstat_l2_size, -hdr->b_size);
1477185029Spjd		kmem_free(hdr->b_l2hdr, sizeof (l2arc_buf_hdr_t));
1478185029Spjd		if (hdr->b_state == arc_l2c_only)
1479185029Spjd			l2arc_hdr_stat_remove();
1480185029Spjd		hdr->b_l2hdr = NULL;
1481185029Spjd	}
1482185029Spjd
1483168404Spjd	if (!BUF_EMPTY(hdr)) {
1484168404Spjd		ASSERT(!HDR_IN_HASH_TABLE(hdr));
1485168404Spjd		bzero(&hdr->b_dva, sizeof (dva_t));
1486168404Spjd		hdr->b_birth = 0;
1487168404Spjd		hdr->b_cksum0 = 0;
1488168404Spjd	}
1489168404Spjd	while (hdr->b_buf) {
1490168404Spjd		arc_buf_t *buf = hdr->b_buf;
1491168404Spjd
1492168404Spjd		if (buf->b_efunc) {
1493168404Spjd			mutex_enter(&arc_eviction_mtx);
1494185029Spjd			rw_enter(&buf->b_lock, RW_WRITER);
1495168404Spjd			ASSERT(buf->b_hdr != NULL);
1496168404Spjd			arc_buf_destroy(hdr->b_buf, FALSE, FALSE);
1497168404Spjd			hdr->b_buf = buf->b_next;
1498168404Spjd			buf->b_hdr = &arc_eviction_hdr;
1499168404Spjd			buf->b_next = arc_eviction_list;
1500168404Spjd			arc_eviction_list = buf;
1501185029Spjd			rw_exit(&buf->b_lock);
1502168404Spjd			mutex_exit(&arc_eviction_mtx);
1503168404Spjd		} else {
1504168404Spjd			arc_buf_destroy(hdr->b_buf, FALSE, TRUE);
1505168404Spjd		}
1506168404Spjd	}
1507168404Spjd	if (hdr->b_freeze_cksum != NULL) {
1508168404Spjd		kmem_free(hdr->b_freeze_cksum, sizeof (zio_cksum_t));
1509168404Spjd		hdr->b_freeze_cksum = NULL;
1510168404Spjd	}
1511168404Spjd
1512168404Spjd	ASSERT(!list_link_active(&hdr->b_arc_node));
1513168404Spjd	ASSERT3P(hdr->b_hash_next, ==, NULL);
1514168404Spjd	ASSERT3P(hdr->b_acb, ==, NULL);
1515168404Spjd	kmem_cache_free(hdr_cache, hdr);
1516168404Spjd}
1517168404Spjd
1518168404Spjdvoid
1519168404Spjdarc_buf_free(arc_buf_t *buf, void *tag)
1520168404Spjd{
1521168404Spjd	arc_buf_hdr_t *hdr = buf->b_hdr;
1522168404Spjd	int hashed = hdr->b_state != arc_anon;
1523168404Spjd
1524168404Spjd	ASSERT(buf->b_efunc == NULL);
1525168404Spjd	ASSERT(buf->b_data != NULL);
1526168404Spjd
1527168404Spjd	if (hashed) {
1528168404Spjd		kmutex_t *hash_lock = HDR_LOCK(hdr);
1529168404Spjd
1530168404Spjd		mutex_enter(hash_lock);
1531168404Spjd		(void) remove_reference(hdr, hash_lock, tag);
1532168404Spjd		if (hdr->b_datacnt > 1)
1533168404Spjd			arc_buf_destroy(buf, FALSE, TRUE);
1534168404Spjd		else
1535168404Spjd			hdr->b_flags |= ARC_BUF_AVAILABLE;
1536168404Spjd		mutex_exit(hash_lock);
1537168404Spjd	} else if (HDR_IO_IN_PROGRESS(hdr)) {
1538168404Spjd		int destroy_hdr;
1539168404Spjd		/*
1540168404Spjd		 * We are in the middle of an async write.  Don't destroy
1541168404Spjd		 * this buffer unless the write completes before we finish
1542168404Spjd		 * decrementing the reference count.
1543168404Spjd		 */
1544168404Spjd		mutex_enter(&arc_eviction_mtx);
1545168404Spjd		(void) remove_reference(hdr, NULL, tag);
1546168404Spjd		ASSERT(refcount_is_zero(&hdr->b_refcnt));
1547168404Spjd		destroy_hdr = !HDR_IO_IN_PROGRESS(hdr);
1548168404Spjd		mutex_exit(&arc_eviction_mtx);
1549168404Spjd		if (destroy_hdr)
1550168404Spjd			arc_hdr_destroy(hdr);
1551168404Spjd	} else {
1552168404Spjd		if (remove_reference(hdr, NULL, tag) > 0) {
1553168404Spjd			ASSERT(HDR_IO_ERROR(hdr));
1554168404Spjd			arc_buf_destroy(buf, FALSE, TRUE);
1555168404Spjd		} else {
1556168404Spjd			arc_hdr_destroy(hdr);
1557168404Spjd		}
1558168404Spjd	}
1559168404Spjd}
1560168404Spjd
1561168404Spjdint
1562168404Spjdarc_buf_remove_ref(arc_buf_t *buf, void* tag)
1563168404Spjd{
1564168404Spjd	arc_buf_hdr_t *hdr = buf->b_hdr;
1565168404Spjd	kmutex_t *hash_lock = HDR_LOCK(hdr);
1566168404Spjd	int no_callback = (buf->b_efunc == NULL);
1567168404Spjd
1568168404Spjd	if (hdr->b_state == arc_anon) {
1569168404Spjd		arc_buf_free(buf, tag);
1570168404Spjd		return (no_callback);
1571168404Spjd	}
1572168404Spjd
1573168404Spjd	mutex_enter(hash_lock);
1574168404Spjd	ASSERT(hdr->b_state != arc_anon);
1575168404Spjd	ASSERT(buf->b_data != NULL);
1576168404Spjd
1577168404Spjd	(void) remove_reference(hdr, hash_lock, tag);
1578168404Spjd	if (hdr->b_datacnt > 1) {
1579168404Spjd		if (no_callback)
1580168404Spjd			arc_buf_destroy(buf, FALSE, TRUE);
1581168404Spjd	} else if (no_callback) {
1582168404Spjd		ASSERT(hdr->b_buf == buf && buf->b_next == NULL);
1583168404Spjd		hdr->b_flags |= ARC_BUF_AVAILABLE;
1584168404Spjd	}
1585168404Spjd	ASSERT(no_callback || hdr->b_datacnt > 1 ||
1586168404Spjd	    refcount_is_zero(&hdr->b_refcnt));
1587168404Spjd	mutex_exit(hash_lock);
1588168404Spjd	return (no_callback);
1589168404Spjd}
1590168404Spjd
1591168404Spjdint
1592168404Spjdarc_buf_size(arc_buf_t *buf)
1593168404Spjd{
1594168404Spjd	return (buf->b_hdr->b_size);
1595168404Spjd}
1596168404Spjd
1597168404Spjd/*
1598168404Spjd * Evict buffers from list until we've removed the specified number of
1599168404Spjd * bytes.  Move the removed buffers to the appropriate evict state.
1600168404Spjd * If the recycle flag is set, then attempt to "recycle" a buffer:
1601168404Spjd * - look for a buffer to evict that is `bytes' long.
1602168404Spjd * - return the data block from this buffer rather than freeing it.
1603168404Spjd * This flag is used by callers that are trying to make space for a
1604168404Spjd * new buffer in a full arc cache.
1605185029Spjd *
1606185029Spjd * This function makes a "best effort".  It skips over any buffers
1607185029Spjd * it can't get a hash_lock on, and so may not catch all candidates.
1608185029Spjd * It may also return without evicting as much space as requested.
1609168404Spjd */
1610168404Spjdstatic void *
1611185029Spjdarc_evict(arc_state_t *state, spa_t *spa, int64_t bytes, boolean_t recycle,
1612168404Spjd    arc_buf_contents_t type)
1613168404Spjd{
1614168404Spjd	arc_state_t *evicted_state;
1615168404Spjd	uint64_t bytes_evicted = 0, skipped = 0, missed = 0;
1616205231Skmacy	int64_t bytes_remaining;
1617168404Spjd	arc_buf_hdr_t *ab, *ab_prev = NULL;
1618205231Skmacy	list_t *evicted_list, *list, *evicted_list_start, *list_start;
1619205231Skmacy	kmutex_t *lock, *evicted_lock;
1620168404Spjd	kmutex_t *hash_lock;
1621168404Spjd	boolean_t have_lock;
1622168404Spjd	void *stolen = NULL;
1623205231Skmacy	static int evict_metadata_offset, evict_data_offset;
1624205231Skmacy	int i, idx, offset, list_count, count;
1625168404Spjd
1626168404Spjd	ASSERT(state == arc_mru || state == arc_mfu);
1627168404Spjd
1628168404Spjd	evicted_state = (state == arc_mru) ? arc_mru_ghost : arc_mfu_ghost;
1629205231Skmacy
1630205231Skmacy	if (type == ARC_BUFC_METADATA) {
1631205231Skmacy		offset = 0;
1632205231Skmacy		list_count = ARC_BUFC_NUMMETADATALISTS;
1633205231Skmacy		list_start = &state->arcs_lists[0];
1634205231Skmacy		evicted_list_start = &evicted_state->arcs_lists[0];
1635205231Skmacy		idx = evict_metadata_offset;
1636205231Skmacy	} else {
1637205231Skmacy		offset = ARC_BUFC_NUMMETADATALISTS;
1638168404Spjd
1639205231Skmacy		list_start = &state->arcs_lists[offset];
1640205231Skmacy		evicted_list_start = &evicted_state->arcs_lists[offset];
1641205231Skmacy		list_count = ARC_BUFC_NUMDATALISTS;
1642205231Skmacy		idx = evict_data_offset;
1643205231Skmacy	}
1644205231Skmacy	bytes_remaining = evicted_state->arcs_lsize[type];
1645205231Skmacy	count = 0;
1646205231Skmacy
1647205231Skmacyevict_start:
1648205231Skmacy	list = &list_start[idx];
1649205231Skmacy	evicted_list = &evicted_list_start[idx];
1650205231Skmacy	lock = ARCS_LOCK(state, (offset + idx));
1651205231Skmacy	evicted_lock = ARCS_LOCK(evicted_state, (offset + idx));
1652168404Spjd
1653205231Skmacy	mutex_enter(lock);
1654205231Skmacy	mutex_enter(evicted_lock);
1655205231Skmacy
1656185029Spjd	for (ab = list_tail(list); ab; ab = ab_prev) {
1657185029Spjd		ab_prev = list_prev(list, ab);
1658205231Skmacy		bytes_remaining -= (ab->b_size * ab->b_datacnt);
1659168404Spjd		/* prefetch buffers have a minimum lifespan */
1660168404Spjd		if (HDR_IO_IN_PROGRESS(ab) ||
1661185029Spjd		    (spa && ab->b_spa != spa) ||
1662168404Spjd		    (ab->b_flags & (ARC_PREFETCH|ARC_INDIRECT) &&
1663174049Sjb		    LBOLT - ab->b_arc_access < arc_min_prefetch_lifespan)) {
1664168404Spjd			skipped++;
1665168404Spjd			continue;
1666168404Spjd		}
1667168404Spjd		/* "lookahead" for better eviction candidate */
1668168404Spjd		if (recycle && ab->b_size != bytes &&
1669168404Spjd		    ab_prev && ab_prev->b_size == bytes)
1670168404Spjd			continue;
1671168404Spjd		hash_lock = HDR_LOCK(ab);
1672168404Spjd		have_lock = MUTEX_HELD(hash_lock);
1673168404Spjd		if (have_lock || mutex_tryenter(hash_lock)) {
1674168404Spjd			ASSERT3U(refcount_count(&ab->b_refcnt), ==, 0);
1675168404Spjd			ASSERT(ab->b_datacnt > 0);
1676168404Spjd			while (ab->b_buf) {
1677168404Spjd				arc_buf_t *buf = ab->b_buf;
1678185029Spjd				if (!rw_tryenter(&buf->b_lock, RW_WRITER)) {
1679185029Spjd					missed += 1;
1680185029Spjd					break;
1681185029Spjd				}
1682168404Spjd				if (buf->b_data) {
1683168404Spjd					bytes_evicted += ab->b_size;
1684168404Spjd					if (recycle && ab->b_type == type &&
1685185029Spjd					    ab->b_size == bytes &&
1686185029Spjd					    !HDR_L2_WRITING(ab)) {
1687168404Spjd						stolen = buf->b_data;
1688168404Spjd						recycle = FALSE;
1689168404Spjd					}
1690168404Spjd				}
1691168404Spjd				if (buf->b_efunc) {
1692168404Spjd					mutex_enter(&arc_eviction_mtx);
1693168404Spjd					arc_buf_destroy(buf,
1694168404Spjd					    buf->b_data == stolen, FALSE);
1695168404Spjd					ab->b_buf = buf->b_next;
1696168404Spjd					buf->b_hdr = &arc_eviction_hdr;
1697168404Spjd					buf->b_next = arc_eviction_list;
1698168404Spjd					arc_eviction_list = buf;
1699168404Spjd					mutex_exit(&arc_eviction_mtx);
1700185029Spjd					rw_exit(&buf->b_lock);
1701168404Spjd				} else {
1702185029Spjd					rw_exit(&buf->b_lock);
1703168404Spjd					arc_buf_destroy(buf,
1704168404Spjd					    buf->b_data == stolen, TRUE);
1705168404Spjd				}
1706168404Spjd			}
1707185029Spjd			if (ab->b_datacnt == 0) {
1708185029Spjd				arc_change_state(evicted_state, ab, hash_lock);
1709185029Spjd				ASSERT(HDR_IN_HASH_TABLE(ab));
1710185029Spjd				ab->b_flags |= ARC_IN_HASH_TABLE;
1711185029Spjd				ab->b_flags &= ~ARC_BUF_AVAILABLE;
1712185029Spjd				DTRACE_PROBE1(arc__evict, arc_buf_hdr_t *, ab);
1713185029Spjd			}
1714168404Spjd			if (!have_lock)
1715168404Spjd				mutex_exit(hash_lock);
1716168404Spjd			if (bytes >= 0 && bytes_evicted >= bytes)
1717168404Spjd				break;
1718205231Skmacy			if (bytes_remaining > 0) {
1719205231Skmacy				mutex_exit(evicted_lock);
1720205231Skmacy				mutex_exit(lock);
1721205231Skmacy				idx  = ((idx + 1)&(list_count-1));
1722205231Skmacy				count++;
1723205231Skmacy				goto evict_start;
1724205231Skmacy			}
1725168404Spjd		} else {
1726168404Spjd			missed += 1;
1727168404Spjd		}
1728168404Spjd	}
1729168404Spjd
1730205231Skmacy	mutex_exit(evicted_lock);
1731205231Skmacy	mutex_exit(lock);
1732205231Skmacy
1733205231Skmacy	idx  = ((idx + 1)&(list_count-1));
1734205231Skmacy	count++;
1735168404Spjd
1736205231Skmacy	if (bytes_evicted < bytes) {
1737205231Skmacy		if (count < list_count)
1738205231Skmacy			goto evict_start;
1739205231Skmacy		else
1740205231Skmacy			dprintf("only evicted %lld bytes from %x",
1741205231Skmacy			    (longlong_t)bytes_evicted, state);
1742205231Skmacy	}
1743205231Skmacy	if (type == ARC_BUFC_METADATA)
1744205231Skmacy		evict_metadata_offset = idx;
1745205231Skmacy	else
1746205231Skmacy		evict_data_offset = idx;
1747205231Skmacy
1748168404Spjd	if (skipped)
1749168404Spjd		ARCSTAT_INCR(arcstat_evict_skip, skipped);
1750168404Spjd
1751168404Spjd	if (missed)
1752168404Spjd		ARCSTAT_INCR(arcstat_mutex_miss, missed);
1753168404Spjd
1754185029Spjd	/*
1755185029Spjd	 * We have just evicted some date into the ghost state, make
1756185029Spjd	 * sure we also adjust the ghost state size if necessary.
1757185029Spjd	 */
1758185029Spjd	if (arc_no_grow &&
1759185029Spjd	    arc_mru_ghost->arcs_size + arc_mfu_ghost->arcs_size > arc_c) {
1760185029Spjd		int64_t mru_over = arc_anon->arcs_size + arc_mru->arcs_size +
1761185029Spjd		    arc_mru_ghost->arcs_size - arc_c;
1762185029Spjd
1763185029Spjd		if (mru_over > 0 && arc_mru_ghost->arcs_lsize[type] > 0) {
1764185029Spjd			int64_t todelete =
1765185029Spjd			    MIN(arc_mru_ghost->arcs_lsize[type], mru_over);
1766185029Spjd			arc_evict_ghost(arc_mru_ghost, NULL, todelete);
1767185029Spjd		} else if (arc_mfu_ghost->arcs_lsize[type] > 0) {
1768185029Spjd			int64_t todelete = MIN(arc_mfu_ghost->arcs_lsize[type],
1769185029Spjd			    arc_mru_ghost->arcs_size +
1770185029Spjd			    arc_mfu_ghost->arcs_size - arc_c);
1771185029Spjd			arc_evict_ghost(arc_mfu_ghost, NULL, todelete);
1772185029Spjd		}
1773185029Spjd	}
1774205231Skmacy	if (stolen)
1775205231Skmacy		ARCSTAT_BUMP(arcstat_stolen);
1776185029Spjd
1777168404Spjd	return (stolen);
1778168404Spjd}
1779168404Spjd
1780168404Spjd/*
1781168404Spjd * Remove buffers from list until we've removed the specified number of
1782168404Spjd * bytes.  Destroy the buffers that are removed.
1783168404Spjd */
1784168404Spjdstatic void
1785185029Spjdarc_evict_ghost(arc_state_t *state, spa_t *spa, int64_t bytes)
1786168404Spjd{
1787168404Spjd	arc_buf_hdr_t *ab, *ab_prev;
1788205231Skmacy	list_t *list, *list_start;
1789205231Skmacy	kmutex_t *hash_lock, *lock;
1790168404Spjd	uint64_t bytes_deleted = 0;
1791168404Spjd	uint64_t bufs_skipped = 0;
1792205231Skmacy	static int evict_offset;
1793205231Skmacy	int list_count, idx = evict_offset;
1794205231Skmacy	int offset, count = 0;
1795168404Spjd
1796168404Spjd	ASSERT(GHOST_STATE(state));
1797205231Skmacy
1798205231Skmacy	/*
1799205231Skmacy	 * data lists come after metadata lists
1800205231Skmacy	 */
1801205231Skmacy	list_start = &state->arcs_lists[ARC_BUFC_NUMMETADATALISTS];
1802205231Skmacy	list_count = ARC_BUFC_NUMDATALISTS;
1803205231Skmacy	offset = ARC_BUFC_NUMMETADATALISTS;
1804205231Skmacy
1805205231Skmacyevict_start:
1806205231Skmacy	list = &list_start[idx];
1807205231Skmacy	lock = ARCS_LOCK(state, idx + offset);
1808205231Skmacy
1809205231Skmacy	mutex_enter(lock);
1810185029Spjd	for (ab = list_tail(list); ab; ab = ab_prev) {
1811185029Spjd		ab_prev = list_prev(list, ab);
1812185029Spjd		if (spa && ab->b_spa != spa)
1813185029Spjd			continue;
1814168404Spjd		hash_lock = HDR_LOCK(ab);
1815168404Spjd		if (mutex_tryenter(hash_lock)) {
1816168404Spjd			ASSERT(!HDR_IO_IN_PROGRESS(ab));
1817168404Spjd			ASSERT(ab->b_buf == NULL);
1818168404Spjd			ARCSTAT_BUMP(arcstat_deleted);
1819168404Spjd			bytes_deleted += ab->b_size;
1820185029Spjd
1821185029Spjd			if (ab->b_l2hdr != NULL) {
1822185029Spjd				/*
1823185029Spjd				 * This buffer is cached on the 2nd Level ARC;
1824185029Spjd				 * don't destroy the header.
1825185029Spjd				 */
1826185029Spjd				arc_change_state(arc_l2c_only, ab, hash_lock);
1827185029Spjd				mutex_exit(hash_lock);
1828185029Spjd			} else {
1829185029Spjd				arc_change_state(arc_anon, ab, hash_lock);
1830185029Spjd				mutex_exit(hash_lock);
1831185029Spjd				arc_hdr_destroy(ab);
1832185029Spjd			}
1833185029Spjd
1834168404Spjd			DTRACE_PROBE1(arc__delete, arc_buf_hdr_t *, ab);
1835168404Spjd			if (bytes >= 0 && bytes_deleted >= bytes)
1836168404Spjd				break;
1837168404Spjd		} else {
1838168404Spjd			if (bytes < 0) {
1839205231Skmacy				/*
1840205231Skmacy				 * we're draining the ARC, retry
1841205231Skmacy				 */
1842205231Skmacy				mutex_exit(lock);
1843168404Spjd				mutex_enter(hash_lock);
1844168404Spjd				mutex_exit(hash_lock);
1845205231Skmacy				goto evict_start;
1846168404Spjd			}
1847168404Spjd			bufs_skipped += 1;
1848168404Spjd		}
1849168404Spjd	}
1850205231Skmacy	mutex_exit(lock);
1851205231Skmacy	idx  = ((idx + 1)&(ARC_BUFC_NUMDATALISTS-1));
1852205231Skmacy	count++;
1853205231Skmacy
1854205231Skmacy	if (count < list_count)
1855205231Skmacy		goto evict_start;
1856205231Skmacy
1857205231Skmacy	evict_offset = idx;
1858205231Skmacy	if ((uintptr_t)list > (uintptr_t)&state->arcs_lists[ARC_BUFC_NUMMETADATALISTS] &&
1859185029Spjd	    (bytes < 0 || bytes_deleted < bytes)) {
1860205231Skmacy		list_start = &state->arcs_lists[0];
1861205231Skmacy		list_count = ARC_BUFC_NUMMETADATALISTS;
1862205231Skmacy		offset = count = 0;
1863205231Skmacy		goto evict_start;
1864185029Spjd	}
1865185029Spjd
1866168404Spjd	if (bufs_skipped) {
1867168404Spjd		ARCSTAT_INCR(arcstat_mutex_miss, bufs_skipped);
1868168404Spjd		ASSERT(bytes >= 0);
1869168404Spjd	}
1870168404Spjd
1871168404Spjd	if (bytes_deleted < bytes)
1872168404Spjd		dprintf("only deleted %lld bytes from %p",
1873168404Spjd		    (longlong_t)bytes_deleted, state);
1874168404Spjd}
1875168404Spjd
1876168404Spjdstatic void
1877168404Spjdarc_adjust(void)
1878168404Spjd{
1879168404Spjd	int64_t top_sz, mru_over, arc_over, todelete;
1880168404Spjd
1881185029Spjd	top_sz = arc_anon->arcs_size + arc_mru->arcs_size + arc_meta_used;
1882168404Spjd
1883185029Spjd	if (top_sz > arc_p && arc_mru->arcs_lsize[ARC_BUFC_DATA] > 0) {
1884185029Spjd		int64_t toevict =
1885185029Spjd		    MIN(arc_mru->arcs_lsize[ARC_BUFC_DATA], top_sz - arc_p);
1886185029Spjd		(void) arc_evict(arc_mru, NULL, toevict, FALSE, ARC_BUFC_DATA);
1887168404Spjd		top_sz = arc_anon->arcs_size + arc_mru->arcs_size;
1888168404Spjd	}
1889168404Spjd
1890185029Spjd	if (top_sz > arc_p && arc_mru->arcs_lsize[ARC_BUFC_METADATA] > 0) {
1891185029Spjd		int64_t toevict =
1892185029Spjd		    MIN(arc_mru->arcs_lsize[ARC_BUFC_METADATA], top_sz - arc_p);
1893185029Spjd		(void) arc_evict(arc_mru, NULL, toevict, FALSE,
1894185029Spjd		    ARC_BUFC_METADATA);
1895185029Spjd		top_sz = arc_anon->arcs_size + arc_mru->arcs_size;
1896185029Spjd	}
1897185029Spjd
1898168404Spjd	mru_over = top_sz + arc_mru_ghost->arcs_size - arc_c;
1899168404Spjd
1900168404Spjd	if (mru_over > 0) {
1901185029Spjd		if (arc_mru_ghost->arcs_size > 0) {
1902185029Spjd			todelete = MIN(arc_mru_ghost->arcs_size, mru_over);
1903185029Spjd			arc_evict_ghost(arc_mru_ghost, NULL, todelete);
1904168404Spjd		}
1905168404Spjd	}
1906168404Spjd
1907168404Spjd	if ((arc_over = arc_size - arc_c) > 0) {
1908168404Spjd		int64_t tbl_over;
1909168404Spjd
1910185029Spjd		if (arc_mfu->arcs_lsize[ARC_BUFC_DATA] > 0) {
1911185029Spjd			int64_t toevict =
1912185029Spjd			    MIN(arc_mfu->arcs_lsize[ARC_BUFC_DATA], arc_over);
1913185029Spjd			(void) arc_evict(arc_mfu, NULL, toevict, FALSE,
1914185029Spjd			    ARC_BUFC_DATA);
1915185029Spjd			arc_over = arc_size - arc_c;
1916168404Spjd		}
1917168404Spjd
1918185029Spjd		if (arc_over > 0 &&
1919185029Spjd		    arc_mfu->arcs_lsize[ARC_BUFC_METADATA] > 0) {
1920185029Spjd			int64_t toevict =
1921185029Spjd			    MIN(arc_mfu->arcs_lsize[ARC_BUFC_METADATA],
1922185029Spjd			    arc_over);
1923185029Spjd			(void) arc_evict(arc_mfu, NULL, toevict, FALSE,
1924185029Spjd			    ARC_BUFC_METADATA);
1925185029Spjd		}
1926168404Spjd
1927185029Spjd		tbl_over = arc_size + arc_mru_ghost->arcs_size +
1928185029Spjd		    arc_mfu_ghost->arcs_size - arc_c * 2;
1929185029Spjd
1930185029Spjd		if (tbl_over > 0 && arc_mfu_ghost->arcs_size > 0) {
1931185029Spjd			todelete = MIN(arc_mfu_ghost->arcs_size, tbl_over);
1932185029Spjd			arc_evict_ghost(arc_mfu_ghost, NULL, todelete);
1933168404Spjd		}
1934168404Spjd	}
1935168404Spjd}
1936168404Spjd
1937168404Spjdstatic void
1938168404Spjdarc_do_user_evicts(void)
1939168404Spjd{
1940191903Skmacy	static arc_buf_t *tmp_arc_eviction_list;
1941191903Skmacy
1942191903Skmacy	/*
1943191903Skmacy	 * Move list over to avoid LOR
1944191903Skmacy	 */
1945191903Skmacyrestart:
1946168404Spjd	mutex_enter(&arc_eviction_mtx);
1947191903Skmacy	tmp_arc_eviction_list = arc_eviction_list;
1948191903Skmacy	arc_eviction_list = NULL;
1949191903Skmacy	mutex_exit(&arc_eviction_mtx);
1950191903Skmacy
1951191903Skmacy	while (tmp_arc_eviction_list != NULL) {
1952191903Skmacy		arc_buf_t *buf = tmp_arc_eviction_list;
1953191903Skmacy		tmp_arc_eviction_list = buf->b_next;
1954185029Spjd		rw_enter(&buf->b_lock, RW_WRITER);
1955168404Spjd		buf->b_hdr = NULL;
1956185029Spjd		rw_exit(&buf->b_lock);
1957168404Spjd
1958168404Spjd		if (buf->b_efunc != NULL)
1959168404Spjd			VERIFY(buf->b_efunc(buf) == 0);
1960168404Spjd
1961168404Spjd		buf->b_efunc = NULL;
1962168404Spjd		buf->b_private = NULL;
1963168404Spjd		kmem_cache_free(buf_cache, buf);
1964168404Spjd	}
1965191903Skmacy
1966191903Skmacy	if (arc_eviction_list != NULL)
1967191903Skmacy		goto restart;
1968168404Spjd}
1969168404Spjd
1970168404Spjd/*
1971185029Spjd * Flush all *evictable* data from the cache for the given spa.
1972168404Spjd * NOTE: this will not touch "active" (i.e. referenced) data.
1973168404Spjd */
1974168404Spjdvoid
1975185029Spjdarc_flush(spa_t *spa)
1976168404Spjd{
1977205231Skmacy	while (arc_mru->arcs_lsize[ARC_BUFC_DATA]) {
1978185029Spjd		(void) arc_evict(arc_mru, spa, -1, FALSE, ARC_BUFC_DATA);
1979185029Spjd		if (spa)
1980185029Spjd			break;
1981185029Spjd	}
1982205231Skmacy	while (arc_mru->arcs_lsize[ARC_BUFC_METADATA]) {
1983185029Spjd		(void) arc_evict(arc_mru, spa, -1, FALSE, ARC_BUFC_METADATA);
1984185029Spjd		if (spa)
1985185029Spjd			break;
1986185029Spjd	}
1987205231Skmacy	while (arc_mfu->arcs_lsize[ARC_BUFC_DATA]) {
1988185029Spjd		(void) arc_evict(arc_mfu, spa, -1, FALSE, ARC_BUFC_DATA);
1989185029Spjd		if (spa)
1990185029Spjd			break;
1991185029Spjd	}
1992205231Skmacy	while (arc_mfu->arcs_lsize[ARC_BUFC_METADATA]) {
1993185029Spjd		(void) arc_evict(arc_mfu, spa, -1, FALSE, ARC_BUFC_METADATA);
1994185029Spjd		if (spa)
1995185029Spjd			break;
1996185029Spjd	}
1997168404Spjd
1998185029Spjd	arc_evict_ghost(arc_mru_ghost, spa, -1);
1999185029Spjd	arc_evict_ghost(arc_mfu_ghost, spa, -1);
2000168404Spjd
2001168404Spjd	mutex_enter(&arc_reclaim_thr_lock);
2002168404Spjd	arc_do_user_evicts();
2003168404Spjd	mutex_exit(&arc_reclaim_thr_lock);
2004185029Spjd	ASSERT(spa || arc_eviction_list == NULL);
2005168404Spjd}
2006168404Spjd
2007168404Spjdint arc_shrink_shift = 5;		/* log2(fraction of arc to reclaim) */
2008168404Spjd
2009168404Spjdvoid
2010168404Spjdarc_shrink(void)
2011168404Spjd{
2012168404Spjd	if (arc_c > arc_c_min) {
2013168404Spjd		uint64_t to_free;
2014168404Spjd
2015168404Spjd#ifdef _KERNEL
2016168404Spjd		to_free = arc_c >> arc_shrink_shift;
2017168404Spjd#else
2018168404Spjd		to_free = arc_c >> arc_shrink_shift;
2019168404Spjd#endif
2020168404Spjd		if (arc_c > arc_c_min + to_free)
2021168404Spjd			atomic_add_64(&arc_c, -to_free);
2022168404Spjd		else
2023168404Spjd			arc_c = arc_c_min;
2024168404Spjd
2025168404Spjd		atomic_add_64(&arc_p, -(arc_p >> arc_shrink_shift));
2026168404Spjd		if (arc_c > arc_size)
2027168404Spjd			arc_c = MAX(arc_size, arc_c_min);
2028168404Spjd		if (arc_p > arc_c)
2029168404Spjd			arc_p = (arc_c >> 1);
2030168404Spjd		ASSERT(arc_c >= arc_c_min);
2031168404Spjd		ASSERT((int64_t)arc_p >= 0);
2032168404Spjd	}
2033168404Spjd
2034168404Spjd	if (arc_size > arc_c)
2035168404Spjd		arc_adjust();
2036168404Spjd}
2037168404Spjd
2038185029Spjdstatic int needfree = 0;
2039168404Spjd
2040168404Spjdstatic int
2041168404Spjdarc_reclaim_needed(void)
2042168404Spjd{
2043168404Spjd#if 0
2044168404Spjd	uint64_t extra;
2045168404Spjd#endif
2046168404Spjd
2047168404Spjd#ifdef _KERNEL
2048197816Skmacy	if (needfree)
2049197816Skmacy		return (1);
2050197816Skmacy	if (arc_size > arc_c_max)
2051197816Skmacy		return (1);
2052197816Skmacy	if (arc_size <= arc_c_min)
2053197816Skmacy		return (0);
2054168404Spjd
2055191902Skmacy	/*
2056191902Skmacy	 * If pages are needed or we're within 2048 pages
2057191902Skmacy	 * of needing to page need to reclaim
2058191902Skmacy	 */
2059191902Skmacy	if (vm_pages_needed || (vm_paging_target() > -2048))
2060191902Skmacy		return (1);
2061191902Skmacy
2062168404Spjd#if 0
2063168404Spjd	/*
2064185029Spjd	 * take 'desfree' extra pages, so we reclaim sooner, rather than later
2065185029Spjd	 */
2066185029Spjd	extra = desfree;
2067185029Spjd
2068185029Spjd	/*
2069185029Spjd	 * check that we're out of range of the pageout scanner.  It starts to
2070185029Spjd	 * schedule paging if freemem is less than lotsfree and needfree.
2071185029Spjd	 * lotsfree is the high-water mark for pageout, and needfree is the
2072185029Spjd	 * number of needed free pages.  We add extra pages here to make sure
2073185029Spjd	 * the scanner doesn't start up while we're freeing memory.
2074185029Spjd	 */
2075185029Spjd	if (freemem < lotsfree + needfree + extra)
2076185029Spjd		return (1);
2077185029Spjd
2078185029Spjd	/*
2079168404Spjd	 * check to make sure that swapfs has enough space so that anon
2080185029Spjd	 * reservations can still succeed. anon_resvmem() checks that the
2081168404Spjd	 * availrmem is greater than swapfs_minfree, and the number of reserved
2082168404Spjd	 * swap pages.  We also add a bit of extra here just to prevent
2083168404Spjd	 * circumstances from getting really dire.
2084168404Spjd	 */
2085168404Spjd	if (availrmem < swapfs_minfree + swapfs_reserve + extra)
2086168404Spjd		return (1);
2087168404Spjd
2088168404Spjd#if defined(__i386)
2089168404Spjd	/*
2090168404Spjd	 * If we're on an i386 platform, it's possible that we'll exhaust the
2091168404Spjd	 * kernel heap space before we ever run out of available physical
2092168404Spjd	 * memory.  Most checks of the size of the heap_area compare against
2093168404Spjd	 * tune.t_minarmem, which is the minimum available real memory that we
2094168404Spjd	 * can have in the system.  However, this is generally fixed at 25 pages
2095168404Spjd	 * which is so low that it's useless.  In this comparison, we seek to
2096168404Spjd	 * calculate the total heap-size, and reclaim if more than 3/4ths of the
2097185029Spjd	 * heap is allocated.  (Or, in the calculation, if less than 1/4th is
2098168404Spjd	 * free)
2099168404Spjd	 */
2100168404Spjd	if (btop(vmem_size(heap_arena, VMEM_FREE)) <
2101168404Spjd	    (btop(vmem_size(heap_arena, VMEM_FREE | VMEM_ALLOC)) >> 2))
2102168404Spjd		return (1);
2103168404Spjd#endif
2104168404Spjd#else
2105175633Spjd	if (kmem_used() > (kmem_size() * 3) / 4)
2106168404Spjd		return (1);
2107168404Spjd#endif
2108168404Spjd
2109168404Spjd#else
2110168404Spjd	if (spa_get_random(100) == 0)
2111168404Spjd		return (1);
2112168404Spjd#endif
2113168404Spjd	return (0);
2114168404Spjd}
2115168404Spjd
2116168404Spjdstatic void
2117168404Spjdarc_kmem_reap_now(arc_reclaim_strategy_t strat)
2118168404Spjd{
2119168404Spjd#ifdef ZIO_USE_UMA
2120168404Spjd	size_t			i;
2121168404Spjd	kmem_cache_t		*prev_cache = NULL;
2122168404Spjd	kmem_cache_t		*prev_data_cache = NULL;
2123168404Spjd#endif
2124168404Spjd
2125168404Spjd#ifdef _KERNEL
2126185029Spjd	if (arc_meta_used >= arc_meta_limit) {
2127185029Spjd		/*
2128185029Spjd		 * We are exceeding our meta-data cache limit.
2129185029Spjd		 * Purge some DNLC entries to release holds on meta-data.
2130185029Spjd		 */
2131185029Spjd		dnlc_reduce_cache((void *)(uintptr_t)arc_reduce_dnlc_percent);
2132185029Spjd	}
2133168404Spjd#if defined(__i386)
2134168404Spjd	/*
2135168404Spjd	 * Reclaim unused memory from all kmem caches.
2136168404Spjd	 */
2137168404Spjd	kmem_reap();
2138168404Spjd#endif
2139168404Spjd#endif
2140168404Spjd
2141168404Spjd	/*
2142185029Spjd	 * An aggressive reclamation will shrink the cache size as well as
2143168404Spjd	 * reap free buffers from the arc kmem caches.
2144168404Spjd	 */
2145168404Spjd	if (strat == ARC_RECLAIM_AGGR)
2146168404Spjd		arc_shrink();
2147168404Spjd
2148168404Spjd#ifdef ZIO_USE_UMA
2149168404Spjd	for (i = 0; i < SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT; i++) {
2150168404Spjd		if (zio_buf_cache[i] != prev_cache) {
2151168404Spjd			prev_cache = zio_buf_cache[i];
2152168404Spjd			kmem_cache_reap_now(zio_buf_cache[i]);
2153168404Spjd		}
2154168404Spjd		if (zio_data_buf_cache[i] != prev_data_cache) {
2155168404Spjd			prev_data_cache = zio_data_buf_cache[i];
2156168404Spjd			kmem_cache_reap_now(zio_data_buf_cache[i]);
2157168404Spjd		}
2158168404Spjd	}
2159168404Spjd#endif
2160168404Spjd	kmem_cache_reap_now(buf_cache);
2161168404Spjd	kmem_cache_reap_now(hdr_cache);
2162168404Spjd}
2163168404Spjd
2164168404Spjdstatic void
2165168404Spjdarc_reclaim_thread(void *dummy __unused)
2166168404Spjd{
2167168404Spjd	clock_t			growtime = 0;
2168168404Spjd	arc_reclaim_strategy_t	last_reclaim = ARC_RECLAIM_CONS;
2169168404Spjd	callb_cpr_t		cpr;
2170168404Spjd
2171168404Spjd	CALLB_CPR_INIT(&cpr, &arc_reclaim_thr_lock, callb_generic_cpr, FTAG);
2172168404Spjd
2173168404Spjd	mutex_enter(&arc_reclaim_thr_lock);
2174168404Spjd	while (arc_thread_exit == 0) {
2175168404Spjd		if (arc_reclaim_needed()) {
2176168404Spjd
2177168404Spjd			if (arc_no_grow) {
2178168404Spjd				if (last_reclaim == ARC_RECLAIM_CONS) {
2179168404Spjd					last_reclaim = ARC_RECLAIM_AGGR;
2180168404Spjd				} else {
2181168404Spjd					last_reclaim = ARC_RECLAIM_CONS;
2182168404Spjd				}
2183168404Spjd			} else {
2184168404Spjd				arc_no_grow = TRUE;
2185168404Spjd				last_reclaim = ARC_RECLAIM_AGGR;
2186168404Spjd				membar_producer();
2187168404Spjd			}
2188168404Spjd
2189168404Spjd			/* reset the growth delay for every reclaim */
2190174049Sjb			growtime = LBOLT + (arc_grow_retry * hz);
2191168404Spjd
2192185029Spjd			if (needfree && last_reclaim == ARC_RECLAIM_CONS) {
2193168404Spjd				/*
2194185029Spjd				 * If needfree is TRUE our vm_lowmem hook
2195168404Spjd				 * was called and in that case we must free some
2196168404Spjd				 * memory, so switch to aggressive mode.
2197168404Spjd				 */
2198168404Spjd				arc_no_grow = TRUE;
2199168404Spjd				last_reclaim = ARC_RECLAIM_AGGR;
2200168404Spjd			}
2201168404Spjd			arc_kmem_reap_now(last_reclaim);
2202185029Spjd			arc_warm = B_TRUE;
2203185029Spjd
2204185029Spjd		} else if (arc_no_grow && LBOLT >= growtime) {
2205168404Spjd			arc_no_grow = FALSE;
2206168404Spjd		}
2207168404Spjd
2208185029Spjd		if (needfree ||
2209168404Spjd		    (2 * arc_c < arc_size +
2210168404Spjd		    arc_mru_ghost->arcs_size + arc_mfu_ghost->arcs_size))
2211168404Spjd			arc_adjust();
2212168404Spjd
2213168404Spjd		if (arc_eviction_list != NULL)
2214168404Spjd			arc_do_user_evicts();
2215168404Spjd
2216168404Spjd		if (arc_reclaim_needed()) {
2217185029Spjd			needfree = 0;
2218168404Spjd#ifdef _KERNEL
2219185029Spjd			wakeup(&needfree);
2220168404Spjd#endif
2221168404Spjd		}
2222168404Spjd
2223168404Spjd		/* block until needed, or one second, whichever is shorter */
2224168404Spjd		CALLB_CPR_SAFE_BEGIN(&cpr);
2225168404Spjd		(void) cv_timedwait(&arc_reclaim_thr_cv,
2226168404Spjd		    &arc_reclaim_thr_lock, hz);
2227168404Spjd		CALLB_CPR_SAFE_END(&cpr, &arc_reclaim_thr_lock);
2228168404Spjd	}
2229168404Spjd
2230168404Spjd	arc_thread_exit = 0;
2231168404Spjd	cv_broadcast(&arc_reclaim_thr_cv);
2232168404Spjd	CALLB_CPR_EXIT(&cpr);		/* drops arc_reclaim_thr_lock */
2233168404Spjd	thread_exit();
2234168404Spjd}
2235168404Spjd
2236168404Spjd/*
2237168404Spjd * Adapt arc info given the number of bytes we are trying to add and
2238168404Spjd * the state that we are comming from.  This function is only called
2239168404Spjd * when we are adding new content to the cache.
2240168404Spjd */
2241168404Spjdstatic void
2242168404Spjdarc_adapt(int bytes, arc_state_t *state)
2243168404Spjd{
2244168404Spjd	int mult;
2245168404Spjd
2246185029Spjd	if (state == arc_l2c_only)
2247185029Spjd		return;
2248185029Spjd
2249168404Spjd	ASSERT(bytes > 0);
2250168404Spjd	/*
2251168404Spjd	 * Adapt the target size of the MRU list:
2252168404Spjd	 *	- if we just hit in the MRU ghost list, then increase
2253168404Spjd	 *	  the target size of the MRU list.
2254168404Spjd	 *	- if we just hit in the MFU ghost list, then increase
2255168404Spjd	 *	  the target size of the MFU list by decreasing the
2256168404Spjd	 *	  target size of the MRU list.
2257168404Spjd	 */
2258168404Spjd	if (state == arc_mru_ghost) {
2259168404Spjd		mult = ((arc_mru_ghost->arcs_size >= arc_mfu_ghost->arcs_size) ?
2260168404Spjd		    1 : (arc_mfu_ghost->arcs_size/arc_mru_ghost->arcs_size));
2261168404Spjd
2262168404Spjd		arc_p = MIN(arc_c, arc_p + bytes * mult);
2263168404Spjd	} else if (state == arc_mfu_ghost) {
2264168404Spjd		mult = ((arc_mfu_ghost->arcs_size >= arc_mru_ghost->arcs_size) ?
2265168404Spjd		    1 : (arc_mru_ghost->arcs_size/arc_mfu_ghost->arcs_size));
2266168404Spjd
2267168404Spjd		arc_p = MAX(0, (int64_t)arc_p - bytes * mult);
2268168404Spjd	}
2269168404Spjd	ASSERT((int64_t)arc_p >= 0);
2270168404Spjd
2271168404Spjd	if (arc_reclaim_needed()) {
2272168404Spjd		cv_signal(&arc_reclaim_thr_cv);
2273168404Spjd		return;
2274168404Spjd	}
2275168404Spjd
2276168404Spjd	if (arc_no_grow)
2277168404Spjd		return;
2278168404Spjd
2279168404Spjd	if (arc_c >= arc_c_max)
2280168404Spjd		return;
2281168404Spjd
2282168404Spjd	/*
2283168404Spjd	 * If we're within (2 * maxblocksize) bytes of the target
2284168404Spjd	 * cache size, increment the target cache size
2285168404Spjd	 */
2286168404Spjd	if (arc_size > arc_c - (2ULL << SPA_MAXBLOCKSHIFT)) {
2287168404Spjd		atomic_add_64(&arc_c, (int64_t)bytes);
2288168404Spjd		if (arc_c > arc_c_max)
2289168404Spjd			arc_c = arc_c_max;
2290168404Spjd		else if (state == arc_anon)
2291168404Spjd			atomic_add_64(&arc_p, (int64_t)bytes);
2292168404Spjd		if (arc_p > arc_c)
2293168404Spjd			arc_p = arc_c;
2294168404Spjd	}
2295168404Spjd	ASSERT((int64_t)arc_p >= 0);
2296168404Spjd}
2297168404Spjd
2298168404Spjd/*
2299168404Spjd * Check if the cache has reached its limits and eviction is required
2300168404Spjd * prior to insert.
2301168404Spjd */
2302168404Spjdstatic int
2303185029Spjdarc_evict_needed(arc_buf_contents_t type)
2304168404Spjd{
2305185029Spjd	if (type == ARC_BUFC_METADATA && arc_meta_used >= arc_meta_limit)
2306185029Spjd		return (1);
2307185029Spjd
2308185029Spjd#if 0
2309185029Spjd#ifdef _KERNEL
2310185029Spjd	/*
2311185029Spjd	 * If zio data pages are being allocated out of a separate heap segment,
2312185029Spjd	 * then enforce that the size of available vmem for this area remains
2313185029Spjd	 * above about 1/32nd free.
2314185029Spjd	 */
2315185029Spjd	if (type == ARC_BUFC_DATA && zio_arena != NULL &&
2316185029Spjd	    vmem_size(zio_arena, VMEM_FREE) <
2317185029Spjd	    (vmem_size(zio_arena, VMEM_ALLOC) >> 5))
2318185029Spjd		return (1);
2319185029Spjd#endif
2320185029Spjd#endif
2321185029Spjd
2322168404Spjd	if (arc_reclaim_needed())
2323168404Spjd		return (1);
2324168404Spjd
2325168404Spjd	return (arc_size > arc_c);
2326168404Spjd}
2327168404Spjd
2328168404Spjd/*
2329168404Spjd * The buffer, supplied as the first argument, needs a data block.
2330168404Spjd * So, if we are at cache max, determine which cache should be victimized.
2331168404Spjd * We have the following cases:
2332168404Spjd *
2333168404Spjd * 1. Insert for MRU, p > sizeof(arc_anon + arc_mru) ->
2334168404Spjd * In this situation if we're out of space, but the resident size of the MFU is
2335168404Spjd * under the limit, victimize the MFU cache to satisfy this insertion request.
2336168404Spjd *
2337168404Spjd * 2. Insert for MRU, p <= sizeof(arc_anon + arc_mru) ->
2338168404Spjd * Here, we've used up all of the available space for the MRU, so we need to
2339168404Spjd * evict from our own cache instead.  Evict from the set of resident MRU
2340168404Spjd * entries.
2341168404Spjd *
2342168404Spjd * 3. Insert for MFU (c - p) > sizeof(arc_mfu) ->
2343168404Spjd * c minus p represents the MFU space in the cache, since p is the size of the
2344168404Spjd * cache that is dedicated to the MRU.  In this situation there's still space on
2345168404Spjd * the MFU side, so the MRU side needs to be victimized.
2346168404Spjd *
2347168404Spjd * 4. Insert for MFU (c - p) < sizeof(arc_mfu) ->
2348168404Spjd * MFU's resident set is consuming more space than it has been allotted.  In
2349168404Spjd * this situation, we must victimize our own cache, the MFU, for this insertion.
2350168404Spjd */
2351168404Spjdstatic void
2352168404Spjdarc_get_data_buf(arc_buf_t *buf)
2353168404Spjd{
2354168404Spjd	arc_state_t		*state = buf->b_hdr->b_state;
2355168404Spjd	uint64_t		size = buf->b_hdr->b_size;
2356168404Spjd	arc_buf_contents_t	type = buf->b_hdr->b_type;
2357168404Spjd
2358168404Spjd	arc_adapt(size, state);
2359168404Spjd
2360168404Spjd	/*
2361168404Spjd	 * We have not yet reached cache maximum size,
2362168404Spjd	 * just allocate a new buffer.
2363168404Spjd	 */
2364185029Spjd	if (!arc_evict_needed(type)) {
2365168404Spjd		if (type == ARC_BUFC_METADATA) {
2366168404Spjd			buf->b_data = zio_buf_alloc(size);
2367185029Spjd			arc_space_consume(size);
2368168404Spjd		} else {
2369168404Spjd			ASSERT(type == ARC_BUFC_DATA);
2370168404Spjd			buf->b_data = zio_data_buf_alloc(size);
2371185029Spjd			atomic_add_64(&arc_size, size);
2372168404Spjd		}
2373168404Spjd		goto out;
2374168404Spjd	}
2375168404Spjd
2376168404Spjd	/*
2377168404Spjd	 * If we are prefetching from the mfu ghost list, this buffer
2378168404Spjd	 * will end up on the mru list; so steal space from there.
2379168404Spjd	 */
2380168404Spjd	if (state == arc_mfu_ghost)
2381168404Spjd		state = buf->b_hdr->b_flags & ARC_PREFETCH ? arc_mru : arc_mfu;
2382168404Spjd	else if (state == arc_mru_ghost)
2383168404Spjd		state = arc_mru;
2384168404Spjd
2385168404Spjd	if (state == arc_mru || state == arc_anon) {
2386168404Spjd		uint64_t mru_used = arc_anon->arcs_size + arc_mru->arcs_size;
2387185029Spjd		state = (arc_mfu->arcs_lsize[type] > 0 &&
2388185029Spjd		    arc_p > mru_used) ? arc_mfu : arc_mru;
2389168404Spjd	} else {
2390168404Spjd		/* MFU cases */
2391168404Spjd		uint64_t mfu_space = arc_c - arc_p;
2392185029Spjd		state =  (arc_mru->arcs_lsize[type] > 0 &&
2393185029Spjd		    mfu_space > arc_mfu->arcs_size) ? arc_mru : arc_mfu;
2394168404Spjd	}
2395185029Spjd	if ((buf->b_data = arc_evict(state, NULL, size, TRUE, type)) == NULL) {
2396168404Spjd		if (type == ARC_BUFC_METADATA) {
2397168404Spjd			buf->b_data = zio_buf_alloc(size);
2398185029Spjd			arc_space_consume(size);
2399168404Spjd		} else {
2400168404Spjd			ASSERT(type == ARC_BUFC_DATA);
2401168404Spjd			buf->b_data = zio_data_buf_alloc(size);
2402185029Spjd			atomic_add_64(&arc_size, size);
2403168404Spjd		}
2404168404Spjd		ARCSTAT_BUMP(arcstat_recycle_miss);
2405168404Spjd	}
2406168404Spjd	ASSERT(buf->b_data != NULL);
2407168404Spjdout:
2408168404Spjd	/*
2409168404Spjd	 * Update the state size.  Note that ghost states have a
2410168404Spjd	 * "ghost size" and so don't need to be updated.
2411168404Spjd	 */
2412168404Spjd	if (!GHOST_STATE(buf->b_hdr->b_state)) {
2413168404Spjd		arc_buf_hdr_t *hdr = buf->b_hdr;
2414168404Spjd
2415168404Spjd		atomic_add_64(&hdr->b_state->arcs_size, size);
2416168404Spjd		if (list_link_active(&hdr->b_arc_node)) {
2417168404Spjd			ASSERT(refcount_is_zero(&hdr->b_refcnt));
2418185029Spjd			atomic_add_64(&hdr->b_state->arcs_lsize[type], size);
2419168404Spjd		}
2420168404Spjd		/*
2421168404Spjd		 * If we are growing the cache, and we are adding anonymous
2422168404Spjd		 * data, and we have outgrown arc_p, update arc_p
2423168404Spjd		 */
2424168404Spjd		if (arc_size < arc_c && hdr->b_state == arc_anon &&
2425168404Spjd		    arc_anon->arcs_size + arc_mru->arcs_size > arc_p)
2426168404Spjd			arc_p = MIN(arc_c, arc_p + size);
2427168404Spjd	}
2428205231Skmacy	ARCSTAT_BUMP(arcstat_allocated);
2429168404Spjd}
2430168404Spjd
2431168404Spjd/*
2432168404Spjd * This routine is called whenever a buffer is accessed.
2433168404Spjd * NOTE: the hash lock is dropped in this function.
2434168404Spjd */
2435168404Spjdstatic void
2436168404Spjdarc_access(arc_buf_hdr_t *buf, kmutex_t *hash_lock)
2437168404Spjd{
2438168404Spjd	ASSERT(MUTEX_HELD(hash_lock));
2439168404Spjd
2440168404Spjd	if (buf->b_state == arc_anon) {
2441168404Spjd		/*
2442168404Spjd		 * This buffer is not in the cache, and does not
2443168404Spjd		 * appear in our "ghost" list.  Add the new buffer
2444168404Spjd		 * to the MRU state.
2445168404Spjd		 */
2446168404Spjd
2447168404Spjd		ASSERT(buf->b_arc_access == 0);
2448174049Sjb		buf->b_arc_access = LBOLT;
2449168404Spjd		DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, buf);
2450168404Spjd		arc_change_state(arc_mru, buf, hash_lock);
2451168404Spjd
2452168404Spjd	} else if (buf->b_state == arc_mru) {
2453168404Spjd		/*
2454168404Spjd		 * If this buffer is here because of a prefetch, then either:
2455168404Spjd		 * - clear the flag if this is a "referencing" read
2456168404Spjd		 *   (any subsequent access will bump this into the MFU state).
2457168404Spjd		 * or
2458168404Spjd		 * - move the buffer to the head of the list if this is
2459168404Spjd		 *   another prefetch (to make it less likely to be evicted).
2460168404Spjd		 */
2461168404Spjd		if ((buf->b_flags & ARC_PREFETCH) != 0) {
2462168404Spjd			if (refcount_count(&buf->b_refcnt) == 0) {
2463168404Spjd				ASSERT(list_link_active(&buf->b_arc_node));
2464168404Spjd			} else {
2465168404Spjd				buf->b_flags &= ~ARC_PREFETCH;
2466168404Spjd				ARCSTAT_BUMP(arcstat_mru_hits);
2467168404Spjd			}
2468174049Sjb			buf->b_arc_access = LBOLT;
2469168404Spjd			return;
2470168404Spjd		}
2471168404Spjd
2472168404Spjd		/*
2473168404Spjd		 * This buffer has been "accessed" only once so far,
2474168404Spjd		 * but it is still in the cache. Move it to the MFU
2475168404Spjd		 * state.
2476168404Spjd		 */
2477174049Sjb		if (LBOLT > buf->b_arc_access + ARC_MINTIME) {
2478168404Spjd			/*
2479168404Spjd			 * More than 125ms have passed since we
2480168404Spjd			 * instantiated this buffer.  Move it to the
2481168404Spjd			 * most frequently used state.
2482168404Spjd			 */
2483174049Sjb			buf->b_arc_access = LBOLT;
2484168404Spjd			DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf);
2485168404Spjd			arc_change_state(arc_mfu, buf, hash_lock);
2486168404Spjd		}
2487168404Spjd		ARCSTAT_BUMP(arcstat_mru_hits);
2488168404Spjd	} else if (buf->b_state == arc_mru_ghost) {
2489168404Spjd		arc_state_t	*new_state;
2490168404Spjd		/*
2491168404Spjd		 * This buffer has been "accessed" recently, but
2492168404Spjd		 * was evicted from the cache.  Move it to the
2493168404Spjd		 * MFU state.
2494168404Spjd		 */
2495168404Spjd
2496168404Spjd		if (buf->b_flags & ARC_PREFETCH) {
2497168404Spjd			new_state = arc_mru;
2498168404Spjd			if (refcount_count(&buf->b_refcnt) > 0)
2499168404Spjd				buf->b_flags &= ~ARC_PREFETCH;
2500168404Spjd			DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, buf);
2501168404Spjd		} else {
2502168404Spjd			new_state = arc_mfu;
2503168404Spjd			DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf);
2504168404Spjd		}
2505168404Spjd
2506174049Sjb		buf->b_arc_access = LBOLT;
2507168404Spjd		arc_change_state(new_state, buf, hash_lock);
2508168404Spjd
2509168404Spjd		ARCSTAT_BUMP(arcstat_mru_ghost_hits);
2510168404Spjd	} else if (buf->b_state == arc_mfu) {
2511168404Spjd		/*
2512168404Spjd		 * This buffer has been accessed more than once and is
2513168404Spjd		 * still in the cache.  Keep it in the MFU state.
2514168404Spjd		 *
2515168404Spjd		 * NOTE: an add_reference() that occurred when we did
2516168404Spjd		 * the arc_read() will have kicked this off the list.
2517168404Spjd		 * If it was a prefetch, we will explicitly move it to
2518168404Spjd		 * the head of the list now.
2519168404Spjd		 */
2520168404Spjd		if ((buf->b_flags & ARC_PREFETCH) != 0) {
2521168404Spjd			ASSERT(refcount_count(&buf->b_refcnt) == 0);
2522168404Spjd			ASSERT(list_link_active(&buf->b_arc_node));
2523168404Spjd		}
2524168404Spjd		ARCSTAT_BUMP(arcstat_mfu_hits);
2525174049Sjb		buf->b_arc_access = LBOLT;
2526168404Spjd	} else if (buf->b_state == arc_mfu_ghost) {
2527168404Spjd		arc_state_t	*new_state = arc_mfu;
2528168404Spjd		/*
2529168404Spjd		 * This buffer has been accessed more than once but has
2530168404Spjd		 * been evicted from the cache.  Move it back to the
2531168404Spjd		 * MFU state.
2532168404Spjd		 */
2533168404Spjd
2534168404Spjd		if (buf->b_flags & ARC_PREFETCH) {
2535168404Spjd			/*
2536168404Spjd			 * This is a prefetch access...
2537168404Spjd			 * move this block back to the MRU state.
2538168404Spjd			 */
2539168404Spjd			ASSERT3U(refcount_count(&buf->b_refcnt), ==, 0);
2540168404Spjd			new_state = arc_mru;
2541168404Spjd		}
2542168404Spjd
2543174049Sjb		buf->b_arc_access = LBOLT;
2544168404Spjd		DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf);
2545168404Spjd		arc_change_state(new_state, buf, hash_lock);
2546168404Spjd
2547168404Spjd		ARCSTAT_BUMP(arcstat_mfu_ghost_hits);
2548185029Spjd	} else if (buf->b_state == arc_l2c_only) {
2549185029Spjd		/*
2550185029Spjd		 * This buffer is on the 2nd Level ARC.
2551185029Spjd		 */
2552185029Spjd
2553185029Spjd		buf->b_arc_access = LBOLT;
2554185029Spjd		DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf);
2555185029Spjd		arc_change_state(arc_mfu, buf, hash_lock);
2556168404Spjd	} else {
2557168404Spjd		ASSERT(!"invalid arc state");
2558168404Spjd	}
2559168404Spjd}
2560168404Spjd
2561168404Spjd/* a generic arc_done_func_t which you can use */
2562168404Spjd/* ARGSUSED */
2563168404Spjdvoid
2564168404Spjdarc_bcopy_func(zio_t *zio, arc_buf_t *buf, void *arg)
2565168404Spjd{
2566168404Spjd	bcopy(buf->b_data, arg, buf->b_hdr->b_size);
2567168404Spjd	VERIFY(arc_buf_remove_ref(buf, arg) == 1);
2568168404Spjd}
2569168404Spjd
2570185029Spjd/* a generic arc_done_func_t */
2571168404Spjdvoid
2572168404Spjdarc_getbuf_func(zio_t *zio, arc_buf_t *buf, void *arg)
2573168404Spjd{
2574168404Spjd	arc_buf_t **bufp = arg;
2575168404Spjd	if (zio && zio->io_error) {
2576168404Spjd		VERIFY(arc_buf_remove_ref(buf, arg) == 1);
2577168404Spjd		*bufp = NULL;
2578168404Spjd	} else {
2579168404Spjd		*bufp = buf;
2580168404Spjd	}
2581168404Spjd}
2582168404Spjd
2583168404Spjdstatic void
2584168404Spjdarc_read_done(zio_t *zio)
2585168404Spjd{
2586168404Spjd	arc_buf_hdr_t	*hdr, *found;
2587168404Spjd	arc_buf_t	*buf;
2588168404Spjd	arc_buf_t	*abuf;	/* buffer we're assigning to callback */
2589168404Spjd	kmutex_t	*hash_lock;
2590168404Spjd	arc_callback_t	*callback_list, *acb;
2591168404Spjd	int		freeable = FALSE;
2592168404Spjd
2593168404Spjd	buf = zio->io_private;
2594168404Spjd	hdr = buf->b_hdr;
2595168404Spjd
2596168404Spjd	/*
2597168404Spjd	 * The hdr was inserted into hash-table and removed from lists
2598168404Spjd	 * prior to starting I/O.  We should find this header, since
2599168404Spjd	 * it's in the hash table, and it should be legit since it's
2600168404Spjd	 * not possible to evict it during the I/O.  The only possible
2601168404Spjd	 * reason for it not to be found is if we were freed during the
2602168404Spjd	 * read.
2603168404Spjd	 */
2604168404Spjd	found = buf_hash_find(zio->io_spa, &hdr->b_dva, hdr->b_birth,
2605168404Spjd	    &hash_lock);
2606168404Spjd
2607168404Spjd	ASSERT((found == NULL && HDR_FREED_IN_READ(hdr) && hash_lock == NULL) ||
2608185029Spjd	    (found == hdr && DVA_EQUAL(&hdr->b_dva, BP_IDENTITY(zio->io_bp))) ||
2609185029Spjd	    (found == hdr && HDR_L2_READING(hdr)));
2610168404Spjd
2611185029Spjd	hdr->b_flags &= ~ARC_L2_EVICTED;
2612185029Spjd	if (l2arc_noprefetch && (hdr->b_flags & ARC_PREFETCH))
2613185029Spjd		hdr->b_flags &= ~ARC_L2CACHE;
2614205231Skmacy#if 0
2615205231Skmacy	else if ((hdr->b_flags & ARC_PREFETCH) == 0)
2616205231Skmacy		hdr->b_flags |= ARC_L2CACHE;
2617205231Skmacy#endif
2618168404Spjd	/* byteswap if necessary */
2619168404Spjd	callback_list = hdr->b_acb;
2620168404Spjd	ASSERT(callback_list != NULL);
2621185029Spjd	if (BP_SHOULD_BYTESWAP(zio->io_bp)) {
2622185029Spjd		arc_byteswap_func_t *func = BP_GET_LEVEL(zio->io_bp) > 0 ?
2623185029Spjd		    byteswap_uint64_array :
2624185029Spjd		    dmu_ot[BP_GET_TYPE(zio->io_bp)].ot_byteswap;
2625185029Spjd		func(buf->b_data, hdr->b_size);
2626185029Spjd	}
2627168404Spjd
2628185029Spjd	arc_cksum_compute(buf, B_FALSE);
2629168404Spjd
2630168404Spjd	/* create copies of the data buffer for the callers */
2631168404Spjd	abuf = buf;
2632168404Spjd	for (acb = callback_list; acb; acb = acb->acb_next) {
2633168404Spjd		if (acb->acb_done) {
2634168404Spjd			if (abuf == NULL)
2635168404Spjd				abuf = arc_buf_clone(buf);
2636168404Spjd			acb->acb_buf = abuf;
2637168404Spjd			abuf = NULL;
2638168404Spjd		}
2639168404Spjd	}
2640168404Spjd	hdr->b_acb = NULL;
2641168404Spjd	hdr->b_flags &= ~ARC_IO_IN_PROGRESS;
2642168404Spjd	ASSERT(!HDR_BUF_AVAILABLE(hdr));
2643168404Spjd	if (abuf == buf)
2644168404Spjd		hdr->b_flags |= ARC_BUF_AVAILABLE;
2645168404Spjd
2646168404Spjd	ASSERT(refcount_is_zero(&hdr->b_refcnt) || callback_list != NULL);
2647168404Spjd
2648168404Spjd	if (zio->io_error != 0) {
2649168404Spjd		hdr->b_flags |= ARC_IO_ERROR;
2650168404Spjd		if (hdr->b_state != arc_anon)
2651168404Spjd			arc_change_state(arc_anon, hdr, hash_lock);
2652168404Spjd		if (HDR_IN_HASH_TABLE(hdr))
2653168404Spjd			buf_hash_remove(hdr);
2654168404Spjd		freeable = refcount_is_zero(&hdr->b_refcnt);
2655168404Spjd	}
2656168404Spjd
2657168404Spjd	/*
2658168404Spjd	 * Broadcast before we drop the hash_lock to avoid the possibility
2659168404Spjd	 * that the hdr (and hence the cv) might be freed before we get to
2660168404Spjd	 * the cv_broadcast().
2661168404Spjd	 */
2662168404Spjd	cv_broadcast(&hdr->b_cv);
2663168404Spjd
2664168404Spjd	if (hash_lock) {
2665168404Spjd		/*
2666168404Spjd		 * Only call arc_access on anonymous buffers.  This is because
2667168404Spjd		 * if we've issued an I/O for an evicted buffer, we've already
2668168404Spjd		 * called arc_access (to prevent any simultaneous readers from
2669168404Spjd		 * getting confused).
2670168404Spjd		 */
2671168404Spjd		if (zio->io_error == 0 && hdr->b_state == arc_anon)
2672168404Spjd			arc_access(hdr, hash_lock);
2673168404Spjd		mutex_exit(hash_lock);
2674168404Spjd	} else {
2675168404Spjd		/*
2676168404Spjd		 * This block was freed while we waited for the read to
2677168404Spjd		 * complete.  It has been removed from the hash table and
2678168404Spjd		 * moved to the anonymous state (so that it won't show up
2679168404Spjd		 * in the cache).
2680168404Spjd		 */
2681168404Spjd		ASSERT3P(hdr->b_state, ==, arc_anon);
2682168404Spjd		freeable = refcount_is_zero(&hdr->b_refcnt);
2683168404Spjd	}
2684168404Spjd
2685168404Spjd	/* execute each callback and free its structure */
2686168404Spjd	while ((acb = callback_list) != NULL) {
2687168404Spjd		if (acb->acb_done)
2688168404Spjd			acb->acb_done(zio, acb->acb_buf, acb->acb_private);
2689168404Spjd
2690168404Spjd		if (acb->acb_zio_dummy != NULL) {
2691168404Spjd			acb->acb_zio_dummy->io_error = zio->io_error;
2692168404Spjd			zio_nowait(acb->acb_zio_dummy);
2693168404Spjd		}
2694168404Spjd
2695168404Spjd		callback_list = acb->acb_next;
2696168404Spjd		kmem_free(acb, sizeof (arc_callback_t));
2697168404Spjd	}
2698168404Spjd
2699168404Spjd	if (freeable)
2700168404Spjd		arc_hdr_destroy(hdr);
2701168404Spjd}
2702168404Spjd
2703168404Spjd/*
2704168404Spjd * "Read" the block block at the specified DVA (in bp) via the
2705168404Spjd * cache.  If the block is found in the cache, invoke the provided
2706168404Spjd * callback immediately and return.  Note that the `zio' parameter
2707168404Spjd * in the callback will be NULL in this case, since no IO was
2708168404Spjd * required.  If the block is not in the cache pass the read request
2709168404Spjd * on to the spa with a substitute callback function, so that the
2710168404Spjd * requested block will be added to the cache.
2711168404Spjd *
2712168404Spjd * If a read request arrives for a block that has a read in-progress,
2713168404Spjd * either wait for the in-progress read to complete (and return the
2714168404Spjd * results); or, if this is a read with a "done" func, add a record
2715168404Spjd * to the read to invoke the "done" func when the read completes,
2716168404Spjd * and return; or just return.
2717168404Spjd *
2718168404Spjd * arc_read_done() will invoke all the requested "done" functions
2719168404Spjd * for readers of this block.
2720185029Spjd *
2721185029Spjd * Normal callers should use arc_read and pass the arc buffer and offset
2722185029Spjd * for the bp.  But if you know you don't need locking, you can use
2723185029Spjd * arc_read_bp.
2724168404Spjd */
2725168404Spjdint
2726185029Spjdarc_read(zio_t *pio, spa_t *spa, blkptr_t *bp, arc_buf_t *pbuf,
2727185029Spjd    arc_done_func_t *done, void *private, int priority, int zio_flags,
2728185029Spjd    uint32_t *arc_flags, const zbookmark_t *zb)
2729168404Spjd{
2730185029Spjd	int err;
2731185029Spjd
2732185029Spjd	ASSERT(!refcount_is_zero(&pbuf->b_hdr->b_refcnt));
2733185029Spjd	ASSERT3U((char *)bp - (char *)pbuf->b_data, <, pbuf->b_hdr->b_size);
2734185029Spjd	rw_enter(&pbuf->b_lock, RW_READER);
2735185029Spjd
2736185029Spjd	err = arc_read_nolock(pio, spa, bp, done, private, priority,
2737185029Spjd	    zio_flags, arc_flags, zb);
2738185029Spjd	rw_exit(&pbuf->b_lock);
2739185029Spjd	return (err);
2740185029Spjd}
2741185029Spjd
2742185029Spjdint
2743185029Spjdarc_read_nolock(zio_t *pio, spa_t *spa, blkptr_t *bp,
2744185029Spjd    arc_done_func_t *done, void *private, int priority, int zio_flags,
2745185029Spjd    uint32_t *arc_flags, const zbookmark_t *zb)
2746185029Spjd{
2747168404Spjd	arc_buf_hdr_t *hdr;
2748168404Spjd	arc_buf_t *buf;
2749168404Spjd	kmutex_t *hash_lock;
2750185029Spjd	zio_t *rzio;
2751168404Spjd
2752168404Spjdtop:
2753168404Spjd	hdr = buf_hash_find(spa, BP_IDENTITY(bp), bp->blk_birth, &hash_lock);
2754168404Spjd	if (hdr && hdr->b_datacnt > 0) {
2755168404Spjd
2756168404Spjd		*arc_flags |= ARC_CACHED;
2757168404Spjd
2758168404Spjd		if (HDR_IO_IN_PROGRESS(hdr)) {
2759168404Spjd
2760168404Spjd			if (*arc_flags & ARC_WAIT) {
2761168404Spjd				cv_wait(&hdr->b_cv, hash_lock);
2762168404Spjd				mutex_exit(hash_lock);
2763168404Spjd				goto top;
2764168404Spjd			}
2765168404Spjd			ASSERT(*arc_flags & ARC_NOWAIT);
2766168404Spjd
2767168404Spjd			if (done) {
2768168404Spjd				arc_callback_t	*acb = NULL;
2769168404Spjd
2770168404Spjd				acb = kmem_zalloc(sizeof (arc_callback_t),
2771168404Spjd				    KM_SLEEP);
2772168404Spjd				acb->acb_done = done;
2773168404Spjd				acb->acb_private = private;
2774168404Spjd				if (pio != NULL)
2775168404Spjd					acb->acb_zio_dummy = zio_null(pio,
2776185029Spjd					    spa, NULL, NULL, zio_flags);
2777168404Spjd
2778168404Spjd				ASSERT(acb->acb_done != NULL);
2779168404Spjd				acb->acb_next = hdr->b_acb;
2780168404Spjd				hdr->b_acb = acb;
2781168404Spjd				add_reference(hdr, hash_lock, private);
2782168404Spjd				mutex_exit(hash_lock);
2783168404Spjd				return (0);
2784168404Spjd			}
2785168404Spjd			mutex_exit(hash_lock);
2786168404Spjd			return (0);
2787168404Spjd		}
2788168404Spjd
2789168404Spjd		ASSERT(hdr->b_state == arc_mru || hdr->b_state == arc_mfu);
2790168404Spjd
2791168404Spjd		if (done) {
2792168404Spjd			add_reference(hdr, hash_lock, private);
2793168404Spjd			/*
2794168404Spjd			 * If this block is already in use, create a new
2795168404Spjd			 * copy of the data so that we will be guaranteed
2796168404Spjd			 * that arc_release() will always succeed.
2797168404Spjd			 */
2798168404Spjd			buf = hdr->b_buf;
2799168404Spjd			ASSERT(buf);
2800168404Spjd			ASSERT(buf->b_data);
2801168404Spjd			if (HDR_BUF_AVAILABLE(hdr)) {
2802168404Spjd				ASSERT(buf->b_efunc == NULL);
2803168404Spjd				hdr->b_flags &= ~ARC_BUF_AVAILABLE;
2804168404Spjd			} else {
2805168404Spjd				buf = arc_buf_clone(buf);
2806168404Spjd			}
2807168404Spjd		} else if (*arc_flags & ARC_PREFETCH &&
2808168404Spjd		    refcount_count(&hdr->b_refcnt) == 0) {
2809168404Spjd			hdr->b_flags |= ARC_PREFETCH;
2810168404Spjd		}
2811168404Spjd		DTRACE_PROBE1(arc__hit, arc_buf_hdr_t *, hdr);
2812168404Spjd		arc_access(hdr, hash_lock);
2813185029Spjd		if (*arc_flags & ARC_L2CACHE)
2814185029Spjd			hdr->b_flags |= ARC_L2CACHE;
2815168404Spjd		mutex_exit(hash_lock);
2816168404Spjd		ARCSTAT_BUMP(arcstat_hits);
2817168404Spjd		ARCSTAT_CONDSTAT(!(hdr->b_flags & ARC_PREFETCH),
2818168404Spjd		    demand, prefetch, hdr->b_type != ARC_BUFC_METADATA,
2819168404Spjd		    data, metadata, hits);
2820168404Spjd
2821168404Spjd		if (done)
2822168404Spjd			done(NULL, buf, private);
2823168404Spjd	} else {
2824168404Spjd		uint64_t size = BP_GET_LSIZE(bp);
2825168404Spjd		arc_callback_t	*acb;
2826185029Spjd		vdev_t *vd = NULL;
2827185029Spjd		daddr_t addr;
2828168404Spjd
2829168404Spjd		if (hdr == NULL) {
2830168404Spjd			/* this block is not in the cache */
2831168404Spjd			arc_buf_hdr_t	*exists;
2832168404Spjd			arc_buf_contents_t type = BP_GET_BUFC_TYPE(bp);
2833168404Spjd			buf = arc_buf_alloc(spa, size, private, type);
2834168404Spjd			hdr = buf->b_hdr;
2835168404Spjd			hdr->b_dva = *BP_IDENTITY(bp);
2836168404Spjd			hdr->b_birth = bp->blk_birth;
2837168404Spjd			hdr->b_cksum0 = bp->blk_cksum.zc_word[0];
2838168404Spjd			exists = buf_hash_insert(hdr, &hash_lock);
2839168404Spjd			if (exists) {
2840168404Spjd				/* somebody beat us to the hash insert */
2841168404Spjd				mutex_exit(hash_lock);
2842168404Spjd				bzero(&hdr->b_dva, sizeof (dva_t));
2843168404Spjd				hdr->b_birth = 0;
2844168404Spjd				hdr->b_cksum0 = 0;
2845168404Spjd				(void) arc_buf_remove_ref(buf, private);
2846168404Spjd				goto top; /* restart the IO request */
2847168404Spjd			}
2848168404Spjd			/* if this is a prefetch, we don't have a reference */
2849168404Spjd			if (*arc_flags & ARC_PREFETCH) {
2850168404Spjd				(void) remove_reference(hdr, hash_lock,
2851168404Spjd				    private);
2852168404Spjd				hdr->b_flags |= ARC_PREFETCH;
2853168404Spjd			}
2854185029Spjd			if (*arc_flags & ARC_L2CACHE)
2855185029Spjd				hdr->b_flags |= ARC_L2CACHE;
2856168404Spjd			if (BP_GET_LEVEL(bp) > 0)
2857168404Spjd				hdr->b_flags |= ARC_INDIRECT;
2858168404Spjd		} else {
2859168404Spjd			/* this block is in the ghost cache */
2860168404Spjd			ASSERT(GHOST_STATE(hdr->b_state));
2861168404Spjd			ASSERT(!HDR_IO_IN_PROGRESS(hdr));
2862168404Spjd			ASSERT3U(refcount_count(&hdr->b_refcnt), ==, 0);
2863168404Spjd			ASSERT(hdr->b_buf == NULL);
2864168404Spjd
2865168404Spjd			/* if this is a prefetch, we don't have a reference */
2866168404Spjd			if (*arc_flags & ARC_PREFETCH)
2867168404Spjd				hdr->b_flags |= ARC_PREFETCH;
2868168404Spjd			else
2869168404Spjd				add_reference(hdr, hash_lock, private);
2870185029Spjd			if (*arc_flags & ARC_L2CACHE)
2871185029Spjd				hdr->b_flags |= ARC_L2CACHE;
2872185029Spjd			buf = kmem_cache_alloc(buf_cache, KM_PUSHPAGE);
2873168404Spjd			buf->b_hdr = hdr;
2874168404Spjd			buf->b_data = NULL;
2875168404Spjd			buf->b_efunc = NULL;
2876168404Spjd			buf->b_private = NULL;
2877168404Spjd			buf->b_next = NULL;
2878168404Spjd			hdr->b_buf = buf;
2879168404Spjd			arc_get_data_buf(buf);
2880168404Spjd			ASSERT(hdr->b_datacnt == 0);
2881168404Spjd			hdr->b_datacnt = 1;
2882168404Spjd
2883168404Spjd		}
2884168404Spjd
2885168404Spjd		acb = kmem_zalloc(sizeof (arc_callback_t), KM_SLEEP);
2886168404Spjd		acb->acb_done = done;
2887168404Spjd		acb->acb_private = private;
2888168404Spjd
2889168404Spjd		ASSERT(hdr->b_acb == NULL);
2890168404Spjd		hdr->b_acb = acb;
2891168404Spjd		hdr->b_flags |= ARC_IO_IN_PROGRESS;
2892168404Spjd
2893168404Spjd		/*
2894168404Spjd		 * If the buffer has been evicted, migrate it to a present state
2895168404Spjd		 * before issuing the I/O.  Once we drop the hash-table lock,
2896168404Spjd		 * the header will be marked as I/O in progress and have an
2897168404Spjd		 * attached buffer.  At this point, anybody who finds this
2898168404Spjd		 * buffer ought to notice that it's legit but has a pending I/O.
2899168404Spjd		 */
2900168404Spjd
2901168404Spjd		if (GHOST_STATE(hdr->b_state))
2902168404Spjd			arc_access(hdr, hash_lock);
2903185029Spjd
2904185029Spjd		if (HDR_L2CACHE(hdr) && hdr->b_l2hdr != NULL &&
2905185029Spjd		    (vd = hdr->b_l2hdr->b_dev->l2ad_vdev) != NULL) {
2906185029Spjd			addr = hdr->b_l2hdr->b_daddr;
2907185029Spjd			/*
2908185029Spjd			 * Lock out device removal.
2909185029Spjd			 */
2910185029Spjd			if (vdev_is_dead(vd) ||
2911185029Spjd			    !spa_config_tryenter(spa, SCL_L2ARC, vd, RW_READER))
2912185029Spjd				vd = NULL;
2913185029Spjd		}
2914185029Spjd
2915168404Spjd		mutex_exit(hash_lock);
2916168404Spjd
2917168404Spjd		ASSERT3U(hdr->b_size, ==, size);
2918168404Spjd		DTRACE_PROBE3(arc__miss, blkptr_t *, bp, uint64_t, size,
2919168404Spjd		    zbookmark_t *, zb);
2920168404Spjd		ARCSTAT_BUMP(arcstat_misses);
2921168404Spjd		ARCSTAT_CONDSTAT(!(hdr->b_flags & ARC_PREFETCH),
2922168404Spjd		    demand, prefetch, hdr->b_type != ARC_BUFC_METADATA,
2923168404Spjd		    data, metadata, misses);
2924168404Spjd
2925185029Spjd		if (vd != NULL) {
2926185029Spjd			/*
2927185029Spjd			 * Read from the L2ARC if the following are true:
2928185029Spjd			 * 1. The L2ARC vdev was previously cached.
2929185029Spjd			 * 2. This buffer still has L2ARC metadata.
2930185029Spjd			 * 3. This buffer isn't currently writing to the L2ARC.
2931185029Spjd			 * 4. The L2ARC entry wasn't evicted, which may
2932185029Spjd			 *    also have invalidated the vdev.
2933185029Spjd			 */
2934185029Spjd			if (hdr->b_l2hdr != NULL &&
2935185029Spjd			    !HDR_L2_WRITING(hdr) && !HDR_L2_EVICTED(hdr)) {
2936185029Spjd				l2arc_read_callback_t *cb;
2937185029Spjd
2938185029Spjd				DTRACE_PROBE1(l2arc__hit, arc_buf_hdr_t *, hdr);
2939185029Spjd				ARCSTAT_BUMP(arcstat_l2_hits);
2940185029Spjd
2941185029Spjd				cb = kmem_zalloc(sizeof (l2arc_read_callback_t),
2942185029Spjd				    KM_SLEEP);
2943185029Spjd				cb->l2rcb_buf = buf;
2944185029Spjd				cb->l2rcb_spa = spa;
2945185029Spjd				cb->l2rcb_bp = *bp;
2946185029Spjd				cb->l2rcb_zb = *zb;
2947185029Spjd				cb->l2rcb_flags = zio_flags;
2948185029Spjd
2949185029Spjd				/*
2950185029Spjd				 * l2arc read.  The SCL_L2ARC lock will be
2951185029Spjd				 * released by l2arc_read_done().
2952185029Spjd				 */
2953185029Spjd				rzio = zio_read_phys(pio, vd, addr, size,
2954185029Spjd				    buf->b_data, ZIO_CHECKSUM_OFF,
2955185029Spjd				    l2arc_read_done, cb, priority, zio_flags |
2956185029Spjd				    ZIO_FLAG_DONT_CACHE | ZIO_FLAG_CANFAIL |
2957185029Spjd				    ZIO_FLAG_DONT_PROPAGATE |
2958185029Spjd				    ZIO_FLAG_DONT_RETRY, B_FALSE);
2959185029Spjd				DTRACE_PROBE2(l2arc__read, vdev_t *, vd,
2960185029Spjd				    zio_t *, rzio);
2961185029Spjd
2962185029Spjd				if (*arc_flags & ARC_NOWAIT) {
2963185029Spjd					zio_nowait(rzio);
2964185029Spjd					return (0);
2965185029Spjd				}
2966185029Spjd
2967185029Spjd				ASSERT(*arc_flags & ARC_WAIT);
2968185029Spjd				if (zio_wait(rzio) == 0)
2969185029Spjd					return (0);
2970185029Spjd
2971185029Spjd				/* l2arc read error; goto zio_read() */
2972185029Spjd			} else {
2973185029Spjd				DTRACE_PROBE1(l2arc__miss,
2974185029Spjd				    arc_buf_hdr_t *, hdr);
2975185029Spjd				ARCSTAT_BUMP(arcstat_l2_misses);
2976185029Spjd				if (HDR_L2_WRITING(hdr))
2977185029Spjd					ARCSTAT_BUMP(arcstat_l2_rw_clash);
2978185029Spjd				spa_config_exit(spa, SCL_L2ARC, vd);
2979185029Spjd			}
2980185029Spjd		}
2981185029Spjd
2982168404Spjd		rzio = zio_read(pio, spa, bp, buf->b_data, size,
2983185029Spjd		    arc_read_done, buf, priority, zio_flags, zb);
2984168404Spjd
2985168404Spjd		if (*arc_flags & ARC_WAIT)
2986168404Spjd			return (zio_wait(rzio));
2987168404Spjd
2988168404Spjd		ASSERT(*arc_flags & ARC_NOWAIT);
2989168404Spjd		zio_nowait(rzio);
2990168404Spjd	}
2991168404Spjd	return (0);
2992168404Spjd}
2993168404Spjd
2994168404Spjd/*
2995168404Spjd * arc_read() variant to support pool traversal.  If the block is already
2996168404Spjd * in the ARC, make a copy of it; otherwise, the caller will do the I/O.
2997168404Spjd * The idea is that we don't want pool traversal filling up memory, but
2998168404Spjd * if the ARC already has the data anyway, we shouldn't pay for the I/O.
2999168404Spjd */
3000168404Spjdint
3001168404Spjdarc_tryread(spa_t *spa, blkptr_t *bp, void *data)
3002168404Spjd{
3003168404Spjd	arc_buf_hdr_t *hdr;
3004168404Spjd	kmutex_t *hash_mtx;
3005168404Spjd	int rc = 0;
3006168404Spjd
3007168404Spjd	hdr = buf_hash_find(spa, BP_IDENTITY(bp), bp->blk_birth, &hash_mtx);
3008168404Spjd
3009168404Spjd	if (hdr && hdr->b_datacnt > 0 && !HDR_IO_IN_PROGRESS(hdr)) {
3010168404Spjd		arc_buf_t *buf = hdr->b_buf;
3011168404Spjd
3012168404Spjd		ASSERT(buf);
3013168404Spjd		while (buf->b_data == NULL) {
3014168404Spjd			buf = buf->b_next;
3015168404Spjd			ASSERT(buf);
3016168404Spjd		}
3017168404Spjd		bcopy(buf->b_data, data, hdr->b_size);
3018168404Spjd	} else {
3019168404Spjd		rc = ENOENT;
3020168404Spjd	}
3021168404Spjd
3022168404Spjd	if (hash_mtx)
3023168404Spjd		mutex_exit(hash_mtx);
3024168404Spjd
3025168404Spjd	return (rc);
3026168404Spjd}
3027168404Spjd
3028168404Spjdvoid
3029168404Spjdarc_set_callback(arc_buf_t *buf, arc_evict_func_t *func, void *private)
3030168404Spjd{
3031168404Spjd	ASSERT(buf->b_hdr != NULL);
3032168404Spjd	ASSERT(buf->b_hdr->b_state != arc_anon);
3033168404Spjd	ASSERT(!refcount_is_zero(&buf->b_hdr->b_refcnt) || func == NULL);
3034168404Spjd	buf->b_efunc = func;
3035168404Spjd	buf->b_private = private;
3036168404Spjd}
3037168404Spjd
3038168404Spjd/*
3039168404Spjd * This is used by the DMU to let the ARC know that a buffer is
3040168404Spjd * being evicted, so the ARC should clean up.  If this arc buf
3041168404Spjd * is not yet in the evicted state, it will be put there.
3042168404Spjd */
3043168404Spjdint
3044168404Spjdarc_buf_evict(arc_buf_t *buf)
3045168404Spjd{
3046168404Spjd	arc_buf_hdr_t *hdr;
3047168404Spjd	kmutex_t *hash_lock;
3048168404Spjd	arc_buf_t **bufp;
3049205231Skmacy	list_t *list, *evicted_list;
3050205231Skmacy	kmutex_t *lock, *evicted_lock;
3051205231Skmacy
3052185029Spjd	rw_enter(&buf->b_lock, RW_WRITER);
3053168404Spjd	hdr = buf->b_hdr;
3054168404Spjd	if (hdr == NULL) {
3055168404Spjd		/*
3056168404Spjd		 * We are in arc_do_user_evicts().
3057168404Spjd		 */
3058168404Spjd		ASSERT(buf->b_data == NULL);
3059185029Spjd		rw_exit(&buf->b_lock);
3060168404Spjd		return (0);
3061185029Spjd	} else if (buf->b_data == NULL) {
3062185029Spjd		arc_buf_t copy = *buf; /* structure assignment */
3063185029Spjd		/*
3064185029Spjd		 * We are on the eviction list; process this buffer now
3065185029Spjd		 * but let arc_do_user_evicts() do the reaping.
3066185029Spjd		 */
3067185029Spjd		buf->b_efunc = NULL;
3068185029Spjd		rw_exit(&buf->b_lock);
3069185029Spjd		VERIFY(copy.b_efunc(&copy) == 0);
3070185029Spjd		return (1);
3071168404Spjd	}
3072168404Spjd	hash_lock = HDR_LOCK(hdr);
3073168404Spjd	mutex_enter(hash_lock);
3074168404Spjd
3075168404Spjd	ASSERT(buf->b_hdr == hdr);
3076168404Spjd	ASSERT3U(refcount_count(&hdr->b_refcnt), <, hdr->b_datacnt);
3077168404Spjd	ASSERT(hdr->b_state == arc_mru || hdr->b_state == arc_mfu);
3078168404Spjd
3079168404Spjd	/*
3080168404Spjd	 * Pull this buffer off of the hdr
3081168404Spjd	 */
3082168404Spjd	bufp = &hdr->b_buf;
3083168404Spjd	while (*bufp != buf)
3084168404Spjd		bufp = &(*bufp)->b_next;
3085168404Spjd	*bufp = buf->b_next;
3086168404Spjd
3087168404Spjd	ASSERT(buf->b_data != NULL);
3088168404Spjd	arc_buf_destroy(buf, FALSE, FALSE);
3089168404Spjd
3090168404Spjd	if (hdr->b_datacnt == 0) {
3091168404Spjd		arc_state_t *old_state = hdr->b_state;
3092168404Spjd		arc_state_t *evicted_state;
3093168404Spjd
3094168404Spjd		ASSERT(refcount_is_zero(&hdr->b_refcnt));
3095168404Spjd
3096168404Spjd		evicted_state =
3097168404Spjd		    (old_state == arc_mru) ? arc_mru_ghost : arc_mfu_ghost;
3098168404Spjd
3099205231Skmacy		get_buf_info(hdr, old_state, &list, &lock);
3100205231Skmacy		get_buf_info(hdr, evicted_state, &evicted_list, &evicted_lock);
3101205231Skmacy		mutex_enter(lock);
3102205231Skmacy		mutex_enter(evicted_lock);
3103168404Spjd
3104168404Spjd		arc_change_state(evicted_state, hdr, hash_lock);
3105168404Spjd		ASSERT(HDR_IN_HASH_TABLE(hdr));
3106185029Spjd		hdr->b_flags |= ARC_IN_HASH_TABLE;
3107185029Spjd		hdr->b_flags &= ~ARC_BUF_AVAILABLE;
3108168404Spjd
3109205231Skmacy		mutex_exit(evicted_lock);
3110205231Skmacy		mutex_exit(lock);
3111168404Spjd	}
3112168404Spjd	mutex_exit(hash_lock);
3113185029Spjd	rw_exit(&buf->b_lock);
3114168404Spjd
3115168404Spjd	VERIFY(buf->b_efunc(buf) == 0);
3116168404Spjd	buf->b_efunc = NULL;
3117168404Spjd	buf->b_private = NULL;
3118168404Spjd	buf->b_hdr = NULL;
3119168404Spjd	kmem_cache_free(buf_cache, buf);
3120168404Spjd	return (1);
3121168404Spjd}
3122168404Spjd
3123168404Spjd/*
3124168404Spjd * Release this buffer from the cache.  This must be done
3125168404Spjd * after a read and prior to modifying the buffer contents.
3126168404Spjd * If the buffer has more than one reference, we must make
3127185029Spjd * a new hdr for the buffer.
3128168404Spjd */
3129168404Spjdvoid
3130168404Spjdarc_release(arc_buf_t *buf, void *tag)
3131168404Spjd{
3132185029Spjd	arc_buf_hdr_t *hdr;
3133185029Spjd	kmutex_t *hash_lock;
3134185029Spjd	l2arc_buf_hdr_t *l2hdr;
3135185029Spjd	uint64_t buf_size;
3136168404Spjd
3137185029Spjd	rw_enter(&buf->b_lock, RW_WRITER);
3138185029Spjd	hdr = buf->b_hdr;
3139185029Spjd
3140168404Spjd	/* this buffer is not on any list */
3141168404Spjd	ASSERT(refcount_count(&hdr->b_refcnt) > 0);
3142185029Spjd	ASSERT(!(hdr->b_flags & ARC_STORED));
3143168404Spjd
3144168404Spjd	if (hdr->b_state == arc_anon) {
3145168404Spjd		/* this buffer is already released */
3146168404Spjd		ASSERT3U(refcount_count(&hdr->b_refcnt), ==, 1);
3147168404Spjd		ASSERT(BUF_EMPTY(hdr));
3148168404Spjd		ASSERT(buf->b_efunc == NULL);
3149168404Spjd		arc_buf_thaw(buf);
3150185029Spjd		rw_exit(&buf->b_lock);
3151168404Spjd		return;
3152168404Spjd	}
3153168404Spjd
3154185029Spjd	hash_lock = HDR_LOCK(hdr);
3155168404Spjd	mutex_enter(hash_lock);
3156168404Spjd
3157185029Spjd	l2hdr = hdr->b_l2hdr;
3158185029Spjd	if (l2hdr) {
3159185029Spjd		mutex_enter(&l2arc_buflist_mtx);
3160185029Spjd		hdr->b_l2hdr = NULL;
3161185029Spjd		buf_size = hdr->b_size;
3162185029Spjd	}
3163185029Spjd
3164168404Spjd	/*
3165168404Spjd	 * Do we have more than one buf?
3166168404Spjd	 */
3167185029Spjd	if (hdr->b_datacnt > 1) {
3168168404Spjd		arc_buf_hdr_t *nhdr;
3169168404Spjd		arc_buf_t **bufp;
3170168404Spjd		uint64_t blksz = hdr->b_size;
3171168404Spjd		spa_t *spa = hdr->b_spa;
3172168404Spjd		arc_buf_contents_t type = hdr->b_type;
3173185029Spjd		uint32_t flags = hdr->b_flags;
3174168404Spjd
3175185029Spjd		ASSERT(hdr->b_buf != buf || buf->b_next != NULL);
3176168404Spjd		/*
3177168404Spjd		 * Pull the data off of this buf and attach it to
3178168404Spjd		 * a new anonymous buf.
3179168404Spjd		 */
3180168404Spjd		(void) remove_reference(hdr, hash_lock, tag);
3181168404Spjd		bufp = &hdr->b_buf;
3182168404Spjd		while (*bufp != buf)
3183168404Spjd			bufp = &(*bufp)->b_next;
3184168404Spjd		*bufp = (*bufp)->b_next;
3185168404Spjd		buf->b_next = NULL;
3186168404Spjd
3187168404Spjd		ASSERT3U(hdr->b_state->arcs_size, >=, hdr->b_size);
3188168404Spjd		atomic_add_64(&hdr->b_state->arcs_size, -hdr->b_size);
3189168404Spjd		if (refcount_is_zero(&hdr->b_refcnt)) {
3190185029Spjd			uint64_t *size = &hdr->b_state->arcs_lsize[hdr->b_type];
3191185029Spjd			ASSERT3U(*size, >=, hdr->b_size);
3192185029Spjd			atomic_add_64(size, -hdr->b_size);
3193168404Spjd		}
3194168404Spjd		hdr->b_datacnt -= 1;
3195168404Spjd		arc_cksum_verify(buf);
3196168404Spjd
3197168404Spjd		mutex_exit(hash_lock);
3198168404Spjd
3199185029Spjd		nhdr = kmem_cache_alloc(hdr_cache, KM_PUSHPAGE);
3200168404Spjd		nhdr->b_size = blksz;
3201168404Spjd		nhdr->b_spa = spa;
3202168404Spjd		nhdr->b_type = type;
3203168404Spjd		nhdr->b_buf = buf;
3204168404Spjd		nhdr->b_state = arc_anon;
3205168404Spjd		nhdr->b_arc_access = 0;
3206185029Spjd		nhdr->b_flags = flags & ARC_L2_WRITING;
3207185029Spjd		nhdr->b_l2hdr = NULL;
3208168404Spjd		nhdr->b_datacnt = 1;
3209168404Spjd		nhdr->b_freeze_cksum = NULL;
3210168404Spjd		(void) refcount_add(&nhdr->b_refcnt, tag);
3211168404Spjd		buf->b_hdr = nhdr;
3212185029Spjd		rw_exit(&buf->b_lock);
3213168404Spjd		atomic_add_64(&arc_anon->arcs_size, blksz);
3214168404Spjd	} else {
3215185029Spjd		rw_exit(&buf->b_lock);
3216168404Spjd		ASSERT(refcount_count(&hdr->b_refcnt) == 1);
3217168404Spjd		ASSERT(!list_link_active(&hdr->b_arc_node));
3218168404Spjd		ASSERT(!HDR_IO_IN_PROGRESS(hdr));
3219168404Spjd		arc_change_state(arc_anon, hdr, hash_lock);
3220168404Spjd		hdr->b_arc_access = 0;
3221168404Spjd		mutex_exit(hash_lock);
3222185029Spjd
3223168404Spjd		bzero(&hdr->b_dva, sizeof (dva_t));
3224168404Spjd		hdr->b_birth = 0;
3225168404Spjd		hdr->b_cksum0 = 0;
3226168404Spjd		arc_buf_thaw(buf);
3227168404Spjd	}
3228168404Spjd	buf->b_efunc = NULL;
3229168404Spjd	buf->b_private = NULL;
3230185029Spjd
3231185029Spjd	if (l2hdr) {
3232185029Spjd		list_remove(l2hdr->b_dev->l2ad_buflist, hdr);
3233185029Spjd		kmem_free(l2hdr, sizeof (l2arc_buf_hdr_t));
3234185029Spjd		ARCSTAT_INCR(arcstat_l2_size, -buf_size);
3235185029Spjd		mutex_exit(&l2arc_buflist_mtx);
3236185029Spjd	}
3237168404Spjd}
3238168404Spjd
3239168404Spjdint
3240168404Spjdarc_released(arc_buf_t *buf)
3241168404Spjd{
3242185029Spjd	int released;
3243185029Spjd
3244185029Spjd	rw_enter(&buf->b_lock, RW_READER);
3245185029Spjd	released = (buf->b_data != NULL && buf->b_hdr->b_state == arc_anon);
3246185029Spjd	rw_exit(&buf->b_lock);
3247185029Spjd	return (released);
3248168404Spjd}
3249168404Spjd
3250168404Spjdint
3251168404Spjdarc_has_callback(arc_buf_t *buf)
3252168404Spjd{
3253185029Spjd	int callback;
3254185029Spjd
3255185029Spjd	rw_enter(&buf->b_lock, RW_READER);
3256185029Spjd	callback = (buf->b_efunc != NULL);
3257185029Spjd	rw_exit(&buf->b_lock);
3258185029Spjd	return (callback);
3259168404Spjd}
3260168404Spjd
3261168404Spjd#ifdef ZFS_DEBUG
3262168404Spjdint
3263168404Spjdarc_referenced(arc_buf_t *buf)
3264168404Spjd{
3265185029Spjd	int referenced;
3266185029Spjd
3267185029Spjd	rw_enter(&buf->b_lock, RW_READER);
3268185029Spjd	referenced = (refcount_count(&buf->b_hdr->b_refcnt));
3269185029Spjd	rw_exit(&buf->b_lock);
3270185029Spjd	return (referenced);
3271168404Spjd}
3272168404Spjd#endif
3273168404Spjd
3274168404Spjdstatic void
3275168404Spjdarc_write_ready(zio_t *zio)
3276168404Spjd{
3277168404Spjd	arc_write_callback_t *callback = zio->io_private;
3278168404Spjd	arc_buf_t *buf = callback->awcb_buf;
3279185029Spjd	arc_buf_hdr_t *hdr = buf->b_hdr;
3280168404Spjd
3281185029Spjd	ASSERT(!refcount_is_zero(&buf->b_hdr->b_refcnt));
3282185029Spjd	callback->awcb_ready(zio, buf, callback->awcb_private);
3283185029Spjd
3284185029Spjd	/*
3285185029Spjd	 * If the IO is already in progress, then this is a re-write
3286185029Spjd	 * attempt, so we need to thaw and re-compute the cksum.
3287185029Spjd	 * It is the responsibility of the callback to handle the
3288185029Spjd	 * accounting for any re-write attempt.
3289185029Spjd	 */
3290185029Spjd	if (HDR_IO_IN_PROGRESS(hdr)) {
3291185029Spjd		mutex_enter(&hdr->b_freeze_lock);
3292185029Spjd		if (hdr->b_freeze_cksum != NULL) {
3293185029Spjd			kmem_free(hdr->b_freeze_cksum, sizeof (zio_cksum_t));
3294185029Spjd			hdr->b_freeze_cksum = NULL;
3295185029Spjd		}
3296185029Spjd		mutex_exit(&hdr->b_freeze_lock);
3297168404Spjd	}
3298185029Spjd	arc_cksum_compute(buf, B_FALSE);
3299185029Spjd	hdr->b_flags |= ARC_IO_IN_PROGRESS;
3300168404Spjd}
3301168404Spjd
3302168404Spjdstatic void
3303168404Spjdarc_write_done(zio_t *zio)
3304168404Spjd{
3305168404Spjd	arc_write_callback_t *callback = zio->io_private;
3306168404Spjd	arc_buf_t *buf = callback->awcb_buf;
3307168404Spjd	arc_buf_hdr_t *hdr = buf->b_hdr;
3308168404Spjd
3309168404Spjd	hdr->b_acb = NULL;
3310168404Spjd
3311168404Spjd	hdr->b_dva = *BP_IDENTITY(zio->io_bp);
3312168404Spjd	hdr->b_birth = zio->io_bp->blk_birth;
3313168404Spjd	hdr->b_cksum0 = zio->io_bp->blk_cksum.zc_word[0];
3314168404Spjd	/*
3315168404Spjd	 * If the block to be written was all-zero, we may have
3316168404Spjd	 * compressed it away.  In this case no write was performed
3317168404Spjd	 * so there will be no dva/birth-date/checksum.  The buffer
3318168404Spjd	 * must therefor remain anonymous (and uncached).
3319168404Spjd	 */
3320168404Spjd	if (!BUF_EMPTY(hdr)) {
3321168404Spjd		arc_buf_hdr_t *exists;
3322168404Spjd		kmutex_t *hash_lock;
3323168404Spjd
3324168404Spjd		arc_cksum_verify(buf);
3325168404Spjd
3326168404Spjd		exists = buf_hash_insert(hdr, &hash_lock);
3327168404Spjd		if (exists) {
3328168404Spjd			/*
3329168404Spjd			 * This can only happen if we overwrite for
3330168404Spjd			 * sync-to-convergence, because we remove
3331168404Spjd			 * buffers from the hash table when we arc_free().
3332168404Spjd			 */
3333185029Spjd			ASSERT(zio->io_flags & ZIO_FLAG_IO_REWRITE);
3334168404Spjd			ASSERT(DVA_EQUAL(BP_IDENTITY(&zio->io_bp_orig),
3335168404Spjd			    BP_IDENTITY(zio->io_bp)));
3336168404Spjd			ASSERT3U(zio->io_bp_orig.blk_birth, ==,
3337168404Spjd			    zio->io_bp->blk_birth);
3338168404Spjd
3339168404Spjd			ASSERT(refcount_is_zero(&exists->b_refcnt));
3340168404Spjd			arc_change_state(arc_anon, exists, hash_lock);
3341168404Spjd			mutex_exit(hash_lock);
3342168404Spjd			arc_hdr_destroy(exists);
3343168404Spjd			exists = buf_hash_insert(hdr, &hash_lock);
3344168404Spjd			ASSERT3P(exists, ==, NULL);
3345168404Spjd		}
3346168404Spjd		hdr->b_flags &= ~ARC_IO_IN_PROGRESS;
3347185029Spjd		/* if it's not anon, we are doing a scrub */
3348185029Spjd		if (hdr->b_state == arc_anon)
3349185029Spjd			arc_access(hdr, hash_lock);
3350168404Spjd		mutex_exit(hash_lock);
3351168404Spjd	} else if (callback->awcb_done == NULL) {
3352168404Spjd		int destroy_hdr;
3353168404Spjd		/*
3354168404Spjd		 * This is an anonymous buffer with no user callback,
3355168404Spjd		 * destroy it if there are no active references.
3356168404Spjd		 */
3357168404Spjd		mutex_enter(&arc_eviction_mtx);
3358168404Spjd		destroy_hdr = refcount_is_zero(&hdr->b_refcnt);
3359168404Spjd		hdr->b_flags &= ~ARC_IO_IN_PROGRESS;
3360168404Spjd		mutex_exit(&arc_eviction_mtx);
3361168404Spjd		if (destroy_hdr)
3362168404Spjd			arc_hdr_destroy(hdr);
3363168404Spjd	} else {
3364168404Spjd		hdr->b_flags &= ~ARC_IO_IN_PROGRESS;
3365168404Spjd	}
3366185029Spjd	hdr->b_flags &= ~ARC_STORED;
3367168404Spjd
3368168404Spjd	if (callback->awcb_done) {
3369168404Spjd		ASSERT(!refcount_is_zero(&hdr->b_refcnt));
3370168404Spjd		callback->awcb_done(zio, buf, callback->awcb_private);
3371168404Spjd	}
3372168404Spjd
3373168404Spjd	kmem_free(callback, sizeof (arc_write_callback_t));
3374168404Spjd}
3375168404Spjd
3376185029Spjdstatic void
3377185029Spjdwrite_policy(spa_t *spa, const writeprops_t *wp, zio_prop_t *zp)
3378185029Spjd{
3379185029Spjd	boolean_t ismd = (wp->wp_level > 0 || dmu_ot[wp->wp_type].ot_metadata);
3380185029Spjd
3381185029Spjd	/* Determine checksum setting */
3382185029Spjd	if (ismd) {
3383185029Spjd		/*
3384185029Spjd		 * Metadata always gets checksummed.  If the data
3385185029Spjd		 * checksum is multi-bit correctable, and it's not a
3386185029Spjd		 * ZBT-style checksum, then it's suitable for metadata
3387185029Spjd		 * as well.  Otherwise, the metadata checksum defaults
3388185029Spjd		 * to fletcher4.
3389185029Spjd		 */
3390185029Spjd		if (zio_checksum_table[wp->wp_oschecksum].ci_correctable &&
3391185029Spjd		    !zio_checksum_table[wp->wp_oschecksum].ci_zbt)
3392185029Spjd			zp->zp_checksum = wp->wp_oschecksum;
3393185029Spjd		else
3394185029Spjd			zp->zp_checksum = ZIO_CHECKSUM_FLETCHER_4;
3395185029Spjd	} else {
3396185029Spjd		zp->zp_checksum = zio_checksum_select(wp->wp_dnchecksum,
3397185029Spjd		    wp->wp_oschecksum);
3398185029Spjd	}
3399185029Spjd
3400185029Spjd	/* Determine compression setting */
3401185029Spjd	if (ismd) {
3402185029Spjd		/*
3403185029Spjd		 * XXX -- we should design a compression algorithm
3404185029Spjd		 * that specializes in arrays of bps.
3405185029Spjd		 */
3406185029Spjd		zp->zp_compress = zfs_mdcomp_disable ? ZIO_COMPRESS_EMPTY :
3407185029Spjd		    ZIO_COMPRESS_LZJB;
3408185029Spjd	} else {
3409185029Spjd		zp->zp_compress = zio_compress_select(wp->wp_dncompress,
3410185029Spjd		    wp->wp_oscompress);
3411185029Spjd	}
3412185029Spjd
3413185029Spjd	zp->zp_type = wp->wp_type;
3414185029Spjd	zp->zp_level = wp->wp_level;
3415185029Spjd	zp->zp_ndvas = MIN(wp->wp_copies + ismd, spa_max_replication(spa));
3416185029Spjd}
3417185029Spjd
3418168404Spjdzio_t *
3419185029Spjdarc_write(zio_t *pio, spa_t *spa, const writeprops_t *wp,
3420185029Spjd    boolean_t l2arc, uint64_t txg, blkptr_t *bp, arc_buf_t *buf,
3421168404Spjd    arc_done_func_t *ready, arc_done_func_t *done, void *private, int priority,
3422185029Spjd    int zio_flags, const zbookmark_t *zb)
3423168404Spjd{
3424168404Spjd	arc_buf_hdr_t *hdr = buf->b_hdr;
3425168404Spjd	arc_write_callback_t *callback;
3426185029Spjd	zio_t *zio;
3427185029Spjd	zio_prop_t zp;
3428168404Spjd
3429185029Spjd	ASSERT(ready != NULL);
3430168404Spjd	ASSERT(!HDR_IO_ERROR(hdr));
3431168404Spjd	ASSERT((hdr->b_flags & ARC_IO_IN_PROGRESS) == 0);
3432168404Spjd	ASSERT(hdr->b_acb == 0);
3433185029Spjd	if (l2arc)
3434185029Spjd		hdr->b_flags |= ARC_L2CACHE;
3435168404Spjd	callback = kmem_zalloc(sizeof (arc_write_callback_t), KM_SLEEP);
3436168404Spjd	callback->awcb_ready = ready;
3437168404Spjd	callback->awcb_done = done;
3438168404Spjd	callback->awcb_private = private;
3439168404Spjd	callback->awcb_buf = buf;
3440168404Spjd
3441185029Spjd	write_policy(spa, wp, &zp);
3442185029Spjd	zio = zio_write(pio, spa, txg, bp, buf->b_data, hdr->b_size, &zp,
3443185029Spjd	    arc_write_ready, arc_write_done, callback, priority, zio_flags, zb);
3444185029Spjd
3445168404Spjd	return (zio);
3446168404Spjd}
3447168404Spjd
3448168404Spjdint
3449168404Spjdarc_free(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp,
3450168404Spjd    zio_done_func_t *done, void *private, uint32_t arc_flags)
3451168404Spjd{
3452168404Spjd	arc_buf_hdr_t *ab;
3453168404Spjd	kmutex_t *hash_lock;
3454168404Spjd	zio_t	*zio;
3455168404Spjd
3456168404Spjd	/*
3457168404Spjd	 * If this buffer is in the cache, release it, so it
3458168404Spjd	 * can be re-used.
3459168404Spjd	 */
3460168404Spjd	ab = buf_hash_find(spa, BP_IDENTITY(bp), bp->blk_birth, &hash_lock);
3461168404Spjd	if (ab != NULL) {
3462168404Spjd		/*
3463168404Spjd		 * The checksum of blocks to free is not always
3464168404Spjd		 * preserved (eg. on the deadlist).  However, if it is
3465168404Spjd		 * nonzero, it should match what we have in the cache.
3466168404Spjd		 */
3467168404Spjd		ASSERT(bp->blk_cksum.zc_word[0] == 0 ||
3468185029Spjd		    bp->blk_cksum.zc_word[0] == ab->b_cksum0 ||
3469185029Spjd		    bp->blk_fill == BLK_FILL_ALREADY_FREED);
3470185029Spjd
3471168404Spjd		if (ab->b_state != arc_anon)
3472168404Spjd			arc_change_state(arc_anon, ab, hash_lock);
3473168404Spjd		if (HDR_IO_IN_PROGRESS(ab)) {
3474168404Spjd			/*
3475168404Spjd			 * This should only happen when we prefetch.
3476168404Spjd			 */
3477168404Spjd			ASSERT(ab->b_flags & ARC_PREFETCH);
3478168404Spjd			ASSERT3U(ab->b_datacnt, ==, 1);
3479168404Spjd			ab->b_flags |= ARC_FREED_IN_READ;
3480168404Spjd			if (HDR_IN_HASH_TABLE(ab))
3481168404Spjd				buf_hash_remove(ab);
3482168404Spjd			ab->b_arc_access = 0;
3483168404Spjd			bzero(&ab->b_dva, sizeof (dva_t));
3484168404Spjd			ab->b_birth = 0;
3485168404Spjd			ab->b_cksum0 = 0;
3486168404Spjd			ab->b_buf->b_efunc = NULL;
3487168404Spjd			ab->b_buf->b_private = NULL;
3488168404Spjd			mutex_exit(hash_lock);
3489168404Spjd		} else if (refcount_is_zero(&ab->b_refcnt)) {
3490185029Spjd			ab->b_flags |= ARC_FREE_IN_PROGRESS;
3491168404Spjd			mutex_exit(hash_lock);
3492168404Spjd			arc_hdr_destroy(ab);
3493168404Spjd			ARCSTAT_BUMP(arcstat_deleted);
3494168404Spjd		} else {
3495168404Spjd			/*
3496168404Spjd			 * We still have an active reference on this
3497168404Spjd			 * buffer.  This can happen, e.g., from
3498168404Spjd			 * dbuf_unoverride().
3499168404Spjd			 */
3500168404Spjd			ASSERT(!HDR_IN_HASH_TABLE(ab));
3501168404Spjd			ab->b_arc_access = 0;
3502168404Spjd			bzero(&ab->b_dva, sizeof (dva_t));
3503168404Spjd			ab->b_birth = 0;
3504168404Spjd			ab->b_cksum0 = 0;
3505168404Spjd			ab->b_buf->b_efunc = NULL;
3506168404Spjd			ab->b_buf->b_private = NULL;
3507168404Spjd			mutex_exit(hash_lock);
3508168404Spjd		}
3509168404Spjd	}
3510168404Spjd
3511185029Spjd	zio = zio_free(pio, spa, txg, bp, done, private, ZIO_FLAG_MUSTSUCCEED);
3512168404Spjd
3513168404Spjd	if (arc_flags & ARC_WAIT)
3514168404Spjd		return (zio_wait(zio));
3515168404Spjd
3516168404Spjd	ASSERT(arc_flags & ARC_NOWAIT);
3517168404Spjd	zio_nowait(zio);
3518168404Spjd
3519168404Spjd	return (0);
3520168404Spjd}
3521168404Spjd
3522185029Spjdstatic int
3523185029Spjdarc_memory_throttle(uint64_t reserve, uint64_t txg)
3524185029Spjd{
3525185029Spjd#ifdef _KERNEL
3526185029Spjd	uint64_t inflight_data = arc_anon->arcs_size;
3527185029Spjd	uint64_t available_memory = ptoa((uintmax_t)cnt.v_free_count);
3528185029Spjd	static uint64_t page_load = 0;
3529185029Spjd	static uint64_t last_txg = 0;
3530185029Spjd
3531185029Spjd#if 0
3532185029Spjd#if defined(__i386)
3533185029Spjd	available_memory =
3534185029Spjd	    MIN(available_memory, vmem_size(heap_arena, VMEM_FREE));
3535185029Spjd#endif
3536185029Spjd#endif
3537185029Spjd	if (available_memory >= zfs_write_limit_max)
3538185029Spjd		return (0);
3539185029Spjd
3540185029Spjd	if (txg > last_txg) {
3541185029Spjd		last_txg = txg;
3542185029Spjd		page_load = 0;
3543185029Spjd	}
3544185029Spjd	/*
3545185029Spjd	 * If we are in pageout, we know that memory is already tight,
3546185029Spjd	 * the arc is already going to be evicting, so we just want to
3547185029Spjd	 * continue to let page writes occur as quickly as possible.
3548185029Spjd	 */
3549185029Spjd	if (curproc == pageproc) {
3550185029Spjd		if (page_load > available_memory / 4)
3551185029Spjd			return (ERESTART);
3552185029Spjd		/* Note: reserve is inflated, so we deflate */
3553185029Spjd		page_load += reserve / 8;
3554185029Spjd		return (0);
3555185029Spjd	} else if (page_load > 0 && arc_reclaim_needed()) {
3556185029Spjd		/* memory is low, delay before restarting */
3557185029Spjd		ARCSTAT_INCR(arcstat_memory_throttle_count, 1);
3558185029Spjd		return (EAGAIN);
3559185029Spjd	}
3560185029Spjd	page_load = 0;
3561185029Spjd
3562185029Spjd	if (arc_size > arc_c_min) {
3563185029Spjd		uint64_t evictable_memory =
3564185029Spjd		    arc_mru->arcs_lsize[ARC_BUFC_DATA] +
3565185029Spjd		    arc_mru->arcs_lsize[ARC_BUFC_METADATA] +
3566185029Spjd		    arc_mfu->arcs_lsize[ARC_BUFC_DATA] +
3567185029Spjd		    arc_mfu->arcs_lsize[ARC_BUFC_METADATA];
3568185029Spjd		available_memory += MIN(evictable_memory, arc_size - arc_c_min);
3569185029Spjd	}
3570185029Spjd
3571185029Spjd	if (inflight_data > available_memory / 4) {
3572185029Spjd		ARCSTAT_INCR(arcstat_memory_throttle_count, 1);
3573185029Spjd		return (ERESTART);
3574185029Spjd	}
3575185029Spjd#endif
3576185029Spjd	return (0);
3577185029Spjd}
3578185029Spjd
3579168404Spjdvoid
3580185029Spjdarc_tempreserve_clear(uint64_t reserve)
3581168404Spjd{
3582185029Spjd	atomic_add_64(&arc_tempreserve, -reserve);
3583168404Spjd	ASSERT((int64_t)arc_tempreserve >= 0);
3584168404Spjd}
3585168404Spjd
3586168404Spjdint
3587185029Spjdarc_tempreserve_space(uint64_t reserve, uint64_t txg)
3588168404Spjd{
3589185029Spjd	int error;
3590185029Spjd
3591168404Spjd#ifdef ZFS_DEBUG
3592168404Spjd	/*
3593168404Spjd	 * Once in a while, fail for no reason.  Everything should cope.
3594168404Spjd	 */
3595168404Spjd	if (spa_get_random(10000) == 0) {
3596168404Spjd		dprintf("forcing random failure\n");
3597168404Spjd		return (ERESTART);
3598168404Spjd	}
3599168404Spjd#endif
3600185029Spjd	if (reserve > arc_c/4 && !arc_no_grow)
3601185029Spjd		arc_c = MIN(arc_c_max, reserve * 4);
3602185029Spjd	if (reserve > arc_c)
3603168404Spjd		return (ENOMEM);
3604168404Spjd
3605168404Spjd	/*
3606185029Spjd	 * Writes will, almost always, require additional memory allocations
3607185029Spjd	 * in order to compress/encrypt/etc the data.  We therefor need to
3608185029Spjd	 * make sure that there is sufficient available memory for this.
3609185029Spjd	 */
3610185029Spjd	if (error = arc_memory_throttle(reserve, txg))
3611185029Spjd		return (error);
3612185029Spjd
3613185029Spjd	/*
3614168404Spjd	 * Throttle writes when the amount of dirty data in the cache
3615168404Spjd	 * gets too large.  We try to keep the cache less than half full
3616168404Spjd	 * of dirty blocks so that our sync times don't grow too large.
3617168404Spjd	 * Note: if two requests come in concurrently, we might let them
3618168404Spjd	 * both succeed, when one of them should fail.  Not a huge deal.
3619168404Spjd	 */
3620185029Spjd	if (reserve + arc_tempreserve + arc_anon->arcs_size > arc_c / 2 &&
3621185029Spjd	    arc_anon->arcs_size > arc_c / 4) {
3622185029Spjd		dprintf("failing, arc_tempreserve=%lluK anon_meta=%lluK "
3623185029Spjd		    "anon_data=%lluK tempreserve=%lluK arc_c=%lluK\n",
3624185029Spjd		    arc_tempreserve>>10,
3625185029Spjd		    arc_anon->arcs_lsize[ARC_BUFC_METADATA]>>10,
3626185029Spjd		    arc_anon->arcs_lsize[ARC_BUFC_DATA]>>10,
3627185029Spjd		    reserve>>10, arc_c>>10);
3628168404Spjd		return (ERESTART);
3629168404Spjd	}
3630185029Spjd	atomic_add_64(&arc_tempreserve, reserve);
3631168404Spjd	return (0);
3632168404Spjd}
3633168404Spjd
3634168582Spjdstatic kmutex_t arc_lowmem_lock;
3635168404Spjd#ifdef _KERNEL
3636168566Spjdstatic eventhandler_tag arc_event_lowmem = NULL;
3637168404Spjd
3638168404Spjdstatic void
3639168566Spjdarc_lowmem(void *arg __unused, int howto __unused)
3640168404Spjd{
3641168404Spjd
3642168566Spjd	/* Serialize access via arc_lowmem_lock. */
3643168566Spjd	mutex_enter(&arc_lowmem_lock);
3644185029Spjd	needfree = 1;
3645168404Spjd	cv_signal(&arc_reclaim_thr_cv);
3646185029Spjd	while (needfree)
3647185029Spjd		tsleep(&needfree, 0, "zfs:lowmem", hz / 5);
3648168566Spjd	mutex_exit(&arc_lowmem_lock);
3649168404Spjd}
3650168404Spjd#endif
3651168404Spjd
3652168404Spjdvoid
3653168404Spjdarc_init(void)
3654168404Spjd{
3655193953Skmacy	int prefetch_tunable_set = 0;
3656205231Skmacy	int i;
3657205231Skmacy
3658168404Spjd	mutex_init(&arc_reclaim_thr_lock, NULL, MUTEX_DEFAULT, NULL);
3659168404Spjd	cv_init(&arc_reclaim_thr_cv, NULL, CV_DEFAULT, NULL);
3660168566Spjd	mutex_init(&arc_lowmem_lock, NULL, MUTEX_DEFAULT, NULL);
3661168404Spjd
3662168404Spjd	/* Convert seconds to clock ticks */
3663168404Spjd	arc_min_prefetch_lifespan = 1 * hz;
3664168404Spjd
3665168404Spjd	/* Start out with 1/8 of all memory */
3666168566Spjd	arc_c = kmem_size() / 8;
3667192360Skmacy#if 0
3668192360Skmacy#ifdef _KERNEL
3669192360Skmacy	/*
3670192360Skmacy	 * On architectures where the physical memory can be larger
3671192360Skmacy	 * than the addressable space (intel in 32-bit mode), we may
3672192360Skmacy	 * need to limit the cache to 1/8 of VM size.
3673192360Skmacy	 */
3674192360Skmacy	arc_c = MIN(arc_c, vmem_size(heap_arena, VMEM_ALLOC | VMEM_FREE) / 8);
3675192360Skmacy#endif
3676192360Skmacy#endif
3677168566Spjd	/* set min cache to 1/32 of all memory, or 16MB, whichever is more */
3678168566Spjd	arc_c_min = MAX(arc_c / 4, 64<<18);
3679168566Spjd	/* set max to 1/2 of all memory, or all but 1GB, whichever is more */
3680168404Spjd	if (arc_c * 8 >= 1<<30)
3681168404Spjd		arc_c_max = (arc_c * 8) - (1<<30);
3682168404Spjd	else
3683168404Spjd		arc_c_max = arc_c_min;
3684175633Spjd	arc_c_max = MAX(arc_c * 5, arc_c_max);
3685168481Spjd#ifdef _KERNEL
3686168404Spjd	/*
3687168404Spjd	 * Allow the tunables to override our calculations if they are
3688168566Spjd	 * reasonable (ie. over 16MB)
3689168404Spjd	 */
3690168566Spjd	if (zfs_arc_max >= 64<<18 && zfs_arc_max < kmem_size())
3691168404Spjd		arc_c_max = zfs_arc_max;
3692168566Spjd	if (zfs_arc_min >= 64<<18 && zfs_arc_min <= arc_c_max)
3693168404Spjd		arc_c_min = zfs_arc_min;
3694168481Spjd#endif
3695168404Spjd	arc_c = arc_c_max;
3696168404Spjd	arc_p = (arc_c >> 1);
3697168404Spjd
3698185029Spjd	/* limit meta-data to 1/4 of the arc capacity */
3699185029Spjd	arc_meta_limit = arc_c_max / 4;
3700185029Spjd
3701185029Spjd	/* Allow the tunable to override if it is reasonable */
3702185029Spjd	if (zfs_arc_meta_limit > 0 && zfs_arc_meta_limit <= arc_c_max)
3703185029Spjd		arc_meta_limit = zfs_arc_meta_limit;
3704185029Spjd
3705185029Spjd	if (arc_c_min < arc_meta_limit / 2 && zfs_arc_min == 0)
3706185029Spjd		arc_c_min = arc_meta_limit / 2;
3707185029Spjd
3708168404Spjd	/* if kmem_flags are set, lets try to use less memory */
3709168404Spjd	if (kmem_debugging())
3710168404Spjd		arc_c = arc_c / 2;
3711168404Spjd	if (arc_c < arc_c_min)
3712168404Spjd		arc_c = arc_c_min;
3713168404Spjd
3714168473Spjd	zfs_arc_min = arc_c_min;
3715168473Spjd	zfs_arc_max = arc_c_max;
3716168473Spjd
3717168404Spjd	arc_anon = &ARC_anon;
3718168404Spjd	arc_mru = &ARC_mru;
3719168404Spjd	arc_mru_ghost = &ARC_mru_ghost;
3720168404Spjd	arc_mfu = &ARC_mfu;
3721168404Spjd	arc_mfu_ghost = &ARC_mfu_ghost;
3722185029Spjd	arc_l2c_only = &ARC_l2c_only;
3723168404Spjd	arc_size = 0;
3724168404Spjd
3725205231Skmacy	for (i = 0; i < ARC_BUFC_NUMLISTS; i++) {
3726205231Skmacy
3727205231Skmacy		mutex_init(&arc_anon->arcs_locks[i].arcs_lock,
3728205231Skmacy		    NULL, MUTEX_DEFAULT, NULL);
3729205231Skmacy		mutex_init(&arc_mru->arcs_locks[i].arcs_lock,
3730205231Skmacy		    NULL, MUTEX_DEFAULT, NULL);
3731205231Skmacy		mutex_init(&arc_mru_ghost->arcs_locks[i].arcs_lock,
3732205231Skmacy		    NULL, MUTEX_DEFAULT, NULL);
3733205231Skmacy		mutex_init(&arc_mfu->arcs_locks[i].arcs_lock,
3734205231Skmacy		    NULL, MUTEX_DEFAULT, NULL);
3735205231Skmacy		mutex_init(&arc_mfu_ghost->arcs_locks[i].arcs_lock,
3736205231Skmacy		    NULL, MUTEX_DEFAULT, NULL);
3737205231Skmacy		mutex_init(&arc_l2c_only->arcs_locks[i].arcs_lock,
3738205231Skmacy		    NULL, MUTEX_DEFAULT, NULL);
3739205231Skmacy
3740205231Skmacy		list_create(&arc_mru->arcs_lists[i],
3741205231Skmacy		    sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
3742205231Skmacy		list_create(&arc_mru_ghost->arcs_lists[i],
3743205231Skmacy		    sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
3744205231Skmacy		list_create(&arc_mfu->arcs_lists[i],
3745205231Skmacy		    sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
3746205231Skmacy		list_create(&arc_mfu_ghost->arcs_lists[i],
3747205231Skmacy		    sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
3748205231Skmacy		list_create(&arc_mfu_ghost->arcs_lists[i],
3749205231Skmacy		    sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
3750205231Skmacy		list_create(&arc_l2c_only->arcs_lists[i],
3751205231Skmacy		    sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
3752205231Skmacy	}
3753168404Spjd
3754168404Spjd	buf_init();
3755168404Spjd
3756168404Spjd	arc_thread_exit = 0;
3757168404Spjd	arc_eviction_list = NULL;
3758168404Spjd	mutex_init(&arc_eviction_mtx, NULL, MUTEX_DEFAULT, NULL);
3759168404Spjd	bzero(&arc_eviction_hdr, sizeof (arc_buf_hdr_t));
3760168404Spjd
3761168404Spjd	arc_ksp = kstat_create("zfs", 0, "arcstats", "misc", KSTAT_TYPE_NAMED,
3762168404Spjd	    sizeof (arc_stats) / sizeof (kstat_named_t), KSTAT_FLAG_VIRTUAL);
3763168404Spjd
3764168404Spjd	if (arc_ksp != NULL) {
3765168404Spjd		arc_ksp->ks_data = &arc_stats;
3766168404Spjd		kstat_install(arc_ksp);
3767168404Spjd	}
3768168404Spjd
3769168404Spjd	(void) thread_create(NULL, 0, arc_reclaim_thread, NULL, 0, &p0,
3770168404Spjd	    TS_RUN, minclsyspri);
3771168404Spjd
3772168404Spjd#ifdef _KERNEL
3773168566Spjd	arc_event_lowmem = EVENTHANDLER_REGISTER(vm_lowmem, arc_lowmem, NULL,
3774168404Spjd	    EVENTHANDLER_PRI_FIRST);
3775168404Spjd#endif
3776168404Spjd
3777168404Spjd	arc_dead = FALSE;
3778185029Spjd	arc_warm = B_FALSE;
3779168566Spjd
3780185029Spjd	if (zfs_write_limit_max == 0)
3781185029Spjd		zfs_write_limit_max = ptob(physmem) >> zfs_write_limit_shift;
3782185029Spjd	else
3783185029Spjd		zfs_write_limit_shift = 0;
3784185029Spjd	mutex_init(&zfs_write_limit_lock, NULL, MUTEX_DEFAULT, NULL);
3785185029Spjd
3786168566Spjd#ifdef _KERNEL
3787194043Skmacy	if (TUNABLE_INT_FETCH("vfs.zfs.prefetch_disable", &zfs_prefetch_disable))
3788193953Skmacy		prefetch_tunable_set = 1;
3789193953Skmacy
3790193878Skmacy#ifdef __i386__
3791193953Skmacy	if (prefetch_tunable_set == 0) {
3792196863Strasz		printf("ZFS NOTICE: Prefetch is disabled by default on i386 "
3793196863Strasz		    "-- to enable,\n");
3794196863Strasz		printf("            add \"vfs.zfs.prefetch_disable=0\" "
3795196863Strasz		    "to /boot/loader.conf.\n");
3796194043Skmacy		zfs_prefetch_disable=1;
3797193878Skmacy	}
3798193953Skmacy#else
3799193878Skmacy	if ((((uint64_t)physmem * PAGESIZE) < (1ULL << 32)) &&
3800193953Skmacy	    prefetch_tunable_set == 0) {
3801196863Strasz		printf("ZFS NOTICE: Prefetch is disabled by default if less "
3802196941Strasz		    "than 4GB of RAM is present;\n"
3803196863Strasz		    "            to enable, add \"vfs.zfs.prefetch_disable=0\" "
3804196863Strasz		    "to /boot/loader.conf.\n");
3805194043Skmacy		zfs_prefetch_disable=1;
3806193878Skmacy	}
3807193953Skmacy#endif
3808175633Spjd	/* Warn about ZFS memory and address space requirements. */
3809168696Spjd	if (((uint64_t)physmem * PAGESIZE) < (256 + 128 + 64) * (1 << 20)) {
3810168987Sbmah		printf("ZFS WARNING: Recommended minimum RAM size is 512MB; "
3811168987Sbmah		    "expect unstable behavior.\n");
3812175633Spjd	}
3813175633Spjd	if (kmem_size() < 512 * (1 << 20)) {
3814173419Spjd		printf("ZFS WARNING: Recommended minimum kmem_size is 512MB; "
3815168987Sbmah		    "expect unstable behavior.\n");
3816185029Spjd		printf("             Consider tuning vm.kmem_size and "
3817173419Spjd		    "vm.kmem_size_max\n");
3818185029Spjd		printf("             in /boot/loader.conf.\n");
3819168566Spjd	}
3820168566Spjd#endif
3821168404Spjd}
3822168404Spjd
3823168404Spjdvoid
3824168404Spjdarc_fini(void)
3825168404Spjd{
3826205231Skmacy	int i;
3827205231Skmacy
3828168404Spjd	mutex_enter(&arc_reclaim_thr_lock);
3829168404Spjd	arc_thread_exit = 1;
3830168404Spjd	cv_signal(&arc_reclaim_thr_cv);
3831168404Spjd	while (arc_thread_exit != 0)
3832168404Spjd		cv_wait(&arc_reclaim_thr_cv, &arc_reclaim_thr_lock);
3833168404Spjd	mutex_exit(&arc_reclaim_thr_lock);
3834168404Spjd
3835185029Spjd	arc_flush(NULL);
3836168404Spjd
3837168404Spjd	arc_dead = TRUE;
3838168404Spjd
3839168404Spjd	if (arc_ksp != NULL) {
3840168404Spjd		kstat_delete(arc_ksp);
3841168404Spjd		arc_ksp = NULL;
3842168404Spjd	}
3843168404Spjd
3844168404Spjd	mutex_destroy(&arc_eviction_mtx);
3845168404Spjd	mutex_destroy(&arc_reclaim_thr_lock);
3846168404Spjd	cv_destroy(&arc_reclaim_thr_cv);
3847168404Spjd
3848205231Skmacy	for (i = 0; i < ARC_BUFC_NUMLISTS; i++) {
3849205231Skmacy		list_destroy(&arc_mru->arcs_lists[i]);
3850205231Skmacy		list_destroy(&arc_mru_ghost->arcs_lists[i]);
3851205231Skmacy		list_destroy(&arc_mfu->arcs_lists[i]);
3852205231Skmacy		list_destroy(&arc_mfu_ghost->arcs_lists[i]);
3853206795Spjd		list_destroy(&arc_l2c_only->arcs_lists[i]);
3854168404Spjd
3855205231Skmacy		mutex_destroy(&arc_anon->arcs_locks[i].arcs_lock);
3856205231Skmacy		mutex_destroy(&arc_mru->arcs_locks[i].arcs_lock);
3857205231Skmacy		mutex_destroy(&arc_mru_ghost->arcs_locks[i].arcs_lock);
3858205231Skmacy		mutex_destroy(&arc_mfu->arcs_locks[i].arcs_lock);
3859205231Skmacy		mutex_destroy(&arc_mfu_ghost->arcs_locks[i].arcs_lock);
3860206795Spjd		mutex_destroy(&arc_l2c_only->arcs_locks[i].arcs_lock);
3861205231Skmacy	}
3862205231Skmacy
3863185029Spjd	mutex_destroy(&zfs_write_limit_lock);
3864185029Spjd
3865168404Spjd	buf_fini();
3866168404Spjd
3867168582Spjd	mutex_destroy(&arc_lowmem_lock);
3868168404Spjd#ifdef _KERNEL
3869168566Spjd	if (arc_event_lowmem != NULL)
3870168566Spjd		EVENTHANDLER_DEREGISTER(vm_lowmem, arc_event_lowmem);
3871168404Spjd#endif
3872168404Spjd}
3873185029Spjd
3874185029Spjd/*
3875185029Spjd * Level 2 ARC
3876185029Spjd *
3877185029Spjd * The level 2 ARC (L2ARC) is a cache layer in-between main memory and disk.
3878185029Spjd * It uses dedicated storage devices to hold cached data, which are populated
3879185029Spjd * using large infrequent writes.  The main role of this cache is to boost
3880185029Spjd * the performance of random read workloads.  The intended L2ARC devices
3881185029Spjd * include short-stroked disks, solid state disks, and other media with
3882185029Spjd * substantially faster read latency than disk.
3883185029Spjd *
3884185029Spjd *                 +-----------------------+
3885185029Spjd *                 |         ARC           |
3886185029Spjd *                 +-----------------------+
3887185029Spjd *                    |         ^     ^
3888185029Spjd *                    |         |     |
3889185029Spjd *      l2arc_feed_thread()    arc_read()
3890185029Spjd *                    |         |     |
3891185029Spjd *                    |  l2arc read   |
3892185029Spjd *                    V         |     |
3893185029Spjd *               +---------------+    |
3894185029Spjd *               |     L2ARC     |    |
3895185029Spjd *               +---------------+    |
3896185029Spjd *                   |    ^           |
3897185029Spjd *          l2arc_write() |           |
3898185029Spjd *                   |    |           |
3899185029Spjd *                   V    |           |
3900185029Spjd *                 +-------+      +-------+
3901185029Spjd *                 | vdev  |      | vdev  |
3902185029Spjd *                 | cache |      | cache |
3903185029Spjd *                 +-------+      +-------+
3904185029Spjd *                 +=========+     .-----.
3905185029Spjd *                 :  L2ARC  :    |-_____-|
3906185029Spjd *                 : devices :    | Disks |
3907185029Spjd *                 +=========+    `-_____-'
3908185029Spjd *
3909185029Spjd * Read requests are satisfied from the following sources, in order:
3910185029Spjd *
3911185029Spjd *	1) ARC
3912185029Spjd *	2) vdev cache of L2ARC devices
3913185029Spjd *	3) L2ARC devices
3914185029Spjd *	4) vdev cache of disks
3915185029Spjd *	5) disks
3916185029Spjd *
3917185029Spjd * Some L2ARC device types exhibit extremely slow write performance.
3918185029Spjd * To accommodate for this there are some significant differences between
3919185029Spjd * the L2ARC and traditional cache design:
3920185029Spjd *
3921185029Spjd * 1. There is no eviction path from the ARC to the L2ARC.  Evictions from
3922185029Spjd * the ARC behave as usual, freeing buffers and placing headers on ghost
3923185029Spjd * lists.  The ARC does not send buffers to the L2ARC during eviction as
3924185029Spjd * this would add inflated write latencies for all ARC memory pressure.
3925185029Spjd *
3926185029Spjd * 2. The L2ARC attempts to cache data from the ARC before it is evicted.
3927185029Spjd * It does this by periodically scanning buffers from the eviction-end of
3928185029Spjd * the MFU and MRU ARC lists, copying them to the L2ARC devices if they are
3929185029Spjd * not already there.  It scans until a headroom of buffers is satisfied,
3930185029Spjd * which itself is a buffer for ARC eviction.  The thread that does this is
3931185029Spjd * l2arc_feed_thread(), illustrated below; example sizes are included to
3932185029Spjd * provide a better sense of ratio than this diagram:
3933185029Spjd *
3934185029Spjd *	       head -->                        tail
3935185029Spjd *	        +---------------------+----------+
3936185029Spjd *	ARC_mfu |:::::#:::::::::::::::|o#o###o###|-->.   # already on L2ARC
3937185029Spjd *	        +---------------------+----------+   |   o L2ARC eligible
3938185029Spjd *	ARC_mru |:#:::::::::::::::::::|#o#ooo####|-->|   : ARC buffer
3939185029Spjd *	        +---------------------+----------+   |
3940185029Spjd *	             15.9 Gbytes      ^ 32 Mbytes    |
3941185029Spjd *	                           headroom          |
3942185029Spjd *	                                      l2arc_feed_thread()
3943185029Spjd *	                                             |
3944185029Spjd *	                 l2arc write hand <--[oooo]--'
3945185029Spjd *	                         |           8 Mbyte
3946185029Spjd *	                         |          write max
3947185029Spjd *	                         V
3948185029Spjd *		  +==============================+
3949185029Spjd *	L2ARC dev |####|#|###|###|    |####| ... |
3950185029Spjd *	          +==============================+
3951185029Spjd *	                     32 Gbytes
3952185029Spjd *
3953185029Spjd * 3. If an ARC buffer is copied to the L2ARC but then hit instead of
3954185029Spjd * evicted, then the L2ARC has cached a buffer much sooner than it probably
3955185029Spjd * needed to, potentially wasting L2ARC device bandwidth and storage.  It is
3956185029Spjd * safe to say that this is an uncommon case, since buffers at the end of
3957185029Spjd * the ARC lists have moved there due to inactivity.
3958185029Spjd *
3959185029Spjd * 4. If the ARC evicts faster than the L2ARC can maintain a headroom,
3960185029Spjd * then the L2ARC simply misses copying some buffers.  This serves as a
3961185029Spjd * pressure valve to prevent heavy read workloads from both stalling the ARC
3962185029Spjd * with waits and clogging the L2ARC with writes.  This also helps prevent
3963185029Spjd * the potential for the L2ARC to churn if it attempts to cache content too
3964185029Spjd * quickly, such as during backups of the entire pool.
3965185029Spjd *
3966185029Spjd * 5. After system boot and before the ARC has filled main memory, there are
3967185029Spjd * no evictions from the ARC and so the tails of the ARC_mfu and ARC_mru
3968185029Spjd * lists can remain mostly static.  Instead of searching from tail of these
3969185029Spjd * lists as pictured, the l2arc_feed_thread() will search from the list heads
3970185029Spjd * for eligible buffers, greatly increasing its chance of finding them.
3971185029Spjd *
3972185029Spjd * The L2ARC device write speed is also boosted during this time so that
3973185029Spjd * the L2ARC warms up faster.  Since there have been no ARC evictions yet,
3974185029Spjd * there are no L2ARC reads, and no fear of degrading read performance
3975185029Spjd * through increased writes.
3976185029Spjd *
3977185029Spjd * 6. Writes to the L2ARC devices are grouped and sent in-sequence, so that
3978185029Spjd * the vdev queue can aggregate them into larger and fewer writes.  Each
3979185029Spjd * device is written to in a rotor fashion, sweeping writes through
3980185029Spjd * available space then repeating.
3981185029Spjd *
3982185029Spjd * 7. The L2ARC does not store dirty content.  It never needs to flush
3983185029Spjd * write buffers back to disk based storage.
3984185029Spjd *
3985185029Spjd * 8. If an ARC buffer is written (and dirtied) which also exists in the
3986185029Spjd * L2ARC, the now stale L2ARC buffer is immediately dropped.
3987185029Spjd *
3988185029Spjd * The performance of the L2ARC can be tweaked by a number of tunables, which
3989185029Spjd * may be necessary for different workloads:
3990185029Spjd *
3991185029Spjd *	l2arc_write_max		max write bytes per interval
3992185029Spjd *	l2arc_write_boost	extra write bytes during device warmup
3993185029Spjd *	l2arc_noprefetch	skip caching prefetched buffers
3994185029Spjd *	l2arc_headroom		number of max device writes to precache
3995185029Spjd *	l2arc_feed_secs		seconds between L2ARC writing
3996185029Spjd *
3997185029Spjd * Tunables may be removed or added as future performance improvements are
3998185029Spjd * integrated, and also may become zpool properties.
3999185029Spjd */
4000185029Spjd
4001185029Spjdstatic void
4002185029Spjdl2arc_hdr_stat_add(void)
4003185029Spjd{
4004185029Spjd	ARCSTAT_INCR(arcstat_l2_hdr_size, HDR_SIZE + L2HDR_SIZE);
4005185029Spjd	ARCSTAT_INCR(arcstat_hdr_size, -HDR_SIZE);
4006185029Spjd}
4007185029Spjd
4008185029Spjdstatic void
4009185029Spjdl2arc_hdr_stat_remove(void)
4010185029Spjd{
4011185029Spjd	ARCSTAT_INCR(arcstat_l2_hdr_size, -(HDR_SIZE + L2HDR_SIZE));
4012185029Spjd	ARCSTAT_INCR(arcstat_hdr_size, HDR_SIZE);
4013185029Spjd}
4014185029Spjd
4015185029Spjd/*
4016185029Spjd * Cycle through L2ARC devices.  This is how L2ARC load balances.
4017185029Spjd * If a device is returned, this also returns holding the spa config lock.
4018185029Spjd */
4019185029Spjdstatic l2arc_dev_t *
4020185029Spjdl2arc_dev_get_next(void)
4021185029Spjd{
4022185029Spjd	l2arc_dev_t *first, *next = NULL;
4023185029Spjd
4024185029Spjd	/*
4025185029Spjd	 * Lock out the removal of spas (spa_namespace_lock), then removal
4026185029Spjd	 * of cache devices (l2arc_dev_mtx).  Once a device has been selected,
4027185029Spjd	 * both locks will be dropped and a spa config lock held instead.
4028185029Spjd	 */
4029185029Spjd	mutex_enter(&spa_namespace_lock);
4030185029Spjd	mutex_enter(&l2arc_dev_mtx);
4031185029Spjd
4032185029Spjd	/* if there are no vdevs, there is nothing to do */
4033185029Spjd	if (l2arc_ndev == 0)
4034185029Spjd		goto out;
4035185029Spjd
4036185029Spjd	first = NULL;
4037185029Spjd	next = l2arc_dev_last;
4038185029Spjd	do {
4039185029Spjd		/* loop around the list looking for a non-faulted vdev */
4040185029Spjd		if (next == NULL) {
4041185029Spjd			next = list_head(l2arc_dev_list);
4042185029Spjd		} else {
4043185029Spjd			next = list_next(l2arc_dev_list, next);
4044185029Spjd			if (next == NULL)
4045185029Spjd				next = list_head(l2arc_dev_list);
4046185029Spjd		}
4047185029Spjd
4048185029Spjd		/* if we have come back to the start, bail out */
4049185029Spjd		if (first == NULL)
4050185029Spjd			first = next;
4051185029Spjd		else if (next == first)
4052185029Spjd			break;
4053185029Spjd
4054185029Spjd	} while (vdev_is_dead(next->l2ad_vdev));
4055185029Spjd
4056185029Spjd	/* if we were unable to find any usable vdevs, return NULL */
4057185029Spjd	if (vdev_is_dead(next->l2ad_vdev))
4058185029Spjd		next = NULL;
4059185029Spjd
4060185029Spjd	l2arc_dev_last = next;
4061185029Spjd
4062185029Spjdout:
4063185029Spjd	mutex_exit(&l2arc_dev_mtx);
4064185029Spjd
4065185029Spjd	/*
4066185029Spjd	 * Grab the config lock to prevent the 'next' device from being
4067185029Spjd	 * removed while we are writing to it.
4068185029Spjd	 */
4069185029Spjd	if (next != NULL)
4070185029Spjd		spa_config_enter(next->l2ad_spa, SCL_L2ARC, next, RW_READER);
4071185029Spjd	mutex_exit(&spa_namespace_lock);
4072185029Spjd
4073185029Spjd	return (next);
4074185029Spjd}
4075185029Spjd
4076185029Spjd/*
4077185029Spjd * Free buffers that were tagged for destruction.
4078185029Spjd */
4079185029Spjdstatic void
4080185029Spjdl2arc_do_free_on_write()
4081185029Spjd{
4082185029Spjd	list_t *buflist;
4083185029Spjd	l2arc_data_free_t *df, *df_prev;
4084185029Spjd
4085185029Spjd	mutex_enter(&l2arc_free_on_write_mtx);
4086185029Spjd	buflist = l2arc_free_on_write;
4087185029Spjd
4088185029Spjd	for (df = list_tail(buflist); df; df = df_prev) {
4089185029Spjd		df_prev = list_prev(buflist, df);
4090185029Spjd		ASSERT(df->l2df_data != NULL);
4091185029Spjd		ASSERT(df->l2df_func != NULL);
4092185029Spjd		df->l2df_func(df->l2df_data, df->l2df_size);
4093185029Spjd		list_remove(buflist, df);
4094185029Spjd		kmem_free(df, sizeof (l2arc_data_free_t));
4095185029Spjd	}
4096185029Spjd
4097185029Spjd	mutex_exit(&l2arc_free_on_write_mtx);
4098185029Spjd}
4099185029Spjd
4100185029Spjd/*
4101185029Spjd * A write to a cache device has completed.  Update all headers to allow
4102185029Spjd * reads from these buffers to begin.
4103185029Spjd */
4104185029Spjdstatic void
4105185029Spjdl2arc_write_done(zio_t *zio)
4106185029Spjd{
4107185029Spjd	l2arc_write_callback_t *cb;
4108185029Spjd	l2arc_dev_t *dev;
4109185029Spjd	list_t *buflist;
4110185029Spjd	arc_buf_hdr_t *head, *ab, *ab_prev;
4111185029Spjd	l2arc_buf_hdr_t *abl2;
4112185029Spjd	kmutex_t *hash_lock;
4113185029Spjd
4114185029Spjd	cb = zio->io_private;
4115185029Spjd	ASSERT(cb != NULL);
4116185029Spjd	dev = cb->l2wcb_dev;
4117185029Spjd	ASSERT(dev != NULL);
4118185029Spjd	head = cb->l2wcb_head;
4119185029Spjd	ASSERT(head != NULL);
4120185029Spjd	buflist = dev->l2ad_buflist;
4121185029Spjd	ASSERT(buflist != NULL);
4122185029Spjd	DTRACE_PROBE2(l2arc__iodone, zio_t *, zio,
4123185029Spjd	    l2arc_write_callback_t *, cb);
4124185029Spjd
4125185029Spjd	if (zio->io_error != 0)
4126185029Spjd		ARCSTAT_BUMP(arcstat_l2_writes_error);
4127185029Spjd
4128185029Spjd	mutex_enter(&l2arc_buflist_mtx);
4129185029Spjd
4130185029Spjd	/*
4131185029Spjd	 * All writes completed, or an error was hit.
4132185029Spjd	 */
4133185029Spjd	for (ab = list_prev(buflist, head); ab; ab = ab_prev) {
4134185029Spjd		ab_prev = list_prev(buflist, ab);
4135185029Spjd
4136185029Spjd		hash_lock = HDR_LOCK(ab);
4137185029Spjd		if (!mutex_tryenter(hash_lock)) {
4138185029Spjd			/*
4139185029Spjd			 * This buffer misses out.  It may be in a stage
4140185029Spjd			 * of eviction.  Its ARC_L2_WRITING flag will be
4141185029Spjd			 * left set, denying reads to this buffer.
4142185029Spjd			 */
4143185029Spjd			ARCSTAT_BUMP(arcstat_l2_writes_hdr_miss);
4144185029Spjd			continue;
4145185029Spjd		}
4146185029Spjd
4147185029Spjd		if (zio->io_error != 0) {
4148185029Spjd			/*
4149185029Spjd			 * Error - drop L2ARC entry.
4150185029Spjd			 */
4151185029Spjd			list_remove(buflist, ab);
4152185029Spjd			abl2 = ab->b_l2hdr;
4153185029Spjd			ab->b_l2hdr = NULL;
4154185029Spjd			kmem_free(abl2, sizeof (l2arc_buf_hdr_t));
4155185029Spjd			ARCSTAT_INCR(arcstat_l2_size, -ab->b_size);
4156185029Spjd		}
4157185029Spjd
4158185029Spjd		/*
4159185029Spjd		 * Allow ARC to begin reads to this L2ARC entry.
4160185029Spjd		 */
4161185029Spjd		ab->b_flags &= ~ARC_L2_WRITING;
4162185029Spjd
4163185029Spjd		mutex_exit(hash_lock);
4164185029Spjd	}
4165185029Spjd
4166185029Spjd	atomic_inc_64(&l2arc_writes_done);
4167185029Spjd	list_remove(buflist, head);
4168185029Spjd	kmem_cache_free(hdr_cache, head);
4169185029Spjd	mutex_exit(&l2arc_buflist_mtx);
4170185029Spjd
4171185029Spjd	l2arc_do_free_on_write();
4172185029Spjd
4173185029Spjd	kmem_free(cb, sizeof (l2arc_write_callback_t));
4174185029Spjd}
4175185029Spjd
4176185029Spjd/*
4177185029Spjd * A read to a cache device completed.  Validate buffer contents before
4178185029Spjd * handing over to the regular ARC routines.
4179185029Spjd */
4180185029Spjdstatic void
4181185029Spjdl2arc_read_done(zio_t *zio)
4182185029Spjd{
4183185029Spjd	l2arc_read_callback_t *cb;
4184185029Spjd	arc_buf_hdr_t *hdr;
4185185029Spjd	arc_buf_t *buf;
4186185029Spjd	kmutex_t *hash_lock;
4187185029Spjd	int equal;
4188185029Spjd
4189185029Spjd	ASSERT(zio->io_vd != NULL);
4190185029Spjd	ASSERT(zio->io_flags & ZIO_FLAG_DONT_PROPAGATE);
4191185029Spjd
4192185029Spjd	spa_config_exit(zio->io_spa, SCL_L2ARC, zio->io_vd);
4193185029Spjd
4194185029Spjd	cb = zio->io_private;
4195185029Spjd	ASSERT(cb != NULL);
4196185029Spjd	buf = cb->l2rcb_buf;
4197185029Spjd	ASSERT(buf != NULL);
4198185029Spjd	hdr = buf->b_hdr;
4199185029Spjd	ASSERT(hdr != NULL);
4200185029Spjd
4201185029Spjd	hash_lock = HDR_LOCK(hdr);
4202185029Spjd	mutex_enter(hash_lock);
4203185029Spjd
4204185029Spjd	/*
4205185029Spjd	 * Check this survived the L2ARC journey.
4206185029Spjd	 */
4207185029Spjd	equal = arc_cksum_equal(buf);
4208185029Spjd	if (equal && zio->io_error == 0 && !HDR_L2_EVICTED(hdr)) {
4209185029Spjd		mutex_exit(hash_lock);
4210185029Spjd		zio->io_private = buf;
4211185029Spjd		zio->io_bp_copy = cb->l2rcb_bp;	/* XXX fix in L2ARC 2.0	*/
4212185029Spjd		zio->io_bp = &zio->io_bp_copy;	/* XXX fix in L2ARC 2.0	*/
4213185029Spjd		arc_read_done(zio);
4214185029Spjd	} else {
4215185029Spjd		mutex_exit(hash_lock);
4216185029Spjd		/*
4217185029Spjd		 * Buffer didn't survive caching.  Increment stats and
4218185029Spjd		 * reissue to the original storage device.
4219185029Spjd		 */
4220185029Spjd		if (zio->io_error != 0) {
4221185029Spjd			ARCSTAT_BUMP(arcstat_l2_io_error);
4222185029Spjd		} else {
4223185029Spjd			zio->io_error = EIO;
4224185029Spjd		}
4225185029Spjd		if (!equal)
4226185029Spjd			ARCSTAT_BUMP(arcstat_l2_cksum_bad);
4227185029Spjd
4228185029Spjd		/*
4229185029Spjd		 * If there's no waiter, issue an async i/o to the primary
4230185029Spjd		 * storage now.  If there *is* a waiter, the caller must
4231185029Spjd		 * issue the i/o in a context where it's OK to block.
4232185029Spjd		 */
4233185029Spjd		if (zio->io_waiter == NULL)
4234185029Spjd			zio_nowait(zio_read(zio->io_parent,
4235185029Spjd			    cb->l2rcb_spa, &cb->l2rcb_bp,
4236185029Spjd			    buf->b_data, zio->io_size, arc_read_done, buf,
4237185029Spjd			    zio->io_priority, cb->l2rcb_flags, &cb->l2rcb_zb));
4238185029Spjd	}
4239185029Spjd
4240185029Spjd	kmem_free(cb, sizeof (l2arc_read_callback_t));
4241185029Spjd}
4242185029Spjd
4243185029Spjd/*
4244185029Spjd * This is the list priority from which the L2ARC will search for pages to
4245185029Spjd * cache.  This is used within loops (0..3) to cycle through lists in the
4246185029Spjd * desired order.  This order can have a significant effect on cache
4247185029Spjd * performance.
4248185029Spjd *
4249185029Spjd * Currently the metadata lists are hit first, MFU then MRU, followed by
4250185029Spjd * the data lists.  This function returns a locked list, and also returns
4251185029Spjd * the lock pointer.
4252185029Spjd */
4253185029Spjdstatic list_t *
4254185029Spjdl2arc_list_locked(int list_num, kmutex_t **lock)
4255185029Spjd{
4256185029Spjd	list_t *list;
4257205231Skmacy	int idx;
4258205231Skmacy
4259205231Skmacy	ASSERT(list_num >= 0 && list_num < 2*ARC_BUFC_NUMLISTS);
4260185029Spjd
4261205231Skmacy	if (list_num < ARC_BUFC_NUMMETADATALISTS) {
4262205231Skmacy		idx = list_num;
4263205231Skmacy		list = &arc_mfu->arcs_lists[idx];
4264205231Skmacy		*lock = ARCS_LOCK(arc_mfu, idx);
4265205231Skmacy	} else if (list_num < ARC_BUFC_NUMMETADATALISTS*2) {
4266205231Skmacy		idx = list_num - ARC_BUFC_NUMMETADATALISTS;
4267205231Skmacy		list = &arc_mru->arcs_lists[idx];
4268205231Skmacy		*lock = ARCS_LOCK(arc_mru, idx);
4269205231Skmacy	} else if (list_num < (ARC_BUFC_NUMMETADATALISTS*2 +
4270205231Skmacy		ARC_BUFC_NUMDATALISTS)) {
4271205231Skmacy		idx = list_num - ARC_BUFC_NUMMETADATALISTS;
4272205231Skmacy		list = &arc_mfu->arcs_lists[idx];
4273205231Skmacy		*lock = ARCS_LOCK(arc_mfu, idx);
4274205231Skmacy	} else {
4275205231Skmacy		idx = list_num - ARC_BUFC_NUMLISTS;
4276205231Skmacy		list = &arc_mru->arcs_lists[idx];
4277205231Skmacy		*lock = ARCS_LOCK(arc_mru, idx);
4278185029Spjd	}
4279185029Spjd
4280205231Skmacy	CTR3(KTR_SPARE2, "list=%p list_num=%d idx=%d",
4281205231Skmacy	    list, list_num, idx);
4282185029Spjd	ASSERT(!(MUTEX_HELD(*lock)));
4283185029Spjd	mutex_enter(*lock);
4284185029Spjd	return (list);
4285185029Spjd}
4286185029Spjd
4287185029Spjd/*
4288185029Spjd * Evict buffers from the device write hand to the distance specified in
4289185029Spjd * bytes.  This distance may span populated buffers, it may span nothing.
4290185029Spjd * This is clearing a region on the L2ARC device ready for writing.
4291185029Spjd * If the 'all' boolean is set, every buffer is evicted.
4292185029Spjd */
4293185029Spjdstatic void
4294185029Spjdl2arc_evict(l2arc_dev_t *dev, uint64_t distance, boolean_t all)
4295185029Spjd{
4296185029Spjd	list_t *buflist;
4297185029Spjd	l2arc_buf_hdr_t *abl2;
4298185029Spjd	arc_buf_hdr_t *ab, *ab_prev;
4299185029Spjd	kmutex_t *hash_lock;
4300185029Spjd	uint64_t taddr;
4301185029Spjd
4302185029Spjd	buflist = dev->l2ad_buflist;
4303185029Spjd
4304185029Spjd	if (buflist == NULL)
4305185029Spjd		return;
4306185029Spjd
4307185029Spjd	if (!all && dev->l2ad_first) {
4308185029Spjd		/*
4309185029Spjd		 * This is the first sweep through the device.  There is
4310185029Spjd		 * nothing to evict.
4311185029Spjd		 */
4312185029Spjd		return;
4313185029Spjd	}
4314185029Spjd
4315185029Spjd	if (dev->l2ad_hand >= (dev->l2ad_end - (2 * distance))) {
4316185029Spjd		/*
4317185029Spjd		 * When nearing the end of the device, evict to the end
4318185029Spjd		 * before the device write hand jumps to the start.
4319185029Spjd		 */
4320185029Spjd		taddr = dev->l2ad_end;
4321185029Spjd	} else {
4322185029Spjd		taddr = dev->l2ad_hand + distance;
4323185029Spjd	}
4324185029Spjd	DTRACE_PROBE4(l2arc__evict, l2arc_dev_t *, dev, list_t *, buflist,
4325185029Spjd	    uint64_t, taddr, boolean_t, all);
4326185029Spjd
4327185029Spjdtop:
4328185029Spjd	mutex_enter(&l2arc_buflist_mtx);
4329185029Spjd	for (ab = list_tail(buflist); ab; ab = ab_prev) {
4330185029Spjd		ab_prev = list_prev(buflist, ab);
4331185029Spjd
4332185029Spjd		hash_lock = HDR_LOCK(ab);
4333185029Spjd		if (!mutex_tryenter(hash_lock)) {
4334185029Spjd			/*
4335185029Spjd			 * Missed the hash lock.  Retry.
4336185029Spjd			 */
4337185029Spjd			ARCSTAT_BUMP(arcstat_l2_evict_lock_retry);
4338185029Spjd			mutex_exit(&l2arc_buflist_mtx);
4339185029Spjd			mutex_enter(hash_lock);
4340185029Spjd			mutex_exit(hash_lock);
4341185029Spjd			goto top;
4342185029Spjd		}
4343185029Spjd
4344185029Spjd		if (HDR_L2_WRITE_HEAD(ab)) {
4345185029Spjd			/*
4346185029Spjd			 * We hit a write head node.  Leave it for
4347185029Spjd			 * l2arc_write_done().
4348185029Spjd			 */
4349185029Spjd			list_remove(buflist, ab);
4350185029Spjd			mutex_exit(hash_lock);
4351185029Spjd			continue;
4352185029Spjd		}
4353185029Spjd
4354185029Spjd		if (!all && ab->b_l2hdr != NULL &&
4355185029Spjd		    (ab->b_l2hdr->b_daddr > taddr ||
4356185029Spjd		    ab->b_l2hdr->b_daddr < dev->l2ad_hand)) {
4357185029Spjd			/*
4358185029Spjd			 * We've evicted to the target address,
4359185029Spjd			 * or the end of the device.
4360185029Spjd			 */
4361185029Spjd			mutex_exit(hash_lock);
4362185029Spjd			break;
4363185029Spjd		}
4364185029Spjd
4365185029Spjd		if (HDR_FREE_IN_PROGRESS(ab)) {
4366185029Spjd			/*
4367185029Spjd			 * Already on the path to destruction.
4368185029Spjd			 */
4369185029Spjd			mutex_exit(hash_lock);
4370185029Spjd			continue;
4371185029Spjd		}
4372185029Spjd
4373185029Spjd		if (ab->b_state == arc_l2c_only) {
4374185029Spjd			ASSERT(!HDR_L2_READING(ab));
4375185029Spjd			/*
4376185029Spjd			 * This doesn't exist in the ARC.  Destroy.
4377185029Spjd			 * arc_hdr_destroy() will call list_remove()
4378185029Spjd			 * and decrement arcstat_l2_size.
4379185029Spjd			 */
4380185029Spjd			arc_change_state(arc_anon, ab, hash_lock);
4381185029Spjd			arc_hdr_destroy(ab);
4382185029Spjd		} else {
4383185029Spjd			/*
4384185029Spjd			 * Invalidate issued or about to be issued
4385185029Spjd			 * reads, since we may be about to write
4386185029Spjd			 * over this location.
4387185029Spjd			 */
4388185029Spjd			if (HDR_L2_READING(ab)) {
4389185029Spjd				ARCSTAT_BUMP(arcstat_l2_evict_reading);
4390185029Spjd				ab->b_flags |= ARC_L2_EVICTED;
4391185029Spjd			}
4392185029Spjd
4393185029Spjd			/*
4394185029Spjd			 * Tell ARC this no longer exists in L2ARC.
4395185029Spjd			 */
4396185029Spjd			if (ab->b_l2hdr != NULL) {
4397185029Spjd				abl2 = ab->b_l2hdr;
4398185029Spjd				ab->b_l2hdr = NULL;
4399185029Spjd				kmem_free(abl2, sizeof (l2arc_buf_hdr_t));
4400185029Spjd				ARCSTAT_INCR(arcstat_l2_size, -ab->b_size);
4401185029Spjd			}
4402185029Spjd			list_remove(buflist, ab);
4403185029Spjd
4404185029Spjd			/*
4405185029Spjd			 * This may have been leftover after a
4406185029Spjd			 * failed write.
4407185029Spjd			 */
4408185029Spjd			ab->b_flags &= ~ARC_L2_WRITING;
4409185029Spjd		}
4410185029Spjd		mutex_exit(hash_lock);
4411185029Spjd	}
4412185029Spjd	mutex_exit(&l2arc_buflist_mtx);
4413185029Spjd
4414185029Spjd	spa_l2cache_space_update(dev->l2ad_vdev, 0, -(taddr - dev->l2ad_evict));
4415185029Spjd	dev->l2ad_evict = taddr;
4416185029Spjd}
4417185029Spjd
4418185029Spjd/*
4419185029Spjd * Find and write ARC buffers to the L2ARC device.
4420185029Spjd *
4421185029Spjd * An ARC_L2_WRITING flag is set so that the L2ARC buffers are not valid
4422185029Spjd * for reading until they have completed writing.
4423185029Spjd */
4424185029Spjdstatic void
4425185029Spjdl2arc_write_buffers(spa_t *spa, l2arc_dev_t *dev, uint64_t target_sz)
4426185029Spjd{
4427185029Spjd	arc_buf_hdr_t *ab, *ab_prev, *head;
4428185029Spjd	l2arc_buf_hdr_t *hdrl2;
4429185029Spjd	list_t *list;
4430185029Spjd	uint64_t passed_sz, write_sz, buf_sz, headroom;
4431185029Spjd	void *buf_data;
4432185029Spjd	kmutex_t *hash_lock, *list_lock;
4433185029Spjd	boolean_t have_lock, full;
4434185029Spjd	l2arc_write_callback_t *cb;
4435185029Spjd	zio_t *pio, *wzio;
4436185029Spjd	int try;
4437185029Spjd
4438185029Spjd	ASSERT(dev->l2ad_vdev != NULL);
4439185029Spjd
4440185029Spjd	pio = NULL;
4441185029Spjd	write_sz = 0;
4442185029Spjd	full = B_FALSE;
4443185029Spjd	head = kmem_cache_alloc(hdr_cache, KM_PUSHPAGE);
4444185029Spjd	head->b_flags |= ARC_L2_WRITE_HEAD;
4445185029Spjd
4446205231Skmacy	ARCSTAT_BUMP(arcstat_l2_write_buffer_iter);
4447185029Spjd	/*
4448185029Spjd	 * Copy buffers for L2ARC writing.
4449185029Spjd	 */
4450185029Spjd	mutex_enter(&l2arc_buflist_mtx);
4451205231Skmacy	for (try = 0; try < 2*ARC_BUFC_NUMLISTS; try++) {
4452185029Spjd		list = l2arc_list_locked(try, &list_lock);
4453185029Spjd		passed_sz = 0;
4454205231Skmacy		ARCSTAT_BUMP(arcstat_l2_write_buffer_list_iter);
4455185029Spjd
4456185029Spjd		/*
4457185029Spjd		 * L2ARC fast warmup.
4458185029Spjd		 *
4459185029Spjd		 * Until the ARC is warm and starts to evict, read from the
4460185029Spjd		 * head of the ARC lists rather than the tail.
4461185029Spjd		 */
4462185029Spjd		headroom = target_sz * l2arc_headroom;
4463185029Spjd		if (arc_warm == B_FALSE)
4464185029Spjd			ab = list_head(list);
4465185029Spjd		else
4466185029Spjd			ab = list_tail(list);
4467205231Skmacy		if (ab == NULL) {
4468205231Skmacy			ARCSTAT_BUMP(arcstat_l2_write_buffer_list_null_iter);
4469205231Skmacy		}
4470185029Spjd
4471185029Spjd		for (; ab; ab = ab_prev) {
4472185029Spjd			if (arc_warm == B_FALSE)
4473185029Spjd				ab_prev = list_next(list, ab);
4474185029Spjd			else
4475185029Spjd				ab_prev = list_prev(list, ab);
4476205231Skmacy			ARCSTAT_INCR(arcstat_l2_write_buffer_bytes_scanned, ab->b_size);
4477205231Skmacy
4478185029Spjd			hash_lock = HDR_LOCK(ab);
4479185029Spjd			have_lock = MUTEX_HELD(hash_lock);
4480185029Spjd			if (!have_lock && !mutex_tryenter(hash_lock)) {
4481205231Skmacy				ARCSTAT_BUMP(arcstat_l2_write_trylock_fail);
4482185029Spjd				/*
4483185029Spjd				 * Skip this buffer rather than waiting.
4484185029Spjd				 */
4485185029Spjd				continue;
4486185029Spjd			}
4487185029Spjd
4488205231Skmacy			if (ab->b_l2hdr != NULL) {
4489205231Skmacy				/*
4490205231Skmacy				 * Already in L2ARC.
4491205231Skmacy				 */
4492205231Skmacy				mutex_exit(hash_lock);
4493205231Skmacy				ARCSTAT_BUMP(arcstat_l2_write_in_l2);
4494205231Skmacy				continue;
4495205231Skmacy			}
4496205231Skmacy
4497185029Spjd			passed_sz += ab->b_size;
4498185029Spjd			if (passed_sz > headroom) {
4499185029Spjd				/*
4500185029Spjd				 * Searched too far.
4501185029Spjd				 */
4502185029Spjd				mutex_exit(hash_lock);
4503205231Skmacy				ARCSTAT_BUMP(arcstat_l2_write_passed_headroom);
4504185029Spjd				break;
4505185029Spjd			}
4506185029Spjd
4507185029Spjd			if (ab->b_spa != spa) {
4508185029Spjd				mutex_exit(hash_lock);
4509205231Skmacy				ARCSTAT_BUMP(arcstat_l2_write_spa_mismatch);
4510185029Spjd				continue;
4511185029Spjd			}
4512185029Spjd
4513205231Skmacy			if (HDR_IO_IN_PROGRESS(ab)) {
4514185029Spjd				mutex_exit(hash_lock);
4515205231Skmacy				ARCSTAT_BUMP(arcstat_l2_write_hdr_io_in_progress);
4516185029Spjd				continue;
4517185029Spjd			}
4518205231Skmacy			if (!HDR_L2CACHE(ab)) {
4519185029Spjd				mutex_exit(hash_lock);
4520205231Skmacy				ARCSTAT_BUMP(arcstat_l2_write_not_cacheable);
4521185029Spjd				continue;
4522185029Spjd			}
4523185029Spjd			if ((write_sz + ab->b_size) > target_sz) {
4524185029Spjd				full = B_TRUE;
4525185029Spjd				mutex_exit(hash_lock);
4526205231Skmacy				ARCSTAT_BUMP(arcstat_l2_write_full);
4527185029Spjd				break;
4528185029Spjd			}
4529185029Spjd
4530185029Spjd			if (ab->b_buf == NULL) {
4531185029Spjd				DTRACE_PROBE1(l2arc__buf__null, void *, ab);
4532185029Spjd				mutex_exit(hash_lock);
4533185029Spjd				continue;
4534185029Spjd			}
4535185029Spjd
4536185029Spjd			if (pio == NULL) {
4537185029Spjd				/*
4538185029Spjd				 * Insert a dummy header on the buflist so
4539185029Spjd				 * l2arc_write_done() can find where the
4540185029Spjd				 * write buffers begin without searching.
4541185029Spjd				 */
4542185029Spjd				list_insert_head(dev->l2ad_buflist, head);
4543185029Spjd
4544185029Spjd				cb = kmem_alloc(
4545185029Spjd				    sizeof (l2arc_write_callback_t), KM_SLEEP);
4546185029Spjd				cb->l2wcb_dev = dev;
4547185029Spjd				cb->l2wcb_head = head;
4548185029Spjd				pio = zio_root(spa, l2arc_write_done, cb,
4549185029Spjd				    ZIO_FLAG_CANFAIL);
4550205231Skmacy				ARCSTAT_BUMP(arcstat_l2_write_pios);
4551185029Spjd			}
4552185029Spjd
4553205231Skmacy			ARCSTAT_INCR(arcstat_l2_write_bytes_written, ab->b_size);
4554185029Spjd			/*
4555185029Spjd			 * Create and add a new L2ARC header.
4556185029Spjd			 */
4557185029Spjd			hdrl2 = kmem_zalloc(sizeof (l2arc_buf_hdr_t), KM_SLEEP);
4558185029Spjd			hdrl2->b_dev = dev;
4559185029Spjd			hdrl2->b_daddr = dev->l2ad_hand;
4560185029Spjd
4561206792Spjd			ab->b_flags |= ARC_L2_WRITING;
4562185029Spjd			ab->b_l2hdr = hdrl2;
4563185029Spjd			list_insert_head(dev->l2ad_buflist, ab);
4564185029Spjd			buf_data = ab->b_buf->b_data;
4565185029Spjd			buf_sz = ab->b_size;
4566185029Spjd
4567185029Spjd			/*
4568185029Spjd			 * Compute and store the buffer cksum before
4569185029Spjd			 * writing.  On debug the cksum is verified first.
4570185029Spjd			 */
4571185029Spjd			arc_cksum_verify(ab->b_buf);
4572185029Spjd			arc_cksum_compute(ab->b_buf, B_TRUE);
4573185029Spjd
4574185029Spjd			mutex_exit(hash_lock);
4575185029Spjd
4576185029Spjd			wzio = zio_write_phys(pio, dev->l2ad_vdev,
4577185029Spjd			    dev->l2ad_hand, buf_sz, buf_data, ZIO_CHECKSUM_OFF,
4578185029Spjd			    NULL, NULL, ZIO_PRIORITY_ASYNC_WRITE,
4579185029Spjd			    ZIO_FLAG_CANFAIL, B_FALSE);
4580185029Spjd
4581185029Spjd			DTRACE_PROBE2(l2arc__write, vdev_t *, dev->l2ad_vdev,
4582185029Spjd			    zio_t *, wzio);
4583185029Spjd			(void) zio_nowait(wzio);
4584185029Spjd
4585185029Spjd			/*
4586185029Spjd			 * Keep the clock hand suitably device-aligned.
4587185029Spjd			 */
4588185029Spjd			buf_sz = vdev_psize_to_asize(dev->l2ad_vdev, buf_sz);
4589185029Spjd
4590185029Spjd			write_sz += buf_sz;
4591185029Spjd			dev->l2ad_hand += buf_sz;
4592185029Spjd		}
4593185029Spjd
4594185029Spjd		mutex_exit(list_lock);
4595185029Spjd
4596185029Spjd		if (full == B_TRUE)
4597185029Spjd			break;
4598185029Spjd	}
4599185029Spjd	mutex_exit(&l2arc_buflist_mtx);
4600185029Spjd
4601185029Spjd	if (pio == NULL) {
4602185029Spjd		ASSERT3U(write_sz, ==, 0);
4603185029Spjd		kmem_cache_free(hdr_cache, head);
4604185029Spjd		return;
4605185029Spjd	}
4606185029Spjd
4607185029Spjd	ASSERT3U(write_sz, <=, target_sz);
4608185029Spjd	ARCSTAT_BUMP(arcstat_l2_writes_sent);
4609185029Spjd	ARCSTAT_INCR(arcstat_l2_size, write_sz);
4610185029Spjd	spa_l2cache_space_update(dev->l2ad_vdev, 0, write_sz);
4611185029Spjd
4612185029Spjd	/*
4613185029Spjd	 * Bump device hand to the device start if it is approaching the end.
4614185029Spjd	 * l2arc_evict() will already have evicted ahead for this case.
4615185029Spjd	 */
4616185029Spjd	if (dev->l2ad_hand >= (dev->l2ad_end - target_sz)) {
4617185029Spjd		spa_l2cache_space_update(dev->l2ad_vdev, 0,
4618185029Spjd		    dev->l2ad_end - dev->l2ad_hand);
4619185029Spjd		dev->l2ad_hand = dev->l2ad_start;
4620185029Spjd		dev->l2ad_evict = dev->l2ad_start;
4621185029Spjd		dev->l2ad_first = B_FALSE;
4622185029Spjd	}
4623185029Spjd
4624185029Spjd	(void) zio_wait(pio);
4625185029Spjd}
4626185029Spjd
4627185029Spjd/*
4628185029Spjd * This thread feeds the L2ARC at regular intervals.  This is the beating
4629185029Spjd * heart of the L2ARC.
4630185029Spjd */
4631185029Spjdstatic void
4632185029Spjdl2arc_feed_thread(void *dummy __unused)
4633185029Spjd{
4634185029Spjd	callb_cpr_t cpr;
4635185029Spjd	l2arc_dev_t *dev;
4636185029Spjd	spa_t *spa;
4637185029Spjd	uint64_t size;
4638185029Spjd
4639185029Spjd	CALLB_CPR_INIT(&cpr, &l2arc_feed_thr_lock, callb_generic_cpr, FTAG);
4640185029Spjd
4641185029Spjd	mutex_enter(&l2arc_feed_thr_lock);
4642185029Spjd
4643185029Spjd	while (l2arc_thread_exit == 0) {
4644185029Spjd		/*
4645185029Spjd		 * Pause for l2arc_feed_secs seconds between writes.
4646185029Spjd		 */
4647185029Spjd		CALLB_CPR_SAFE_BEGIN(&cpr);
4648185029Spjd		(void) cv_timedwait(&l2arc_feed_thr_cv, &l2arc_feed_thr_lock,
4649205231Skmacy		    hz * l2arc_feed_secs >> l2arc_feed_secs_shift);
4650185029Spjd		CALLB_CPR_SAFE_END(&cpr, &l2arc_feed_thr_lock);
4651185029Spjd
4652185029Spjd		/*
4653185029Spjd		 * Quick check for L2ARC devices.
4654185029Spjd		 */
4655185029Spjd		mutex_enter(&l2arc_dev_mtx);
4656185029Spjd		if (l2arc_ndev == 0) {
4657185029Spjd			mutex_exit(&l2arc_dev_mtx);
4658185029Spjd			continue;
4659185029Spjd		}
4660185029Spjd		mutex_exit(&l2arc_dev_mtx);
4661185029Spjd
4662185029Spjd		/*
4663185029Spjd		 * This selects the next l2arc device to write to, and in
4664185029Spjd		 * doing so the next spa to feed from: dev->l2ad_spa.   This
4665185029Spjd		 * will return NULL if there are now no l2arc devices or if
4666185029Spjd		 * they are all faulted.
4667185029Spjd		 *
4668185029Spjd		 * If a device is returned, its spa's config lock is also
4669185029Spjd		 * held to prevent device removal.  l2arc_dev_get_next()
4670185029Spjd		 * will grab and release l2arc_dev_mtx.
4671185029Spjd		 */
4672185029Spjd		if ((dev = l2arc_dev_get_next()) == NULL)
4673185029Spjd			continue;
4674185029Spjd
4675185029Spjd		spa = dev->l2ad_spa;
4676185029Spjd		ASSERT(spa != NULL);
4677185029Spjd
4678185029Spjd		/*
4679185029Spjd		 * Avoid contributing to memory pressure.
4680185029Spjd		 */
4681185029Spjd		if (arc_reclaim_needed()) {
4682185029Spjd			ARCSTAT_BUMP(arcstat_l2_abort_lowmem);
4683185029Spjd			spa_config_exit(spa, SCL_L2ARC, dev);
4684185029Spjd			continue;
4685185029Spjd		}
4686185029Spjd
4687185029Spjd		ARCSTAT_BUMP(arcstat_l2_feeds);
4688185029Spjd
4689185029Spjd		size = dev->l2ad_write;
4690185029Spjd		if (arc_warm == B_FALSE)
4691185029Spjd			size += dev->l2ad_boost;
4692185029Spjd
4693185029Spjd		/*
4694185029Spjd		 * Evict L2ARC buffers that will be overwritten.
4695185029Spjd		 */
4696185029Spjd		l2arc_evict(dev, size, B_FALSE);
4697185029Spjd
4698185029Spjd		/*
4699185029Spjd		 * Write ARC buffers.
4700185029Spjd		 */
4701185029Spjd		l2arc_write_buffers(spa, dev, size);
4702185029Spjd		spa_config_exit(spa, SCL_L2ARC, dev);
4703185029Spjd	}
4704185029Spjd
4705185029Spjd	l2arc_thread_exit = 0;
4706185029Spjd	cv_broadcast(&l2arc_feed_thr_cv);
4707185029Spjd	CALLB_CPR_EXIT(&cpr);		/* drops l2arc_feed_thr_lock */
4708185029Spjd	thread_exit();
4709185029Spjd}
4710185029Spjd
4711185029Spjdboolean_t
4712185029Spjdl2arc_vdev_present(vdev_t *vd)
4713185029Spjd{
4714185029Spjd	l2arc_dev_t *dev;
4715185029Spjd
4716185029Spjd	mutex_enter(&l2arc_dev_mtx);
4717185029Spjd	for (dev = list_head(l2arc_dev_list); dev != NULL;
4718185029Spjd	    dev = list_next(l2arc_dev_list, dev)) {
4719185029Spjd		if (dev->l2ad_vdev == vd)
4720185029Spjd			break;
4721185029Spjd	}
4722185029Spjd	mutex_exit(&l2arc_dev_mtx);
4723185029Spjd
4724185029Spjd	return (dev != NULL);
4725185029Spjd}
4726185029Spjd
4727185029Spjd/*
4728185029Spjd * Add a vdev for use by the L2ARC.  By this point the spa has already
4729185029Spjd * validated the vdev and opened it.
4730185029Spjd */
4731185029Spjdvoid
4732185029Spjdl2arc_add_vdev(spa_t *spa, vdev_t *vd, uint64_t start, uint64_t end)
4733185029Spjd{
4734185029Spjd	l2arc_dev_t *adddev;
4735185029Spjd
4736185029Spjd	ASSERT(!l2arc_vdev_present(vd));
4737185029Spjd
4738185029Spjd	/*
4739185029Spjd	 * Create a new l2arc device entry.
4740185029Spjd	 */
4741185029Spjd	adddev = kmem_zalloc(sizeof (l2arc_dev_t), KM_SLEEP);
4742185029Spjd	adddev->l2ad_spa = spa;
4743185029Spjd	adddev->l2ad_vdev = vd;
4744185029Spjd	adddev->l2ad_write = l2arc_write_max;
4745185029Spjd	adddev->l2ad_boost = l2arc_write_boost;
4746185029Spjd	adddev->l2ad_start = start;
4747185029Spjd	adddev->l2ad_end = end;
4748185029Spjd	adddev->l2ad_hand = adddev->l2ad_start;
4749185029Spjd	adddev->l2ad_evict = adddev->l2ad_start;
4750185029Spjd	adddev->l2ad_first = B_TRUE;
4751185029Spjd	ASSERT3U(adddev->l2ad_write, >, 0);
4752185029Spjd
4753185029Spjd	/*
4754185029Spjd	 * This is a list of all ARC buffers that are still valid on the
4755185029Spjd	 * device.
4756185029Spjd	 */
4757185029Spjd	adddev->l2ad_buflist = kmem_zalloc(sizeof (list_t), KM_SLEEP);
4758185029Spjd	list_create(adddev->l2ad_buflist, sizeof (arc_buf_hdr_t),
4759185029Spjd	    offsetof(arc_buf_hdr_t, b_l2node));
4760185029Spjd
4761185029Spjd	spa_l2cache_space_update(vd, adddev->l2ad_end - adddev->l2ad_hand, 0);
4762185029Spjd
4763185029Spjd	/*
4764185029Spjd	 * Add device to global list
4765185029Spjd	 */
4766185029Spjd	mutex_enter(&l2arc_dev_mtx);
4767185029Spjd	list_insert_head(l2arc_dev_list, adddev);
4768185029Spjd	atomic_inc_64(&l2arc_ndev);
4769185029Spjd	mutex_exit(&l2arc_dev_mtx);
4770185029Spjd}
4771185029Spjd
4772185029Spjd/*
4773185029Spjd * Remove a vdev from the L2ARC.
4774185029Spjd */
4775185029Spjdvoid
4776185029Spjdl2arc_remove_vdev(vdev_t *vd)
4777185029Spjd{
4778185029Spjd	l2arc_dev_t *dev, *nextdev, *remdev = NULL;
4779185029Spjd
4780185029Spjd	/*
4781185029Spjd	 * Find the device by vdev
4782185029Spjd	 */
4783185029Spjd	mutex_enter(&l2arc_dev_mtx);
4784185029Spjd	for (dev = list_head(l2arc_dev_list); dev; dev = nextdev) {
4785185029Spjd		nextdev = list_next(l2arc_dev_list, dev);
4786185029Spjd		if (vd == dev->l2ad_vdev) {
4787185029Spjd			remdev = dev;
4788185029Spjd			break;
4789185029Spjd		}
4790185029Spjd	}
4791185029Spjd	ASSERT(remdev != NULL);
4792185029Spjd
4793185029Spjd	/*
4794185029Spjd	 * Remove device from global list
4795185029Spjd	 */
4796185029Spjd	list_remove(l2arc_dev_list, remdev);
4797185029Spjd	l2arc_dev_last = NULL;		/* may have been invalidated */
4798185029Spjd	atomic_dec_64(&l2arc_ndev);
4799185029Spjd	mutex_exit(&l2arc_dev_mtx);
4800185029Spjd
4801185029Spjd	/*
4802185029Spjd	 * Clear all buflists and ARC references.  L2ARC device flush.
4803185029Spjd	 */
4804185029Spjd	l2arc_evict(remdev, 0, B_TRUE);
4805185029Spjd	list_destroy(remdev->l2ad_buflist);
4806185029Spjd	kmem_free(remdev->l2ad_buflist, sizeof (list_t));
4807185029Spjd	kmem_free(remdev, sizeof (l2arc_dev_t));
4808185029Spjd}
4809185029Spjd
4810185029Spjdvoid
4811185029Spjdl2arc_init(void)
4812185029Spjd{
4813185029Spjd	l2arc_thread_exit = 0;
4814185029Spjd	l2arc_ndev = 0;
4815185029Spjd	l2arc_writes_sent = 0;
4816185029Spjd	l2arc_writes_done = 0;
4817185029Spjd
4818185029Spjd	mutex_init(&l2arc_feed_thr_lock, NULL, MUTEX_DEFAULT, NULL);
4819185029Spjd	cv_init(&l2arc_feed_thr_cv, NULL, CV_DEFAULT, NULL);
4820185029Spjd	mutex_init(&l2arc_dev_mtx, NULL, MUTEX_DEFAULT, NULL);
4821185029Spjd	mutex_init(&l2arc_buflist_mtx, NULL, MUTEX_DEFAULT, NULL);
4822185029Spjd	mutex_init(&l2arc_free_on_write_mtx, NULL, MUTEX_DEFAULT, NULL);
4823185029Spjd
4824185029Spjd	l2arc_dev_list = &L2ARC_dev_list;
4825185029Spjd	l2arc_free_on_write = &L2ARC_free_on_write;
4826185029Spjd	list_create(l2arc_dev_list, sizeof (l2arc_dev_t),
4827185029Spjd	    offsetof(l2arc_dev_t, l2ad_node));
4828185029Spjd	list_create(l2arc_free_on_write, sizeof (l2arc_data_free_t),
4829185029Spjd	    offsetof(l2arc_data_free_t, l2df_list_node));
4830185029Spjd}
4831185029Spjd
4832185029Spjdvoid
4833185029Spjdl2arc_fini(void)
4834185029Spjd{
4835185029Spjd	/*
4836185029Spjd	 * This is called from dmu_fini(), which is called from spa_fini();
4837185029Spjd	 * Because of this, we can assume that all l2arc devices have
4838185029Spjd	 * already been removed when the pools themselves were removed.
4839185029Spjd	 */
4840185029Spjd
4841185029Spjd	l2arc_do_free_on_write();
4842185029Spjd
4843185029Spjd	mutex_destroy(&l2arc_feed_thr_lock);
4844185029Spjd	cv_destroy(&l2arc_feed_thr_cv);
4845185029Spjd	mutex_destroy(&l2arc_dev_mtx);
4846185029Spjd	mutex_destroy(&l2arc_buflist_mtx);
4847185029Spjd	mutex_destroy(&l2arc_free_on_write_mtx);
4848185029Spjd
4849185029Spjd	list_destroy(l2arc_dev_list);
4850185029Spjd	list_destroy(l2arc_free_on_write);
4851185029Spjd}
4852185029Spjd
4853185029Spjdvoid
4854185029Spjdl2arc_start(void)
4855185029Spjd{
4856185029Spjd	if (!(spa_mode & FWRITE))
4857185029Spjd		return;
4858185029Spjd
4859185029Spjd	(void) thread_create(NULL, 0, l2arc_feed_thread, NULL, 0, &p0,
4860185029Spjd	    TS_RUN, minclsyspri);
4861185029Spjd}
4862185029Spjd
4863185029Spjdvoid
4864185029Spjdl2arc_stop(void)
4865185029Spjd{
4866185029Spjd	if (!(spa_mode & FWRITE))
4867185029Spjd		return;
4868185029Spjd
4869185029Spjd	mutex_enter(&l2arc_feed_thr_lock);
4870185029Spjd	cv_signal(&l2arc_feed_thr_cv);	/* kick thread out of startup */
4871185029Spjd	l2arc_thread_exit = 1;
4872185029Spjd	while (l2arc_thread_exit != 0)
4873185029Spjd		cv_wait(&l2arc_feed_thr_cv, &l2arc_feed_thr_lock);
4874185029Spjd	mutex_exit(&l2arc_feed_thr_lock);
4875185029Spjd}
4876