]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
MFC r258632,258704: MFV r255255: 4045 zfs write throttle & i/o scheduler
[FreeBSD/stable/8.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / arc.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
24  * Copyright (c) 2013 by Delphix. All rights reserved.
25  * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
26  */
27
28 /*
29  * DVA-based Adjustable Replacement Cache
30  *
31  * While much of the theory of operation used here is
32  * based on the self-tuning, low overhead replacement cache
33  * presented by Megiddo and Modha at FAST 2003, there are some
34  * significant differences:
35  *
36  * 1. The Megiddo and Modha model assumes any page is evictable.
37  * Pages in its cache cannot be "locked" into memory.  This makes
38  * the eviction algorithm simple: evict the last page in the list.
39  * This also make the performance characteristics easy to reason
40  * about.  Our cache is not so simple.  At any given moment, some
41  * subset of the blocks in the cache are un-evictable because we
42  * have handed out a reference to them.  Blocks are only evictable
43  * when there are no external references active.  This makes
44  * eviction far more problematic:  we choose to evict the evictable
45  * blocks that are the "lowest" in the list.
46  *
47  * There are times when it is not possible to evict the requested
48  * space.  In these circumstances we are unable to adjust the cache
49  * size.  To prevent the cache growing unbounded at these times we
50  * implement a "cache throttle" that slows the flow of new data
51  * into the cache until we can make space available.
52  *
53  * 2. The Megiddo and Modha model assumes a fixed cache size.
54  * Pages are evicted when the cache is full and there is a cache
55  * miss.  Our model has a variable sized cache.  It grows with
56  * high use, but also tries to react to memory pressure from the
57  * operating system: decreasing its size when system memory is
58  * tight.
59  *
60  * 3. The Megiddo and Modha model assumes a fixed page size. All
61  * elements of the cache are therefore exactly the same size.  So
62  * when adjusting the cache size following a cache miss, its simply
63  * a matter of choosing a single page to evict.  In our model, we
64  * have variable sized cache blocks (rangeing from 512 bytes to
65  * 128K bytes).  We therefore choose a set of blocks to evict to make
66  * space for a cache miss that approximates as closely as possible
67  * the space used by the new block.
68  *
69  * See also:  "ARC: A Self-Tuning, Low Overhead Replacement Cache"
70  * by N. Megiddo & D. Modha, FAST 2003
71  */
72
73 /*
74  * The locking model:
75  *
76  * A new reference to a cache buffer can be obtained in two
77  * ways: 1) via a hash table lookup using the DVA as a key,
78  * or 2) via one of the ARC lists.  The arc_read() interface
79  * uses method 1, while the internal arc algorithms for
80  * adjusting the cache use method 2.  We therefore provide two
81  * types of locks: 1) the hash table lock array, and 2) the
82  * arc list locks.
83  *
84  * Buffers do not have their own mutexs, rather they rely on the
85  * hash table mutexs for the bulk of their protection (i.e. most
86  * fields in the arc_buf_hdr_t are protected by these mutexs).
87  *
88  * buf_hash_find() returns the appropriate mutex (held) when it
89  * locates the requested buffer in the hash table.  It returns
90  * NULL for the mutex if the buffer was not in the table.
91  *
92  * buf_hash_remove() expects the appropriate hash mutex to be
93  * already held before it is invoked.
94  *
95  * Each arc state also has a mutex which is used to protect the
96  * buffer list associated with the state.  When attempting to
97  * obtain a hash table lock while holding an arc list lock you
98  * must use: mutex_tryenter() to avoid deadlock.  Also note that
99  * the active state mutex must be held before the ghost state mutex.
100  *
101  * Arc buffers may have an associated eviction callback function.
102  * This function will be invoked prior to removing the buffer (e.g.
103  * in arc_do_user_evicts()).  Note however that the data associated
104  * with the buffer may be evicted prior to the callback.  The callback
105  * must be made with *no locks held* (to prevent deadlock).  Additionally,
106  * the users of callbacks must ensure that their private data is
107  * protected from simultaneous callbacks from arc_buf_evict()
108  * and arc_do_user_evicts().
109  *
110  * Note that the majority of the performance stats are manipulated
111  * with atomic operations.
112  *
113  * The L2ARC uses the l2arc_buflist_mtx global mutex for the following:
114  *
115  *      - L2ARC buflist creation
116  *      - L2ARC buflist eviction
117  *      - L2ARC write completion, which walks L2ARC buflists
118  *      - ARC header destruction, as it removes from L2ARC buflists
119  *      - ARC header release, as it removes from L2ARC buflists
120  */
121
122 #include <sys/spa.h>
123 #include <sys/zio.h>
124 #include <sys/zio_compress.h>
125 #include <sys/zfs_context.h>
126 #include <sys/arc.h>
127 #include <sys/refcount.h>
128 #include <sys/vdev.h>
129 #include <sys/vdev_impl.h>
130 #include <sys/dsl_pool.h>
131 #ifdef _KERNEL
132 #include <sys/dnlc.h>
133 #endif
134 #include <sys/callb.h>
135 #include <sys/kstat.h>
136 #include <sys/trim_map.h>
137 #include <zfs_fletcher.h>
138 #include <sys/sdt.h>
139
140 #include <vm/vm_pageout.h>
141
142 #ifdef illumos
143 #ifndef _KERNEL
144 /* set with ZFS_DEBUG=watch, to enable watchpoints on frozen buffers */
145 boolean_t arc_watch = B_FALSE;
146 int arc_procfd;
147 #endif
148 #endif /* illumos */
149
150 static kmutex_t         arc_reclaim_thr_lock;
151 static kcondvar_t       arc_reclaim_thr_cv;     /* used to signal reclaim thr */
152 static uint8_t          arc_thread_exit;
153
154 #define ARC_REDUCE_DNLC_PERCENT 3
155 uint_t arc_reduce_dnlc_percent = ARC_REDUCE_DNLC_PERCENT;
156
157 typedef enum arc_reclaim_strategy {
158         ARC_RECLAIM_AGGR,               /* Aggressive reclaim strategy */
159         ARC_RECLAIM_CONS                /* Conservative reclaim strategy */
160 } arc_reclaim_strategy_t;
161
162 /*
163  * The number of iterations through arc_evict_*() before we
164  * drop & reacquire the lock.
165  */
166 int arc_evict_iterations = 100;
167
168 /* number of seconds before growing cache again */
169 static int              arc_grow_retry = 60;
170
171 /* shift of arc_c for calculating both min and max arc_p */
172 static int              arc_p_min_shift = 4;
173
174 /* log2(fraction of arc to reclaim) */
175 static int              arc_shrink_shift = 5;
176
177 /*
178  * minimum lifespan of a prefetch block in clock ticks
179  * (initialized in arc_init())
180  */
181 static int              arc_min_prefetch_lifespan;
182
183 /*
184  * If this percent of memory is free, don't throttle.
185  */
186 int arc_lotsfree_percent = 10;
187
188 static int arc_dead;
189 extern int zfs_prefetch_disable;
190
191 /*
192  * The arc has filled available memory and has now warmed up.
193  */
194 static boolean_t arc_warm;
195
196 /*
197  * These tunables are for performance analysis.
198  */
199 uint64_t zfs_arc_max;
200 uint64_t zfs_arc_min;
201 uint64_t zfs_arc_meta_limit = 0;
202 int zfs_arc_grow_retry = 0;
203 int zfs_arc_shrink_shift = 0;
204 int zfs_arc_p_min_shift = 0;
205 int zfs_disable_dup_eviction = 0;
206
207 TUNABLE_QUAD("vfs.zfs.arc_max", &zfs_arc_max);
208 TUNABLE_QUAD("vfs.zfs.arc_min", &zfs_arc_min);
209 TUNABLE_QUAD("vfs.zfs.arc_meta_limit", &zfs_arc_meta_limit);
210 SYSCTL_DECL(_vfs_zfs);
211 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, arc_max, CTLFLAG_RDTUN, &zfs_arc_max, 0,
212     "Maximum ARC size");
213 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, arc_min, CTLFLAG_RDTUN, &zfs_arc_min, 0,
214     "Minimum ARC size");
215
216 /*
217  * Note that buffers can be in one of 6 states:
218  *      ARC_anon        - anonymous (discussed below)
219  *      ARC_mru         - recently used, currently cached
220  *      ARC_mru_ghost   - recentely used, no longer in cache
221  *      ARC_mfu         - frequently used, currently cached
222  *      ARC_mfu_ghost   - frequently used, no longer in cache
223  *      ARC_l2c_only    - exists in L2ARC but not other states
224  * When there are no active references to the buffer, they are
225  * are linked onto a list in one of these arc states.  These are
226  * the only buffers that can be evicted or deleted.  Within each
227  * state there are multiple lists, one for meta-data and one for
228  * non-meta-data.  Meta-data (indirect blocks, blocks of dnodes,
229  * etc.) is tracked separately so that it can be managed more
230  * explicitly: favored over data, limited explicitly.
231  *
232  * Anonymous buffers are buffers that are not associated with
233  * a DVA.  These are buffers that hold dirty block copies
234  * before they are written to stable storage.  By definition,
235  * they are "ref'd" and are considered part of arc_mru
236  * that cannot be freed.  Generally, they will aquire a DVA
237  * as they are written and migrate onto the arc_mru list.
238  *
239  * The ARC_l2c_only state is for buffers that are in the second
240  * level ARC but no longer in any of the ARC_m* lists.  The second
241  * level ARC itself may also contain buffers that are in any of
242  * the ARC_m* states - meaning that a buffer can exist in two
243  * places.  The reason for the ARC_l2c_only state is to keep the
244  * buffer header in the hash table, so that reads that hit the
245  * second level ARC benefit from these fast lookups.
246  */
247
248 #define ARCS_LOCK_PAD           CACHE_LINE_SIZE
249 struct arcs_lock {
250         kmutex_t        arcs_lock;
251 #ifdef _KERNEL
252         unsigned char   pad[(ARCS_LOCK_PAD - sizeof (kmutex_t))];
253 #endif
254 };
255
256 /*
257  * must be power of two for mask use to work
258  *
259  */
260 #define ARC_BUFC_NUMDATALISTS           16
261 #define ARC_BUFC_NUMMETADATALISTS       16
262 #define ARC_BUFC_NUMLISTS       (ARC_BUFC_NUMMETADATALISTS + ARC_BUFC_NUMDATALISTS)
263
264 typedef struct arc_state {
265         uint64_t arcs_lsize[ARC_BUFC_NUMTYPES]; /* amount of evictable data */
266         uint64_t arcs_size;     /* total amount of data in this state */
267         list_t  arcs_lists[ARC_BUFC_NUMLISTS]; /* list of evictable buffers */
268         struct arcs_lock arcs_locks[ARC_BUFC_NUMLISTS] __aligned(CACHE_LINE_SIZE);
269 } arc_state_t;
270
271 #define ARCS_LOCK(s, i) (&((s)->arcs_locks[(i)].arcs_lock))
272
273 /* The 6 states: */
274 static arc_state_t ARC_anon;
275 static arc_state_t ARC_mru;
276 static arc_state_t ARC_mru_ghost;
277 static arc_state_t ARC_mfu;
278 static arc_state_t ARC_mfu_ghost;
279 static arc_state_t ARC_l2c_only;
280
281 typedef struct arc_stats {
282         kstat_named_t arcstat_hits;
283         kstat_named_t arcstat_misses;
284         kstat_named_t arcstat_demand_data_hits;
285         kstat_named_t arcstat_demand_data_misses;
286         kstat_named_t arcstat_demand_metadata_hits;
287         kstat_named_t arcstat_demand_metadata_misses;
288         kstat_named_t arcstat_prefetch_data_hits;
289         kstat_named_t arcstat_prefetch_data_misses;
290         kstat_named_t arcstat_prefetch_metadata_hits;
291         kstat_named_t arcstat_prefetch_metadata_misses;
292         kstat_named_t arcstat_mru_hits;
293         kstat_named_t arcstat_mru_ghost_hits;
294         kstat_named_t arcstat_mfu_hits;
295         kstat_named_t arcstat_mfu_ghost_hits;
296         kstat_named_t arcstat_allocated;
297         kstat_named_t arcstat_deleted;
298         kstat_named_t arcstat_stolen;
299         kstat_named_t arcstat_recycle_miss;
300         /*
301          * Number of buffers that could not be evicted because the hash lock
302          * was held by another thread.  The lock may not necessarily be held
303          * by something using the same buffer, since hash locks are shared
304          * by multiple buffers.
305          */
306         kstat_named_t arcstat_mutex_miss;
307         /*
308          * Number of buffers skipped because they have I/O in progress, are
309          * indrect prefetch buffers that have not lived long enough, or are
310          * not from the spa we're trying to evict from.
311          */
312         kstat_named_t arcstat_evict_skip;
313         kstat_named_t arcstat_evict_l2_cached;
314         kstat_named_t arcstat_evict_l2_eligible;
315         kstat_named_t arcstat_evict_l2_ineligible;
316         kstat_named_t arcstat_hash_elements;
317         kstat_named_t arcstat_hash_elements_max;
318         kstat_named_t arcstat_hash_collisions;
319         kstat_named_t arcstat_hash_chains;
320         kstat_named_t arcstat_hash_chain_max;
321         kstat_named_t arcstat_p;
322         kstat_named_t arcstat_c;
323         kstat_named_t arcstat_c_min;
324         kstat_named_t arcstat_c_max;
325         kstat_named_t arcstat_size;
326         kstat_named_t arcstat_hdr_size;
327         kstat_named_t arcstat_data_size;
328         kstat_named_t arcstat_other_size;
329         kstat_named_t arcstat_l2_hits;
330         kstat_named_t arcstat_l2_misses;
331         kstat_named_t arcstat_l2_feeds;
332         kstat_named_t arcstat_l2_rw_clash;
333         kstat_named_t arcstat_l2_read_bytes;
334         kstat_named_t arcstat_l2_write_bytes;
335         kstat_named_t arcstat_l2_writes_sent;
336         kstat_named_t arcstat_l2_writes_done;
337         kstat_named_t arcstat_l2_writes_error;
338         kstat_named_t arcstat_l2_writes_hdr_miss;
339         kstat_named_t arcstat_l2_evict_lock_retry;
340         kstat_named_t arcstat_l2_evict_reading;
341         kstat_named_t arcstat_l2_free_on_write;
342         kstat_named_t arcstat_l2_abort_lowmem;
343         kstat_named_t arcstat_l2_cksum_bad;
344         kstat_named_t arcstat_l2_io_error;
345         kstat_named_t arcstat_l2_size;
346         kstat_named_t arcstat_l2_asize;
347         kstat_named_t arcstat_l2_hdr_size;
348         kstat_named_t arcstat_l2_compress_successes;
349         kstat_named_t arcstat_l2_compress_zeros;
350         kstat_named_t arcstat_l2_compress_failures;
351         kstat_named_t arcstat_l2_write_trylock_fail;
352         kstat_named_t arcstat_l2_write_passed_headroom;
353         kstat_named_t arcstat_l2_write_spa_mismatch;
354         kstat_named_t arcstat_l2_write_in_l2;
355         kstat_named_t arcstat_l2_write_hdr_io_in_progress;
356         kstat_named_t arcstat_l2_write_not_cacheable;
357         kstat_named_t arcstat_l2_write_full;
358         kstat_named_t arcstat_l2_write_buffer_iter;
359         kstat_named_t arcstat_l2_write_pios;
360         kstat_named_t arcstat_l2_write_buffer_bytes_scanned;
361         kstat_named_t arcstat_l2_write_buffer_list_iter;
362         kstat_named_t arcstat_l2_write_buffer_list_null_iter;
363         kstat_named_t arcstat_memory_throttle_count;
364         kstat_named_t arcstat_duplicate_buffers;
365         kstat_named_t arcstat_duplicate_buffers_size;
366         kstat_named_t arcstat_duplicate_reads;
367 } arc_stats_t;
368
369 static arc_stats_t arc_stats = {
370         { "hits",                       KSTAT_DATA_UINT64 },
371         { "misses",                     KSTAT_DATA_UINT64 },
372         { "demand_data_hits",           KSTAT_DATA_UINT64 },
373         { "demand_data_misses",         KSTAT_DATA_UINT64 },
374         { "demand_metadata_hits",       KSTAT_DATA_UINT64 },
375         { "demand_metadata_misses",     KSTAT_DATA_UINT64 },
376         { "prefetch_data_hits",         KSTAT_DATA_UINT64 },
377         { "prefetch_data_misses",       KSTAT_DATA_UINT64 },
378         { "prefetch_metadata_hits",     KSTAT_DATA_UINT64 },
379         { "prefetch_metadata_misses",   KSTAT_DATA_UINT64 },
380         { "mru_hits",                   KSTAT_DATA_UINT64 },
381         { "mru_ghost_hits",             KSTAT_DATA_UINT64 },
382         { "mfu_hits",                   KSTAT_DATA_UINT64 },
383         { "mfu_ghost_hits",             KSTAT_DATA_UINT64 },
384         { "allocated",                  KSTAT_DATA_UINT64 },
385         { "deleted",                    KSTAT_DATA_UINT64 },
386         { "stolen",                     KSTAT_DATA_UINT64 },
387         { "recycle_miss",               KSTAT_DATA_UINT64 },
388         { "mutex_miss",                 KSTAT_DATA_UINT64 },
389         { "evict_skip",                 KSTAT_DATA_UINT64 },
390         { "evict_l2_cached",            KSTAT_DATA_UINT64 },
391         { "evict_l2_eligible",          KSTAT_DATA_UINT64 },
392         { "evict_l2_ineligible",        KSTAT_DATA_UINT64 },
393         { "hash_elements",              KSTAT_DATA_UINT64 },
394         { "hash_elements_max",          KSTAT_DATA_UINT64 },
395         { "hash_collisions",            KSTAT_DATA_UINT64 },
396         { "hash_chains",                KSTAT_DATA_UINT64 },
397         { "hash_chain_max",             KSTAT_DATA_UINT64 },
398         { "p",                          KSTAT_DATA_UINT64 },
399         { "c",                          KSTAT_DATA_UINT64 },
400         { "c_min",                      KSTAT_DATA_UINT64 },
401         { "c_max",                      KSTAT_DATA_UINT64 },
402         { "size",                       KSTAT_DATA_UINT64 },
403         { "hdr_size",                   KSTAT_DATA_UINT64 },
404         { "data_size",                  KSTAT_DATA_UINT64 },
405         { "other_size",                 KSTAT_DATA_UINT64 },
406         { "l2_hits",                    KSTAT_DATA_UINT64 },
407         { "l2_misses",                  KSTAT_DATA_UINT64 },
408         { "l2_feeds",                   KSTAT_DATA_UINT64 },
409         { "l2_rw_clash",                KSTAT_DATA_UINT64 },
410         { "l2_read_bytes",              KSTAT_DATA_UINT64 },
411         { "l2_write_bytes",             KSTAT_DATA_UINT64 },
412         { "l2_writes_sent",             KSTAT_DATA_UINT64 },
413         { "l2_writes_done",             KSTAT_DATA_UINT64 },
414         { "l2_writes_error",            KSTAT_DATA_UINT64 },
415         { "l2_writes_hdr_miss",         KSTAT_DATA_UINT64 },
416         { "l2_evict_lock_retry",        KSTAT_DATA_UINT64 },
417         { "l2_evict_reading",           KSTAT_DATA_UINT64 },
418         { "l2_free_on_write",           KSTAT_DATA_UINT64 },
419         { "l2_abort_lowmem",            KSTAT_DATA_UINT64 },
420         { "l2_cksum_bad",               KSTAT_DATA_UINT64 },
421         { "l2_io_error",                KSTAT_DATA_UINT64 },
422         { "l2_size",                    KSTAT_DATA_UINT64 },
423         { "l2_asize",                   KSTAT_DATA_UINT64 },
424         { "l2_hdr_size",                KSTAT_DATA_UINT64 },
425         { "l2_compress_successes",      KSTAT_DATA_UINT64 },
426         { "l2_compress_zeros",          KSTAT_DATA_UINT64 },
427         { "l2_compress_failures",       KSTAT_DATA_UINT64 },
428         { "l2_write_trylock_fail",      KSTAT_DATA_UINT64 },
429         { "l2_write_passed_headroom",   KSTAT_DATA_UINT64 },
430         { "l2_write_spa_mismatch",      KSTAT_DATA_UINT64 },
431         { "l2_write_in_l2",             KSTAT_DATA_UINT64 },
432         { "l2_write_io_in_progress",    KSTAT_DATA_UINT64 },
433         { "l2_write_not_cacheable",     KSTAT_DATA_UINT64 },
434         { "l2_write_full",              KSTAT_DATA_UINT64 },
435         { "l2_write_buffer_iter",       KSTAT_DATA_UINT64 },
436         { "l2_write_pios",              KSTAT_DATA_UINT64 },
437         { "l2_write_buffer_bytes_scanned", KSTAT_DATA_UINT64 },
438         { "l2_write_buffer_list_iter",  KSTAT_DATA_UINT64 },
439         { "l2_write_buffer_list_null_iter", KSTAT_DATA_UINT64 },
440         { "memory_throttle_count",      KSTAT_DATA_UINT64 },
441         { "duplicate_buffers",          KSTAT_DATA_UINT64 },
442         { "duplicate_buffers_size",     KSTAT_DATA_UINT64 },
443         { "duplicate_reads",            KSTAT_DATA_UINT64 }
444 };
445
446 #define ARCSTAT(stat)   (arc_stats.stat.value.ui64)
447
448 #define ARCSTAT_INCR(stat, val) \
449         atomic_add_64(&arc_stats.stat.value.ui64, (val))
450
451 #define ARCSTAT_BUMP(stat)      ARCSTAT_INCR(stat, 1)
452 #define ARCSTAT_BUMPDOWN(stat)  ARCSTAT_INCR(stat, -1)
453
454 #define ARCSTAT_MAX(stat, val) {                                        \
455         uint64_t m;                                                     \
456         while ((val) > (m = arc_stats.stat.value.ui64) &&               \
457             (m != atomic_cas_64(&arc_stats.stat.value.ui64, m, (val)))) \
458                 continue;                                               \
459 }
460
461 #define ARCSTAT_MAXSTAT(stat) \
462         ARCSTAT_MAX(stat##_max, arc_stats.stat.value.ui64)
463
464 /*
465  * We define a macro to allow ARC hits/misses to be easily broken down by
466  * two separate conditions, giving a total of four different subtypes for
467  * each of hits and misses (so eight statistics total).
468  */
469 #define ARCSTAT_CONDSTAT(cond1, stat1, notstat1, cond2, stat2, notstat2, stat) \
470         if (cond1) {                                                    \
471                 if (cond2) {                                            \
472                         ARCSTAT_BUMP(arcstat_##stat1##_##stat2##_##stat); \
473                 } else {                                                \
474                         ARCSTAT_BUMP(arcstat_##stat1##_##notstat2##_##stat); \
475                 }                                                       \
476         } else {                                                        \
477                 if (cond2) {                                            \
478                         ARCSTAT_BUMP(arcstat_##notstat1##_##stat2##_##stat); \
479                 } else {                                                \
480                         ARCSTAT_BUMP(arcstat_##notstat1##_##notstat2##_##stat);\
481                 }                                                       \
482         }
483
484 kstat_t                 *arc_ksp;
485 static arc_state_t      *arc_anon;
486 static arc_state_t      *arc_mru;
487 static arc_state_t      *arc_mru_ghost;
488 static arc_state_t      *arc_mfu;
489 static arc_state_t      *arc_mfu_ghost;
490 static arc_state_t      *arc_l2c_only;
491
492 /*
493  * There are several ARC variables that are critical to export as kstats --
494  * but we don't want to have to grovel around in the kstat whenever we wish to
495  * manipulate them.  For these variables, we therefore define them to be in
496  * terms of the statistic variable.  This assures that we are not introducing
497  * the possibility of inconsistency by having shadow copies of the variables,
498  * while still allowing the code to be readable.
499  */
500 #define arc_size        ARCSTAT(arcstat_size)   /* actual total arc size */
501 #define arc_p           ARCSTAT(arcstat_p)      /* target size of MRU */
502 #define arc_c           ARCSTAT(arcstat_c)      /* target size of cache */
503 #define arc_c_min       ARCSTAT(arcstat_c_min)  /* min target cache size */
504 #define arc_c_max       ARCSTAT(arcstat_c_max)  /* max target cache size */
505
506 #define L2ARC_IS_VALID_COMPRESS(_c_) \
507         ((_c_) == ZIO_COMPRESS_LZ4 || (_c_) == ZIO_COMPRESS_EMPTY)
508
509 static int              arc_no_grow;    /* Don't try to grow cache size */
510 static uint64_t         arc_tempreserve;
511 static uint64_t         arc_loaned_bytes;
512 static uint64_t         arc_meta_used;
513 static uint64_t         arc_meta_limit;
514 static uint64_t         arc_meta_max = 0;
515 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, arc_meta_used, CTLFLAG_RD, &arc_meta_used, 0,
516     "ARC metadata used");
517 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, arc_meta_limit, CTLFLAG_RW, &arc_meta_limit, 0,
518     "ARC metadata limit");
519
520 typedef struct l2arc_buf_hdr l2arc_buf_hdr_t;
521
522 typedef struct arc_callback arc_callback_t;
523
524 struct arc_callback {
525         void                    *acb_private;
526         arc_done_func_t         *acb_done;
527         arc_buf_t               *acb_buf;
528         zio_t                   *acb_zio_dummy;
529         arc_callback_t          *acb_next;
530 };
531
532 typedef struct arc_write_callback arc_write_callback_t;
533
534 struct arc_write_callback {
535         void            *awcb_private;
536         arc_done_func_t *awcb_ready;
537         arc_done_func_t *awcb_physdone;
538         arc_done_func_t *awcb_done;
539         arc_buf_t       *awcb_buf;
540 };
541
542 struct arc_buf_hdr {
543         /* protected by hash lock */
544         dva_t                   b_dva;
545         uint64_t                b_birth;
546         uint64_t                b_cksum0;
547
548         kmutex_t                b_freeze_lock;
549         zio_cksum_t             *b_freeze_cksum;
550         void                    *b_thawed;
551
552         arc_buf_hdr_t           *b_hash_next;
553         arc_buf_t               *b_buf;
554         uint32_t                b_flags;
555         uint32_t                b_datacnt;
556
557         arc_callback_t          *b_acb;
558         kcondvar_t              b_cv;
559
560         /* immutable */
561         arc_buf_contents_t      b_type;
562         uint64_t                b_size;
563         uint64_t                b_spa;
564
565         /* protected by arc state mutex */
566         arc_state_t             *b_state;
567         list_node_t             b_arc_node;
568
569         /* updated atomically */
570         clock_t                 b_arc_access;
571
572         /* self protecting */
573         refcount_t              b_refcnt;
574
575         l2arc_buf_hdr_t         *b_l2hdr;
576         list_node_t             b_l2node;
577 };
578
579 static arc_buf_t *arc_eviction_list;
580 static kmutex_t arc_eviction_mtx;
581 static arc_buf_hdr_t arc_eviction_hdr;
582 static void arc_get_data_buf(arc_buf_t *buf);
583 static void arc_access(arc_buf_hdr_t *buf, kmutex_t *hash_lock);
584 static int arc_evict_needed(arc_buf_contents_t type);
585 static void arc_evict_ghost(arc_state_t *state, uint64_t spa, int64_t bytes);
586 #ifdef illumos
587 static void arc_buf_watch(arc_buf_t *buf);
588 #endif /* illumos */
589
590 static boolean_t l2arc_write_eligible(uint64_t spa_guid, arc_buf_hdr_t *ab);
591
592 #define GHOST_STATE(state)      \
593         ((state) == arc_mru_ghost || (state) == arc_mfu_ghost ||        \
594         (state) == arc_l2c_only)
595
596 /*
597  * Private ARC flags.  These flags are private ARC only flags that will show up
598  * in b_flags in the arc_hdr_buf_t.  Some flags are publicly declared, and can
599  * be passed in as arc_flags in things like arc_read.  However, these flags
600  * should never be passed and should only be set by ARC code.  When adding new
601  * public flags, make sure not to smash the private ones.
602  */
603
604 #define ARC_IN_HASH_TABLE       (1 << 9)        /* this buffer is hashed */
605 #define ARC_IO_IN_PROGRESS      (1 << 10)       /* I/O in progress for buf */
606 #define ARC_IO_ERROR            (1 << 11)       /* I/O failed for buf */
607 #define ARC_FREED_IN_READ       (1 << 12)       /* buf freed while in read */
608 #define ARC_BUF_AVAILABLE       (1 << 13)       /* block not in active use */
609 #define ARC_INDIRECT            (1 << 14)       /* this is an indirect block */
610 #define ARC_FREE_IN_PROGRESS    (1 << 15)       /* hdr about to be freed */
611 #define ARC_L2_WRITING          (1 << 16)       /* L2ARC write in progress */
612 #define ARC_L2_EVICTED          (1 << 17)       /* evicted during I/O */
613 #define ARC_L2_WRITE_HEAD       (1 << 18)       /* head of write list */
614
615 #define HDR_IN_HASH_TABLE(hdr)  ((hdr)->b_flags & ARC_IN_HASH_TABLE)
616 #define HDR_IO_IN_PROGRESS(hdr) ((hdr)->b_flags & ARC_IO_IN_PROGRESS)
617 #define HDR_IO_ERROR(hdr)       ((hdr)->b_flags & ARC_IO_ERROR)
618 #define HDR_PREFETCH(hdr)       ((hdr)->b_flags & ARC_PREFETCH)
619 #define HDR_FREED_IN_READ(hdr)  ((hdr)->b_flags & ARC_FREED_IN_READ)
620 #define HDR_BUF_AVAILABLE(hdr)  ((hdr)->b_flags & ARC_BUF_AVAILABLE)
621 #define HDR_FREE_IN_PROGRESS(hdr)       ((hdr)->b_flags & ARC_FREE_IN_PROGRESS)
622 #define HDR_L2CACHE(hdr)        ((hdr)->b_flags & ARC_L2CACHE)
623 #define HDR_L2_READING(hdr)     ((hdr)->b_flags & ARC_IO_IN_PROGRESS && \
624                                     (hdr)->b_l2hdr != NULL)
625 #define HDR_L2_WRITING(hdr)     ((hdr)->b_flags & ARC_L2_WRITING)
626 #define HDR_L2_EVICTED(hdr)     ((hdr)->b_flags & ARC_L2_EVICTED)
627 #define HDR_L2_WRITE_HEAD(hdr)  ((hdr)->b_flags & ARC_L2_WRITE_HEAD)
628
629 /*
630  * Other sizes
631  */
632
633 #define HDR_SIZE ((int64_t)sizeof (arc_buf_hdr_t))
634 #define L2HDR_SIZE ((int64_t)sizeof (l2arc_buf_hdr_t))
635
636 /*
637  * Hash table routines
638  */
639
640 #define HT_LOCK_PAD     CACHE_LINE_SIZE
641
642 struct ht_lock {
643         kmutex_t        ht_lock;
644 #ifdef _KERNEL
645         unsigned char   pad[(HT_LOCK_PAD - sizeof (kmutex_t))];
646 #endif
647 };
648
649 #define BUF_LOCKS 256
650 typedef struct buf_hash_table {
651         uint64_t ht_mask;
652         arc_buf_hdr_t **ht_table;
653         struct ht_lock ht_locks[BUF_LOCKS] __aligned(CACHE_LINE_SIZE);
654 } buf_hash_table_t;
655
656 static buf_hash_table_t buf_hash_table;
657
658 #define BUF_HASH_INDEX(spa, dva, birth) \
659         (buf_hash(spa, dva, birth) & buf_hash_table.ht_mask)
660 #define BUF_HASH_LOCK_NTRY(idx) (buf_hash_table.ht_locks[idx & (BUF_LOCKS-1)])
661 #define BUF_HASH_LOCK(idx)      (&(BUF_HASH_LOCK_NTRY(idx).ht_lock))
662 #define HDR_LOCK(hdr) \
663         (BUF_HASH_LOCK(BUF_HASH_INDEX(hdr->b_spa, &hdr->b_dva, hdr->b_birth)))
664
665 uint64_t zfs_crc64_table[256];
666
667 /*
668  * Level 2 ARC
669  */
670
671 #define L2ARC_WRITE_SIZE        (8 * 1024 * 1024)       /* initial write max */
672 #define L2ARC_HEADROOM          2                       /* num of writes */
673 /*
674  * If we discover during ARC scan any buffers to be compressed, we boost
675  * our headroom for the next scanning cycle by this percentage multiple.
676  */
677 #define L2ARC_HEADROOM_BOOST    200
678 #define L2ARC_FEED_SECS         1               /* caching interval secs */
679 #define L2ARC_FEED_MIN_MS       200             /* min caching interval ms */
680
681 #define l2arc_writes_sent       ARCSTAT(arcstat_l2_writes_sent)
682 #define l2arc_writes_done       ARCSTAT(arcstat_l2_writes_done)
683
684 /* L2ARC Performance Tunables */
685 uint64_t l2arc_write_max = L2ARC_WRITE_SIZE;    /* default max write size */
686 uint64_t l2arc_write_boost = L2ARC_WRITE_SIZE;  /* extra write during warmup */
687 uint64_t l2arc_headroom = L2ARC_HEADROOM;       /* number of dev writes */
688 uint64_t l2arc_headroom_boost = L2ARC_HEADROOM_BOOST;
689 uint64_t l2arc_feed_secs = L2ARC_FEED_SECS;     /* interval seconds */
690 uint64_t l2arc_feed_min_ms = L2ARC_FEED_MIN_MS; /* min interval milliseconds */
691 boolean_t l2arc_noprefetch = B_TRUE;            /* don't cache prefetch bufs */
692 boolean_t l2arc_feed_again = B_TRUE;            /* turbo warmup */
693 boolean_t l2arc_norw = B_TRUE;                  /* no reads during writes */
694
695 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_write_max, CTLFLAG_RW,
696     &l2arc_write_max, 0, "max write size");
697 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_write_boost, CTLFLAG_RW,
698     &l2arc_write_boost, 0, "extra write during warmup");
699 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_headroom, CTLFLAG_RW,
700     &l2arc_headroom, 0, "number of dev writes");
701 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_feed_secs, CTLFLAG_RW,
702     &l2arc_feed_secs, 0, "interval seconds");
703 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2arc_feed_min_ms, CTLFLAG_RW,
704     &l2arc_feed_min_ms, 0, "min interval milliseconds");
705
706 SYSCTL_INT(_vfs_zfs, OID_AUTO, l2arc_noprefetch, CTLFLAG_RW,
707     &l2arc_noprefetch, 0, "don't cache prefetch bufs");
708 SYSCTL_INT(_vfs_zfs, OID_AUTO, l2arc_feed_again, CTLFLAG_RW,
709     &l2arc_feed_again, 0, "turbo warmup");
710 SYSCTL_INT(_vfs_zfs, OID_AUTO, l2arc_norw, CTLFLAG_RW,
711     &l2arc_norw, 0, "no reads during writes");
712
713 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, anon_size, CTLFLAG_RD,
714     &ARC_anon.arcs_size, 0, "size of anonymous state");
715 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, anon_metadata_lsize, CTLFLAG_RD,
716     &ARC_anon.arcs_lsize[ARC_BUFC_METADATA], 0, "size of anonymous state");
717 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, anon_data_lsize, CTLFLAG_RD,
718     &ARC_anon.arcs_lsize[ARC_BUFC_DATA], 0, "size of anonymous state");
719
720 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_size, CTLFLAG_RD,
721     &ARC_mru.arcs_size, 0, "size of mru state");
722 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_metadata_lsize, CTLFLAG_RD,
723     &ARC_mru.arcs_lsize[ARC_BUFC_METADATA], 0, "size of metadata in mru state");
724 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_data_lsize, CTLFLAG_RD,
725     &ARC_mru.arcs_lsize[ARC_BUFC_DATA], 0, "size of data in mru state");
726
727 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_ghost_size, CTLFLAG_RD,
728     &ARC_mru_ghost.arcs_size, 0, "size of mru ghost state");
729 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_ghost_metadata_lsize, CTLFLAG_RD,
730     &ARC_mru_ghost.arcs_lsize[ARC_BUFC_METADATA], 0,
731     "size of metadata in mru ghost state");
732 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mru_ghost_data_lsize, CTLFLAG_RD,
733     &ARC_mru_ghost.arcs_lsize[ARC_BUFC_DATA], 0,
734     "size of data in mru ghost state");
735
736 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_size, CTLFLAG_RD,
737     &ARC_mfu.arcs_size, 0, "size of mfu state");
738 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_metadata_lsize, CTLFLAG_RD,
739     &ARC_mfu.arcs_lsize[ARC_BUFC_METADATA], 0, "size of metadata in mfu state");
740 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_data_lsize, CTLFLAG_RD,
741     &ARC_mfu.arcs_lsize[ARC_BUFC_DATA], 0, "size of data in mfu state");
742
743 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_ghost_size, CTLFLAG_RD,
744     &ARC_mfu_ghost.arcs_size, 0, "size of mfu ghost state");
745 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_ghost_metadata_lsize, CTLFLAG_RD,
746     &ARC_mfu_ghost.arcs_lsize[ARC_BUFC_METADATA], 0,
747     "size of metadata in mfu ghost state");
748 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, mfu_ghost_data_lsize, CTLFLAG_RD,
749     &ARC_mfu_ghost.arcs_lsize[ARC_BUFC_DATA], 0,
750     "size of data in mfu ghost state");
751
752 SYSCTL_QUAD(_vfs_zfs, OID_AUTO, l2c_only_size, CTLFLAG_RD,
753     &ARC_l2c_only.arcs_size, 0, "size of mru state");
754
755 /*
756  * L2ARC Internals
757  */
758 typedef struct l2arc_dev {
759         vdev_t                  *l2ad_vdev;     /* vdev */
760         spa_t                   *l2ad_spa;      /* spa */
761         uint64_t                l2ad_hand;      /* next write location */
762         uint64_t                l2ad_start;     /* first addr on device */
763         uint64_t                l2ad_end;       /* last addr on device */
764         uint64_t                l2ad_evict;     /* last addr eviction reached */
765         boolean_t               l2ad_first;     /* first sweep through */
766         boolean_t               l2ad_writing;   /* currently writing */
767         list_t                  *l2ad_buflist;  /* buffer list */
768         list_node_t             l2ad_node;      /* device list node */
769 } l2arc_dev_t;
770
771 static list_t L2ARC_dev_list;                   /* device list */
772 static list_t *l2arc_dev_list;                  /* device list pointer */
773 static kmutex_t l2arc_dev_mtx;                  /* device list mutex */
774 static l2arc_dev_t *l2arc_dev_last;             /* last device used */
775 static kmutex_t l2arc_buflist_mtx;              /* mutex for all buflists */
776 static list_t L2ARC_free_on_write;              /* free after write buf list */
777 static list_t *l2arc_free_on_write;             /* free after write list ptr */
778 static kmutex_t l2arc_free_on_write_mtx;        /* mutex for list */
779 static uint64_t l2arc_ndev;                     /* number of devices */
780
781 typedef struct l2arc_read_callback {
782         arc_buf_t               *l2rcb_buf;             /* read buffer */
783         spa_t                   *l2rcb_spa;             /* spa */
784         blkptr_t                l2rcb_bp;               /* original blkptr */
785         zbookmark_t             l2rcb_zb;               /* original bookmark */
786         int                     l2rcb_flags;            /* original flags */
787         enum zio_compress       l2rcb_compress;         /* applied compress */
788 } l2arc_read_callback_t;
789
790 typedef struct l2arc_write_callback {
791         l2arc_dev_t     *l2wcb_dev;             /* device info */
792         arc_buf_hdr_t   *l2wcb_head;            /* head of write buflist */
793 } l2arc_write_callback_t;
794
795 struct l2arc_buf_hdr {
796         /* protected by arc_buf_hdr  mutex */
797         l2arc_dev_t             *b_dev;         /* L2ARC device */
798         uint64_t                b_daddr;        /* disk address, offset byte */
799         /* compression applied to buffer data */
800         enum zio_compress       b_compress;
801         /* real alloc'd buffer size depending on b_compress applied */
802         int                     b_asize;
803         /* temporary buffer holder for in-flight compressed data */
804         void                    *b_tmp_cdata;
805 };
806
807 typedef struct l2arc_data_free {
808         /* protected by l2arc_free_on_write_mtx */
809         void            *l2df_data;
810         size_t          l2df_size;
811         void            (*l2df_func)(void *, size_t);
812         list_node_t     l2df_list_node;
813 } l2arc_data_free_t;
814
815 static kmutex_t l2arc_feed_thr_lock;
816 static kcondvar_t l2arc_feed_thr_cv;
817 static uint8_t l2arc_thread_exit;
818
819 static void l2arc_read_done(zio_t *zio);
820 static void l2arc_hdr_stat_add(void);
821 static void l2arc_hdr_stat_remove(void);
822
823 static boolean_t l2arc_compress_buf(l2arc_buf_hdr_t *l2hdr);
824 static void l2arc_decompress_zio(zio_t *zio, arc_buf_hdr_t *hdr,
825     enum zio_compress c);
826 static void l2arc_release_cdata_buf(arc_buf_hdr_t *ab);
827
828 static uint64_t
829 buf_hash(uint64_t spa, const dva_t *dva, uint64_t birth)
830 {
831         uint8_t *vdva = (uint8_t *)dva;
832         uint64_t crc = -1ULL;
833         int i;
834
835         ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
836
837         for (i = 0; i < sizeof (dva_t); i++)
838                 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF];
839
840         crc ^= (spa>>8) ^ birth;
841
842         return (crc);
843 }
844
845 #define BUF_EMPTY(buf)                                          \
846         ((buf)->b_dva.dva_word[0] == 0 &&                       \
847         (buf)->b_dva.dva_word[1] == 0 &&                        \
848         (buf)->b_birth == 0)
849
850 #define BUF_EQUAL(spa, dva, birth, buf)                         \
851         ((buf)->b_dva.dva_word[0] == (dva)->dva_word[0]) &&     \
852         ((buf)->b_dva.dva_word[1] == (dva)->dva_word[1]) &&     \
853         ((buf)->b_birth == birth) && ((buf)->b_spa == spa)
854
855 static void
856 buf_discard_identity(arc_buf_hdr_t *hdr)
857 {
858         hdr->b_dva.dva_word[0] = 0;
859         hdr->b_dva.dva_word[1] = 0;
860         hdr->b_birth = 0;
861         hdr->b_cksum0 = 0;
862 }
863
864 static arc_buf_hdr_t *
865 buf_hash_find(uint64_t spa, const dva_t *dva, uint64_t birth, kmutex_t **lockp)
866 {
867         uint64_t idx = BUF_HASH_INDEX(spa, dva, birth);
868         kmutex_t *hash_lock = BUF_HASH_LOCK(idx);
869         arc_buf_hdr_t *buf;
870
871         mutex_enter(hash_lock);
872         for (buf = buf_hash_table.ht_table[idx]; buf != NULL;
873             buf = buf->b_hash_next) {
874                 if (BUF_EQUAL(spa, dva, birth, buf)) {
875                         *lockp = hash_lock;
876                         return (buf);
877                 }
878         }
879         mutex_exit(hash_lock);
880         *lockp = NULL;
881         return (NULL);
882 }
883
884 /*
885  * Insert an entry into the hash table.  If there is already an element
886  * equal to elem in the hash table, then the already existing element
887  * will be returned and the new element will not be inserted.
888  * Otherwise returns NULL.
889  */
890 static arc_buf_hdr_t *
891 buf_hash_insert(arc_buf_hdr_t *buf, kmutex_t **lockp)
892 {
893         uint64_t idx = BUF_HASH_INDEX(buf->b_spa, &buf->b_dva, buf->b_birth);
894         kmutex_t *hash_lock = BUF_HASH_LOCK(idx);
895         arc_buf_hdr_t *fbuf;
896         uint32_t i;
897
898         ASSERT(!HDR_IN_HASH_TABLE(buf));
899         *lockp = hash_lock;
900         mutex_enter(hash_lock);
901         for (fbuf = buf_hash_table.ht_table[idx], i = 0; fbuf != NULL;
902             fbuf = fbuf->b_hash_next, i++) {
903                 if (BUF_EQUAL(buf->b_spa, &buf->b_dva, buf->b_birth, fbuf))
904                         return (fbuf);
905         }
906
907         buf->b_hash_next = buf_hash_table.ht_table[idx];
908         buf_hash_table.ht_table[idx] = buf;
909         buf->b_flags |= ARC_IN_HASH_TABLE;
910
911         /* collect some hash table performance data */
912         if (i > 0) {
913                 ARCSTAT_BUMP(arcstat_hash_collisions);
914                 if (i == 1)
915                         ARCSTAT_BUMP(arcstat_hash_chains);
916
917                 ARCSTAT_MAX(arcstat_hash_chain_max, i);
918         }
919
920         ARCSTAT_BUMP(arcstat_hash_elements);
921         ARCSTAT_MAXSTAT(arcstat_hash_elements);
922
923         return (NULL);
924 }
925
926 static void
927 buf_hash_remove(arc_buf_hdr_t *buf)
928 {
929         arc_buf_hdr_t *fbuf, **bufp;
930         uint64_t idx = BUF_HASH_INDEX(buf->b_spa, &buf->b_dva, buf->b_birth);
931
932         ASSERT(MUTEX_HELD(BUF_HASH_LOCK(idx)));
933         ASSERT(HDR_IN_HASH_TABLE(buf));
934
935         bufp = &buf_hash_table.ht_table[idx];
936         while ((fbuf = *bufp) != buf) {
937                 ASSERT(fbuf != NULL);
938                 bufp = &fbuf->b_hash_next;
939         }
940         *bufp = buf->b_hash_next;
941         buf->b_hash_next = NULL;
942         buf->b_flags &= ~ARC_IN_HASH_TABLE;
943
944         /* collect some hash table performance data */
945         ARCSTAT_BUMPDOWN(arcstat_hash_elements);
946
947         if (buf_hash_table.ht_table[idx] &&
948             buf_hash_table.ht_table[idx]->b_hash_next == NULL)
949                 ARCSTAT_BUMPDOWN(arcstat_hash_chains);
950 }
951
952 /*
953  * Global data structures and functions for the buf kmem cache.
954  */
955 static kmem_cache_t *hdr_cache;
956 static kmem_cache_t *buf_cache;
957
958 static void
959 buf_fini(void)
960 {
961         int i;
962
963         kmem_free(buf_hash_table.ht_table,
964             (buf_hash_table.ht_mask + 1) * sizeof (void *));
965         for (i = 0; i < BUF_LOCKS; i++)
966                 mutex_destroy(&buf_hash_table.ht_locks[i].ht_lock);
967         kmem_cache_destroy(hdr_cache);
968         kmem_cache_destroy(buf_cache);
969 }
970
971 /*
972  * Constructor callback - called when the cache is empty
973  * and a new buf is requested.
974  */
975 /* ARGSUSED */
976 static int
977 hdr_cons(void *vbuf, void *unused, int kmflag)
978 {
979         arc_buf_hdr_t *buf = vbuf;
980
981         bzero(buf, sizeof (arc_buf_hdr_t));
982         refcount_create(&buf->b_refcnt);
983         cv_init(&buf->b_cv, NULL, CV_DEFAULT, NULL);
984         mutex_init(&buf->b_freeze_lock, NULL, MUTEX_DEFAULT, NULL);
985         arc_space_consume(sizeof (arc_buf_hdr_t), ARC_SPACE_HDRS);
986
987         return (0);
988 }
989
990 /* ARGSUSED */
991 static int
992 buf_cons(void *vbuf, void *unused, int kmflag)
993 {
994         arc_buf_t *buf = vbuf;
995
996         bzero(buf, sizeof (arc_buf_t));
997         mutex_init(&buf->b_evict_lock, NULL, MUTEX_DEFAULT, NULL);
998         arc_space_consume(sizeof (arc_buf_t), ARC_SPACE_HDRS);
999
1000         return (0);
1001 }
1002
1003 /*
1004  * Destructor callback - called when a cached buf is
1005  * no longer required.
1006  */
1007 /* ARGSUSED */
1008 static void
1009 hdr_dest(void *vbuf, void *unused)
1010 {
1011         arc_buf_hdr_t *buf = vbuf;
1012
1013         ASSERT(BUF_EMPTY(buf));
1014         refcount_destroy(&buf->b_refcnt);
1015         cv_destroy(&buf->b_cv);
1016         mutex_destroy(&buf->b_freeze_lock);
1017         arc_space_return(sizeof (arc_buf_hdr_t), ARC_SPACE_HDRS);
1018 }
1019
1020 /* ARGSUSED */
1021 static void
1022 buf_dest(void *vbuf, void *unused)
1023 {
1024         arc_buf_t *buf = vbuf;
1025
1026         mutex_destroy(&buf->b_evict_lock);
1027         arc_space_return(sizeof (arc_buf_t), ARC_SPACE_HDRS);
1028 }
1029
1030 /*
1031  * Reclaim callback -- invoked when memory is low.
1032  */
1033 /* ARGSUSED */
1034 static void
1035 hdr_recl(void *unused)
1036 {
1037         dprintf("hdr_recl called\n");
1038         /*
1039          * umem calls the reclaim func when we destroy the buf cache,
1040          * which is after we do arc_fini().
1041          */
1042         if (!arc_dead)
1043                 cv_signal(&arc_reclaim_thr_cv);
1044 }
1045
1046 static void
1047 buf_init(void)
1048 {
1049         uint64_t *ct;
1050         uint64_t hsize = 1ULL << 12;
1051         int i, j;
1052
1053         /*
1054          * The hash table is big enough to fill all of physical memory
1055          * with an average 64K block size.  The table will take up
1056          * totalmem*sizeof(void*)/64K (eg. 128KB/GB with 8-byte pointers).
1057          */
1058         while (hsize * 65536 < (uint64_t)physmem * PAGESIZE)
1059                 hsize <<= 1;
1060 retry:
1061         buf_hash_table.ht_mask = hsize - 1;
1062         buf_hash_table.ht_table =
1063             kmem_zalloc(hsize * sizeof (void*), KM_NOSLEEP);
1064         if (buf_hash_table.ht_table == NULL) {
1065                 ASSERT(hsize > (1ULL << 8));
1066                 hsize >>= 1;
1067                 goto retry;
1068         }
1069
1070         hdr_cache = kmem_cache_create("arc_buf_hdr_t", sizeof (arc_buf_hdr_t),
1071             0, hdr_cons, hdr_dest, hdr_recl, NULL, NULL, 0);
1072         buf_cache = kmem_cache_create("arc_buf_t", sizeof (arc_buf_t),
1073             0, buf_cons, buf_dest, NULL, NULL, NULL, 0);
1074
1075         for (i = 0; i < 256; i++)
1076                 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--)
1077                         *ct = (*ct >> 1) ^ (-(*ct & 1) & ZFS_CRC64_POLY);
1078
1079         for (i = 0; i < BUF_LOCKS; i++) {
1080                 mutex_init(&buf_hash_table.ht_locks[i].ht_lock,
1081                     NULL, MUTEX_DEFAULT, NULL);
1082         }
1083 }
1084
1085 #define ARC_MINTIME     (hz>>4) /* 62 ms */
1086
1087 static void
1088 arc_cksum_verify(arc_buf_t *buf)
1089 {
1090         zio_cksum_t zc;
1091
1092         if (!(zfs_flags & ZFS_DEBUG_MODIFY))
1093                 return;
1094
1095         mutex_enter(&buf->b_hdr->b_freeze_lock);
1096         if (buf->b_hdr->b_freeze_cksum == NULL ||
1097             (buf->b_hdr->b_flags & ARC_IO_ERROR)) {
1098                 mutex_exit(&buf->b_hdr->b_freeze_lock);
1099                 return;
1100         }
1101         fletcher_2_native(buf->b_data, buf->b_hdr->b_size, &zc);
1102         if (!ZIO_CHECKSUM_EQUAL(*buf->b_hdr->b_freeze_cksum, zc))
1103                 panic("buffer modified while frozen!");
1104         mutex_exit(&buf->b_hdr->b_freeze_lock);
1105 }
1106
1107 static int
1108 arc_cksum_equal(arc_buf_t *buf)
1109 {
1110         zio_cksum_t zc;
1111         int equal;
1112
1113         mutex_enter(&buf->b_hdr->b_freeze_lock);
1114         fletcher_2_native(buf->b_data, buf->b_hdr->b_size, &zc);
1115         equal = ZIO_CHECKSUM_EQUAL(*buf->b_hdr->b_freeze_cksum, zc);
1116         mutex_exit(&buf->b_hdr->b_freeze_lock);
1117
1118         return (equal);
1119 }
1120
1121 static void
1122 arc_cksum_compute(arc_buf_t *buf, boolean_t force)
1123 {
1124         if (!force && !(zfs_flags & ZFS_DEBUG_MODIFY))
1125                 return;
1126
1127         mutex_enter(&buf->b_hdr->b_freeze_lock);
1128         if (buf->b_hdr->b_freeze_cksum != NULL) {
1129                 mutex_exit(&buf->b_hdr->b_freeze_lock);
1130                 return;
1131         }
1132         buf->b_hdr->b_freeze_cksum = kmem_alloc(sizeof (zio_cksum_t), KM_SLEEP);
1133         fletcher_2_native(buf->b_data, buf->b_hdr->b_size,
1134             buf->b_hdr->b_freeze_cksum);
1135         mutex_exit(&buf->b_hdr->b_freeze_lock);
1136 #ifdef illumos
1137         arc_buf_watch(buf);
1138 #endif /* illumos */
1139 }
1140
1141 #ifdef illumos
1142 #ifndef _KERNEL
1143 typedef struct procctl {
1144         long cmd;
1145         prwatch_t prwatch;
1146 } procctl_t;
1147 #endif
1148
1149 /* ARGSUSED */
1150 static void
1151 arc_buf_unwatch(arc_buf_t *buf)
1152 {
1153 #ifndef _KERNEL
1154         if (arc_watch) {
1155                 int result;
1156                 procctl_t ctl;
1157                 ctl.cmd = PCWATCH;
1158                 ctl.prwatch.pr_vaddr = (uintptr_t)buf->b_data;
1159                 ctl.prwatch.pr_size = 0;
1160                 ctl.prwatch.pr_wflags = 0;
1161                 result = write(arc_procfd, &ctl, sizeof (ctl));
1162                 ASSERT3U(result, ==, sizeof (ctl));
1163         }
1164 #endif
1165 }
1166
1167 /* ARGSUSED */
1168 static void
1169 arc_buf_watch(arc_buf_t *buf)
1170 {
1171 #ifndef _KERNEL
1172         if (arc_watch) {
1173                 int result;
1174                 procctl_t ctl;
1175                 ctl.cmd = PCWATCH;
1176                 ctl.prwatch.pr_vaddr = (uintptr_t)buf->b_data;
1177                 ctl.prwatch.pr_size = buf->b_hdr->b_size;
1178                 ctl.prwatch.pr_wflags = WA_WRITE;
1179                 result = write(arc_procfd, &ctl, sizeof (ctl));
1180                 ASSERT3U(result, ==, sizeof (ctl));
1181         }
1182 #endif
1183 }
1184 #endif /* illumos */
1185
1186 void
1187 arc_buf_thaw(arc_buf_t *buf)
1188 {
1189         if (zfs_flags & ZFS_DEBUG_MODIFY) {
1190                 if (buf->b_hdr->b_state != arc_anon)
1191                         panic("modifying non-anon buffer!");
1192                 if (buf->b_hdr->b_flags & ARC_IO_IN_PROGRESS)
1193                         panic("modifying buffer while i/o in progress!");
1194                 arc_cksum_verify(buf);
1195         }
1196
1197         mutex_enter(&buf->b_hdr->b_freeze_lock);
1198         if (buf->b_hdr->b_freeze_cksum != NULL) {
1199                 kmem_free(buf->b_hdr->b_freeze_cksum, sizeof (zio_cksum_t));
1200                 buf->b_hdr->b_freeze_cksum = NULL;
1201         }
1202
1203         if (zfs_flags & ZFS_DEBUG_MODIFY) {
1204                 if (buf->b_hdr->b_thawed)
1205                         kmem_free(buf->b_hdr->b_thawed, 1);
1206                 buf->b_hdr->b_thawed = kmem_alloc(1, KM_SLEEP);
1207         }
1208
1209         mutex_exit(&buf->b_hdr->b_freeze_lock);
1210
1211 #ifdef illumos
1212         arc_buf_unwatch(buf);
1213 #endif /* illumos */
1214 }
1215
1216 void
1217 arc_buf_freeze(arc_buf_t *buf)
1218 {
1219         kmutex_t *hash_lock;
1220
1221         if (!(zfs_flags & ZFS_DEBUG_MODIFY))
1222                 return;
1223
1224         hash_lock = HDR_LOCK(buf->b_hdr);
1225         mutex_enter(hash_lock);
1226
1227         ASSERT(buf->b_hdr->b_freeze_cksum != NULL ||
1228             buf->b_hdr->b_state == arc_anon);
1229         arc_cksum_compute(buf, B_FALSE);
1230         mutex_exit(hash_lock);
1231
1232 }
1233
1234 static void
1235 get_buf_info(arc_buf_hdr_t *ab, arc_state_t *state, list_t **list, kmutex_t **lock)
1236 {
1237         uint64_t buf_hashid = buf_hash(ab->b_spa, &ab->b_dva, ab->b_birth);
1238
1239         if (ab->b_type == ARC_BUFC_METADATA)
1240                 buf_hashid &= (ARC_BUFC_NUMMETADATALISTS - 1);
1241         else {
1242                 buf_hashid &= (ARC_BUFC_NUMDATALISTS - 1);
1243                 buf_hashid += ARC_BUFC_NUMMETADATALISTS;
1244         }
1245
1246         *list = &state->arcs_lists[buf_hashid];
1247         *lock = ARCS_LOCK(state, buf_hashid);
1248 }
1249
1250
1251 static void
1252 add_reference(arc_buf_hdr_t *ab, kmutex_t *hash_lock, void *tag)
1253 {
1254         ASSERT(MUTEX_HELD(hash_lock));
1255
1256         if ((refcount_add(&ab->b_refcnt, tag) == 1) &&
1257             (ab->b_state != arc_anon)) {
1258                 uint64_t delta = ab->b_size * ab->b_datacnt;
1259                 uint64_t *size = &ab->b_state->arcs_lsize[ab->b_type];
1260                 list_t *list;
1261                 kmutex_t *lock;
1262
1263                 get_buf_info(ab, ab->b_state, &list, &lock);
1264                 ASSERT(!MUTEX_HELD(lock));
1265                 mutex_enter(lock);
1266                 ASSERT(list_link_active(&ab->b_arc_node));
1267                 list_remove(list, ab);
1268                 if (GHOST_STATE(ab->b_state)) {
1269                         ASSERT0(ab->b_datacnt);
1270                         ASSERT3P(ab->b_buf, ==, NULL);
1271                         delta = ab->b_size;
1272                 }
1273                 ASSERT(delta > 0);
1274                 ASSERT3U(*size, >=, delta);
1275                 atomic_add_64(size, -delta);
1276                 mutex_exit(lock);
1277                 /* remove the prefetch flag if we get a reference */
1278                 if (ab->b_flags & ARC_PREFETCH)
1279                         ab->b_flags &= ~ARC_PREFETCH;
1280         }
1281 }
1282
1283 static int
1284 remove_reference(arc_buf_hdr_t *ab, kmutex_t *hash_lock, void *tag)
1285 {
1286         int cnt;
1287         arc_state_t *state = ab->b_state;
1288
1289         ASSERT(state == arc_anon || MUTEX_HELD(hash_lock));
1290         ASSERT(!GHOST_STATE(state));
1291
1292         if (((cnt = refcount_remove(&ab->b_refcnt, tag)) == 0) &&
1293             (state != arc_anon)) {
1294                 uint64_t *size = &state->arcs_lsize[ab->b_type];
1295                 list_t *list;
1296                 kmutex_t *lock;
1297
1298                 get_buf_info(ab, state, &list, &lock);
1299                 ASSERT(!MUTEX_HELD(lock));
1300                 mutex_enter(lock);
1301                 ASSERT(!list_link_active(&ab->b_arc_node));
1302                 list_insert_head(list, ab);
1303                 ASSERT(ab->b_datacnt > 0);
1304                 atomic_add_64(size, ab->b_size * ab->b_datacnt);
1305                 mutex_exit(lock);
1306         }
1307         return (cnt);
1308 }
1309
1310 /*
1311  * Move the supplied buffer to the indicated state.  The mutex
1312  * for the buffer must be held by the caller.
1313  */
1314 static void
1315 arc_change_state(arc_state_t *new_state, arc_buf_hdr_t *ab, kmutex_t *hash_lock)
1316 {
1317         arc_state_t *old_state = ab->b_state;
1318         int64_t refcnt = refcount_count(&ab->b_refcnt);
1319         uint64_t from_delta, to_delta;
1320         list_t *list;
1321         kmutex_t *lock;
1322
1323         ASSERT(MUTEX_HELD(hash_lock));
1324         ASSERT3P(new_state, !=, old_state);
1325         ASSERT(refcnt == 0 || ab->b_datacnt > 0);
1326         ASSERT(ab->b_datacnt == 0 || !GHOST_STATE(new_state));
1327         ASSERT(ab->b_datacnt <= 1 || old_state != arc_anon);
1328
1329         from_delta = to_delta = ab->b_datacnt * ab->b_size;
1330
1331         /*
1332          * If this buffer is evictable, transfer it from the
1333          * old state list to the new state list.
1334          */
1335         if (refcnt == 0) {
1336                 if (old_state != arc_anon) {
1337                         int use_mutex;
1338                         uint64_t *size = &old_state->arcs_lsize[ab->b_type];
1339
1340                         get_buf_info(ab, old_state, &list, &lock);
1341                         use_mutex = !MUTEX_HELD(lock);
1342                         if (use_mutex)
1343                                 mutex_enter(lock);
1344
1345                         ASSERT(list_link_active(&ab->b_arc_node));
1346                         list_remove(list, ab);
1347
1348                         /*
1349                          * If prefetching out of the ghost cache,
1350                          * we will have a non-zero datacnt.
1351                          */
1352                         if (GHOST_STATE(old_state) && ab->b_datacnt == 0) {
1353                                 /* ghost elements have a ghost size */
1354                                 ASSERT(ab->b_buf == NULL);
1355                                 from_delta = ab->b_size;
1356                         }
1357                         ASSERT3U(*size, >=, from_delta);
1358                         atomic_add_64(size, -from_delta);
1359
1360                         if (use_mutex)
1361                                 mutex_exit(lock);
1362                 }
1363                 if (new_state != arc_anon) {
1364                         int use_mutex;
1365                         uint64_t *size = &new_state->arcs_lsize[ab->b_type];
1366
1367                         get_buf_info(ab, new_state, &list, &lock);
1368                         use_mutex = !MUTEX_HELD(lock);
1369                         if (use_mutex)
1370                                 mutex_enter(lock);
1371
1372                         list_insert_head(list, ab);
1373
1374                         /* ghost elements have a ghost size */
1375                         if (GHOST_STATE(new_state)) {
1376                                 ASSERT(ab->b_datacnt == 0);
1377                                 ASSERT(ab->b_buf == NULL);
1378                                 to_delta = ab->b_size;
1379                         }
1380                         atomic_add_64(size, to_delta);
1381
1382                         if (use_mutex)
1383                                 mutex_exit(lock);
1384                 }
1385         }
1386
1387         ASSERT(!BUF_EMPTY(ab));
1388         if (new_state == arc_anon && HDR_IN_HASH_TABLE(ab))
1389                 buf_hash_remove(ab);
1390
1391         /* adjust state sizes */
1392         if (to_delta)
1393                 atomic_add_64(&new_state->arcs_size, to_delta);
1394         if (from_delta) {
1395                 ASSERT3U(old_state->arcs_size, >=, from_delta);
1396                 atomic_add_64(&old_state->arcs_size, -from_delta);
1397         }
1398         ab->b_state = new_state;
1399
1400         /* adjust l2arc hdr stats */
1401         if (new_state == arc_l2c_only)
1402                 l2arc_hdr_stat_add();
1403         else if (old_state == arc_l2c_only)
1404                 l2arc_hdr_stat_remove();
1405 }
1406
1407 void
1408 arc_space_consume(uint64_t space, arc_space_type_t type)
1409 {
1410         ASSERT(type >= 0 && type < ARC_SPACE_NUMTYPES);
1411
1412         switch (type) {
1413         case ARC_SPACE_DATA:
1414                 ARCSTAT_INCR(arcstat_data_size, space);
1415                 break;
1416         case ARC_SPACE_OTHER:
1417                 ARCSTAT_INCR(arcstat_other_size, space);
1418                 break;
1419         case ARC_SPACE_HDRS:
1420                 ARCSTAT_INCR(arcstat_hdr_size, space);
1421                 break;
1422         case ARC_SPACE_L2HDRS:
1423                 ARCSTAT_INCR(arcstat_l2_hdr_size, space);
1424                 break;
1425         }
1426
1427         atomic_add_64(&arc_meta_used, space);
1428         atomic_add_64(&arc_size, space);
1429 }
1430
1431 void
1432 arc_space_return(uint64_t space, arc_space_type_t type)
1433 {
1434         ASSERT(type >= 0 && type < ARC_SPACE_NUMTYPES);
1435
1436         switch (type) {
1437         case ARC_SPACE_DATA:
1438                 ARCSTAT_INCR(arcstat_data_size, -space);
1439                 break;
1440         case ARC_SPACE_OTHER:
1441                 ARCSTAT_INCR(arcstat_other_size, -space);
1442                 break;
1443         case ARC_SPACE_HDRS:
1444                 ARCSTAT_INCR(arcstat_hdr_size, -space);
1445                 break;
1446         case ARC_SPACE_L2HDRS:
1447                 ARCSTAT_INCR(arcstat_l2_hdr_size, -space);
1448                 break;
1449         }
1450
1451         ASSERT(arc_meta_used >= space);
1452         if (arc_meta_max < arc_meta_used)
1453                 arc_meta_max = arc_meta_used;
1454         atomic_add_64(&arc_meta_used, -space);
1455         ASSERT(arc_size >= space);
1456         atomic_add_64(&arc_size, -space);
1457 }
1458
1459 void *
1460 arc_data_buf_alloc(uint64_t size)
1461 {
1462         if (arc_evict_needed(ARC_BUFC_DATA))
1463                 cv_signal(&arc_reclaim_thr_cv);
1464         atomic_add_64(&arc_size, size);
1465         return (zio_data_buf_alloc(size));
1466 }
1467
1468 void
1469 arc_data_buf_free(void *buf, uint64_t size)
1470 {
1471         zio_data_buf_free(buf, size);
1472         ASSERT(arc_size >= size);
1473         atomic_add_64(&arc_size, -size);
1474 }
1475
1476 arc_buf_t *
1477 arc_buf_alloc(spa_t *spa, int size, void *tag, arc_buf_contents_t type)
1478 {
1479         arc_buf_hdr_t *hdr;
1480         arc_buf_t *buf;
1481
1482         ASSERT3U(size, >, 0);
1483         hdr = kmem_cache_alloc(hdr_cache, KM_PUSHPAGE);
1484         ASSERT(BUF_EMPTY(hdr));
1485         hdr->b_size = size;
1486         hdr->b_type = type;
1487         hdr->b_spa = spa_load_guid(spa);
1488         hdr->b_state = arc_anon;
1489         hdr->b_arc_access = 0;
1490         buf = kmem_cache_alloc(buf_cache, KM_PUSHPAGE);
1491         buf->b_hdr = hdr;
1492         buf->b_data = NULL;
1493         buf->b_efunc = NULL;
1494         buf->b_private = NULL;
1495         buf->b_next = NULL;
1496         hdr->b_buf = buf;
1497         arc_get_data_buf(buf);
1498         hdr->b_datacnt = 1;
1499         hdr->b_flags = 0;
1500         ASSERT(refcount_is_zero(&hdr->b_refcnt));
1501         (void) refcount_add(&hdr->b_refcnt, tag);
1502
1503         return (buf);
1504 }
1505
1506 static char *arc_onloan_tag = "onloan";
1507
1508 /*
1509  * Loan out an anonymous arc buffer. Loaned buffers are not counted as in
1510  * flight data by arc_tempreserve_space() until they are "returned". Loaned
1511  * buffers must be returned to the arc before they can be used by the DMU or
1512  * freed.
1513  */
1514 arc_buf_t *
1515 arc_loan_buf(spa_t *spa, int size)
1516 {
1517         arc_buf_t *buf;
1518
1519         buf = arc_buf_alloc(spa, size, arc_onloan_tag, ARC_BUFC_DATA);
1520
1521         atomic_add_64(&arc_loaned_bytes, size);
1522         return (buf);
1523 }
1524
1525 /*
1526  * Return a loaned arc buffer to the arc.
1527  */
1528 void
1529 arc_return_buf(arc_buf_t *buf, void *tag)
1530 {
1531         arc_buf_hdr_t *hdr = buf->b_hdr;
1532
1533         ASSERT(buf->b_data != NULL);
1534         (void) refcount_add(&hdr->b_refcnt, tag);
1535         (void) refcount_remove(&hdr->b_refcnt, arc_onloan_tag);
1536
1537         atomic_add_64(&arc_loaned_bytes, -hdr->b_size);
1538 }
1539
1540 /* Detach an arc_buf from a dbuf (tag) */
1541 void
1542 arc_loan_inuse_buf(arc_buf_t *buf, void *tag)
1543 {
1544         arc_buf_hdr_t *hdr;
1545
1546         ASSERT(buf->b_data != NULL);
1547         hdr = buf->b_hdr;
1548         (void) refcount_add(&hdr->b_refcnt, arc_onloan_tag);
1549         (void) refcount_remove(&hdr->b_refcnt, tag);
1550         buf->b_efunc = NULL;
1551         buf->b_private = NULL;
1552
1553         atomic_add_64(&arc_loaned_bytes, hdr->b_size);
1554 }
1555
1556 static arc_buf_t *
1557 arc_buf_clone(arc_buf_t *from)
1558 {
1559         arc_buf_t *buf;
1560         arc_buf_hdr_t *hdr = from->b_hdr;
1561         uint64_t size = hdr->b_size;
1562
1563         ASSERT(hdr->b_state != arc_anon);
1564
1565         buf = kmem_cache_alloc(buf_cache, KM_PUSHPAGE);
1566         buf->b_hdr = hdr;
1567         buf->b_data = NULL;
1568         buf->b_efunc = NULL;
1569         buf->b_private = NULL;
1570         buf->b_next = hdr->b_buf;
1571         hdr->b_buf = buf;
1572         arc_get_data_buf(buf);
1573         bcopy(from->b_data, buf->b_data, size);
1574
1575         /*
1576          * This buffer already exists in the arc so create a duplicate
1577          * copy for the caller.  If the buffer is associated with user data
1578          * then track the size and number of duplicates.  These stats will be
1579          * updated as duplicate buffers are created and destroyed.
1580          */
1581         if (hdr->b_type == ARC_BUFC_DATA) {
1582                 ARCSTAT_BUMP(arcstat_duplicate_buffers);
1583                 ARCSTAT_INCR(arcstat_duplicate_buffers_size, size);
1584         }
1585         hdr->b_datacnt += 1;
1586         return (buf);
1587 }
1588
1589 void
1590 arc_buf_add_ref(arc_buf_t *buf, void* tag)
1591 {
1592         arc_buf_hdr_t *hdr;
1593         kmutex_t *hash_lock;
1594
1595         /*
1596          * Check to see if this buffer is evicted.  Callers
1597          * must verify b_data != NULL to know if the add_ref
1598          * was successful.
1599          */
1600         mutex_enter(&buf->b_evict_lock);
1601         if (buf->b_data == NULL) {
1602                 mutex_exit(&buf->b_evict_lock);
1603                 return;
1604         }
1605         hash_lock = HDR_LOCK(buf->b_hdr);
1606         mutex_enter(hash_lock);
1607         hdr = buf->b_hdr;
1608         ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
1609         mutex_exit(&buf->b_evict_lock);
1610
1611         ASSERT(hdr->b_state == arc_mru || hdr->b_state == arc_mfu);
1612         add_reference(hdr, hash_lock, tag);
1613         DTRACE_PROBE1(arc__hit, arc_buf_hdr_t *, hdr);
1614         arc_access(hdr, hash_lock);
1615         mutex_exit(hash_lock);
1616         ARCSTAT_BUMP(arcstat_hits);
1617         ARCSTAT_CONDSTAT(!(hdr->b_flags & ARC_PREFETCH),
1618             demand, prefetch, hdr->b_type != ARC_BUFC_METADATA,
1619             data, metadata, hits);
1620 }
1621
1622 /*
1623  * Free the arc data buffer.  If it is an l2arc write in progress,
1624  * the buffer is placed on l2arc_free_on_write to be freed later.
1625  */
1626 static void
1627 arc_buf_data_free(arc_buf_t *buf, void (*free_func)(void *, size_t))
1628 {
1629         arc_buf_hdr_t *hdr = buf->b_hdr;
1630
1631         if (HDR_L2_WRITING(hdr)) {
1632                 l2arc_data_free_t *df;
1633                 df = kmem_alloc(sizeof (l2arc_data_free_t), KM_SLEEP);
1634                 df->l2df_data = buf->b_data;
1635                 df->l2df_size = hdr->b_size;
1636                 df->l2df_func = free_func;
1637                 mutex_enter(&l2arc_free_on_write_mtx);
1638                 list_insert_head(l2arc_free_on_write, df);
1639                 mutex_exit(&l2arc_free_on_write_mtx);
1640                 ARCSTAT_BUMP(arcstat_l2_free_on_write);
1641         } else {
1642                 free_func(buf->b_data, hdr->b_size);
1643         }
1644 }
1645
1646 static void
1647 arc_buf_destroy(arc_buf_t *buf, boolean_t recycle, boolean_t all)
1648 {
1649         arc_buf_t **bufp;
1650
1651         /* free up data associated with the buf */
1652         if (buf->b_data) {
1653                 arc_state_t *state = buf->b_hdr->b_state;
1654                 uint64_t size = buf->b_hdr->b_size;
1655                 arc_buf_contents_t type = buf->b_hdr->b_type;
1656
1657                 arc_cksum_verify(buf);
1658 #ifdef illumos
1659                 arc_buf_unwatch(buf);
1660 #endif /* illumos */
1661
1662                 if (!recycle) {
1663                         if (type == ARC_BUFC_METADATA) {
1664                                 arc_buf_data_free(buf, zio_buf_free);
1665                                 arc_space_return(size, ARC_SPACE_DATA);
1666                         } else {
1667                                 ASSERT(type == ARC_BUFC_DATA);
1668                                 arc_buf_data_free(buf, zio_data_buf_free);
1669                                 ARCSTAT_INCR(arcstat_data_size, -size);
1670                                 atomic_add_64(&arc_size, -size);
1671                         }
1672                 }
1673                 if (list_link_active(&buf->b_hdr->b_arc_node)) {
1674                         uint64_t *cnt = &state->arcs_lsize[type];
1675
1676                         ASSERT(refcount_is_zero(&buf->b_hdr->b_refcnt));
1677                         ASSERT(state != arc_anon);
1678
1679                         ASSERT3U(*cnt, >=, size);
1680                         atomic_add_64(cnt, -size);
1681                 }
1682                 ASSERT3U(state->arcs_size, >=, size);
1683                 atomic_add_64(&state->arcs_size, -size);
1684                 buf->b_data = NULL;
1685
1686                 /*
1687                  * If we're destroying a duplicate buffer make sure
1688                  * that the appropriate statistics are updated.
1689                  */
1690                 if (buf->b_hdr->b_datacnt > 1 &&
1691                     buf->b_hdr->b_type == ARC_BUFC_DATA) {
1692                         ARCSTAT_BUMPDOWN(arcstat_duplicate_buffers);
1693                         ARCSTAT_INCR(arcstat_duplicate_buffers_size, -size);
1694                 }
1695                 ASSERT(buf->b_hdr->b_datacnt > 0);
1696                 buf->b_hdr->b_datacnt -= 1;
1697         }
1698
1699         /* only remove the buf if requested */
1700         if (!all)
1701                 return;
1702
1703         /* remove the buf from the hdr list */
1704         for (bufp = &buf->b_hdr->b_buf; *bufp != buf; bufp = &(*bufp)->b_next)
1705                 continue;
1706         *bufp = buf->b_next;
1707         buf->b_next = NULL;
1708
1709         ASSERT(buf->b_efunc == NULL);
1710
1711         /* clean up the buf */
1712         buf->b_hdr = NULL;
1713         kmem_cache_free(buf_cache, buf);
1714 }
1715
1716 static void
1717 arc_hdr_destroy(arc_buf_hdr_t *hdr)
1718 {
1719         ASSERT(refcount_is_zero(&hdr->b_refcnt));
1720         ASSERT3P(hdr->b_state, ==, arc_anon);
1721         ASSERT(!HDR_IO_IN_PROGRESS(hdr));
1722         l2arc_buf_hdr_t *l2hdr = hdr->b_l2hdr;
1723
1724         if (l2hdr != NULL) {
1725                 boolean_t buflist_held = MUTEX_HELD(&l2arc_buflist_mtx);
1726                 /*
1727                  * To prevent arc_free() and l2arc_evict() from
1728                  * attempting to free the same buffer at the same time,
1729                  * a FREE_IN_PROGRESS flag is given to arc_free() to
1730                  * give it priority.  l2arc_evict() can't destroy this
1731                  * header while we are waiting on l2arc_buflist_mtx.
1732                  *
1733                  * The hdr may be removed from l2ad_buflist before we
1734                  * grab l2arc_buflist_mtx, so b_l2hdr is rechecked.
1735                  */
1736                 if (!buflist_held) {
1737                         mutex_enter(&l2arc_buflist_mtx);
1738                         l2hdr = hdr->b_l2hdr;
1739                 }
1740
1741                 if (l2hdr != NULL) {
1742                         trim_map_free(l2hdr->b_dev->l2ad_vdev, l2hdr->b_daddr,
1743                             hdr->b_size, 0);
1744                         list_remove(l2hdr->b_dev->l2ad_buflist, hdr);
1745                         ARCSTAT_INCR(arcstat_l2_size, -hdr->b_size);
1746                         ARCSTAT_INCR(arcstat_l2_asize, -l2hdr->b_asize);
1747                         kmem_free(l2hdr, sizeof (l2arc_buf_hdr_t));
1748                         if (hdr->b_state == arc_l2c_only)
1749                                 l2arc_hdr_stat_remove();
1750                         hdr->b_l2hdr = NULL;
1751                 }
1752
1753                 if (!buflist_held)
1754                         mutex_exit(&l2arc_buflist_mtx);
1755         }
1756
1757         if (!BUF_EMPTY(hdr)) {
1758                 ASSERT(!HDR_IN_HASH_TABLE(hdr));
1759                 buf_discard_identity(hdr);
1760         }
1761         while (hdr->b_buf) {
1762                 arc_buf_t *buf = hdr->b_buf;
1763
1764                 if (buf->b_efunc) {
1765                         mutex_enter(&arc_eviction_mtx);
1766                         mutex_enter(&buf->b_evict_lock);
1767                         ASSERT(buf->b_hdr != NULL);
1768                         arc_buf_destroy(hdr->b_buf, FALSE, FALSE);
1769                         hdr->b_buf = buf->b_next;
1770                         buf->b_hdr = &arc_eviction_hdr;
1771                         buf->b_next = arc_eviction_list;
1772                         arc_eviction_list = buf;
1773                         mutex_exit(&buf->b_evict_lock);
1774                         mutex_exit(&arc_eviction_mtx);
1775                 } else {
1776                         arc_buf_destroy(hdr->b_buf, FALSE, TRUE);
1777                 }
1778         }
1779         if (hdr->b_freeze_cksum != NULL) {
1780                 kmem_free(hdr->b_freeze_cksum, sizeof (zio_cksum_t));
1781                 hdr->b_freeze_cksum = NULL;
1782         }
1783         if (hdr->b_thawed) {
1784                 kmem_free(hdr->b_thawed, 1);
1785                 hdr->b_thawed = NULL;
1786         }
1787
1788         ASSERT(!list_link_active(&hdr->b_arc_node));
1789         ASSERT3P(hdr->b_hash_next, ==, NULL);
1790         ASSERT3P(hdr->b_acb, ==, NULL);
1791         kmem_cache_free(hdr_cache, hdr);
1792 }
1793
1794 void
1795 arc_buf_free(arc_buf_t *buf, void *tag)
1796 {
1797         arc_buf_hdr_t *hdr = buf->b_hdr;
1798         int hashed = hdr->b_state != arc_anon;
1799
1800         ASSERT(buf->b_efunc == NULL);
1801         ASSERT(buf->b_data != NULL);
1802
1803         if (hashed) {
1804                 kmutex_t *hash_lock = HDR_LOCK(hdr);
1805
1806                 mutex_enter(hash_lock);
1807                 hdr = buf->b_hdr;
1808                 ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
1809
1810                 (void) remove_reference(hdr, hash_lock, tag);
1811                 if (hdr->b_datacnt > 1) {
1812                         arc_buf_destroy(buf, FALSE, TRUE);
1813                 } else {
1814                         ASSERT(buf == hdr->b_buf);
1815                         ASSERT(buf->b_efunc == NULL);
1816                         hdr->b_flags |= ARC_BUF_AVAILABLE;
1817                 }
1818                 mutex_exit(hash_lock);
1819         } else if (HDR_IO_IN_PROGRESS(hdr)) {
1820                 int destroy_hdr;
1821                 /*
1822                  * We are in the middle of an async write.  Don't destroy
1823                  * this buffer unless the write completes before we finish
1824                  * decrementing the reference count.
1825                  */
1826                 mutex_enter(&arc_eviction_mtx);
1827                 (void) remove_reference(hdr, NULL, tag);
1828                 ASSERT(refcount_is_zero(&hdr->b_refcnt));
1829                 destroy_hdr = !HDR_IO_IN_PROGRESS(hdr);
1830                 mutex_exit(&arc_eviction_mtx);
1831                 if (destroy_hdr)
1832                         arc_hdr_destroy(hdr);
1833         } else {
1834                 if (remove_reference(hdr, NULL, tag) > 0)
1835                         arc_buf_destroy(buf, FALSE, TRUE);
1836                 else
1837                         arc_hdr_destroy(hdr);
1838         }
1839 }
1840
1841 boolean_t
1842 arc_buf_remove_ref(arc_buf_t *buf, void* tag)
1843 {
1844         arc_buf_hdr_t *hdr = buf->b_hdr;
1845         kmutex_t *hash_lock = HDR_LOCK(hdr);
1846         boolean_t no_callback = (buf->b_efunc == NULL);
1847
1848         if (hdr->b_state == arc_anon) {
1849                 ASSERT(hdr->b_datacnt == 1);
1850                 arc_buf_free(buf, tag);
1851                 return (no_callback);
1852         }
1853
1854         mutex_enter(hash_lock);
1855         hdr = buf->b_hdr;
1856         ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
1857         ASSERT(hdr->b_state != arc_anon);
1858         ASSERT(buf->b_data != NULL);
1859
1860         (void) remove_reference(hdr, hash_lock, tag);
1861         if (hdr->b_datacnt > 1) {
1862                 if (no_callback)
1863                         arc_buf_destroy(buf, FALSE, TRUE);
1864         } else if (no_callback) {
1865                 ASSERT(hdr->b_buf == buf && buf->b_next == NULL);
1866                 ASSERT(buf->b_efunc == NULL);
1867                 hdr->b_flags |= ARC_BUF_AVAILABLE;
1868         }
1869         ASSERT(no_callback || hdr->b_datacnt > 1 ||
1870             refcount_is_zero(&hdr->b_refcnt));
1871         mutex_exit(hash_lock);
1872         return (no_callback);
1873 }
1874
1875 int
1876 arc_buf_size(arc_buf_t *buf)
1877 {
1878         return (buf->b_hdr->b_size);
1879 }
1880
1881 /*
1882  * Called from the DMU to determine if the current buffer should be
1883  * evicted. In order to ensure proper locking, the eviction must be initiated
1884  * from the DMU. Return true if the buffer is associated with user data and
1885  * duplicate buffers still exist.
1886  */
1887 boolean_t
1888 arc_buf_eviction_needed(arc_buf_t *buf)
1889 {
1890         arc_buf_hdr_t *hdr;
1891         boolean_t evict_needed = B_FALSE;
1892
1893         if (zfs_disable_dup_eviction)
1894                 return (B_FALSE);
1895
1896         mutex_enter(&buf->b_evict_lock);
1897         hdr = buf->b_hdr;
1898         if (hdr == NULL) {
1899                 /*
1900                  * We are in arc_do_user_evicts(); let that function
1901                  * perform the eviction.
1902                  */
1903                 ASSERT(buf->b_data == NULL);
1904                 mutex_exit(&buf->b_evict_lock);
1905                 return (B_FALSE);
1906         } else if (buf->b_data == NULL) {
1907                 /*
1908                  * We have already been added to the arc eviction list;
1909                  * recommend eviction.
1910                  */
1911                 ASSERT3P(hdr, ==, &arc_eviction_hdr);
1912                 mutex_exit(&buf->b_evict_lock);
1913                 return (B_TRUE);
1914         }
1915
1916         if (hdr->b_datacnt > 1 && hdr->b_type == ARC_BUFC_DATA)
1917                 evict_needed = B_TRUE;
1918
1919         mutex_exit(&buf->b_evict_lock);
1920         return (evict_needed);
1921 }
1922
1923 /*
1924  * Evict buffers from list until we've removed the specified number of
1925  * bytes.  Move the removed buffers to the appropriate evict state.
1926  * If the recycle flag is set, then attempt to "recycle" a buffer:
1927  * - look for a buffer to evict that is `bytes' long.
1928  * - return the data block from this buffer rather than freeing it.
1929  * This flag is used by callers that are trying to make space for a
1930  * new buffer in a full arc cache.
1931  *
1932  * This function makes a "best effort".  It skips over any buffers
1933  * it can't get a hash_lock on, and so may not catch all candidates.
1934  * It may also return without evicting as much space as requested.
1935  */
1936 static void *
1937 arc_evict(arc_state_t *state, uint64_t spa, int64_t bytes, boolean_t recycle,
1938     arc_buf_contents_t type)
1939 {
1940         arc_state_t *evicted_state;
1941         uint64_t bytes_evicted = 0, skipped = 0, missed = 0;
1942         int64_t bytes_remaining;
1943         arc_buf_hdr_t *ab, *ab_prev = NULL;
1944         list_t *evicted_list, *list, *evicted_list_start, *list_start;
1945         kmutex_t *lock, *evicted_lock;
1946         kmutex_t *hash_lock;
1947         boolean_t have_lock;
1948         void *stolen = NULL;
1949         arc_buf_hdr_t marker = { 0 };
1950         int count = 0;
1951         static int evict_metadata_offset, evict_data_offset;
1952         int i, idx, offset, list_count, lists;
1953
1954         ASSERT(state == arc_mru || state == arc_mfu);
1955
1956         evicted_state = (state == arc_mru) ? arc_mru_ghost : arc_mfu_ghost;
1957
1958         if (type == ARC_BUFC_METADATA) {
1959                 offset = 0;
1960                 list_count = ARC_BUFC_NUMMETADATALISTS;
1961                 list_start = &state->arcs_lists[0];
1962                 evicted_list_start = &evicted_state->arcs_lists[0];
1963                 idx = evict_metadata_offset;
1964         } else {
1965                 offset = ARC_BUFC_NUMMETADATALISTS;
1966                 list_start = &state->arcs_lists[offset];
1967                 evicted_list_start = &evicted_state->arcs_lists[offset];
1968                 list_count = ARC_BUFC_NUMDATALISTS;
1969                 idx = evict_data_offset;
1970         }
1971         bytes_remaining = evicted_state->arcs_lsize[type];
1972         lists = 0;
1973
1974 evict_start:
1975         list = &list_start[idx];
1976         evicted_list = &evicted_list_start[idx];
1977         lock = ARCS_LOCK(state, (offset + idx));
1978         evicted_lock = ARCS_LOCK(evicted_state, (offset + idx));
1979
1980         mutex_enter(lock);
1981         mutex_enter(evicted_lock);
1982
1983         for (ab = list_tail(list); ab; ab = ab_prev) {
1984                 ab_prev = list_prev(list, ab);
1985                 bytes_remaining -= (ab->b_size * ab->b_datacnt);
1986                 /* prefetch buffers have a minimum lifespan */
1987                 if (HDR_IO_IN_PROGRESS(ab) ||
1988                     (spa && ab->b_spa != spa) ||
1989                     (ab->b_flags & (ARC_PREFETCH|ARC_INDIRECT) &&
1990                     ddi_get_lbolt() - ab->b_arc_access <
1991                     arc_min_prefetch_lifespan)) {
1992                         skipped++;
1993                         continue;
1994                 }
1995                 /* "lookahead" for better eviction candidate */
1996                 if (recycle && ab->b_size != bytes &&
1997                     ab_prev && ab_prev->b_size == bytes)
1998                         continue;
1999
2000                 /* ignore markers */
2001                 if (ab->b_spa == 0)
2002                         continue;
2003
2004                 /*
2005                  * It may take a long time to evict all the bufs requested.
2006                  * To avoid blocking all arc activity, periodically drop
2007                  * the arcs_mtx and give other threads a chance to run
2008                  * before reacquiring the lock.
2009                  *
2010                  * If we are looking for a buffer to recycle, we are in
2011                  * the hot code path, so don't sleep.
2012                  */
2013                 if (!recycle && count++ > arc_evict_iterations) {
2014                         list_insert_after(list, ab, &marker);
2015                         mutex_exit(evicted_lock);
2016                         mutex_exit(lock);
2017                         kpreempt(KPREEMPT_SYNC);
2018                         mutex_enter(lock);
2019                         mutex_enter(evicted_lock);
2020                         ab_prev = list_prev(list, &marker);
2021                         list_remove(list, &marker);
2022                         count = 0;
2023                         continue;
2024                 }
2025
2026                 hash_lock = HDR_LOCK(ab);
2027                 have_lock = MUTEX_HELD(hash_lock);
2028                 if (have_lock || mutex_tryenter(hash_lock)) {
2029                         ASSERT0(refcount_count(&ab->b_refcnt));
2030                         ASSERT(ab->b_datacnt > 0);
2031                         while (ab->b_buf) {
2032                                 arc_buf_t *buf = ab->b_buf;
2033                                 if (!mutex_tryenter(&buf->b_evict_lock)) {
2034                                         missed += 1;
2035                                         break;
2036                                 }
2037                                 if (buf->b_data) {
2038                                         bytes_evicted += ab->b_size;
2039                                         if (recycle && ab->b_type == type &&
2040                                             ab->b_size == bytes &&
2041                                             !HDR_L2_WRITING(ab)) {
2042                                                 stolen = buf->b_data;
2043                                                 recycle = FALSE;
2044                                         }
2045                                 }
2046                                 if (buf->b_efunc) {
2047                                         mutex_enter(&arc_eviction_mtx);
2048                                         arc_buf_destroy(buf,
2049                                             buf->b_data == stolen, FALSE);
2050                                         ab->b_buf = buf->b_next;
2051                                         buf->b_hdr = &arc_eviction_hdr;
2052                                         buf->b_next = arc_eviction_list;
2053                                         arc_eviction_list = buf;
2054                                         mutex_exit(&arc_eviction_mtx);
2055                                         mutex_exit(&buf->b_evict_lock);
2056                                 } else {
2057                                         mutex_exit(&buf->b_evict_lock);
2058                                         arc_buf_destroy(buf,
2059                                             buf->b_data == stolen, TRUE);
2060                                 }
2061                         }
2062
2063                         if (ab->b_l2hdr) {
2064                                 ARCSTAT_INCR(arcstat_evict_l2_cached,
2065                                     ab->b_size);
2066                         } else {
2067                                 if (l2arc_write_eligible(ab->b_spa, ab)) {
2068                                         ARCSTAT_INCR(arcstat_evict_l2_eligible,
2069                                             ab->b_size);
2070                                 } else {
2071                                         ARCSTAT_INCR(
2072                                             arcstat_evict_l2_ineligible,
2073                                             ab->b_size);
2074                                 }
2075                         }
2076
2077                         if (ab->b_datacnt == 0) {
2078                                 arc_change_state(evicted_state, ab, hash_lock);
2079                                 ASSERT(HDR_IN_HASH_TABLE(ab));
2080                                 ab->b_flags |= ARC_IN_HASH_TABLE;
2081                                 ab->b_flags &= ~ARC_BUF_AVAILABLE;
2082                                 DTRACE_PROBE1(arc__evict, arc_buf_hdr_t *, ab);
2083                         }
2084                         if (!have_lock)
2085                                 mutex_exit(hash_lock);
2086                         if (bytes >= 0 && bytes_evicted >= bytes)
2087                                 break;
2088                         if (bytes_remaining > 0) {
2089                                 mutex_exit(evicted_lock);
2090                                 mutex_exit(lock);
2091                                 idx  = ((idx + 1) & (list_count - 1));
2092                                 lists++;
2093                                 goto evict_start;
2094                         }
2095                 } else {
2096                         missed += 1;
2097                 }
2098         }
2099
2100         mutex_exit(evicted_lock);
2101         mutex_exit(lock);
2102
2103         idx  = ((idx + 1) & (list_count - 1));
2104         lists++;
2105
2106         if (bytes_evicted < bytes) {
2107                 if (lists < list_count)
2108                         goto evict_start;
2109                 else
2110                         dprintf("only evicted %lld bytes from %x",
2111                             (longlong_t)bytes_evicted, state);
2112         }
2113         if (type == ARC_BUFC_METADATA)
2114                 evict_metadata_offset = idx;
2115         else
2116                 evict_data_offset = idx;
2117
2118         if (skipped)
2119                 ARCSTAT_INCR(arcstat_evict_skip, skipped);
2120
2121         if (missed)
2122                 ARCSTAT_INCR(arcstat_mutex_miss, missed);
2123
2124         /*
2125          * Note: we have just evicted some data into the ghost state,
2126          * potentially putting the ghost size over the desired size.  Rather
2127          * that evicting from the ghost list in this hot code path, leave
2128          * this chore to the arc_reclaim_thread().
2129          */
2130
2131         if (stolen)
2132                 ARCSTAT_BUMP(arcstat_stolen);
2133         return (stolen);
2134 }
2135
2136 /*
2137  * Remove buffers from list until we've removed the specified number of
2138  * bytes.  Destroy the buffers that are removed.
2139  */
2140 static void
2141 arc_evict_ghost(arc_state_t *state, uint64_t spa, int64_t bytes)
2142 {
2143         arc_buf_hdr_t *ab, *ab_prev;
2144         arc_buf_hdr_t marker = { 0 };
2145         list_t *list, *list_start;
2146         kmutex_t *hash_lock, *lock;
2147         uint64_t bytes_deleted = 0;
2148         uint64_t bufs_skipped = 0;
2149         int count = 0;
2150         static int evict_offset;
2151         int list_count, idx = evict_offset;
2152         int offset, lists = 0;
2153
2154         ASSERT(GHOST_STATE(state));
2155
2156         /*
2157          * data lists come after metadata lists
2158          */
2159         list_start = &state->arcs_lists[ARC_BUFC_NUMMETADATALISTS];
2160         list_count = ARC_BUFC_NUMDATALISTS;
2161         offset = ARC_BUFC_NUMMETADATALISTS;
2162
2163 evict_start:
2164         list = &list_start[idx];
2165         lock = ARCS_LOCK(state, idx + offset);
2166
2167         mutex_enter(lock);
2168         for (ab = list_tail(list); ab; ab = ab_prev) {
2169                 ab_prev = list_prev(list, ab);
2170                 if (ab->b_type > ARC_BUFC_NUMTYPES)
2171                         panic("invalid ab=%p", (void *)ab);
2172                 if (spa && ab->b_spa != spa)
2173                         continue;
2174
2175                 /* ignore markers */
2176                 if (ab->b_spa == 0)
2177                         continue;
2178
2179                 hash_lock = HDR_LOCK(ab);
2180                 /* caller may be trying to modify this buffer, skip it */
2181                 if (MUTEX_HELD(hash_lock))
2182                         continue;
2183
2184                 /*
2185                  * It may take a long time to evict all the bufs requested.
2186                  * To avoid blocking all arc activity, periodically drop
2187                  * the arcs_mtx and give other threads a chance to run
2188                  * before reacquiring the lock.
2189                  */
2190                 if (count++ > arc_evict_iterations) {
2191                         list_insert_after(list, ab, &marker);
2192                         mutex_exit(lock);
2193                         kpreempt(KPREEMPT_SYNC);
2194                         mutex_enter(lock);
2195                         ab_prev = list_prev(list, &marker);
2196                         list_remove(list, &marker);
2197                         count = 0;
2198                         continue;
2199                 }
2200                 if (mutex_tryenter(hash_lock)) {
2201                         ASSERT(!HDR_IO_IN_PROGRESS(ab));
2202                         ASSERT(ab->b_buf == NULL);
2203                         ARCSTAT_BUMP(arcstat_deleted);
2204                         bytes_deleted += ab->b_size;
2205
2206                         if (ab->b_l2hdr != NULL) {
2207                                 /*
2208                                  * This buffer is cached on the 2nd Level ARC;
2209                                  * don't destroy the header.
2210                                  */
2211                                 arc_change_state(arc_l2c_only, ab, hash_lock);
2212                                 mutex_exit(hash_lock);
2213                         } else {
2214                                 arc_change_state(arc_anon, ab, hash_lock);
2215                                 mutex_exit(hash_lock);
2216                                 arc_hdr_destroy(ab);
2217                         }
2218
2219                         DTRACE_PROBE1(arc__delete, arc_buf_hdr_t *, ab);
2220                         if (bytes >= 0 && bytes_deleted >= bytes)
2221                                 break;
2222                 } else if (bytes < 0) {
2223                         /*
2224                          * Insert a list marker and then wait for the
2225                          * hash lock to become available. Once its
2226                          * available, restart from where we left off.
2227                          */
2228                         list_insert_after(list, ab, &marker);
2229                         mutex_exit(lock);
2230                         mutex_enter(hash_lock);
2231                         mutex_exit(hash_lock);
2232                         mutex_enter(lock);
2233                         ab_prev = list_prev(list, &marker);
2234                         list_remove(list, &marker);
2235                 } else {
2236                         bufs_skipped += 1;
2237                 }
2238
2239         }
2240         mutex_exit(lock);
2241         idx  = ((idx + 1) & (ARC_BUFC_NUMDATALISTS - 1));
2242         lists++;
2243
2244         if (lists < list_count)
2245                 goto evict_start;
2246
2247         evict_offset = idx;
2248         if ((uintptr_t)list > (uintptr_t)&state->arcs_lists[ARC_BUFC_NUMMETADATALISTS] &&
2249             (bytes < 0 || bytes_deleted < bytes)) {
2250                 list_start = &state->arcs_lists[0];
2251                 list_count = ARC_BUFC_NUMMETADATALISTS;
2252                 offset = lists = 0;
2253                 goto evict_start;
2254         }
2255
2256         if (bufs_skipped) {
2257                 ARCSTAT_INCR(arcstat_mutex_miss, bufs_skipped);
2258                 ASSERT(bytes >= 0);
2259         }
2260
2261         if (bytes_deleted < bytes)
2262                 dprintf("only deleted %lld bytes from %p",
2263                     (longlong_t)bytes_deleted, state);
2264 }
2265
2266 static void
2267 arc_adjust(void)
2268 {
2269         int64_t adjustment, delta;
2270
2271         /*
2272          * Adjust MRU size
2273          */
2274
2275         adjustment = MIN((int64_t)(arc_size - arc_c),
2276             (int64_t)(arc_anon->arcs_size + arc_mru->arcs_size + arc_meta_used -
2277             arc_p));
2278
2279         if (adjustment > 0 && arc_mru->arcs_lsize[ARC_BUFC_DATA] > 0) {
2280                 delta = MIN(arc_mru->arcs_lsize[ARC_BUFC_DATA], adjustment);
2281                 (void) arc_evict(arc_mru, 0, delta, FALSE, ARC_BUFC_DATA);
2282                 adjustment -= delta;
2283         }
2284
2285         if (adjustment > 0 && arc_mru->arcs_lsize[ARC_BUFC_METADATA] > 0) {
2286                 delta = MIN(arc_mru->arcs_lsize[ARC_BUFC_METADATA], adjustment);
2287                 (void) arc_evict(arc_mru, 0, delta, FALSE,
2288                     ARC_BUFC_METADATA);
2289         }
2290
2291         /*
2292          * Adjust MFU size
2293          */
2294
2295         adjustment = arc_size - arc_c;
2296
2297         if (adjustment > 0 && arc_mfu->arcs_lsize[ARC_BUFC_DATA] > 0) {
2298                 delta = MIN(adjustment, arc_mfu->arcs_lsize[ARC_BUFC_DATA]);
2299                 (void) arc_evict(arc_mfu, 0, delta, FALSE, ARC_BUFC_DATA);
2300                 adjustment -= delta;
2301         }
2302
2303         if (adjustment > 0 && arc_mfu->arcs_lsize[ARC_BUFC_METADATA] > 0) {
2304                 int64_t delta = MIN(adjustment,
2305                     arc_mfu->arcs_lsize[ARC_BUFC_METADATA]);
2306                 (void) arc_evict(arc_mfu, 0, delta, FALSE,
2307                     ARC_BUFC_METADATA);
2308         }
2309
2310         /*
2311          * Adjust ghost lists
2312          */
2313
2314         adjustment = arc_mru->arcs_size + arc_mru_ghost->arcs_size - arc_c;
2315
2316         if (adjustment > 0 && arc_mru_ghost->arcs_size > 0) {
2317                 delta = MIN(arc_mru_ghost->arcs_size, adjustment);
2318                 arc_evict_ghost(arc_mru_ghost, 0, delta);
2319         }
2320
2321         adjustment =
2322             arc_mru_ghost->arcs_size + arc_mfu_ghost->arcs_size - arc_c;
2323
2324         if (adjustment > 0 && arc_mfu_ghost->arcs_size > 0) {
2325                 delta = MIN(arc_mfu_ghost->arcs_size, adjustment);
2326                 arc_evict_ghost(arc_mfu_ghost, 0, delta);
2327         }
2328 }
2329
2330 static void
2331 arc_do_user_evicts(void)
2332 {
2333         static arc_buf_t *tmp_arc_eviction_list;
2334
2335         /*
2336          * Move list over to avoid LOR
2337          */
2338 restart:
2339         mutex_enter(&arc_eviction_mtx);
2340         tmp_arc_eviction_list = arc_eviction_list;
2341         arc_eviction_list = NULL;
2342         mutex_exit(&arc_eviction_mtx);
2343
2344         while (tmp_arc_eviction_list != NULL) {
2345                 arc_buf_t *buf = tmp_arc_eviction_list;
2346                 tmp_arc_eviction_list = buf->b_next;
2347                 mutex_enter(&buf->b_evict_lock);
2348                 buf->b_hdr = NULL;
2349                 mutex_exit(&buf->b_evict_lock);
2350
2351                 if (buf->b_efunc != NULL)
2352                         VERIFY(buf->b_efunc(buf) == 0);
2353
2354                 buf->b_efunc = NULL;
2355                 buf->b_private = NULL;
2356                 kmem_cache_free(buf_cache, buf);
2357         }
2358
2359         if (arc_eviction_list != NULL)
2360                 goto restart;
2361 }
2362
2363 /*
2364  * Flush all *evictable* data from the cache for the given spa.
2365  * NOTE: this will not touch "active" (i.e. referenced) data.
2366  */
2367 void
2368 arc_flush(spa_t *spa)
2369 {
2370         uint64_t guid = 0;
2371
2372         if (spa)
2373                 guid = spa_load_guid(spa);
2374
2375         while (arc_mru->arcs_lsize[ARC_BUFC_DATA]) {
2376                 (void) arc_evict(arc_mru, guid, -1, FALSE, ARC_BUFC_DATA);
2377                 if (spa)
2378                         break;
2379         }
2380         while (arc_mru->arcs_lsize[ARC_BUFC_METADATA]) {
2381                 (void) arc_evict(arc_mru, guid, -1, FALSE, ARC_BUFC_METADATA);
2382                 if (spa)
2383                         break;
2384         }
2385         while (arc_mfu->arcs_lsize[ARC_BUFC_DATA]) {
2386                 (void) arc_evict(arc_mfu, guid, -1, FALSE, ARC_BUFC_DATA);
2387                 if (spa)
2388                         break;
2389         }
2390         while (arc_mfu->arcs_lsize[ARC_BUFC_METADATA]) {
2391                 (void) arc_evict(arc_mfu, guid, -1, FALSE, ARC_BUFC_METADATA);
2392                 if (spa)
2393                         break;
2394         }
2395
2396         arc_evict_ghost(arc_mru_ghost, guid, -1);
2397         arc_evict_ghost(arc_mfu_ghost, guid, -1);
2398
2399         mutex_enter(&arc_reclaim_thr_lock);
2400         arc_do_user_evicts();
2401         mutex_exit(&arc_reclaim_thr_lock);
2402         ASSERT(spa || arc_eviction_list == NULL);
2403 }
2404
2405 void
2406 arc_shrink(void)
2407 {
2408         if (arc_c > arc_c_min) {
2409                 uint64_t to_free;
2410
2411 #ifdef _KERNEL
2412                 to_free = arc_c >> arc_shrink_shift;
2413 #else
2414                 to_free = arc_c >> arc_shrink_shift;
2415 #endif
2416                 if (arc_c > arc_c_min + to_free)
2417                         atomic_add_64(&arc_c, -to_free);
2418                 else
2419                         arc_c = arc_c_min;
2420
2421                 atomic_add_64(&arc_p, -(arc_p >> arc_shrink_shift));
2422                 if (arc_c > arc_size)
2423                         arc_c = MAX(arc_size, arc_c_min);
2424                 if (arc_p > arc_c)
2425                         arc_p = (arc_c >> 1);
2426                 ASSERT(arc_c >= arc_c_min);
2427                 ASSERT((int64_t)arc_p >= 0);
2428         }
2429
2430         if (arc_size > arc_c)
2431                 arc_adjust();
2432 }
2433
2434 static int needfree = 0;
2435
2436 static int
2437 arc_reclaim_needed(void)
2438 {
2439
2440 #ifdef _KERNEL
2441
2442         if (needfree)
2443                 return (1);
2444
2445         /*
2446          * Cooperate with pagedaemon when it's time for it to scan
2447          * and reclaim some pages.
2448          */
2449         if (vm_paging_needed())
2450                 return (1);
2451
2452 #ifdef sun
2453         /*
2454          * take 'desfree' extra pages, so we reclaim sooner, rather than later
2455          */
2456         extra = desfree;
2457
2458         /*
2459          * check that we're out of range of the pageout scanner.  It starts to
2460          * schedule paging if freemem is less than lotsfree and needfree.
2461          * lotsfree is the high-water mark for pageout, and needfree is the
2462          * number of needed free pages.  We add extra pages here to make sure
2463          * the scanner doesn't start up while we're freeing memory.
2464          */
2465         if (freemem < lotsfree + needfree + extra)
2466                 return (1);
2467
2468         /*
2469          * check to make sure that swapfs has enough space so that anon
2470          * reservations can still succeed. anon_resvmem() checks that the
2471          * availrmem is greater than swapfs_minfree, and the number of reserved
2472          * swap pages.  We also add a bit of extra here just to prevent
2473          * circumstances from getting really dire.
2474          */
2475         if (availrmem < swapfs_minfree + swapfs_reserve + extra)
2476                 return (1);
2477
2478 #if defined(__i386)
2479         /*
2480          * If we're on an i386 platform, it's possible that we'll exhaust the
2481          * kernel heap space before we ever run out of available physical
2482          * memory.  Most checks of the size of the heap_area compare against
2483          * tune.t_minarmem, which is the minimum available real memory that we
2484          * can have in the system.  However, this is generally fixed at 25 pages
2485          * which is so low that it's useless.  In this comparison, we seek to
2486          * calculate the total heap-size, and reclaim if more than 3/4ths of the
2487          * heap is allocated.  (Or, in the calculation, if less than 1/4th is
2488          * free)
2489          */
2490         if (btop(vmem_size(heap_arena, VMEM_FREE)) <
2491             (btop(vmem_size(heap_arena, VMEM_FREE | VMEM_ALLOC)) >> 2))
2492                 return (1);
2493 #endif
2494 #else   /* !sun */
2495         if (kmem_used() > (kmem_size() * 3) / 4)
2496                 return (1);
2497 #endif  /* sun */
2498
2499 #else
2500         if (spa_get_random(100) == 0)
2501                 return (1);
2502 #endif
2503         return (0);
2504 }
2505
2506 extern kmem_cache_t     *zio_buf_cache[];
2507 extern kmem_cache_t     *zio_data_buf_cache[];
2508
2509 static void
2510 arc_kmem_reap_now(arc_reclaim_strategy_t strat)
2511 {
2512         size_t                  i;
2513         kmem_cache_t            *prev_cache = NULL;
2514         kmem_cache_t            *prev_data_cache = NULL;
2515
2516 #ifdef _KERNEL
2517         if (arc_meta_used >= arc_meta_limit) {
2518                 /*
2519                  * We are exceeding our meta-data cache limit.
2520                  * Purge some DNLC entries to release holds on meta-data.
2521                  */
2522                 dnlc_reduce_cache((void *)(uintptr_t)arc_reduce_dnlc_percent);
2523         }
2524 #if defined(__i386)
2525         /*
2526          * Reclaim unused memory from all kmem caches.
2527          */
2528         kmem_reap();
2529 #endif
2530 #endif
2531
2532         /*
2533          * An aggressive reclamation will shrink the cache size as well as
2534          * reap free buffers from the arc kmem caches.
2535          */
2536         if (strat == ARC_RECLAIM_AGGR)
2537                 arc_shrink();
2538
2539         for (i = 0; i < SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT; i++) {
2540                 if (zio_buf_cache[i] != prev_cache) {
2541                         prev_cache = zio_buf_cache[i];
2542                         kmem_cache_reap_now(zio_buf_cache[i]);
2543                 }
2544                 if (zio_data_buf_cache[i] != prev_data_cache) {
2545                         prev_data_cache = zio_data_buf_cache[i];
2546                         kmem_cache_reap_now(zio_data_buf_cache[i]);
2547                 }
2548         }
2549         kmem_cache_reap_now(buf_cache);
2550         kmem_cache_reap_now(hdr_cache);
2551 }
2552
2553 static void
2554 arc_reclaim_thread(void *dummy __unused)
2555 {
2556         clock_t                 growtime = 0;
2557         arc_reclaim_strategy_t  last_reclaim = ARC_RECLAIM_CONS;
2558         callb_cpr_t             cpr;
2559
2560         CALLB_CPR_INIT(&cpr, &arc_reclaim_thr_lock, callb_generic_cpr, FTAG);
2561
2562         mutex_enter(&arc_reclaim_thr_lock);
2563         while (arc_thread_exit == 0) {
2564                 if (arc_reclaim_needed()) {
2565
2566                         if (arc_no_grow) {
2567                                 if (last_reclaim == ARC_RECLAIM_CONS) {
2568                                         last_reclaim = ARC_RECLAIM_AGGR;
2569                                 } else {
2570                                         last_reclaim = ARC_RECLAIM_CONS;
2571                                 }
2572                         } else {
2573                                 arc_no_grow = TRUE;
2574                                 last_reclaim = ARC_RECLAIM_AGGR;
2575                                 membar_producer();
2576                         }
2577
2578                         /* reset the growth delay for every reclaim */
2579                         growtime = ddi_get_lbolt() + (arc_grow_retry * hz);
2580
2581                         if (needfree && last_reclaim == ARC_RECLAIM_CONS) {
2582                                 /*
2583                                  * If needfree is TRUE our vm_lowmem hook
2584                                  * was called and in that case we must free some
2585                                  * memory, so switch to aggressive mode.
2586                                  */
2587                                 arc_no_grow = TRUE;
2588                                 last_reclaim = ARC_RECLAIM_AGGR;
2589                         }
2590                         arc_kmem_reap_now(last_reclaim);
2591                         arc_warm = B_TRUE;
2592
2593                 } else if (arc_no_grow && ddi_get_lbolt() >= growtime) {
2594                         arc_no_grow = FALSE;
2595                 }
2596
2597                 arc_adjust();
2598
2599                 if (arc_eviction_list != NULL)
2600                         arc_do_user_evicts();
2601
2602 #ifdef _KERNEL
2603                 if (needfree) {
2604                         needfree = 0;
2605                         wakeup(&needfree);
2606                 }
2607 #endif
2608
2609                 /* block until needed, or one second, whichever is shorter */
2610                 CALLB_CPR_SAFE_BEGIN(&cpr);
2611                 (void) cv_timedwait(&arc_reclaim_thr_cv,
2612                     &arc_reclaim_thr_lock, hz);
2613                 CALLB_CPR_SAFE_END(&cpr, &arc_reclaim_thr_lock);
2614         }
2615
2616         arc_thread_exit = 0;
2617         cv_broadcast(&arc_reclaim_thr_cv);
2618         CALLB_CPR_EXIT(&cpr);           /* drops arc_reclaim_thr_lock */
2619         thread_exit();
2620 }
2621
2622 /*
2623  * Adapt arc info given the number of bytes we are trying to add and
2624  * the state that we are comming from.  This function is only called
2625  * when we are adding new content to the cache.
2626  */
2627 static void
2628 arc_adapt(int bytes, arc_state_t *state)
2629 {
2630         int mult;
2631         uint64_t arc_p_min = (arc_c >> arc_p_min_shift);
2632
2633         if (state == arc_l2c_only)
2634                 return;
2635
2636         ASSERT(bytes > 0);
2637         /*
2638          * Adapt the target size of the MRU list:
2639          *      - if we just hit in the MRU ghost list, then increase
2640          *        the target size of the MRU list.
2641          *      - if we just hit in the MFU ghost list, then increase
2642          *        the target size of the MFU list by decreasing the
2643          *        target size of the MRU list.
2644          */
2645         if (state == arc_mru_ghost) {
2646                 mult = ((arc_mru_ghost->arcs_size >= arc_mfu_ghost->arcs_size) ?
2647                     1 : (arc_mfu_ghost->arcs_size/arc_mru_ghost->arcs_size));
2648                 mult = MIN(mult, 10); /* avoid wild arc_p adjustment */
2649
2650                 arc_p = MIN(arc_c - arc_p_min, arc_p + bytes * mult);
2651         } else if (state == arc_mfu_ghost) {
2652                 uint64_t delta;
2653
2654                 mult = ((arc_mfu_ghost->arcs_size >= arc_mru_ghost->arcs_size) ?
2655                     1 : (arc_mru_ghost->arcs_size/arc_mfu_ghost->arcs_size));
2656                 mult = MIN(mult, 10);
2657
2658                 delta = MIN(bytes * mult, arc_p);
2659                 arc_p = MAX(arc_p_min, arc_p - delta);
2660         }
2661         ASSERT((int64_t)arc_p >= 0);
2662
2663         if (arc_reclaim_needed()) {
2664                 cv_signal(&arc_reclaim_thr_cv);
2665                 return;
2666         }
2667
2668         if (arc_no_grow)
2669                 return;
2670
2671         if (arc_c >= arc_c_max)
2672                 return;
2673
2674         /*
2675          * If we're within (2 * maxblocksize) bytes of the target
2676          * cache size, increment the target cache size
2677          */
2678         if (arc_size > arc_c - (2ULL << SPA_MAXBLOCKSHIFT)) {
2679                 atomic_add_64(&arc_c, (int64_t)bytes);
2680                 if (arc_c > arc_c_max)
2681                         arc_c = arc_c_max;
2682                 else if (state == arc_anon)
2683                         atomic_add_64(&arc_p, (int64_t)bytes);
2684                 if (arc_p > arc_c)
2685                         arc_p = arc_c;
2686         }
2687         ASSERT((int64_t)arc_p >= 0);
2688 }
2689
2690 /*
2691  * Check if the cache has reached its limits and eviction is required
2692  * prior to insert.
2693  */
2694 static int
2695 arc_evict_needed(arc_buf_contents_t type)
2696 {
2697         if (type == ARC_BUFC_METADATA && arc_meta_used >= arc_meta_limit)
2698                 return (1);
2699
2700 #ifdef sun
2701 #ifdef _KERNEL
2702         /*
2703          * If zio data pages are being allocated out of a separate heap segment,
2704          * then enforce that the size of available vmem for this area remains
2705          * above about 1/32nd free.
2706          */
2707         if (type == ARC_BUFC_DATA && zio_arena != NULL &&
2708             vmem_size(zio_arena, VMEM_FREE) <
2709             (vmem_size(zio_arena, VMEM_ALLOC) >> 5))
2710                 return (1);
2711 #endif
2712 #endif  /* sun */
2713
2714         if (arc_reclaim_needed())
2715                 return (1);
2716
2717         return (arc_size > arc_c);
2718 }
2719
2720 /*
2721  * The buffer, supplied as the first argument, needs a data block.
2722  * So, if we are at cache max, determine which cache should be victimized.
2723  * We have the following cases:
2724  *
2725  * 1. Insert for MRU, p > sizeof(arc_anon + arc_mru) ->
2726  * In this situation if we're out of space, but the resident size of the MFU is
2727  * under the limit, victimize the MFU cache to satisfy this insertion request.
2728  *
2729  * 2. Insert for MRU, p <= sizeof(arc_anon + arc_mru) ->
2730  * Here, we've used up all of the available space for the MRU, so we need to
2731  * evict from our own cache instead.  Evict from the set of resident MRU
2732  * entries.
2733  *
2734  * 3. Insert for MFU (c - p) > sizeof(arc_mfu) ->
2735  * c minus p represents the MFU space in the cache, since p is the size of the
2736  * cache that is dedicated to the MRU.  In this situation there's still space on
2737  * the MFU side, so the MRU side needs to be victimized.
2738  *
2739  * 4. Insert for MFU (c - p) < sizeof(arc_mfu) ->
2740  * MFU's resident set is consuming more space than it has been allotted.  In
2741  * this situation, we must victimize our own cache, the MFU, for this insertion.
2742  */
2743 static void
2744 arc_get_data_buf(arc_buf_t *buf)
2745 {
2746         arc_state_t             *state = buf->b_hdr->b_state;
2747         uint64_t                size = buf->b_hdr->b_size;
2748         arc_buf_contents_t      type = buf->b_hdr->b_type;
2749
2750         arc_adapt(size, state);
2751
2752         /*
2753          * We have not yet reached cache maximum size,
2754          * just allocate a new buffer.
2755          */
2756         if (!arc_evict_needed(type)) {
2757                 if (type == ARC_BUFC_METADATA) {
2758                         buf->b_data = zio_buf_alloc(size);
2759                         arc_space_consume(size, ARC_SPACE_DATA);
2760                 } else {
2761                         ASSERT(type == ARC_BUFC_DATA);
2762                         buf->b_data = zio_data_buf_alloc(size);
2763                         ARCSTAT_INCR(arcstat_data_size, size);
2764                         atomic_add_64(&arc_size, size);
2765                 }
2766                 goto out;
2767         }
2768
2769         /*
2770          * If we are prefetching from the mfu ghost list, this buffer
2771          * will end up on the mru list; so steal space from there.
2772          */
2773         if (state == arc_mfu_ghost)
2774                 state = buf->b_hdr->b_flags & ARC_PREFETCH ? arc_mru : arc_mfu;
2775         else if (state == arc_mru_ghost)
2776                 state = arc_mru;
2777
2778         if (state == arc_mru || state == arc_anon) {
2779                 uint64_t mru_used = arc_anon->arcs_size + arc_mru->arcs_size;
2780                 state = (arc_mfu->arcs_lsize[type] >= size &&
2781                     arc_p > mru_used) ? arc_mfu : arc_mru;
2782         } else {
2783                 /* MFU cases */
2784                 uint64_t mfu_space = arc_c - arc_p;
2785                 state =  (arc_mru->arcs_lsize[type] >= size &&
2786                     mfu_space > arc_mfu->arcs_size) ? arc_mru : arc_mfu;
2787         }
2788         if ((buf->b_data = arc_evict(state, 0, size, TRUE, type)) == NULL) {
2789                 if (type == ARC_BUFC_METADATA) {
2790                         buf->b_data = zio_buf_alloc(size);
2791                         arc_space_consume(size, ARC_SPACE_DATA);
2792                 } else {
2793                         ASSERT(type == ARC_BUFC_DATA);
2794                         buf->b_data = zio_data_buf_alloc(size);
2795                         ARCSTAT_INCR(arcstat_data_size, size);
2796                         atomic_add_64(&arc_size, size);
2797                 }
2798                 ARCSTAT_BUMP(arcstat_recycle_miss);
2799         }
2800         ASSERT(buf->b_data != NULL);
2801 out:
2802         /*
2803          * Update the state size.  Note that ghost states have a
2804          * "ghost size" and so don't need to be updated.
2805          */
2806         if (!GHOST_STATE(buf->b_hdr->b_state)) {
2807                 arc_buf_hdr_t *hdr = buf->b_hdr;
2808
2809                 atomic_add_64(&hdr->b_state->arcs_size, size);
2810                 if (list_link_active(&hdr->b_arc_node)) {
2811                         ASSERT(refcount_is_zero(&hdr->b_refcnt));
2812                         atomic_add_64(&hdr->b_state->arcs_lsize[type], size);
2813                 }
2814                 /*
2815                  * If we are growing the cache, and we are adding anonymous
2816                  * data, and we have outgrown arc_p, update arc_p
2817                  */
2818                 if (arc_size < arc_c && hdr->b_state == arc_anon &&
2819                     arc_anon->arcs_size + arc_mru->arcs_size > arc_p)
2820                         arc_p = MIN(arc_c, arc_p + size);
2821         }
2822         ARCSTAT_BUMP(arcstat_allocated);
2823 }
2824
2825 /*
2826  * This routine is called whenever a buffer is accessed.
2827  * NOTE: the hash lock is dropped in this function.
2828  */
2829 static void
2830 arc_access(arc_buf_hdr_t *buf, kmutex_t *hash_lock)
2831 {
2832         clock_t now;
2833
2834         ASSERT(MUTEX_HELD(hash_lock));
2835
2836         if (buf->b_state == arc_anon) {
2837                 /*
2838                  * This buffer is not in the cache, and does not
2839                  * appear in our "ghost" list.  Add the new buffer
2840                  * to the MRU state.
2841                  */
2842
2843                 ASSERT(buf->b_arc_access == 0);
2844                 buf->b_arc_access = ddi_get_lbolt();
2845                 DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, buf);
2846                 arc_change_state(arc_mru, buf, hash_lock);
2847
2848         } else if (buf->b_state == arc_mru) {
2849                 now = ddi_get_lbolt();
2850
2851                 /*
2852                  * If this buffer is here because of a prefetch, then either:
2853                  * - clear the flag if this is a "referencing" read
2854                  *   (any subsequent access will bump this into the MFU state).
2855                  * or
2856                  * - move the buffer to the head of the list if this is
2857                  *   another prefetch (to make it less likely to be evicted).
2858                  */
2859                 if ((buf->b_flags & ARC_PREFETCH) != 0) {
2860                         if (refcount_count(&buf->b_refcnt) == 0) {
2861                                 ASSERT(list_link_active(&buf->b_arc_node));
2862                         } else {
2863                                 buf->b_flags &= ~ARC_PREFETCH;
2864                                 ARCSTAT_BUMP(arcstat_mru_hits);
2865                         }
2866                         buf->b_arc_access = now;
2867                         return;
2868                 }
2869
2870                 /*
2871                  * This buffer has been "accessed" only once so far,
2872                  * but it is still in the cache. Move it to the MFU
2873                  * state.
2874                  */
2875                 if (now > buf->b_arc_access + ARC_MINTIME) {
2876                         /*
2877                          * More than 125ms have passed since we
2878                          * instantiated this buffer.  Move it to the
2879                          * most frequently used state.
2880                          */
2881                         buf->b_arc_access = now;
2882                         DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf);
2883                         arc_change_state(arc_mfu, buf, hash_lock);
2884                 }
2885                 ARCSTAT_BUMP(arcstat_mru_hits);
2886         } else if (buf->b_state == arc_mru_ghost) {
2887                 arc_state_t     *new_state;
2888                 /*
2889                  * This buffer has been "accessed" recently, but
2890                  * was evicted from the cache.  Move it to the
2891                  * MFU state.
2892                  */
2893
2894                 if (buf->b_flags & ARC_PREFETCH) {
2895                         new_state = arc_mru;
2896                         if (refcount_count(&buf->b_refcnt) > 0)
2897                                 buf->b_flags &= ~ARC_PREFETCH;
2898                         DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, buf);
2899                 } else {
2900                         new_state = arc_mfu;
2901                         DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf);
2902                 }
2903
2904                 buf->b_arc_access = ddi_get_lbolt();
2905                 arc_change_state(new_state, buf, hash_lock);
2906
2907                 ARCSTAT_BUMP(arcstat_mru_ghost_hits);
2908         } else if (buf->b_state == arc_mfu) {
2909                 /*
2910                  * This buffer has been accessed more than once and is
2911                  * still in the cache.  Keep it in the MFU state.
2912                  *
2913                  * NOTE: an add_reference() that occurred when we did
2914                  * the arc_read() will have kicked this off the list.
2915                  * If it was a prefetch, we will explicitly move it to
2916                  * the head of the list now.
2917                  */
2918                 if ((buf->b_flags & ARC_PREFETCH) != 0) {
2919                         ASSERT(refcount_count(&buf->b_refcnt) == 0);
2920                         ASSERT(list_link_active(&buf->b_arc_node));
2921                 }
2922                 ARCSTAT_BUMP(arcstat_mfu_hits);
2923                 buf->b_arc_access = ddi_get_lbolt();
2924         } else if (buf->b_state == arc_mfu_ghost) {
2925                 arc_state_t     *new_state = arc_mfu;
2926                 /*
2927                  * This buffer has been accessed more than once but has
2928                  * been evicted from the cache.  Move it back to the
2929                  * MFU state.
2930                  */
2931
2932                 if (buf->b_flags & ARC_PREFETCH) {
2933                         /*
2934                          * This is a prefetch access...
2935                          * move this block back to the MRU state.
2936                          */
2937                         ASSERT0(refcount_count(&buf->b_refcnt));
2938                         new_state = arc_mru;
2939                 }
2940
2941                 buf->b_arc_access = ddi_get_lbolt();
2942                 DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf);
2943                 arc_change_state(new_state, buf, hash_lock);
2944
2945                 ARCSTAT_BUMP(arcstat_mfu_ghost_hits);
2946         } else if (buf->b_state == arc_l2c_only) {
2947                 /*
2948                  * This buffer is on the 2nd Level ARC.
2949                  */
2950
2951                 buf->b_arc_access = ddi_get_lbolt();
2952                 DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf);
2953                 arc_change_state(arc_mfu, buf, hash_lock);
2954         } else {
2955                 ASSERT(!"invalid arc state");
2956         }
2957 }
2958
2959 /* a generic arc_done_func_t which you can use */
2960 /* ARGSUSED */
2961 void
2962 arc_bcopy_func(zio_t *zio, arc_buf_t *buf, void *arg)
2963 {
2964         if (zio == NULL || zio->io_error == 0)
2965                 bcopy(buf->b_data, arg, buf->b_hdr->b_size);
2966         VERIFY(arc_buf_remove_ref(buf, arg));
2967 }
2968
2969 /* a generic arc_done_func_t */
2970 void
2971 arc_getbuf_func(zio_t *zio, arc_buf_t *buf, void *arg)
2972 {
2973         arc_buf_t **bufp = arg;
2974         if (zio && zio->io_error) {
2975                 VERIFY(arc_buf_remove_ref(buf, arg));
2976                 *bufp = NULL;
2977         } else {
2978                 *bufp = buf;
2979                 ASSERT(buf->b_data);
2980         }
2981 }
2982
2983 static void
2984 arc_read_done(zio_t *zio)
2985 {
2986         arc_buf_hdr_t   *hdr, *found;
2987         arc_buf_t       *buf;
2988         arc_buf_t       *abuf;  /* buffer we're assigning to callback */
2989         kmutex_t        *hash_lock;
2990         arc_callback_t  *callback_list, *acb;
2991         int             freeable = FALSE;
2992
2993         buf = zio->io_private;
2994         hdr = buf->b_hdr;
2995
2996         /*
2997          * The hdr was inserted into hash-table and removed from lists
2998          * prior to starting I/O.  We should find this header, since
2999          * it's in the hash table, and it should be legit since it's
3000          * not possible to evict it during the I/O.  The only possible
3001          * reason for it not to be found is if we were freed during the
3002          * read.
3003          */
3004         found = buf_hash_find(hdr->b_spa, &hdr->b_dva, hdr->b_birth,
3005             &hash_lock);
3006
3007         ASSERT((found == NULL && HDR_FREED_IN_READ(hdr) && hash_lock == NULL) ||
3008             (found == hdr && DVA_EQUAL(&hdr->b_dva, BP_IDENTITY(zio->io_bp))) ||
3009             (found == hdr && HDR_L2_READING(hdr)));
3010
3011         hdr->b_flags &= ~ARC_L2_EVICTED;
3012         if (l2arc_noprefetch && (hdr->b_flags & ARC_PREFETCH))
3013                 hdr->b_flags &= ~ARC_L2CACHE;
3014
3015         /* byteswap if necessary */
3016         callback_list = hdr->b_acb;
3017         ASSERT(callback_list != NULL);
3018         if (BP_SHOULD_BYTESWAP(zio->io_bp) && zio->io_error == 0) {
3019                 dmu_object_byteswap_t bswap =
3020                     DMU_OT_BYTESWAP(BP_GET_TYPE(zio->io_bp));
3021                 arc_byteswap_func_t *func = BP_GET_LEVEL(zio->io_bp) > 0 ?
3022                     byteswap_uint64_array :
3023                     dmu_ot_byteswap[bswap].ob_func;
3024                 func(buf->b_data, hdr->b_size);
3025         }
3026
3027         arc_cksum_compute(buf, B_FALSE);
3028 #ifdef illumos
3029         arc_buf_watch(buf);
3030 #endif /* illumos */
3031
3032         if (hash_lock && zio->io_error == 0 && hdr->b_state == arc_anon) {
3033                 /*
3034                  * Only call arc_access on anonymous buffers.  This is because
3035                  * if we've issued an I/O for an evicted buffer, we've already
3036                  * called arc_access (to prevent any simultaneous readers from
3037                  * getting confused).
3038                  */
3039                 arc_access(hdr, hash_lock);
3040         }
3041
3042         /* create copies of the data buffer for the callers */
3043         abuf = buf;
3044         for (acb = callback_list; acb; acb = acb->acb_next) {
3045                 if (acb->acb_done) {
3046                         if (abuf == NULL) {
3047                                 ARCSTAT_BUMP(arcstat_duplicate_reads);
3048                                 abuf = arc_buf_clone(buf);
3049                         }
3050                         acb->acb_buf = abuf;
3051                         abuf = NULL;
3052                 }
3053         }
3054         hdr->b_acb = NULL;
3055         hdr->b_flags &= ~ARC_IO_IN_PROGRESS;
3056         ASSERT(!HDR_BUF_AVAILABLE(hdr));
3057         if (abuf == buf) {
3058                 ASSERT(buf->b_efunc == NULL);
3059                 ASSERT(hdr->b_datacnt == 1);
3060                 hdr->b_flags |= ARC_BUF_AVAILABLE;
3061         }
3062
3063         ASSERT(refcount_is_zero(&hdr->b_refcnt) || callback_list != NULL);
3064
3065         if (zio->io_error != 0) {
3066                 hdr->b_flags |= ARC_IO_ERROR;
3067                 if (hdr->b_state != arc_anon)
3068                         arc_change_state(arc_anon, hdr, hash_lock);
3069                 if (HDR_IN_HASH_TABLE(hdr))
3070                         buf_hash_remove(hdr);
3071                 freeable = refcount_is_zero(&hdr->b_refcnt);
3072         }
3073
3074         /*
3075          * Broadcast before we drop the hash_lock to avoid the possibility
3076          * that the hdr (and hence the cv) might be freed before we get to
3077          * the cv_broadcast().
3078          */
3079         cv_broadcast(&hdr->b_cv);
3080
3081         if (hash_lock) {
3082                 mutex_exit(hash_lock);
3083         } else {
3084                 /*
3085                  * This block was freed while we waited for the read to
3086                  * complete.  It has been removed from the hash table and
3087                  * moved to the anonymous state (so that it won't show up
3088                  * in the cache).
3089                  */
3090                 ASSERT3P(hdr->b_state, ==, arc_anon);
3091                 freeable = refcount_is_zero(&hdr->b_refcnt);
3092         }
3093
3094         /* execute each callback and free its structure */
3095         while ((acb = callback_list) != NULL) {
3096                 if (acb->acb_done)
3097                         acb->acb_done(zio, acb->acb_buf, acb->acb_private);
3098
3099                 if (acb->acb_zio_dummy != NULL) {
3100                         acb->acb_zio_dummy->io_error = zio->io_error;
3101                         zio_nowait(acb->acb_zio_dummy);
3102                 }
3103
3104                 callback_list = acb->acb_next;
3105                 kmem_free(acb, sizeof (arc_callback_t));
3106         }
3107
3108         if (freeable)
3109                 arc_hdr_destroy(hdr);
3110 }
3111
3112 /*
3113  * "Read" the block block at the specified DVA (in bp) via the
3114  * cache.  If the block is found in the cache, invoke the provided
3115  * callback immediately and return.  Note that the `zio' parameter
3116  * in the callback will be NULL in this case, since no IO was
3117  * required.  If the block is not in the cache pass the read request
3118  * on to the spa with a substitute callback function, so that the
3119  * requested block will be added to the cache.
3120  *
3121  * If a read request arrives for a block that has a read in-progress,
3122  * either wait for the in-progress read to complete (and return the
3123  * results); or, if this is a read with a "done" func, add a record
3124  * to the read to invoke the "done" func when the read completes,
3125  * and return; or just return.
3126  *
3127  * arc_read_done() will invoke all the requested "done" functions
3128  * for readers of this block.
3129  */
3130 int
3131 arc_read(zio_t *pio, spa_t *spa, const blkptr_t *bp, arc_done_func_t *done,
3132     void *private, zio_priority_t priority, int zio_flags, uint32_t *arc_flags,
3133     const zbookmark_t *zb)
3134 {
3135         arc_buf_hdr_t *hdr;
3136         arc_buf_t *buf = NULL;
3137         kmutex_t *hash_lock;
3138         zio_t *rzio;
3139         uint64_t guid = spa_load_guid(spa);
3140
3141 top:
3142         hdr = buf_hash_find(guid, BP_IDENTITY(bp), BP_PHYSICAL_BIRTH(bp),
3143             &hash_lock);
3144         if (hdr && hdr->b_datacnt > 0) {
3145
3146                 *arc_flags |= ARC_CACHED;
3147
3148                 if (HDR_IO_IN_PROGRESS(hdr)) {
3149
3150                         if (*arc_flags & ARC_WAIT) {
3151                                 cv_wait(&hdr->b_cv, hash_lock);
3152                                 mutex_exit(hash_lock);
3153                                 goto top;
3154                         }
3155                         ASSERT(*arc_flags & ARC_NOWAIT);
3156
3157                         if (done) {
3158                                 arc_callback_t  *acb = NULL;
3159
3160                                 acb = kmem_zalloc(sizeof (arc_callback_t),
3161                                     KM_SLEEP);
3162                                 acb->acb_done = done;
3163                                 acb->acb_private = private;
3164                                 if (pio != NULL)
3165                                         acb->acb_zio_dummy = zio_null(pio,
3166                                             spa, NULL, NULL, NULL, zio_flags);
3167
3168                                 ASSERT(acb->acb_done != NULL);
3169                                 acb->acb_next = hdr->b_acb;
3170                                 hdr->b_acb = acb;
3171                                 add_reference(hdr, hash_lock, private);
3172                                 mutex_exit(hash_lock);
3173                                 return (0);
3174                         }
3175                         mutex_exit(hash_lock);
3176                         return (0);
3177                 }
3178
3179                 ASSERT(hdr->b_state == arc_mru || hdr->b_state == arc_mfu);
3180
3181                 if (done) {
3182                         add_reference(hdr, hash_lock, private);
3183                         /*
3184                          * If this block is already in use, create a new
3185                          * copy of the data so that we will be guaranteed
3186                          * that arc_release() will always succeed.
3187                          */
3188                         buf = hdr->b_buf;
3189                         ASSERT(buf);
3190                         ASSERT(buf->b_data);
3191                         if (HDR_BUF_AVAILABLE(hdr)) {
3192                                 ASSERT(buf->b_efunc == NULL);
3193                                 hdr->b_flags &= ~ARC_BUF_AVAILABLE;
3194                         } else {
3195                                 buf = arc_buf_clone(buf);
3196                         }
3197
3198                 } else if (*arc_flags & ARC_PREFETCH &&
3199                     refcount_count(&hdr->b_refcnt) == 0) {
3200                         hdr->b_flags |= ARC_PREFETCH;
3201                 }
3202                 DTRACE_PROBE1(arc__hit, arc_buf_hdr_t *, hdr);
3203                 arc_access(hdr, hash_lock);
3204                 if (*arc_flags & ARC_L2CACHE)
3205                         hdr->b_flags |= ARC_L2CACHE;
3206                 if (*arc_flags & ARC_L2COMPRESS)
3207                         hdr->b_flags |= ARC_L2COMPRESS;
3208                 mutex_exit(hash_lock);
3209                 ARCSTAT_BUMP(arcstat_hits);
3210                 ARCSTAT_CONDSTAT(!(hdr->b_flags & ARC_PREFETCH),
3211                     demand, prefetch, hdr->b_type != ARC_BUFC_METADATA,
3212                     data, metadata, hits);
3213
3214                 if (done)
3215                         done(NULL, buf, private);
3216         } else {
3217                 uint64_t size = BP_GET_LSIZE(bp);
3218                 arc_callback_t  *acb;
3219                 vdev_t *vd = NULL;
3220                 uint64_t addr = 0;
3221                 boolean_t devw = B_FALSE;
3222
3223                 if (hdr == NULL) {
3224                         /* this block is not in the cache */
3225                         arc_buf_hdr_t   *exists;
3226                         arc_buf_contents_t type = BP_GET_BUFC_TYPE(bp);
3227                         buf = arc_buf_alloc(spa, size, private, type);
3228                         hdr = buf->b_hdr;
3229                         hdr->b_dva = *BP_IDENTITY(bp);
3230                         hdr->b_birth = BP_PHYSICAL_BIRTH(bp);
3231                         hdr->b_cksum0 = bp->blk_cksum.zc_word[0];
3232                         exists = buf_hash_insert(hdr, &hash_lock);
3233                         if (exists) {
3234                                 /* somebody beat us to the hash insert */
3235                                 mutex_exit(hash_lock);
3236                                 buf_discard_identity(hdr);
3237                                 (void) arc_buf_remove_ref(buf, private);
3238                                 goto top; /* restart the IO request */
3239                         }
3240                         /* if this is a prefetch, we don't have a reference */
3241                         if (*arc_flags & ARC_PREFETCH) {
3242                                 (void) remove_reference(hdr, hash_lock,
3243                                     private);
3244                                 hdr->b_flags |= ARC_PREFETCH;
3245                         }
3246                         if (*arc_flags & ARC_L2CACHE)
3247                                 hdr->b_flags |= ARC_L2CACHE;
3248                         if (*arc_flags & ARC_L2COMPRESS)
3249                                 hdr->b_flags |= ARC_L2COMPRESS;
3250                         if (BP_GET_LEVEL(bp) > 0)
3251                                 hdr->b_flags |= ARC_INDIRECT;
3252                 } else {
3253                         /* this block is in the ghost cache */
3254                         ASSERT(GHOST_STATE(hdr->b_state));
3255                         ASSERT(!HDR_IO_IN_PROGRESS(hdr));
3256                         ASSERT0(refcount_count(&hdr->b_refcnt));
3257                         ASSERT(hdr->b_buf == NULL);
3258
3259                         /* if this is a prefetch, we don't have a reference */
3260                         if (*arc_flags & ARC_PREFETCH)
3261                                 hdr->b_flags |= ARC_PREFETCH;
3262                         else
3263                                 add_reference(hdr, hash_lock, private);
3264                         if (*arc_flags & ARC_L2CACHE)
3265                                 hdr->b_flags |= ARC_L2CACHE;
3266                         if (*arc_flags & ARC_L2COMPRESS)
3267                                 hdr->b_flags |= ARC_L2COMPRESS;
3268                         buf = kmem_cache_alloc(buf_cache, KM_PUSHPAGE);
3269                         buf->b_hdr = hdr;
3270                         buf->b_data = NULL;
3271                         buf->b_efunc = NULL;
3272                         buf->b_private = NULL;
3273                         buf->b_next = NULL;
3274                         hdr->b_buf = buf;
3275                         ASSERT(hdr->b_datacnt == 0);
3276                         hdr->b_datacnt = 1;
3277                         arc_get_data_buf(buf);
3278                         arc_access(hdr, hash_lock);
3279                 }
3280
3281                 ASSERT(!GHOST_STATE(hdr->b_state));
3282
3283                 acb = kmem_zalloc(sizeof (arc_callback_t), KM_SLEEP);
3284                 acb->acb_done = done;
3285                 acb->acb_private = private;
3286
3287                 ASSERT(hdr->b_acb == NULL);
3288                 hdr->b_acb = acb;
3289                 hdr->b_flags |= ARC_IO_IN_PROGRESS;
3290
3291                 if (HDR_L2CACHE(hdr) && hdr->b_l2hdr != NULL &&
3292                     (vd = hdr->b_l2hdr->b_dev->l2ad_vdev) != NULL) {
3293                         devw = hdr->b_l2hdr->b_dev->l2ad_writing;
3294                         addr = hdr->b_l2hdr->b_daddr;
3295                         /*
3296                          * Lock out device removal.
3297                          */
3298                         if (vdev_is_dead(vd) ||
3299                             !spa_config_tryenter(spa, SCL_L2ARC, vd, RW_READER))
3300                                 vd = NULL;
3301                 }
3302
3303                 mutex_exit(hash_lock);
3304
3305                 /*
3306                  * At this point, we have a level 1 cache miss.  Try again in
3307                  * L2ARC if possible.
3308                  */
3309                 ASSERT3U(hdr->b_size, ==, size);
3310                 DTRACE_PROBE4(arc__miss, arc_buf_hdr_t *, hdr, blkptr_t *, bp,
3311                     uint64_t, size, zbookmark_t *, zb);
3312                 ARCSTAT_BUMP(arcstat_misses);
3313                 ARCSTAT_CONDSTAT(!(hdr->b_flags & ARC_PREFETCH),
3314                     demand, prefetch, hdr->b_type != ARC_BUFC_METADATA,
3315                     data, metadata, misses);
3316 #ifdef _KERNEL
3317                 curthread->td_ru.ru_inblock++;
3318 #endif
3319
3320                 if (vd != NULL && l2arc_ndev != 0 && !(l2arc_norw && devw)) {
3321                         /*
3322                          * Read from the L2ARC if the following are true:
3323                          * 1. The L2ARC vdev was previously cached.
3324                          * 2. This buffer still has L2ARC metadata.
3325                          * 3. This buffer isn't currently writing to the L2ARC.
3326                          * 4. The L2ARC entry wasn't evicted, which may
3327                          *    also have invalidated the vdev.
3328                          * 5. This isn't prefetch and l2arc_noprefetch is set.
3329                          */
3330                         if (hdr->b_l2hdr != NULL &&
3331                             !HDR_L2_WRITING(hdr) && !HDR_L2_EVICTED(hdr) &&
3332                             !(l2arc_noprefetch && HDR_PREFETCH(hdr))) {
3333                                 l2arc_read_callback_t *cb;
3334
3335                                 DTRACE_PROBE1(l2arc__hit, arc_buf_hdr_t *, hdr);
3336                                 ARCSTAT_BUMP(arcstat_l2_hits);
3337
3338                                 cb = kmem_zalloc(sizeof (l2arc_read_callback_t),
3339                                     KM_SLEEP);
3340                                 cb->l2rcb_buf = buf;
3341                                 cb->l2rcb_spa = spa;
3342                                 cb->l2rcb_bp = *bp;
3343                                 cb->l2rcb_zb = *zb;
3344                                 cb->l2rcb_flags = zio_flags;
3345                                 cb->l2rcb_compress = hdr->b_l2hdr->b_compress;
3346
3347                                 ASSERT(addr >= VDEV_LABEL_START_SIZE &&
3348                                     addr + size < vd->vdev_psize -
3349                                     VDEV_LABEL_END_SIZE);
3350
3351                                 /*
3352                                  * l2arc read.  The SCL_L2ARC lock will be
3353                                  * released by l2arc_read_done().
3354                                  * Issue a null zio if the underlying buffer
3355                                  * was squashed to zero size by compression.
3356                                  */
3357                                 if (hdr->b_l2hdr->b_compress ==
3358                                     ZIO_COMPRESS_EMPTY) {
3359                                         rzio = zio_null(pio, spa, vd,
3360                                             l2arc_read_done, cb,
3361                                             zio_flags | ZIO_FLAG_DONT_CACHE |
3362                                             ZIO_FLAG_CANFAIL |
3363                                             ZIO_FLAG_DONT_PROPAGATE |
3364                                             ZIO_FLAG_DONT_RETRY);
3365                                 } else {
3366                                         rzio = zio_read_phys(pio, vd, addr,
3367                                             hdr->b_l2hdr->b_asize,
3368                                             buf->b_data, ZIO_CHECKSUM_OFF,
3369                                             l2arc_read_done, cb, priority,
3370                                             zio_flags | ZIO_FLAG_DONT_CACHE |
3371                                             ZIO_FLAG_CANFAIL |
3372                                             ZIO_FLAG_DONT_PROPAGATE |
3373                                             ZIO_FLAG_DONT_RETRY, B_FALSE);
3374                                 }
3375                                 DTRACE_PROBE2(l2arc__read, vdev_t *, vd,
3376                                     zio_t *, rzio);
3377                                 ARCSTAT_INCR(arcstat_l2_read_bytes,
3378                                     hdr->b_l2hdr->b_asize);
3379
3380                                 if (*arc_flags & ARC_NOWAIT) {
3381                                         zio_nowait(rzio);
3382                                         return (0);
3383                                 }
3384
3385                                 ASSERT(*arc_flags & ARC_WAIT);
3386                                 if (zio_wait(rzio) == 0)
3387                                         return (0);
3388
3389                                 /* l2arc read error; goto zio_read() */
3390                         } else {
3391                                 DTRACE_PROBE1(l2arc__miss,
3392                                     arc_buf_hdr_t *, hdr);
3393                                 ARCSTAT_BUMP(arcstat_l2_misses);
3394                                 if (HDR_L2_WRITING(hdr))
3395                                         ARCSTAT_BUMP(arcstat_l2_rw_clash);
3396                                 spa_config_exit(spa, SCL_L2ARC, vd);
3397                         }
3398                 } else {
3399                         if (vd != NULL)
3400                                 spa_config_exit(spa, SCL_L2ARC, vd);
3401                         if (l2arc_ndev != 0) {
3402                                 DTRACE_PROBE1(l2arc__miss,
3403                                     arc_buf_hdr_t *, hdr);
3404                                 ARCSTAT_BUMP(arcstat_l2_misses);
3405                         }
3406                 }
3407
3408                 rzio = zio_read(pio, spa, bp, buf->b_data, size,
3409                     arc_read_done, buf, priority, zio_flags, zb);
3410
3411                 if (*arc_flags & ARC_WAIT)
3412                         return (zio_wait(rzio));
3413
3414                 ASSERT(*arc_flags & ARC_NOWAIT);
3415                 zio_nowait(rzio);
3416         }
3417         return (0);
3418 }
3419
3420 void
3421 arc_set_callback(arc_buf_t *buf, arc_evict_func_t *func, void *private)
3422 {
3423         ASSERT(buf->b_hdr != NULL);
3424         ASSERT(buf->b_hdr->b_state != arc_anon);
3425         ASSERT(!refcount_is_zero(&buf->b_hdr->b_refcnt) || func == NULL);
3426         ASSERT(buf->b_efunc == NULL);
3427         ASSERT(!HDR_BUF_AVAILABLE(buf->b_hdr));
3428
3429         buf->b_efunc = func;
3430         buf->b_private = private;
3431 }
3432
3433 /*
3434  * This is used by the DMU to let the ARC know that a buffer is
3435  * being evicted, so the ARC should clean up.  If this arc buf
3436  * is not yet in the evicted state, it will be put there.
3437  */
3438 int
3439 arc_buf_evict(arc_buf_t *buf)
3440 {
3441         arc_buf_hdr_t *hdr;
3442         kmutex_t *hash_lock;
3443         arc_buf_t **bufp;
3444         list_t *list, *evicted_list;
3445         kmutex_t *lock, *evicted_lock;
3446
3447         mutex_enter(&buf->b_evict_lock);
3448         hdr = buf->b_hdr;
3449         if (hdr == NULL) {
3450                 /*
3451                  * We are in arc_do_user_evicts().
3452                  */
3453                 ASSERT(buf->b_data == NULL);
3454                 mutex_exit(&buf->b_evict_lock);
3455                 return (0);
3456         } else if (buf->b_data == NULL) {
3457                 arc_buf_t copy = *buf; /* structure assignment */
3458                 /*
3459                  * We are on the eviction list; process this buffer now
3460                  * but let arc_do_user_evicts() do the reaping.
3461                  */
3462                 buf->b_efunc = NULL;
3463                 mutex_exit(&buf->b_evict_lock);
3464                 VERIFY(copy.b_efunc(&copy) == 0);
3465                 return (1);
3466         }
3467         hash_lock = HDR_LOCK(hdr);
3468         mutex_enter(hash_lock);
3469         hdr = buf->b_hdr;
3470         ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
3471
3472         ASSERT3U(refcount_count(&hdr->b_refcnt), <, hdr->b_datacnt);
3473         ASSERT(hdr->b_state == arc_mru || hdr->b_state == arc_mfu);
3474
3475         /*
3476          * Pull this buffer off of the hdr
3477          */
3478         bufp = &hdr->b_buf;
3479         while (*bufp != buf)
3480                 bufp = &(*bufp)->b_next;
3481         *bufp = buf->b_next;
3482
3483         ASSERT(buf->b_data != NULL);
3484         arc_buf_destroy(buf, FALSE, FALSE);
3485
3486         if (hdr->b_datacnt == 0) {
3487                 arc_state_t *old_state = hdr->b_state;
3488                 arc_state_t *evicted_state;
3489
3490                 ASSERT(hdr->b_buf == NULL);
3491                 ASSERT(refcount_is_zero(&hdr->b_refcnt));
3492
3493                 evicted_state =
3494                     (old_state == arc_mru) ? arc_mru_ghost : arc_mfu_ghost;
3495
3496                 get_buf_info(hdr, old_state, &list, &lock);
3497                 get_buf_info(hdr, evicted_state, &evicted_list, &evicted_lock);
3498                 mutex_enter(lock);
3499                 mutex_enter(evicted_lock);
3500
3501                 arc_change_state(evicted_state, hdr, hash_lock);
3502                 ASSERT(HDR_IN_HASH_TABLE(hdr));
3503                 hdr->b_flags |= ARC_IN_HASH_TABLE;
3504                 hdr->b_flags &= ~ARC_BUF_AVAILABLE;
3505
3506                 mutex_exit(evicted_lock);
3507                 mutex_exit(lock);
3508         }
3509         mutex_exit(hash_lock);
3510         mutex_exit(&buf->b_evict_lock);
3511
3512         VERIFY(buf->b_efunc(buf) == 0);
3513         buf->b_efunc = NULL;
3514         buf->b_private = NULL;
3515         buf->b_hdr = NULL;
3516         buf->b_next = NULL;
3517         kmem_cache_free(buf_cache, buf);
3518         return (1);
3519 }
3520
3521 /*
3522  * Release this buffer from the cache, making it an anonymous buffer.  This
3523  * must be done after a read and prior to modifying the buffer contents.
3524  * If the buffer has more than one reference, we must make
3525  * a new hdr for the buffer.
3526  */
3527 void
3528 arc_release(arc_buf_t *buf, void *tag)
3529 {
3530         arc_buf_hdr_t *hdr;
3531         kmutex_t *hash_lock = NULL;
3532         l2arc_buf_hdr_t *l2hdr;
3533         uint64_t buf_size;
3534
3535         /*
3536          * It would be nice to assert that if it's DMU metadata (level >
3537          * 0 || it's the dnode file), then it must be syncing context.
3538          * But we don't know that information at this level.
3539          */
3540
3541         mutex_enter(&buf->b_evict_lock);
3542         hdr = buf->b_hdr;
3543
3544         /* this buffer is not on any list */
3545         ASSERT(refcount_count(&hdr->b_refcnt) > 0);
3546
3547         if (hdr->b_state == arc_anon) {
3548                 /* this buffer is already released */
3549                 ASSERT(buf->b_efunc == NULL);
3550         } else {
3551                 hash_lock = HDR_LOCK(hdr);
3552                 mutex_enter(hash_lock);
3553                 hdr = buf->b_hdr;
3554                 ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
3555         }
3556
3557         l2hdr = hdr->b_l2hdr;
3558         if (l2hdr) {
3559                 mutex_enter(&l2arc_buflist_mtx);
3560                 hdr->b_l2hdr = NULL;
3561                 list_remove(l2hdr->b_dev->l2ad_buflist, hdr);
3562         }
3563         buf_size = hdr->b_size;
3564
3565         /*
3566          * Do we have more than one buf?
3567          */
3568         if (hdr->b_datacnt > 1) {
3569                 arc_buf_hdr_t *nhdr;
3570                 arc_buf_t **bufp;
3571                 uint64_t blksz = hdr->b_size;
3572                 uint64_t spa = hdr->b_spa;
3573                 arc_buf_contents_t type = hdr->b_type;
3574                 uint32_t flags = hdr->b_flags;
3575
3576                 ASSERT(hdr->b_buf != buf || buf->b_next != NULL);
3577                 /*
3578                  * Pull the data off of this hdr and attach it to
3579                  * a new anonymous hdr.
3580                  */
3581                 (void) remove_reference(hdr, hash_lock, tag);
3582                 bufp = &hdr->b_buf;
3583                 while (*bufp != buf)
3584                         bufp = &(*bufp)->b_next;
3585                 *bufp = buf->b_next;
3586                 buf->b_next = NULL;
3587
3588                 ASSERT3U(hdr->b_state->arcs_size, >=, hdr->b_size);
3589                 atomic_add_64(&hdr->b_state->arcs_size, -hdr->b_size);
3590                 if (refcount_is_zero(&hdr->b_refcnt)) {
3591                         uint64_t *size = &hdr->b_state->arcs_lsize[hdr->b_type];
3592                         ASSERT3U(*size, >=, hdr->b_size);
3593                         atomic_add_64(size, -hdr->b_size);
3594                 }
3595
3596                 /*
3597                  * We're releasing a duplicate user data buffer, update
3598                  * our statistics accordingly.
3599                  */
3600                 if (hdr->b_type == ARC_BUFC_DATA) {
3601                         ARCSTAT_BUMPDOWN(arcstat_duplicate_buffers);
3602                         ARCSTAT_INCR(arcstat_duplicate_buffers_size,
3603                             -hdr->b_size);
3604                 }
3605                 hdr->b_datacnt -= 1;
3606                 arc_cksum_verify(buf);
3607 #ifdef illumos
3608                 arc_buf_unwatch(buf);
3609 #endif /* illumos */
3610
3611                 mutex_exit(hash_lock);
3612
3613                 nhdr = kmem_cache_alloc(hdr_cache, KM_PUSHPAGE);
3614                 nhdr->b_size = blksz;
3615                 nhdr->b_spa = spa;
3616                 nhdr->b_type = type;
3617                 nhdr->b_buf = buf;
3618                 nhdr->b_state = arc_anon;
3619                 nhdr->b_arc_access = 0;
3620                 nhdr->b_flags = flags & ARC_L2_WRITING;
3621                 nhdr->b_l2hdr = NULL;
3622                 nhdr->b_datacnt = 1;
3623                 nhdr->b_freeze_cksum = NULL;
3624                 (void) refcount_add(&nhdr->b_refcnt, tag);
3625                 buf->b_hdr = nhdr;
3626                 mutex_exit(&buf->b_evict_lock);
3627                 atomic_add_64(&arc_anon->arcs_size, blksz);
3628         } else {
3629                 mutex_exit(&buf->b_evict_lock);
3630                 ASSERT(refcount_count(&hdr->b_refcnt) == 1);
3631                 ASSERT(!list_link_active(&hdr->b_arc_node));
3632                 ASSERT(!HDR_IO_IN_PROGRESS(hdr));
3633                 if (hdr->b_state != arc_anon)
3634                         arc_change_state(arc_anon, hdr, hash_lock);
3635                 hdr->b_arc_access = 0;
3636                 if (hash_lock)
3637                         mutex_exit(hash_lock);
3638
3639                 buf_discard_identity(hdr);
3640                 arc_buf_thaw(buf);
3641         }
3642         buf->b_efunc = NULL;
3643         buf->b_private = NULL;
3644
3645         if (l2hdr) {
3646                 ARCSTAT_INCR(arcstat_l2_asize, -l2hdr->b_asize);
3647                 trim_map_free(l2hdr->b_dev->l2ad_vdev, l2hdr->b_daddr,
3648                     hdr->b_size, 0);
3649                 kmem_free(l2hdr, sizeof (l2arc_buf_hdr_t));
3650                 ARCSTAT_INCR(arcstat_l2_size, -buf_size);
3651                 mutex_exit(&l2arc_buflist_mtx);
3652         }
3653 }
3654
3655 int
3656 arc_released(arc_buf_t *buf)
3657 {
3658         int released;
3659
3660         mutex_enter(&buf->b_evict_lock);
3661         released = (buf->b_data != NULL && buf->b_hdr->b_state == arc_anon);
3662         mutex_exit(&buf->b_evict_lock);
3663         return (released);
3664 }
3665
3666 int
3667 arc_has_callback(arc_buf_t *buf)
3668 {
3669         int callback;
3670
3671         mutex_enter(&buf->b_evict_lock);
3672         callback = (buf->b_efunc != NULL);
3673         mutex_exit(&buf->b_evict_lock);
3674         return (callback);
3675 }
3676
3677 #ifdef ZFS_DEBUG
3678 int
3679 arc_referenced(arc_buf_t *buf)
3680 {
3681         int referenced;
3682
3683         mutex_enter(&buf->b_evict_lock);
3684         referenced = (refcount_count(&buf->b_hdr->b_refcnt));
3685         mutex_exit(&buf->b_evict_lock);
3686         return (referenced);
3687 }
3688 #endif
3689
3690 static void
3691 arc_write_ready(zio_t *zio)
3692 {
3693         arc_write_callback_t *callback = zio->io_private;
3694         arc_buf_t *buf = callback->awcb_buf;
3695         arc_buf_hdr_t *hdr = buf->b_hdr;
3696
3697         ASSERT(!refcount_is_zero(&buf->b_hdr->b_refcnt));
3698         callback->awcb_ready(zio, buf, callback->awcb_private);
3699
3700         /*
3701          * If the IO is already in progress, then this is a re-write
3702          * attempt, so we need to thaw and re-compute the cksum.
3703          * It is the responsibility of the callback to handle the
3704          * accounting for any re-write attempt.
3705          */
3706         if (HDR_IO_IN_PROGRESS(hdr)) {
3707                 mutex_enter(&hdr->b_freeze_lock);
3708                 if (hdr->b_freeze_cksum != NULL) {
3709                         kmem_free(hdr->b_freeze_cksum, sizeof (zio_cksum_t));
3710                         hdr->b_freeze_cksum = NULL;
3711                 }
3712                 mutex_exit(&hdr->b_freeze_lock);
3713         }
3714         arc_cksum_compute(buf, B_FALSE);
3715         hdr->b_flags |= ARC_IO_IN_PROGRESS;
3716 }
3717
3718 /*
3719  * The SPA calls this callback for each physical write that happens on behalf
3720  * of a logical write.  See the comment in dbuf_write_physdone() for details.
3721  */
3722 static void
3723 arc_write_physdone(zio_t *zio)
3724 {
3725         arc_write_callback_t *cb = zio->io_private;
3726         if (cb->awcb_physdone != NULL)
3727                 cb->awcb_physdone(zio, cb->awcb_buf, cb->awcb_private);
3728 }
3729
3730 static void
3731 arc_write_done(zio_t *zio)
3732 {
3733         arc_write_callback_t *callback = zio->io_private;
3734         arc_buf_t *buf = callback->awcb_buf;
3735         arc_buf_hdr_t *hdr = buf->b_hdr;
3736
3737         ASSERT(hdr->b_acb == NULL);
3738
3739         if (zio->io_error == 0) {
3740                 hdr->b_dva = *BP_IDENTITY(zio->io_bp);
3741                 hdr->b_birth = BP_PHYSICAL_BIRTH(zio->io_bp);
3742                 hdr->b_cksum0 = zio->io_bp->blk_cksum.zc_word[0];
3743         } else {
3744                 ASSERT(BUF_EMPTY(hdr));
3745         }
3746
3747         /*
3748          * If the block to be written was all-zero, we may have
3749          * compressed it away.  In this case no write was performed
3750          * so there will be no dva/birth/checksum.  The buffer must
3751          * therefore remain anonymous (and uncached).
3752          */
3753         if (!BUF_EMPTY(hdr)) {
3754                 arc_buf_hdr_t *exists;
3755                 kmutex_t *hash_lock;
3756
3757                 ASSERT(zio->io_error == 0);
3758
3759                 arc_cksum_verify(buf);
3760
3761                 exists = buf_hash_insert(hdr, &hash_lock);
3762                 if (exists) {
3763                         /*
3764                          * This can only happen if we overwrite for
3765                          * sync-to-convergence, because we remove
3766                          * buffers from the hash table when we arc_free().
3767                          */
3768                         if (zio->io_flags & ZIO_FLAG_IO_REWRITE) {
3769                                 if (!BP_EQUAL(&zio->io_bp_orig, zio->io_bp))
3770                                         panic("bad overwrite, hdr=%p exists=%p",
3771                                             (void *)hdr, (void *)exists);
3772                                 ASSERT(refcount_is_zero(&exists->b_refcnt));
3773                                 arc_change_state(arc_anon, exists, hash_lock);
3774                                 mutex_exit(hash_lock);
3775                                 arc_hdr_destroy(exists);
3776                                 exists = buf_hash_insert(hdr, &hash_lock);
3777                                 ASSERT3P(exists, ==, NULL);
3778                         } else if (zio->io_flags & ZIO_FLAG_NOPWRITE) {
3779                                 /* nopwrite */
3780                                 ASSERT(zio->io_prop.zp_nopwrite);
3781                                 if (!BP_EQUAL(&zio->io_bp_orig, zio->io_bp))
3782                                         panic("bad nopwrite, hdr=%p exists=%p",
3783                                             (void *)hdr, (void *)exists);
3784                         } else {
3785                                 /* Dedup */
3786                                 ASSERT(hdr->b_datacnt == 1);
3787                                 ASSERT(hdr->b_state == arc_anon);
3788                                 ASSERT(BP_GET_DEDUP(zio->io_bp));
3789                                 ASSERT(BP_GET_LEVEL(zio->io_bp) == 0);
3790                         }
3791                 }
3792                 hdr->b_flags &= ~ARC_IO_IN_PROGRESS;
3793                 /* if it's not anon, we are doing a scrub */
3794                 if (!exists && hdr->b_state == arc_anon)
3795                         arc_access(hdr, hash_lock);
3796                 mutex_exit(hash_lock);
3797         } else {
3798                 hdr->b_flags &= ~ARC_IO_IN_PROGRESS;
3799         }
3800
3801         ASSERT(!refcount_is_zero(&hdr->b_refcnt));
3802         callback->awcb_done(zio, buf, callback->awcb_private);
3803
3804         kmem_free(callback, sizeof (arc_write_callback_t));
3805 }
3806
3807 zio_t *
3808 arc_write(zio_t *pio, spa_t *spa, uint64_t txg,
3809     blkptr_t *bp, arc_buf_t *buf, boolean_t l2arc, boolean_t l2arc_compress,
3810     const zio_prop_t *zp, arc_done_func_t *ready, arc_done_func_t *physdone,
3811     arc_done_func_t *done, void *private, zio_priority_t priority,
3812     int zio_flags, const zbookmark_t *zb)
3813 {
3814         arc_buf_hdr_t *hdr = buf->b_hdr;
3815         arc_write_callback_t *callback;
3816         zio_t *zio;
3817
3818         ASSERT(ready != NULL);
3819         ASSERT(done != NULL);
3820         ASSERT(!HDR_IO_ERROR(hdr));
3821         ASSERT((hdr->b_flags & ARC_IO_IN_PROGRESS) == 0);
3822         ASSERT(hdr->b_acb == NULL);
3823         if (l2arc)
3824                 hdr->b_flags |= ARC_L2CACHE;
3825         if (l2arc_compress)
3826                 hdr->b_flags |= ARC_L2COMPRESS;
3827         callback = kmem_zalloc(sizeof (arc_write_callback_t), KM_SLEEP);
3828         callback->awcb_ready = ready;
3829         callback->awcb_physdone = physdone;
3830         callback->awcb_done = done;
3831         callback->awcb_private = private;
3832         callback->awcb_buf = buf;
3833
3834         zio = zio_write(pio, spa, txg, bp, buf->b_data, hdr->b_size, zp,
3835             arc_write_ready, arc_write_physdone, arc_write_done, callback,
3836             priority, zio_flags, zb);
3837
3838         return (zio);
3839 }
3840
3841 static int
3842 arc_memory_throttle(uint64_t reserve, uint64_t txg)
3843 {
3844 #ifdef _KERNEL
3845         uint64_t available_memory =
3846             ptoa((uintmax_t)cnt.v_free_count + cnt.v_cache_count);
3847         static uint64_t page_load = 0;
3848         static uint64_t last_txg = 0;
3849
3850 #ifdef sun
3851 #if defined(__i386)
3852         available_memory =
3853             MIN(available_memory, vmem_size(heap_arena, VMEM_FREE));
3854 #endif
3855 #endif  /* sun */
3856
3857         if (cnt.v_free_count + cnt.v_cache_count >
3858             (uint64_t)physmem * arc_lotsfree_percent / 100)
3859                 return (0);
3860
3861         if (txg > last_txg) {
3862                 last_txg = txg;
3863                 page_load = 0;
3864         }
3865         /*
3866          * If we are in pageout, we know that memory is already tight,
3867          * the arc is already going to be evicting, so we just want to
3868          * continue to let page writes occur as quickly as possible.
3869          */
3870         if (curproc == pageproc) {
3871                 if (page_load > available_memory / 4)
3872                         return (SET_ERROR(ERESTART));
3873                 /* Note: reserve is inflated, so we deflate */
3874                 page_load += reserve / 8;
3875                 return (0);
3876         } else if (page_load > 0 && arc_reclaim_needed()) {
3877                 /* memory is low, delay before restarting */
3878                 ARCSTAT_INCR(arcstat_memory_throttle_count, 1);
3879                 return (SET_ERROR(EAGAIN));
3880         }
3881         page_load = 0;
3882 #endif
3883         return (0);
3884 }
3885
3886 void
3887 arc_tempreserve_clear(uint64_t reserve)
3888 {
3889         atomic_add_64(&arc_tempreserve, -reserve);
3890         ASSERT((int64_t)arc_tempreserve >= 0);
3891 }
3892
3893 int
3894 arc_tempreserve_space(uint64_t reserve, uint64_t txg)
3895 {
3896         int error;
3897         uint64_t anon_size;
3898
3899         if (reserve > arc_c/4 && !arc_no_grow)
3900                 arc_c = MIN(arc_c_max, reserve * 4);
3901         if (reserve > arc_c)
3902                 return (SET_ERROR(ENOMEM));
3903
3904         /*
3905          * Don't count loaned bufs as in flight dirty data to prevent long
3906          * network delays from blocking transactions that are ready to be
3907          * assigned to a txg.
3908          */
3909         anon_size = MAX((int64_t)(arc_anon->arcs_size - arc_loaned_bytes), 0);
3910
3911         /*
3912          * Writes will, almost always, require additional memory allocations
3913          * in order to compress/encrypt/etc the data.  We therefore need to
3914          * make sure that there is sufficient available memory for this.
3915          */
3916         error = arc_memory_throttle(reserve, txg);
3917         if (error != 0)
3918                 return (error);
3919
3920         /*
3921          * Throttle writes when the amount of dirty data in the cache
3922          * gets too large.  We try to keep the cache less than half full
3923          * of dirty blocks so that our sync times don't grow too large.
3924          * Note: if two requests come in concurrently, we might let them
3925          * both succeed, when one of them should fail.  Not a huge deal.
3926          */
3927
3928         if (reserve + arc_tempreserve + anon_size > arc_c / 2 &&
3929             anon_size > arc_c / 4) {
3930                 dprintf("failing, arc_tempreserve=%lluK anon_meta=%lluK "
3931                     "anon_data=%lluK tempreserve=%lluK arc_c=%lluK\n",
3932                     arc_tempreserve>>10,
3933                     arc_anon->arcs_lsize[ARC_BUFC_METADATA]>>10,
3934                     arc_anon->arcs_lsize[ARC_BUFC_DATA]>>10,
3935                     reserve>>10, arc_c>>10);
3936                 return (SET_ERROR(ERESTART));
3937         }
3938         atomic_add_64(&arc_tempreserve, reserve);
3939         return (0);
3940 }
3941
3942 static kmutex_t arc_lowmem_lock;
3943 #ifdef _KERNEL
3944 static eventhandler_tag arc_event_lowmem = NULL;
3945
3946 static void
3947 arc_lowmem(void *arg __unused, int howto __unused)
3948 {
3949
3950         /* Serialize access via arc_lowmem_lock. */
3951         mutex_enter(&arc_lowmem_lock);
3952         mutex_enter(&arc_reclaim_thr_lock);
3953         needfree = 1;
3954         cv_signal(&arc_reclaim_thr_cv);
3955
3956         /*
3957          * It is unsafe to block here in arbitrary threads, because we can come
3958          * here from ARC itself and may hold ARC locks and thus risk a deadlock
3959          * with ARC reclaim thread.
3960          */
3961         if (curproc == pageproc) {
3962                 while (needfree)
3963                         msleep(&needfree, &arc_reclaim_thr_lock, 0, "zfs:lowmem", 0);
3964         }
3965         mutex_exit(&arc_reclaim_thr_lock);
3966         mutex_exit(&arc_lowmem_lock);
3967 }
3968 #endif
3969
3970 void
3971 arc_init(void)
3972 {
3973         int i, prefetch_tunable_set = 0;
3974
3975         mutex_init(&arc_reclaim_thr_lock, NULL, MUTEX_DEFAULT, NULL);
3976         cv_init(&arc_reclaim_thr_cv, NULL, CV_DEFAULT, NULL);
3977         mutex_init(&arc_lowmem_lock, NULL, MUTEX_DEFAULT, NULL);
3978
3979         /* Convert seconds to clock ticks */
3980         arc_min_prefetch_lifespan = 1 * hz;
3981
3982         /* Start out with 1/8 of all memory */
3983         arc_c = kmem_size() / 8;
3984
3985 #ifdef sun
3986 #ifdef _KERNEL
3987         /*
3988          * On architectures where the physical memory can be larger
3989          * than the addressable space (intel in 32-bit mode), we may
3990          * need to limit the cache to 1/8 of VM size.
3991          */
3992         arc_c = MIN(arc_c, vmem_size(heap_arena, VMEM_ALLOC | VMEM_FREE) / 8);
3993 #endif
3994 #endif  /* sun */
3995         /* set min cache to 1/32 of all memory, or 16MB, whichever is more */
3996         arc_c_min = MAX(arc_c / 4, 64<<18);
3997         /* set max to 1/2 of all memory, or all but 1GB, whichever is more */
3998         if (arc_c * 8 >= 1<<30)
3999                 arc_c_max = (arc_c * 8) - (1<<30);
4000         else
4001                 arc_c_max = arc_c_min;
4002         arc_c_max = MAX(arc_c * 5, arc_c_max);
4003
4004 #ifdef _KERNEL
4005         /*
4006          * Allow the tunables to override our calculations if they are
4007          * reasonable (ie. over 16MB)
4008          */
4009         if (zfs_arc_max > 64<<18 && zfs_arc_max < kmem_size())
4010                 arc_c_max = zfs_arc_max;
4011         if (zfs_arc_min > 64<<18 && zfs_arc_min <= arc_c_max)
4012                 arc_c_min = zfs_arc_min;
4013 #endif
4014
4015         arc_c = arc_c_max;
4016         arc_p = (arc_c >> 1);
4017
4018         /* limit meta-data to 1/4 of the arc capacity */
4019         arc_meta_limit = arc_c_max / 4;
4020
4021         /* Allow the tunable to override if it is reasonable */
4022         if (zfs_arc_meta_limit > 0 && zfs_arc_meta_limit <= arc_c_max)
4023                 arc_meta_limit = zfs_arc_meta_limit;
4024
4025         if (arc_c_min < arc_meta_limit / 2 && zfs_arc_min == 0)
4026                 arc_c_min = arc_meta_limit / 2;
4027
4028         if (zfs_arc_grow_retry > 0)
4029                 arc_grow_retry = zfs_arc_grow_retry;
4030
4031         if (zfs_arc_shrink_shift > 0)
4032                 arc_shrink_shift = zfs_arc_shrink_shift;
4033
4034         if (zfs_arc_p_min_shift > 0)
4035                 arc_p_min_shift = zfs_arc_p_min_shift;
4036
4037         /* if kmem_flags are set, lets try to use less memory */
4038         if (kmem_debugging())
4039                 arc_c = arc_c / 2;
4040         if (arc_c < arc_c_min)
4041                 arc_c = arc_c_min;
4042
4043         zfs_arc_min = arc_c_min;
4044         zfs_arc_max = arc_c_max;
4045
4046         arc_anon = &ARC_anon;
4047         arc_mru = &ARC_mru;
4048         arc_mru_ghost = &ARC_mru_ghost;
4049         arc_mfu = &ARC_mfu;
4050         arc_mfu_ghost = &ARC_mfu_ghost;
4051         arc_l2c_only = &ARC_l2c_only;
4052         arc_size = 0;
4053
4054         for (i = 0; i < ARC_BUFC_NUMLISTS; i++) {
4055                 mutex_init(&arc_anon->arcs_locks[i].arcs_lock,
4056                     NULL, MUTEX_DEFAULT, NULL);
4057                 mutex_init(&arc_mru->arcs_locks[i].arcs_lock,
4058                     NULL, MUTEX_DEFAULT, NULL);
4059                 mutex_init(&arc_mru_ghost->arcs_locks[i].arcs_lock,
4060                     NULL, MUTEX_DEFAULT, NULL);
4061                 mutex_init(&arc_mfu->arcs_locks[i].arcs_lock,
4062                     NULL, MUTEX_DEFAULT, NULL);
4063                 mutex_init(&arc_mfu_ghost->arcs_locks[i].arcs_lock,
4064                     NULL, MUTEX_DEFAULT, NULL);
4065                 mutex_init(&arc_l2c_only->arcs_locks[i].arcs_lock,
4066                     NULL, MUTEX_DEFAULT, NULL);
4067
4068                 list_create(&arc_mru->arcs_lists[i],
4069                     sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
4070                 list_create(&arc_mru_ghost->arcs_lists[i],
4071                     sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
4072                 list_create(&arc_mfu->arcs_lists[i],
4073                     sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
4074                 list_create(&arc_mfu_ghost->arcs_lists[i],
4075                     sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
4076                 list_create(&arc_mfu_ghost->arcs_lists[i],
4077                     sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
4078                 list_create(&arc_l2c_only->arcs_lists[i],
4079                     sizeof (arc_buf_hdr_t), offsetof(arc_buf_hdr_t, b_arc_node));
4080         }
4081
4082         buf_init();
4083
4084         arc_thread_exit = 0;
4085         arc_eviction_list = NULL;
4086         mutex_init(&arc_eviction_mtx, NULL, MUTEX_DEFAULT, NULL);
4087         bzero(&arc_eviction_hdr, sizeof (arc_buf_hdr_t));
4088
4089         arc_ksp = kstat_create("zfs", 0, "arcstats", "misc", KSTAT_TYPE_NAMED,
4090             sizeof (arc_stats) / sizeof (kstat_named_t), KSTAT_FLAG_VIRTUAL);
4091
4092         if (arc_ksp != NULL) {
4093                 arc_ksp->ks_data = &arc_stats;
4094                 kstat_install(arc_ksp);
4095         }
4096
4097         (void) thread_create(NULL, 0, arc_reclaim_thread, NULL, 0, &p0,
4098             TS_RUN, minclsyspri);
4099
4100 #ifdef _KERNEL
4101         arc_event_lowmem = EVENTHANDLER_REGISTER(vm_lowmem, arc_lowmem, NULL,
4102             EVENTHANDLER_PRI_FIRST);
4103 #endif
4104
4105         arc_dead = FALSE;
4106         arc_warm = B_FALSE;
4107
4108         /*
4109          * Calculate maximum amount of dirty data per pool.
4110          *
4111          * If it has been set by /etc/system, take that.
4112          * Otherwise, use a percentage of physical memory defined by
4113          * zfs_dirty_data_max_percent (default 10%) with a cap at
4114          * zfs_dirty_data_max_max (default 4GB).
4115          */
4116         if (zfs_dirty_data_max == 0) {
4117                 zfs_dirty_data_max = ptob(physmem) *
4118                     zfs_dirty_data_max_percent / 100;
4119                 zfs_dirty_data_max = MIN(zfs_dirty_data_max,
4120                     zfs_dirty_data_max_max);
4121         }
4122
4123 #ifdef _KERNEL
4124         if (TUNABLE_INT_FETCH("vfs.zfs.prefetch_disable", &zfs_prefetch_disable))
4125                 prefetch_tunable_set = 1;
4126
4127 #ifdef __i386__
4128         if (prefetch_tunable_set == 0) {
4129                 printf("ZFS NOTICE: Prefetch is disabled by default on i386 "
4130                     "-- to enable,\n");
4131                 printf("            add \"vfs.zfs.prefetch_disable=0\" "
4132                     "to /boot/loader.conf.\n");
4133                 zfs_prefetch_disable = 1;
4134         }
4135 #else
4136         if ((((uint64_t)physmem * PAGESIZE) < (1ULL << 32)) &&
4137             prefetch_tunable_set == 0) {
4138                 printf("ZFS NOTICE: Prefetch is disabled by default if less "
4139                     "than 4GB of RAM is present;\n"
4140                     "            to enable, add \"vfs.zfs.prefetch_disable=0\" "
4141                     "to /boot/loader.conf.\n");
4142                 zfs_prefetch_disable = 1;
4143         }
4144 #endif
4145         /* Warn about ZFS memory and address space requirements. */
4146         if (((uint64_t)physmem * PAGESIZE) < (256 + 128 + 64) * (1 << 20)) {
4147                 printf("ZFS WARNING: Recommended minimum RAM size is 512MB; "
4148                     "expect unstable behavior.\n");
4149         }
4150         if (kmem_size() < 512 * (1 << 20)) {
4151                 printf("ZFS WARNING: Recommended minimum kmem_size is 512MB; "
4152                     "expect unstable behavior.\n");
4153                 printf("             Consider tuning vm.kmem_size and "
4154                     "vm.kmem_size_max\n");
4155                 printf("             in /boot/loader.conf.\n");
4156         }
4157 #endif
4158 }
4159
4160 void
4161 arc_fini(void)
4162 {
4163         int i;
4164
4165         mutex_enter(&arc_reclaim_thr_lock);
4166         arc_thread_exit = 1;
4167         cv_signal(&arc_reclaim_thr_cv);
4168         while (arc_thread_exit != 0)
4169                 cv_wait(&arc_reclaim_thr_cv, &arc_reclaim_thr_lock);
4170         mutex_exit(&arc_reclaim_thr_lock);
4171
4172         arc_flush(NULL);
4173
4174         arc_dead = TRUE;
4175
4176         if (arc_ksp != NULL) {
4177                 kstat_delete(arc_ksp);
4178                 arc_ksp = NULL;
4179         }
4180
4181         mutex_destroy(&arc_eviction_mtx);
4182         mutex_destroy(&arc_reclaim_thr_lock);
4183         cv_destroy(&arc_reclaim_thr_cv);
4184
4185         for (i = 0; i < ARC_BUFC_NUMLISTS; i++) {
4186                 list_destroy(&arc_mru->arcs_lists[i]);
4187                 list_destroy(&arc_mru_ghost->arcs_lists[i]);
4188                 list_destroy(&arc_mfu->arcs_lists[i]);
4189                 list_destroy(&arc_mfu_ghost->arcs_lists[i]);
4190                 list_destroy(&arc_l2c_only->arcs_lists[i]);
4191
4192                 mutex_destroy(&arc_anon->arcs_locks[i].arcs_lock);
4193                 mutex_destroy(&arc_mru->arcs_locks[i].arcs_lock);
4194                 mutex_destroy(&arc_mru_ghost->arcs_locks[i].arcs_lock);
4195                 mutex_destroy(&arc_mfu->arcs_locks[i].arcs_lock);
4196                 mutex_destroy(&arc_mfu_ghost->arcs_locks[i].arcs_lock);
4197                 mutex_destroy(&arc_l2c_only->arcs_locks[i].arcs_lock);
4198         }
4199
4200         buf_fini();
4201
4202         ASSERT(arc_loaned_bytes == 0);
4203
4204         mutex_destroy(&arc_lowmem_lock);
4205 #ifdef _KERNEL
4206         if (arc_event_lowmem != NULL)
4207                 EVENTHANDLER_DEREGISTER(vm_lowmem, arc_event_lowmem);
4208 #endif
4209 }
4210
4211 /*
4212  * Level 2 ARC
4213  *
4214  * The level 2 ARC (L2ARC) is a cache layer in-between main memory and disk.
4215  * It uses dedicated storage devices to hold cached data, which are populated
4216  * using large infrequent writes.  The main role of this cache is to boost
4217  * the performance of random read workloads.  The intended L2ARC devices
4218  * include short-stroked disks, solid state disks, and other media with
4219  * substantially faster read latency than disk.
4220  *
4221  *                 +-----------------------+
4222  *                 |         ARC           |
4223  *                 +-----------------------+
4224  *                    |         ^     ^
4225  *                    |         |     |
4226  *      l2arc_feed_thread()    arc_read()
4227  *                    |         |     |
4228  *                    |  l2arc read   |
4229  *                    V         |     |
4230  *               +---------------+    |
4231  *               |     L2ARC     |    |
4232  *               +---------------+    |
4233  *                   |    ^           |
4234  *          l2arc_write() |           |
4235  *                   |    |           |
4236  *                   V    |           |
4237  *                 +-------+      +-------+
4238  *                 | vdev  |      | vdev  |
4239  *                 | cache |      | cache |
4240  *                 +-------+      +-------+
4241  *                 +=========+     .-----.
4242  *                 :  L2ARC  :    |-_____-|
4243  *                 : devices :    | Disks |
4244  *                 +=========+    `-_____-'
4245  *
4246  * Read requests are satisfied from the following sources, in order:
4247  *
4248  *      1) ARC
4249  *      2) vdev cache of L2ARC devices
4250  *      3) L2ARC devices
4251  *      4) vdev cache of disks
4252  *      5) disks
4253  *
4254  * Some L2ARC device types exhibit extremely slow write performance.
4255  * To accommodate for this there are some significant differences between
4256  * the L2ARC and traditional cache design:
4257  *
4258  * 1. There is no eviction path from the ARC to the L2ARC.  Evictions from
4259  * the ARC behave as usual, freeing buffers and placing headers on ghost
4260  * lists.  The ARC does not send buffers to the L2ARC during eviction as
4261  * this would add inflated write latencies for all ARC memory pressure.
4262  *
4263  * 2. The L2ARC attempts to cache data from the ARC before it is evicted.
4264  * It does this by periodically scanning buffers from the eviction-end of
4265  * the MFU and MRU ARC lists, copying them to the L2ARC devices if they are
4266  * not already there. It scans until a headroom of buffers is satisfied,
4267  * which itself is a buffer for ARC eviction. If a compressible buffer is
4268  * found during scanning and selected for writing to an L2ARC device, we
4269  * temporarily boost scanning headroom during the next scan cycle to make
4270  * sure we adapt to compression effects (which might significantly reduce
4271  * the data volume we write to L2ARC). The thread that does this is
4272  * l2arc_feed_thread(), illustrated below; example sizes are included to
4273  * provide a better sense of ratio than this diagram:
4274  *
4275  *             head -->                        tail
4276  *              +---------------------+----------+
4277  *      ARC_mfu |:::::#:::::::::::::::|o#o###o###|-->.   # already on L2ARC
4278  *              +---------------------+----------+   |   o L2ARC eligible
4279  *      ARC_mru |:#:::::::::::::::::::|#o#ooo####|-->|   : ARC buffer
4280  *              +---------------------+----------+   |
4281  *                   15.9 Gbytes      ^ 32 Mbytes    |
4282  *                                 headroom          |
4283  *                                            l2arc_feed_thread()
4284  *                                                   |
4285  *                       l2arc write hand <--[oooo]--'
4286  *                               |           8 Mbyte
4287  *                               |          write max
4288  *                               V
4289  *                +==============================+
4290  *      L2ARC dev |####|#|###|###|    |####| ... |
4291  *                +==============================+
4292  *                           32 Gbytes
4293  *
4294  * 3. If an ARC buffer is copied to the L2ARC but then hit instead of
4295  * evicted, then the L2ARC has cached a buffer much sooner than it probably
4296  * needed to, potentially wasting L2ARC device bandwidth and storage.  It is
4297  * safe to say that this is an uncommon case, since buffers at the end of
4298  * the ARC lists have moved there due to inactivity.
4299  *
4300  * 4. If the ARC evicts faster than the L2ARC can maintain a headroom,
4301  * then the L2ARC simply misses copying some buffers.  This serves as a
4302  * pressure valve to prevent heavy read workloads from both stalling the ARC
4303  * with waits and clogging the L2ARC with writes.  This also helps prevent
4304  * the potential for the L2ARC to churn if it attempts to cache content too
4305  * quickly, such as during backups of the entire pool.
4306  *
4307  * 5. After system boot and before the ARC has filled main memory, there are
4308  * no evictions from the ARC and so the tails of the ARC_mfu and ARC_mru
4309  * lists can remain mostly static.  Instead of searching from tail of these
4310  * lists as pictured, the l2arc_feed_thread() will search from the list heads
4311  * for eligible buffers, greatly increasing its chance of finding them.
4312  *
4313  * The L2ARC device write speed is also boosted during this time so that
4314  * the L2ARC warms up faster.  Since there have been no ARC evictions yet,
4315  * there are no L2ARC reads, and no fear of degrading read performance
4316  * through increased writes.
4317  *
4318  * 6. Writes to the L2ARC devices are grouped and sent in-sequence, so that
4319  * the vdev queue can aggregate them into larger and fewer writes.  Each
4320  * device is written to in a rotor fashion, sweeping writes through
4321  * available space then repeating.
4322  *
4323  * 7. The L2ARC does not store dirty content.  It never needs to flush
4324  * write buffers back to disk based storage.
4325  *
4326  * 8. If an ARC buffer is written (and dirtied) which also exists in the
4327  * L2ARC, the now stale L2ARC buffer is immediately dropped.
4328  *
4329  * The performance of the L2ARC can be tweaked by a number of tunables, which
4330  * may be necessary for different workloads:
4331  *
4332  *      l2arc_write_max         max write bytes per interval
4333  *      l2arc_write_boost       extra write bytes during device warmup
4334  *      l2arc_noprefetch        skip caching prefetched buffers
4335  *      l2arc_headroom          number of max device writes to precache
4336  *      l2arc_headroom_boost    when we find compressed buffers during ARC
4337  *                              scanning, we multiply headroom by this
4338  *                              percentage factor for the next scan cycle,
4339  *                              since more compressed buffers are likely to
4340  *                              be present
4341  *      l2arc_feed_secs         seconds between L2ARC writing
4342  *
4343  * Tunables may be removed or added as future performance improvements are
4344  * integrated, and also may become zpool properties.
4345  *
4346  * There are three key functions that control how the L2ARC warms up:
4347  *
4348  *      l2arc_write_eligible()  check if a buffer is eligible to cache
4349  *      l2arc_write_size()      calculate how much to write
4350  *      l2arc_write_interval()  calculate sleep delay between writes
4351  *
4352  * These three functions determine what to write, how much, and how quickly
4353  * to send writes.
4354  */
4355
4356 static boolean_t
4357 l2arc_write_eligible(uint64_t spa_guid, arc_buf_hdr_t *ab)
4358 {
4359         /*
4360          * A buffer is *not* eligible for the L2ARC if it:
4361          * 1. belongs to a different spa.
4362          * 2. is already cached on the L2ARC.
4363          * 3. has an I/O in progress (it may be an incomplete read).
4364          * 4. is flagged not eligible (zfs property).
4365          */
4366         if (ab->b_spa != spa_guid) {
4367                 ARCSTAT_BUMP(arcstat_l2_write_spa_mismatch);
4368                 return (B_FALSE);
4369         }
4370         if (ab->b_l2hdr != NULL) {
4371                 ARCSTAT_BUMP(arcstat_l2_write_in_l2);
4372                 return (B_FALSE);
4373         }
4374         if (HDR_IO_IN_PROGRESS(ab)) {
4375                 ARCSTAT_BUMP(arcstat_l2_write_hdr_io_in_progress);
4376                 return (B_FALSE);
4377         }
4378         if (!HDR_L2CACHE(ab)) {
4379                 ARCSTAT_BUMP(arcstat_l2_write_not_cacheable);
4380                 return (B_FALSE);
4381         }
4382
4383         return (B_TRUE);
4384 }
4385
4386 static uint64_t
4387 l2arc_write_size(void)
4388 {
4389         uint64_t size;
4390
4391         /*
4392          * Make sure our globals have meaningful values in case the user
4393          * altered them.
4394          */
4395         size = l2arc_write_max;
4396         if (size == 0) {
4397                 cmn_err(CE_NOTE, "Bad value for l2arc_write_max, value must "
4398                     "be greater than zero, resetting it to the default (%d)",
4399                     L2ARC_WRITE_SIZE);
4400                 size = l2arc_write_max = L2ARC_WRITE_SIZE;
4401         }
4402
4403         if (arc_warm == B_FALSE)
4404                 size += l2arc_write_boost;
4405
4406         return (size);
4407
4408 }
4409
4410 static clock_t
4411 l2arc_write_interval(clock_t began, uint64_t wanted, uint64_t wrote)
4412 {
4413         clock_t interval, next, now;
4414
4415         /*
4416          * If the ARC lists are busy, increase our write rate; if the
4417          * lists are stale, idle back.  This is achieved by checking
4418          * how much we previously wrote - if it was more than half of
4419          * what we wanted, schedule the next write much sooner.
4420          */
4421         if (l2arc_feed_again && wrote > (wanted / 2))
4422                 interval = (hz * l2arc_feed_min_ms) / 1000;
4423         else
4424                 interval = hz * l2arc_feed_secs;
4425
4426         now = ddi_get_lbolt();
4427         next = MAX(now, MIN(now + interval, began + interval));
4428
4429         return (next);
4430 }
4431
4432 static void
4433 l2arc_hdr_stat_add(void)
4434 {
4435         ARCSTAT_INCR(arcstat_l2_hdr_size, HDR_SIZE + L2HDR_SIZE);
4436         ARCSTAT_INCR(arcstat_hdr_size, -HDR_SIZE);
4437 }
4438
4439 static void
4440 l2arc_hdr_stat_remove(void)
4441 {
4442         ARCSTAT_INCR(arcstat_l2_hdr_size, -(HDR_SIZE + L2HDR_SIZE));
4443         ARCSTAT_INCR(arcstat_hdr_size, HDR_SIZE);
4444 }
4445
4446 /*
4447  * Cycle through L2ARC devices.  This is how L2ARC load balances.
4448  * If a device is returned, this also returns holding the spa config lock.
4449  */
4450 static l2arc_dev_t *
4451 l2arc_dev_get_next(void)
4452 {
4453         l2arc_dev_t *first, *next = NULL;
4454
4455         /*
4456          * Lock out the removal of spas (spa_namespace_lock), then removal
4457          * of cache devices (l2arc_dev_mtx).  Once a device has been selected,
4458          * both locks will be dropped and a spa config lock held instead.
4459          */
4460         mutex_enter(&spa_namespace_lock);
4461         mutex_enter(&l2arc_dev_mtx);
4462
4463         /* if there are no vdevs, there is nothing to do */
4464         if (l2arc_ndev == 0)
4465                 goto out;
4466
4467         first = NULL;
4468         next = l2arc_dev_last;
4469         do {
4470                 /* loop around the list looking for a non-faulted vdev */
4471                 if (next == NULL) {
4472                         next = list_head(l2arc_dev_list);
4473                 } else {
4474                         next = list_next(l2arc_dev_list, next);
4475                         if (next == NULL)
4476                                 next = list_head(l2arc_dev_list);
4477                 }
4478
4479                 /* if we have come back to the start, bail out */
4480                 if (first == NULL)
4481                         first = next;
4482                 else if (next == first)
4483                         break;
4484
4485         } while (vdev_is_dead(next->l2ad_vdev));
4486
4487         /* if we were unable to find any usable vdevs, return NULL */
4488         if (vdev_is_dead(next->l2ad_vdev))
4489                 next = NULL;
4490
4491         l2arc_dev_last = next;
4492
4493 out:
4494         mutex_exit(&l2arc_dev_mtx);
4495
4496         /*
4497          * Grab the config lock to prevent the 'next' device from being
4498          * removed while we are writing to it.
4499          */
4500         if (next != NULL)
4501                 spa_config_enter(next->l2ad_spa, SCL_L2ARC, next, RW_READER);
4502         mutex_exit(&spa_namespace_lock);
4503
4504         return (next);
4505 }
4506
4507 /*
4508  * Free buffers that were tagged for destruction.
4509  */
4510 static void
4511 l2arc_do_free_on_write()
4512 {
4513         list_t *buflist;
4514         l2arc_data_free_t *df, *df_prev;
4515
4516         mutex_enter(&l2arc_free_on_write_mtx);
4517         buflist = l2arc_free_on_write;
4518
4519         for (df = list_tail(buflist); df; df = df_prev) {
4520                 df_prev = list_prev(buflist, df);
4521                 ASSERT(df->l2df_data != NULL);
4522                 ASSERT(df->l2df_func != NULL);
4523                 df->l2df_func(df->l2df_data, df->l2df_size);
4524                 list_remove(buflist, df);
4525                 kmem_free(df, sizeof (l2arc_data_free_t));
4526         }
4527
4528         mutex_exit(&l2arc_free_on_write_mtx);
4529 }
4530
4531 /*
4532  * A write to a cache device has completed.  Update all headers to allow
4533  * reads from these buffers to begin.
4534  */
4535 static void
4536 l2arc_write_done(zio_t *zio)
4537 {
4538         l2arc_write_callback_t *cb;
4539         l2arc_dev_t *dev;
4540         list_t *buflist;
4541         arc_buf_hdr_t *head, *ab, *ab_prev;
4542         l2arc_buf_hdr_t *abl2;
4543         kmutex_t *hash_lock;
4544
4545         cb = zio->io_private;
4546         ASSERT(cb != NULL);
4547         dev = cb->l2wcb_dev;
4548         ASSERT(dev != NULL);
4549         head = cb->l2wcb_head;
4550         ASSERT(head != NULL);
4551         buflist = dev->l2ad_buflist;
4552         ASSERT(buflist != NULL);
4553         DTRACE_PROBE2(l2arc__iodone, zio_t *, zio,
4554             l2arc_write_callback_t *, cb);
4555
4556         if (zio->io_error != 0)
4557                 ARCSTAT_BUMP(arcstat_l2_writes_error);
4558
4559         mutex_enter(&l2arc_buflist_mtx);
4560
4561         /*
4562          * All writes completed, or an error was hit.
4563          */
4564         for (ab = list_prev(buflist, head); ab; ab = ab_prev) {
4565                 ab_prev = list_prev(buflist, ab);
4566
4567                 hash_lock = HDR_LOCK(ab);
4568                 if (!mutex_tryenter(hash_lock)) {
4569                         /*
4570                          * This buffer misses out.  It may be in a stage
4571                          * of eviction.  Its ARC_L2_WRITING flag will be
4572                          * left set, denying reads to this buffer.
4573                          */
4574                         ARCSTAT_BUMP(arcstat_l2_writes_hdr_miss);
4575                         continue;
4576                 }
4577
4578                 abl2 = ab->b_l2hdr;
4579
4580                 /*
4581                  * Release the temporary compressed buffer as soon as possible.
4582                  */
4583                 if (abl2->b_compress != ZIO_COMPRESS_OFF)
4584                         l2arc_release_cdata_buf(ab);
4585
4586                 if (zio->io_error != 0) {
4587                         /*
4588                          * Error - drop L2ARC entry.
4589                          */
4590                         list_remove(buflist, ab);
4591                         ARCSTAT_INCR(arcstat_l2_asize, -abl2->b_asize);
4592                         ab->b_l2hdr = NULL;
4593                         trim_map_free(abl2->b_dev->l2ad_vdev, abl2->b_daddr,
4594                             ab->b_size, 0);
4595                         kmem_free(abl2, sizeof (l2arc_buf_hdr_t));
4596                         ARCSTAT_INCR(arcstat_l2_size, -ab->b_size);
4597                 }
4598
4599                 /*
4600                  * Allow ARC to begin reads to this L2ARC entry.
4601                  */
4602                 ab->b_flags &= ~ARC_L2_WRITING;
4603
4604                 mutex_exit(hash_lock);
4605         }
4606
4607         atomic_inc_64(&l2arc_writes_done);
4608         list_remove(buflist, head);
4609         kmem_cache_free(hdr_cache, head);
4610         mutex_exit(&l2arc_buflist_mtx);
4611
4612         l2arc_do_free_on_write();
4613
4614         kmem_free(cb, sizeof (l2arc_write_callback_t));
4615 }
4616
4617 /*
4618  * A read to a cache device completed.  Validate buffer contents before
4619  * handing over to the regular ARC routines.
4620  */
4621 static void
4622 l2arc_read_done(zio_t *zio)
4623 {
4624         l2arc_read_callback_t *cb;
4625         arc_buf_hdr_t *hdr;
4626         arc_buf_t *buf;
4627         kmutex_t *hash_lock;
4628         int equal;
4629
4630         ASSERT(zio->io_vd != NULL);
4631         ASSERT(zio->io_flags & ZIO_FLAG_DONT_PROPAGATE);
4632
4633         spa_config_exit(zio->io_spa, SCL_L2ARC, zio->io_vd);
4634
4635         cb = zio->io_private;
4636         ASSERT(cb != NULL);
4637         buf = cb->l2rcb_buf;
4638         ASSERT(buf != NULL);
4639
4640         hash_lock = HDR_LOCK(buf->b_hdr);
4641         mutex_enter(hash_lock);
4642         hdr = buf->b_hdr;
4643         ASSERT3P(hash_lock, ==, HDR_LOCK(hdr));
4644
4645         /*
4646          * If the buffer was compressed, decompress it first.
4647          */
4648         if (cb->l2rcb_compress != ZIO_COMPRESS_OFF)
4649                 l2arc_decompress_zio(zio, hdr, cb->l2rcb_compress);
4650         ASSERT(zio->io_data != NULL);
4651
4652         /*
4653          * Check this survived the L2ARC journey.
4654          */
4655         equal = arc_cksum_equal(buf);
4656         if (equal && zio->io_error == 0 && !HDR_L2_EVICTED(hdr)) {
4657                 mutex_exit(hash_lock);
4658                 zio->io_private = buf;
4659                 zio->io_bp_copy = cb->l2rcb_bp; /* XXX fix in L2ARC 2.0 */
4660                 zio->io_bp = &zio->io_bp_copy;  /* XXX fix in L2ARC 2.0 */
4661                 arc_read_done(zio);
4662         } else {
4663                 mutex_exit(hash_lock);
4664                 /*
4665                  * Buffer didn't survive caching.  Increment stats and
4666                  * reissue to the original storage device.
4667                  */
4668                 if (zio->io_error != 0) {
4669                         ARCSTAT_BUMP(arcstat_l2_io_error);
4670                 } else {
4671                         zio->io_error = SET_ERROR(EIO);
4672                 }
4673                 if (!equal)
4674                         ARCSTAT_BUMP(arcstat_l2_cksum_bad);
4675
4676                 /*
4677                  * If there's no waiter, issue an async i/o to the primary
4678                  * storage now.  If there *is* a waiter, the caller must
4679                  * issue the i/o in a context where it's OK to block.
4680                  */
4681                 if (zio->io_waiter == NULL) {
4682                         zio_t *pio = zio_unique_parent(zio);
4683
4684                         ASSERT(!pio || pio->io_child_type == ZIO_CHILD_LOGICAL);
4685
4686                         zio_nowait(zio_read(pio, cb->l2rcb_spa, &cb->l2rcb_bp,
4687                             buf->b_data, zio->io_size, arc_read_done, buf,
4688                             zio->io_priority, cb->l2rcb_flags, &cb->l2rcb_zb));
4689                 }
4690         }
4691
4692         kmem_free(cb, sizeof (l2arc_read_callback_t));
4693 }
4694
4695 /*
4696  * This is the list priority from which the L2ARC will search for pages to
4697  * cache.  This is used within loops (0..3) to cycle through lists in the
4698  * desired order.  This order can have a significant effect on cache
4699  * performance.
4700  *
4701  * Currently the metadata lists are hit first, MFU then MRU, followed by
4702  * the data lists.  This function returns a locked list, and also returns
4703  * the lock pointer.
4704  */
4705 static list_t *
4706 l2arc_list_locked(int list_num, kmutex_t **lock)
4707 {
4708         list_t *list = NULL;
4709         int idx;
4710
4711         ASSERT(list_num >= 0 && list_num < 2 * ARC_BUFC_NUMLISTS);
4712
4713         if (list_num < ARC_BUFC_NUMMETADATALISTS) {
4714                 idx = list_num;
4715                 list = &arc_mfu->arcs_lists[idx];
4716                 *lock = ARCS_LOCK(arc_mfu, idx);
4717         } else if (list_num < ARC_BUFC_NUMMETADATALISTS * 2) {
4718                 idx = list_num - ARC_BUFC_NUMMETADATALISTS;
4719                 list = &arc_mru->arcs_lists[idx];
4720                 *lock = ARCS_LOCK(arc_mru, idx);
4721         } else if (list_num < (ARC_BUFC_NUMMETADATALISTS * 2 +
4722                 ARC_BUFC_NUMDATALISTS)) {
4723                 idx = list_num - ARC_BUFC_NUMMETADATALISTS;
4724                 list = &arc_mfu->arcs_lists[idx];
4725                 *lock = ARCS_LOCK(arc_mfu, idx);
4726         } else {
4727                 idx = list_num - ARC_BUFC_NUMLISTS;
4728                 list = &arc_mru->arcs_lists[idx];
4729                 *lock = ARCS_LOCK(arc_mru, idx);
4730         }
4731
4732         ASSERT(!(MUTEX_HELD(*lock)));
4733         mutex_enter(*lock);
4734         return (list);
4735 }
4736
4737 /*
4738  * Evict buffers from the device write hand to the distance specified in
4739  * bytes.  This distance may span populated buffers, it may span nothing.
4740  * This is clearing a region on the L2ARC device ready for writing.
4741  * If the 'all' boolean is set, every buffer is evicted.
4742  */
4743 static void
4744 l2arc_evict(l2arc_dev_t *dev, uint64_t distance, boolean_t all)
4745 {
4746         list_t *buflist;
4747         l2arc_buf_hdr_t *abl2;
4748         arc_buf_hdr_t *ab, *ab_prev;
4749         kmutex_t *hash_lock;
4750         uint64_t taddr;
4751
4752         buflist = dev->l2ad_buflist;
4753
4754         if (buflist == NULL)
4755                 return;
4756
4757         if (!all && dev->l2ad_first) {
4758                 /*
4759                  * This is the first sweep through the device.  There is
4760                  * nothing to evict.
4761                  */
4762                 return;
4763         }
4764
4765         if (dev->l2ad_hand >= (dev->l2ad_end - (2 * distance))) {
4766                 /*
4767                  * When nearing the end of the device, evict to the end
4768                  * before the device write hand jumps to the start.
4769                  */
4770                 taddr = dev->l2ad_end;
4771         } else {
4772                 taddr = dev->l2ad_hand + distance;
4773         }
4774         DTRACE_PROBE4(l2arc__evict, l2arc_dev_t *, dev, list_t *, buflist,
4775             uint64_t, taddr, boolean_t, all);
4776
4777 top:
4778         mutex_enter(&l2arc_buflist_mtx);
4779         for (ab = list_tail(buflist); ab; ab = ab_prev) {
4780                 ab_prev = list_prev(buflist, ab);
4781
4782                 hash_lock = HDR_LOCK(ab);
4783                 if (!mutex_tryenter(hash_lock)) {
4784                         /*
4785                          * Missed the hash lock.  Retry.
4786                          */
4787                         ARCSTAT_BUMP(arcstat_l2_evict_lock_retry);
4788                         mutex_exit(&l2arc_buflist_mtx);
4789                         mutex_enter(hash_lock);
4790                         mutex_exit(hash_lock);
4791                         goto top;
4792                 }
4793
4794                 if (HDR_L2_WRITE_HEAD(ab)) {
4795                         /*
4796                          * We hit a write head node.  Leave it for
4797                          * l2arc_write_done().
4798                          */
4799                         list_remove(buflist, ab);
4800                         mutex_exit(hash_lock);
4801                         continue;
4802                 }
4803
4804                 if (!all && ab->b_l2hdr != NULL &&
4805                     (ab->b_l2hdr->b_daddr > taddr ||
4806                     ab->b_l2hdr->b_daddr < dev->l2ad_hand)) {
4807                         /*
4808                          * We've evicted to the target address,
4809                          * or the end of the device.
4810                          */
4811                         mutex_exit(hash_lock);
4812                         break;
4813                 }
4814
4815                 if (HDR_FREE_IN_PROGRESS(ab)) {
4816                         /*
4817                          * Already on the path to destruction.
4818                          */
4819                         mutex_exit(hash_lock);
4820                         continue;
4821                 }
4822
4823                 if (ab->b_state == arc_l2c_only) {
4824                         ASSERT(!HDR_L2_READING(ab));
4825                         /*
4826                          * This doesn't exist in the ARC.  Destroy.
4827                          * arc_hdr_destroy() will call list_remove()
4828                          * and decrement arcstat_l2_size.
4829                          */
4830                         arc_change_state(arc_anon, ab, hash_lock);
4831                         arc_hdr_destroy(ab);
4832                 } else {
4833                         /*
4834                          * Invalidate issued or about to be issued
4835                          * reads, since we may be about to write
4836                          * over this location.
4837                          */
4838                         if (HDR_L2_READING(ab)) {
4839                                 ARCSTAT_BUMP(arcstat_l2_evict_reading);
4840                                 ab->b_flags |= ARC_L2_EVICTED;
4841                         }
4842
4843                         /*
4844                          * Tell ARC this no longer exists in L2ARC.
4845                          */
4846                         if (ab->b_l2hdr != NULL) {
4847                                 abl2 = ab->b_l2hdr;
4848                                 ARCSTAT_INCR(arcstat_l2_asize, -abl2->b_asize);
4849                                 ab->b_l2hdr = NULL;
4850                                 kmem_free(abl2, sizeof (l2arc_buf_hdr_t));
4851                                 ARCSTAT_INCR(arcstat_l2_size, -ab->b_size);
4852                         }
4853                         list_remove(buflist, ab);
4854
4855                         /*
4856                          * This may have been leftover after a
4857                          * failed write.
4858                          */
4859                         ab->b_flags &= ~ARC_L2_WRITING;
4860                 }
4861                 mutex_exit(hash_lock);
4862         }
4863         mutex_exit(&l2arc_buflist_mtx);
4864
4865         vdev_space_update(dev->l2ad_vdev, -(taddr - dev->l2ad_evict), 0, 0);
4866         dev->l2ad_evict = taddr;
4867 }
4868
4869 /*
4870  * Find and write ARC buffers to the L2ARC device.
4871  *
4872  * An ARC_L2_WRITING flag is set so that the L2ARC buffers are not valid
4873  * for reading until they have completed writing.
4874  * The headroom_boost is an in-out parameter used to maintain headroom boost
4875  * state between calls to this function.
4876  *
4877  * Returns the number of bytes actually written (which may be smaller than
4878  * the delta by which the device hand has changed due to alignment).
4879  */
4880 static uint64_t
4881 l2arc_write_buffers(spa_t *spa, l2arc_dev_t *dev, uint64_t target_sz,
4882     boolean_t *headroom_boost)
4883 {
4884         arc_buf_hdr_t *ab, *ab_prev, *head;
4885         list_t *list;
4886         uint64_t write_asize, write_psize, write_sz, headroom,
4887             buf_compress_minsz;
4888         void *buf_data;
4889         kmutex_t *list_lock;
4890         boolean_t full;
4891         l2arc_write_callback_t *cb;
4892         zio_t *pio, *wzio;
4893         uint64_t guid = spa_load_guid(spa);
4894         const boolean_t do_headroom_boost = *headroom_boost;
4895         int try;
4896
4897         ASSERT(dev->l2ad_vdev != NULL);
4898
4899         /* Lower the flag now, we might want to raise it again later. */
4900         *headroom_boost = B_FALSE;
4901
4902         pio = NULL;
4903         write_sz = write_asize = write_psize = 0;
4904         full = B_FALSE;
4905         head = kmem_cache_alloc(hdr_cache, KM_PUSHPAGE);
4906         head->b_flags |= ARC_L2_WRITE_HEAD;
4907
4908         ARCSTAT_BUMP(arcstat_l2_write_buffer_iter);
4909         /*
4910          * We will want to try to compress buffers that are at least 2x the
4911          * device sector size.
4912          */
4913         buf_compress_minsz = 2 << dev->l2ad_vdev->vdev_ashift;
4914
4915         /*
4916          * Copy buffers for L2ARC writing.
4917          */
4918         mutex_enter(&l2arc_buflist_mtx);
4919         for (try = 0; try < 2 * ARC_BUFC_NUMLISTS; try++) {
4920                 uint64_t passed_sz = 0;
4921
4922                 list = l2arc_list_locked(try, &list_lock);
4923                 ARCSTAT_BUMP(arcstat_l2_write_buffer_list_iter);
4924
4925                 /*
4926                  * L2ARC fast warmup.
4927                  *
4928                  * Until the ARC is warm and starts to evict, read from the
4929                  * head of the ARC lists rather than the tail.
4930                  */
4931                 if (arc_warm == B_FALSE)
4932                         ab = list_head(list);
4933                 else
4934                         ab = list_tail(list);
4935                 if (ab == NULL)
4936                         ARCSTAT_BUMP(arcstat_l2_write_buffer_list_null_iter);
4937
4938                 headroom = target_sz * l2arc_headroom;
4939                 if (do_headroom_boost)
4940                         headroom = (headroom * l2arc_headroom_boost) / 100;
4941
4942                 for (; ab; ab = ab_prev) {
4943                         l2arc_buf_hdr_t *l2hdr;
4944                         kmutex_t *hash_lock;
4945                         uint64_t buf_sz;
4946
4947                         if (arc_warm == B_FALSE)
4948                                 ab_prev = list_next(list, ab);
4949                         else
4950                                 ab_prev = list_prev(list, ab);
4951                         ARCSTAT_INCR(arcstat_l2_write_buffer_bytes_scanned, ab->b_size);
4952
4953                         hash_lock = HDR_LOCK(ab);
4954                         if (!mutex_tryenter(hash_lock)) {
4955                                 ARCSTAT_BUMP(arcstat_l2_write_trylock_fail);
4956                                 /*
4957                                  * Skip this buffer rather than waiting.
4958                                  */
4959                                 continue;
4960                         }
4961
4962                         passed_sz += ab->b_size;
4963                         if (passed_sz > headroom) {
4964                                 /*
4965                                  * Searched too far.
4966                                  */
4967                                 mutex_exit(hash_lock);
4968                                 ARCSTAT_BUMP(arcstat_l2_write_passed_headroom);
4969                                 break;
4970                         }
4971
4972                         if (!l2arc_write_eligible(guid, ab)) {
4973                                 mutex_exit(hash_lock);
4974                                 continue;
4975                         }
4976
4977                         if ((write_sz + ab->b_size) > target_sz) {
4978                                 full = B_TRUE;
4979                                 mutex_exit(hash_lock);
4980                                 ARCSTAT_BUMP(arcstat_l2_write_full);
4981                                 break;
4982                         }
4983
4984                         if (pio == NULL) {
4985                                 /*
4986                                  * Insert a dummy header on the buflist so
4987                                  * l2arc_write_done() can find where the
4988                                  * write buffers begin without searching.
4989                                  */
4990                                 list_insert_head(dev->l2ad_buflist, head);
4991
4992                                 cb = kmem_alloc(
4993                                     sizeof (l2arc_write_callback_t), KM_SLEEP);
4994                                 cb->l2wcb_dev = dev;
4995                                 cb->l2wcb_head = head;
4996                                 pio = zio_root(spa, l2arc_write_done, cb,
4997                                     ZIO_FLAG_CANFAIL);
4998                                 ARCSTAT_BUMP(arcstat_l2_write_pios);
4999                         }
5000
5001                         /*
5002                          * Create and add a new L2ARC header.
5003                          */
5004                         l2hdr = kmem_zalloc(sizeof (l2arc_buf_hdr_t), KM_SLEEP);
5005                         l2hdr->b_dev = dev;
5006                         ab->b_flags |= ARC_L2_WRITING;
5007
5008                         /*
5009                          * Temporarily stash the data buffer in b_tmp_cdata.
5010                          * The subsequent write step will pick it up from
5011                          * there. This is because can't access ab->b_buf
5012                          * without holding the hash_lock, which we in turn
5013                          * can't access without holding the ARC list locks
5014                          * (which we want to avoid during compression/writing).
5015                          */
5016                         l2hdr->b_compress = ZIO_COMPRESS_OFF;
5017                         l2hdr->b_asize = ab->b_size;
5018                         l2hdr->b_tmp_cdata = ab->b_buf->b_data;
5019
5020                         buf_sz = ab->b_size;
5021                         ab->b_l2hdr = l2hdr;
5022
5023                         list_insert_head(dev->l2ad_buflist, ab);
5024
5025                         /*
5026                          * Compute and store the buffer cksum before
5027                          * writing.  On debug the cksum is verified first.
5028                          */
5029                         arc_cksum_verify(ab->b_buf);
5030                         arc_cksum_compute(ab->b_buf, B_TRUE);
5031
5032                         mutex_exit(hash_lock);
5033
5034                         write_sz += buf_sz;
5035                 }
5036
5037                 mutex_exit(list_lock);
5038
5039                 if (full == B_TRUE)
5040                         break;
5041         }
5042
5043         /* No buffers selected for writing? */
5044         if (pio == NULL) {
5045                 ASSERT0(write_sz);
5046                 mutex_exit(&l2arc_buflist_mtx);
5047                 kmem_cache_free(hdr_cache, head);
5048                 return (0);
5049         }
5050
5051         /*
5052          * Now start writing the buffers. We're starting at the write head
5053          * and work backwards, retracing the course of the buffer selector
5054          * loop above.
5055          */
5056         for (ab = list_prev(dev->l2ad_buflist, head); ab;
5057             ab = list_prev(dev->l2ad_buflist, ab)) {
5058                 l2arc_buf_hdr_t *l2hdr;
5059                 uint64_t buf_sz;
5060
5061                 /*
5062                  * We shouldn't need to lock the buffer here, since we flagged
5063                  * it as ARC_L2_WRITING in the previous step, but we must take
5064                  * care to only access its L2 cache parameters. In particular,
5065                  * ab->b_buf may be invalid by now due to ARC eviction.
5066                  */
5067                 l2hdr = ab->b_l2hdr;
5068                 l2hdr->b_daddr = dev->l2ad_hand;
5069
5070                 if ((ab->b_flags & ARC_L2COMPRESS) &&
5071                     l2hdr->b_asize >= buf_compress_minsz) {
5072                         if (l2arc_compress_buf(l2hdr)) {
5073                                 /*
5074                                  * If compression succeeded, enable headroom
5075                                  * boost on the next scan cycle.
5076                                  */
5077                                 *headroom_boost = B_TRUE;
5078                         }
5079                 }
5080
5081                 /*
5082                  * Pick up the buffer data we had previously stashed away
5083                  * (and now potentially also compressed).
5084                  */
5085                 buf_data = l2hdr->b_tmp_cdata;
5086                 buf_sz = l2hdr->b_asize;
5087
5088                 /* Compression may have squashed the buffer to zero length. */
5089                 if (buf_sz != 0) {
5090                         uint64_t buf_p_sz;
5091
5092                         wzio = zio_write_phys(pio, dev->l2ad_vdev,
5093                             dev->l2ad_hand, buf_sz, buf_data, ZIO_CHECKSUM_OFF,
5094                             NULL, NULL, ZIO_PRIORITY_ASYNC_WRITE,
5095                             ZIO_FLAG_CANFAIL, B_FALSE);
5096
5097                         DTRACE_PROBE2(l2arc__write, vdev_t *, dev->l2ad_vdev,
5098                             zio_t *, wzio);
5099                         (void) zio_nowait(wzio);
5100
5101                         write_asize += buf_sz;
5102                         /*
5103                          * Keep the clock hand suitably device-aligned.
5104                          */
5105                         buf_p_sz = vdev_psize_to_asize(dev->l2ad_vdev, buf_sz);
5106                         write_psize += buf_p_sz;
5107                         dev->l2ad_hand += buf_p_sz;
5108                 }
5109         }
5110
5111         mutex_exit(&l2arc_buflist_mtx);
5112
5113         ASSERT3U(write_asize, <=, target_sz);
5114         ARCSTAT_BUMP(arcstat_l2_writes_sent);
5115         ARCSTAT_INCR(arcstat_l2_write_bytes, write_asize);
5116         ARCSTAT_INCR(arcstat_l2_size, write_sz);
5117         ARCSTAT_INCR(arcstat_l2_asize, write_asize);
5118         vdev_space_update(dev->l2ad_vdev, write_psize, 0, 0);
5119
5120         /*
5121          * Bump device hand to the device start if it is approaching the end.
5122          * l2arc_evict() will already have evicted ahead for this case.
5123          */
5124         if (dev->l2ad_hand >= (dev->l2ad_end - target_sz)) {
5125                 vdev_space_update(dev->l2ad_vdev,
5126                     dev->l2ad_end - dev->l2ad_hand, 0, 0);
5127                 dev->l2ad_hand = dev->l2ad_start;
5128                 dev->l2ad_evict = dev->l2ad_start;
5129                 dev->l2ad_first = B_FALSE;
5130         }
5131
5132         dev->l2ad_writing = B_TRUE;
5133         (void) zio_wait(pio);
5134         dev->l2ad_writing = B_FALSE;
5135
5136         return (write_asize);
5137 }
5138
5139 /*
5140  * Compresses an L2ARC buffer.
5141  * The data to be compressed must be prefilled in l2hdr->b_tmp_cdata and its
5142  * size in l2hdr->b_asize. This routine tries to compress the data and
5143  * depending on the compression result there are three possible outcomes:
5144  * *) The buffer was incompressible. The original l2hdr contents were left
5145  *    untouched and are ready for writing to an L2 device.
5146  * *) The buffer was all-zeros, so there is no need to write it to an L2
5147  *    device. To indicate this situation b_tmp_cdata is NULL'ed, b_asize is
5148  *    set to zero and b_compress is set to ZIO_COMPRESS_EMPTY.
5149  * *) Compression succeeded and b_tmp_cdata was replaced with a temporary
5150  *    data buffer which holds the compressed data to be written, and b_asize
5151  *    tells us how much data there is. b_compress is set to the appropriate
5152  *    compression algorithm. Once writing is done, invoke
5153  *    l2arc_release_cdata_buf on this l2hdr to free this temporary buffer.
5154  *
5155  * Returns B_TRUE if compression succeeded, or B_FALSE if it didn't (the
5156  * buffer was incompressible).
5157  */
5158 static boolean_t
5159 l2arc_compress_buf(l2arc_buf_hdr_t *l2hdr)
5160 {
5161         void *cdata;
5162         size_t csize, len;
5163
5164         ASSERT(l2hdr->b_compress == ZIO_COMPRESS_OFF);
5165         ASSERT(l2hdr->b_tmp_cdata != NULL);
5166
5167         len = l2hdr->b_asize;
5168         cdata = zio_data_buf_alloc(len);
5169         csize = zio_compress_data(ZIO_COMPRESS_LZ4, l2hdr->b_tmp_cdata,
5170             cdata, l2hdr->b_asize);
5171
5172         if (csize == 0) {
5173                 /* zero block, indicate that there's nothing to write */
5174                 zio_data_buf_free(cdata, len);
5175                 l2hdr->b_compress = ZIO_COMPRESS_EMPTY;
5176                 l2hdr->b_asize = 0;
5177                 l2hdr->b_tmp_cdata = NULL;
5178                 ARCSTAT_BUMP(arcstat_l2_compress_zeros);
5179                 return (B_TRUE);
5180         } else if (csize > 0 && csize < len) {
5181                 /*
5182                  * Compression succeeded, we'll keep the cdata around for
5183                  * writing and release it afterwards.
5184                  */
5185                 l2hdr->b_compress = ZIO_COMPRESS_LZ4;
5186                 l2hdr->b_asize = csize;
5187                 l2hdr->b_tmp_cdata = cdata;
5188                 ARCSTAT_BUMP(arcstat_l2_compress_successes);
5189                 return (B_TRUE);
5190         } else {
5191                 /*
5192                  * Compression failed, release the compressed buffer.
5193                  * l2hdr will be left unmodified.
5194                  */
5195                 zio_data_buf_free(cdata, len);
5196                 ARCSTAT_BUMP(arcstat_l2_compress_failures);
5197                 return (B_FALSE);
5198         }
5199 }
5200
5201 /*
5202  * Decompresses a zio read back from an l2arc device. On success, the
5203  * underlying zio's io_data buffer is overwritten by the uncompressed
5204  * version. On decompression error (corrupt compressed stream), the
5205  * zio->io_error value is set to signal an I/O error.
5206  *
5207  * Please note that the compressed data stream is not checksummed, so
5208  * if the underlying device is experiencing data corruption, we may feed
5209  * corrupt data to the decompressor, so the decompressor needs to be
5210  * able to handle this situation (LZ4 does).
5211  */
5212 static void
5213 l2arc_decompress_zio(zio_t *zio, arc_buf_hdr_t *hdr, enum zio_compress c)
5214 {
5215         ASSERT(L2ARC_IS_VALID_COMPRESS(c));
5216
5217         if (zio->io_error != 0) {
5218                 /*
5219                  * An io error has occured, just restore the original io
5220                  * size in preparation for a main pool read.
5221                  */
5222                 zio->io_orig_size = zio->io_size = hdr->b_size;
5223                 return;
5224         }
5225
5226         if (c == ZIO_COMPRESS_EMPTY) {
5227                 /*
5228                  * An empty buffer results in a null zio, which means we
5229                  * need to fill its io_data after we're done restoring the
5230                  * buffer's contents.
5231                  */
5232                 ASSERT(hdr->b_buf != NULL);
5233                 bzero(hdr->b_buf->b_data, hdr->b_size);
5234                 zio->io_data = zio->io_orig_data = hdr->b_buf->b_data;
5235         } else {
5236                 ASSERT(zio->io_data != NULL);
5237                 /*
5238                  * We copy the compressed data from the start of the arc buffer
5239                  * (the zio_read will have pulled in only what we need, the
5240                  * rest is garbage which we will overwrite at decompression)
5241                  * and then decompress back to the ARC data buffer. This way we
5242                  * can minimize copying by simply decompressing back over the
5243                  * original compressed data (rather than decompressing to an
5244                  * aux buffer and then copying back the uncompressed buffer,
5245                  * which is likely to be much larger).
5246                  */
5247                 uint64_t csize;
5248                 void *cdata;
5249
5250                 csize = zio->io_size;
5251                 cdata = zio_data_buf_alloc(csize);
5252                 bcopy(zio->io_data, cdata, csize);
5253                 if (zio_decompress_data(c, cdata, zio->io_data, csize,
5254                     hdr->b_size) != 0)
5255                         zio->io_error = EIO;
5256                 zio_data_buf_free(cdata, csize);
5257         }
5258
5259         /* Restore the expected uncompressed IO size. */
5260         zio->io_orig_size = zio->io_size = hdr->b_size;
5261 }
5262
5263 /*
5264  * Releases the temporary b_tmp_cdata buffer in an l2arc header structure.
5265  * This buffer serves as a temporary holder of compressed data while
5266  * the buffer entry is being written to an l2arc device. Once that is
5267  * done, we can dispose of it.
5268  */
5269 static void
5270 l2arc_release_cdata_buf(arc_buf_hdr_t *ab)
5271 {
5272         l2arc_buf_hdr_t *l2hdr = ab->b_l2hdr;
5273
5274         if (l2hdr->b_compress == ZIO_COMPRESS_LZ4) {
5275                 /*
5276                  * If the data was compressed, then we've allocated a
5277                  * temporary buffer for it, so now we need to release it.
5278                  */
5279                 ASSERT(l2hdr->b_tmp_cdata != NULL);
5280                 zio_data_buf_free(l2hdr->b_tmp_cdata, ab->b_size);
5281         }
5282         l2hdr->b_tmp_cdata = NULL;
5283 }
5284
5285 /*
5286  * This thread feeds the L2ARC at regular intervals.  This is the beating
5287  * heart of the L2ARC.
5288  */
5289 static void
5290 l2arc_feed_thread(void *dummy __unused)
5291 {
5292         callb_cpr_t cpr;
5293         l2arc_dev_t *dev;
5294         spa_t *spa;
5295         uint64_t size, wrote;
5296         clock_t begin, next = ddi_get_lbolt();
5297         boolean_t headroom_boost = B_FALSE;
5298
5299         CALLB_CPR_INIT(&cpr, &l2arc_feed_thr_lock, callb_generic_cpr, FTAG);
5300
5301         mutex_enter(&l2arc_feed_thr_lock);
5302
5303         while (l2arc_thread_exit == 0) {
5304                 CALLB_CPR_SAFE_BEGIN(&cpr);
5305                 (void) cv_timedwait(&l2arc_feed_thr_cv, &l2arc_feed_thr_lock,
5306                     next - ddi_get_lbolt());
5307                 CALLB_CPR_SAFE_END(&cpr, &l2arc_feed_thr_lock);
5308                 next = ddi_get_lbolt() + hz;
5309
5310                 /*
5311                  * Quick check for L2ARC devices.
5312                  */
5313                 mutex_enter(&l2arc_dev_mtx);
5314                 if (l2arc_ndev == 0) {
5315                         mutex_exit(&l2arc_dev_mtx);
5316                         continue;
5317                 }
5318                 mutex_exit(&l2arc_dev_mtx);
5319                 begin = ddi_get_lbolt();
5320
5321                 /*
5322                  * This selects the next l2arc device to write to, and in
5323                  * doing so the next spa to feed from: dev->l2ad_spa.   This
5324                  * will return NULL if there are now no l2arc devices or if
5325                  * they are all faulted.
5326                  *
5327                  * If a device is returned, its spa's config lock is also
5328                  * held to prevent device removal.  l2arc_dev_get_next()
5329                  * will grab and release l2arc_dev_mtx.
5330                  */
5331                 if ((dev = l2arc_dev_get_next()) == NULL)
5332                         continue;
5333
5334                 spa = dev->l2ad_spa;
5335                 ASSERT(spa != NULL);
5336
5337                 /*
5338                  * If the pool is read-only then force the feed thread to
5339                  * sleep a little longer.
5340                  */
5341                 if (!spa_writeable(spa)) {
5342                         next = ddi_get_lbolt() + 5 * l2arc_feed_secs * hz;
5343                         spa_config_exit(spa, SCL_L2ARC, dev);
5344                         continue;
5345                 }
5346
5347                 /*
5348                  * Avoid contributing to memory pressure.
5349                  */
5350                 if (arc_reclaim_needed()) {
5351                         ARCSTAT_BUMP(arcstat_l2_abort_lowmem);
5352                         spa_config_exit(spa, SCL_L2ARC, dev);
5353                         continue;
5354                 }
5355
5356                 ARCSTAT_BUMP(arcstat_l2_feeds);
5357
5358                 size = l2arc_write_size();
5359
5360                 /*
5361                  * Evict L2ARC buffers that will be overwritten.
5362                  */
5363                 l2arc_evict(dev, size, B_FALSE);
5364
5365                 /*
5366                  * Write ARC buffers.
5367                  */
5368                 wrote = l2arc_write_buffers(spa, dev, size, &headroom_boost);
5369
5370                 /*
5371                  * Calculate interval between writes.
5372                  */
5373                 next = l2arc_write_interval(begin, size, wrote);
5374                 spa_config_exit(spa, SCL_L2ARC, dev);
5375         }
5376
5377         l2arc_thread_exit = 0;
5378         cv_broadcast(&l2arc_feed_thr_cv);
5379         CALLB_CPR_EXIT(&cpr);           /* drops l2arc_feed_thr_lock */
5380         thread_exit();
5381 }
5382
5383 boolean_t
5384 l2arc_vdev_present(vdev_t *vd)
5385 {
5386         l2arc_dev_t *dev;
5387
5388         mutex_enter(&l2arc_dev_mtx);
5389         for (dev = list_head(l2arc_dev_list); dev != NULL;
5390             dev = list_next(l2arc_dev_list, dev)) {
5391                 if (dev->l2ad_vdev == vd)
5392                         break;
5393         }
5394         mutex_exit(&l2arc_dev_mtx);
5395
5396         return (dev != NULL);
5397 }
5398
5399 /*
5400  * Add a vdev for use by the L2ARC.  By this point the spa has already
5401  * validated the vdev and opened it.
5402  */
5403 void
5404 l2arc_add_vdev(spa_t *spa, vdev_t *vd)
5405 {
5406         l2arc_dev_t *adddev;
5407
5408         ASSERT(!l2arc_vdev_present(vd));
5409
5410         /*
5411          * Create a new l2arc device entry.
5412          */
5413         adddev = kmem_zalloc(sizeof (l2arc_dev_t), KM_SLEEP);
5414         adddev->l2ad_spa = spa;
5415         adddev->l2ad_vdev = vd;
5416         adddev->l2ad_start = VDEV_LABEL_START_SIZE;
5417         adddev->l2ad_end = VDEV_LABEL_START_SIZE + vdev_get_min_asize(vd);
5418         adddev->l2ad_hand = adddev->l2ad_start;
5419         adddev->l2ad_evict = adddev->l2ad_start;
5420         adddev->l2ad_first = B_TRUE;
5421         adddev->l2ad_writing = B_FALSE;
5422
5423         /*
5424          * This is a list of all ARC buffers that are still valid on the
5425          * device.
5426          */
5427         adddev->l2ad_buflist = kmem_zalloc(sizeof (list_t), KM_SLEEP);
5428         list_create(adddev->l2ad_buflist, sizeof (arc_buf_hdr_t),
5429             offsetof(arc_buf_hdr_t, b_l2node));
5430
5431         vdev_space_update(vd, 0, 0, adddev->l2ad_end - adddev->l2ad_hand);
5432
5433         /*
5434          * Add device to global list
5435          */
5436         mutex_enter(&l2arc_dev_mtx);
5437         list_insert_head(l2arc_dev_list, adddev);
5438         atomic_inc_64(&l2arc_ndev);
5439         mutex_exit(&l2arc_dev_mtx);
5440 }
5441
5442 /*
5443  * Remove a vdev from the L2ARC.
5444  */
5445 void
5446 l2arc_remove_vdev(vdev_t *vd)
5447 {
5448         l2arc_dev_t *dev, *nextdev, *remdev = NULL;
5449
5450         /*
5451          * Find the device by vdev
5452          */
5453         mutex_enter(&l2arc_dev_mtx);
5454         for (dev = list_head(l2arc_dev_list); dev; dev = nextdev) {
5455                 nextdev = list_next(l2arc_dev_list, dev);
5456                 if (vd == dev->l2ad_vdev) {
5457                         remdev = dev;
5458                         break;
5459                 }
5460         }
5461         ASSERT(remdev != NULL);
5462
5463         /*
5464          * Remove device from global list
5465          */
5466         list_remove(l2arc_dev_list, remdev);
5467         l2arc_dev_last = NULL;          /* may have been invalidated */
5468         atomic_dec_64(&l2arc_ndev);
5469         mutex_exit(&l2arc_dev_mtx);
5470
5471         /*
5472          * Clear all buflists and ARC references.  L2ARC device flush.
5473          */
5474         l2arc_evict(remdev, 0, B_TRUE);
5475         list_destroy(remdev->l2ad_buflist);
5476         kmem_free(remdev->l2ad_buflist, sizeof (list_t));
5477         kmem_free(remdev, sizeof (l2arc_dev_t));
5478 }
5479
5480 void
5481 l2arc_init(void)
5482 {
5483         l2arc_thread_exit = 0;
5484         l2arc_ndev = 0;
5485         l2arc_writes_sent = 0;
5486         l2arc_writes_done = 0;
5487
5488         mutex_init(&l2arc_feed_thr_lock, NULL, MUTEX_DEFAULT, NULL);
5489         cv_init(&l2arc_feed_thr_cv, NULL, CV_DEFAULT, NULL);
5490         mutex_init(&l2arc_dev_mtx, NULL, MUTEX_DEFAULT, NULL);
5491         mutex_init(&l2arc_buflist_mtx, NULL, MUTEX_DEFAULT, NULL);
5492         mutex_init(&l2arc_free_on_write_mtx, NULL, MUTEX_DEFAULT, NULL);
5493
5494         l2arc_dev_list = &L2ARC_dev_list;
5495         l2arc_free_on_write = &L2ARC_free_on_write;
5496         list_create(l2arc_dev_list, sizeof (l2arc_dev_t),
5497             offsetof(l2arc_dev_t, l2ad_node));
5498         list_create(l2arc_free_on_write, sizeof (l2arc_data_free_t),
5499             offsetof(l2arc_data_free_t, l2df_list_node));
5500 }
5501
5502 void
5503 l2arc_fini(void)
5504 {
5505         /*
5506          * This is called from dmu_fini(), which is called from spa_fini();
5507          * Because of this, we can assume that all l2arc devices have
5508          * already been removed when the pools themselves were removed.
5509          */
5510
5511         l2arc_do_free_on_write();
5512
5513         mutex_destroy(&l2arc_feed_thr_lock);
5514         cv_destroy(&l2arc_feed_thr_cv);
5515         mutex_destroy(&l2arc_dev_mtx);
5516         mutex_destroy(&l2arc_buflist_mtx);
5517         mutex_destroy(&l2arc_free_on_write_mtx);
5518
5519         list_destroy(l2arc_dev_list);
5520         list_destroy(l2arc_free_on_write);
5521 }
5522
5523 void
5524 l2arc_start(void)
5525 {
5526         if (!(spa_mode_global & FWRITE))
5527                 return;
5528
5529         (void) thread_create(NULL, 0, l2arc_feed_thread, NULL, 0, &p0,
5530             TS_RUN, minclsyspri);
5531 }
5532
5533 void
5534 l2arc_stop(void)
5535 {
5536         if (!(spa_mode_global & FWRITE))
5537                 return;
5538
5539         mutex_enter(&l2arc_feed_thr_lock);
5540         cv_signal(&l2arc_feed_thr_cv);  /* kick thread out of startup */
5541         l2arc_thread_exit = 1;
5542         while (l2arc_thread_exit != 0)
5543                 cv_wait(&l2arc_feed_thr_cv, &l2arc_feed_thr_lock);
5544         mutex_exit(&l2arc_feed_thr_lock);
5545 }