1789Sahrens /* 2789Sahrens * CDDL HEADER START 3789Sahrens * 4789Sahrens * The contents of this file are subject to the terms of the 51484Sek110237 * Common Development and Distribution License (the "License"). 61484Sek110237 * You may not use this file except in compliance with the License. 7789Sahrens * 8789Sahrens * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9789Sahrens * or http://www.opensolaris.org/os/licensing. 10789Sahrens * See the License for the specific language governing permissions 11789Sahrens * and limitations under the License. 12789Sahrens * 13789Sahrens * When distributing Covered Code, include this CDDL HEADER in each 14789Sahrens * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15789Sahrens * If applicable, add the following below this CDDL HEADER, with the 16789Sahrens * fields enclosed by brackets "[]" replaced with your own identifying 17789Sahrens * information: Portions Copyright [yyyy] [name of copyright owner] 18789Sahrens * 19789Sahrens * CDDL HEADER END 20789Sahrens */ 21789Sahrens /* 221484Sek110237 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23789Sahrens * Use is subject to license terms. 24789Sahrens */ 25789Sahrens 26789Sahrens #pragma ident "%Z%%M% %I% %E% SMI" 27789Sahrens 28789Sahrens /* 29789Sahrens * DVA-based Adjustable Relpacement Cache 30789Sahrens * 311544Seschrock * While much of the theory of operation used here is 321544Seschrock * based on the self-tuning, low overhead replacement cache 33789Sahrens * presented by Megiddo and Modha at FAST 2003, there are some 34789Sahrens * significant differences: 35789Sahrens * 36789Sahrens * 1. The Megiddo and Modha model assumes any page is evictable. 37789Sahrens * Pages in its cache cannot be "locked" into memory. This makes 38789Sahrens * the eviction algorithm simple: evict the last page in the list. 39789Sahrens * This also make the performance characteristics easy to reason 40789Sahrens * about. Our cache is not so simple. At any given moment, some 41789Sahrens * subset of the blocks in the cache are un-evictable because we 42789Sahrens * have handed out a reference to them. Blocks are only evictable 43789Sahrens * when there are no external references active. This makes 44789Sahrens * eviction far more problematic: we choose to evict the evictable 45789Sahrens * blocks that are the "lowest" in the list. 46789Sahrens * 47789Sahrens * There are times when it is not possible to evict the requested 48789Sahrens * space. In these circumstances we are unable to adjust the cache 49789Sahrens * size. To prevent the cache growing unbounded at these times we 50789Sahrens * implement a "cache throttle" that slowes the flow of new data 51789Sahrens * into the cache until we can make space avaiable. 52789Sahrens * 53789Sahrens * 2. The Megiddo and Modha model assumes a fixed cache size. 54789Sahrens * Pages are evicted when the cache is full and there is a cache 55789Sahrens * miss. Our model has a variable sized cache. It grows with 56789Sahrens * high use, but also tries to react to memory preasure from the 57789Sahrens * operating system: decreasing its size when system memory is 58789Sahrens * tight. 59789Sahrens * 60789Sahrens * 3. The Megiddo and Modha model assumes a fixed page size. All 61789Sahrens * elements of the cache are therefor exactly the same size. So 62789Sahrens * when adjusting the cache size following a cache miss, its simply 63789Sahrens * a matter of choosing a single page to evict. In our model, we 64789Sahrens * have variable sized cache blocks (rangeing from 512 bytes to 65789Sahrens * 128K bytes). We therefor choose a set of blocks to evict to make 66789Sahrens * space for a cache miss that approximates as closely as possible 67789Sahrens * the space used by the new block. 68789Sahrens * 69789Sahrens * See also: "ARC: A Self-Tuning, Low Overhead Replacement Cache" 70789Sahrens * by N. Megiddo & D. Modha, FAST 2003 71789Sahrens */ 72789Sahrens 73789Sahrens /* 74789Sahrens * The locking model: 75789Sahrens * 76789Sahrens * A new reference to a cache buffer can be obtained in two 77789Sahrens * ways: 1) via a hash table lookup using the DVA as a key, 78789Sahrens * or 2) via one of the ARC lists. The arc_read() inerface 79789Sahrens * uses method 1, while the internal arc algorithms for 80789Sahrens * adjusting the cache use method 2. We therefor provide two 81789Sahrens * types of locks: 1) the hash table lock array, and 2) the 82789Sahrens * arc list locks. 83789Sahrens * 84789Sahrens * Buffers do not have their own mutexs, rather they rely on the 85789Sahrens * hash table mutexs for the bulk of their protection (i.e. most 86789Sahrens * fields in the arc_buf_hdr_t are protected by these mutexs). 87789Sahrens * 88789Sahrens * buf_hash_find() returns the appropriate mutex (held) when it 89789Sahrens * locates the requested buffer in the hash table. It returns 90789Sahrens * NULL for the mutex if the buffer was not in the table. 91789Sahrens * 92789Sahrens * buf_hash_remove() expects the appropriate hash mutex to be 93789Sahrens * already held before it is invoked. 94789Sahrens * 95789Sahrens * Each arc state also has a mutex which is used to protect the 96789Sahrens * buffer list associated with the state. When attempting to 97789Sahrens * obtain a hash table lock while holding an arc list lock you 98789Sahrens * must use: mutex_tryenter() to avoid deadlock. Also note that 992688Smaybee * the active state mutex must be held before the ghost state mutex. 100789Sahrens * 1011544Seschrock * Arc buffers may have an associated eviction callback function. 1021544Seschrock * This function will be invoked prior to removing the buffer (e.g. 1031544Seschrock * in arc_do_user_evicts()). Note however that the data associated 1041544Seschrock * with the buffer may be evicted prior to the callback. The callback 1051544Seschrock * must be made with *no locks held* (to prevent deadlock). Additionally, 1061544Seschrock * the users of callbacks must ensure that their private data is 1071544Seschrock * protected from simultaneous callbacks from arc_buf_evict() 1081544Seschrock * and arc_do_user_evicts(). 1091544Seschrock * 110789Sahrens * Note that the majority of the performance stats are manipulated 111789Sahrens * with atomic operations. 112789Sahrens */ 113789Sahrens 114789Sahrens #include <sys/spa.h> 115789Sahrens #include <sys/zio.h> 116789Sahrens #include <sys/zfs_context.h> 117789Sahrens #include <sys/arc.h> 118789Sahrens #include <sys/refcount.h> 119789Sahrens #ifdef _KERNEL 120789Sahrens #include <sys/vmsystm.h> 121789Sahrens #include <vm/anon.h> 122789Sahrens #include <sys/fs/swapnode.h> 1231484Sek110237 #include <sys/dnlc.h> 124789Sahrens #endif 125789Sahrens #include <sys/callb.h> 126789Sahrens 127789Sahrens static kmutex_t arc_reclaim_thr_lock; 128789Sahrens static kcondvar_t arc_reclaim_thr_cv; /* used to signal reclaim thr */ 129789Sahrens static uint8_t arc_thread_exit; 130789Sahrens 1311484Sek110237 #define ARC_REDUCE_DNLC_PERCENT 3 1321484Sek110237 uint_t arc_reduce_dnlc_percent = ARC_REDUCE_DNLC_PERCENT; 1331484Sek110237 134789Sahrens typedef enum arc_reclaim_strategy { 135789Sahrens ARC_RECLAIM_AGGR, /* Aggressive reclaim strategy */ 136789Sahrens ARC_RECLAIM_CONS /* Conservative reclaim strategy */ 137789Sahrens } arc_reclaim_strategy_t; 138789Sahrens 139789Sahrens /* number of seconds before growing cache again */ 140789Sahrens static int arc_grow_retry = 60; 141789Sahrens 1422391Smaybee /* 1432638Sperrin * minimum lifespan of a prefetch block in clock ticks 1442638Sperrin * (initialized in arc_init()) 1452391Smaybee */ 1462638Sperrin static int arc_min_prefetch_lifespan; 1472391Smaybee 148789Sahrens static kmutex_t arc_reclaim_lock; 149789Sahrens static int arc_dead; 150789Sahrens 151789Sahrens /* 1522885Sahrens * These tunables are for performance analysis. 1532885Sahrens */ 1542885Sahrens uint64_t zfs_arc_max; 1552885Sahrens uint64_t zfs_arc_min; 1562885Sahrens 1572885Sahrens /* 158789Sahrens * Note that buffers can be on one of 5 states: 159789Sahrens * ARC_anon - anonymous (discussed below) 1601544Seschrock * ARC_mru - recently used, currently cached 1611544Seschrock * ARC_mru_ghost - recentely used, no longer in cache 1621544Seschrock * ARC_mfu - frequently used, currently cached 1631544Seschrock * ARC_mfu_ghost - frequently used, no longer in cache 164789Sahrens * When there are no active references to the buffer, they 165789Sahrens * are linked onto one of the lists in arc. These are the 166789Sahrens * only buffers that can be evicted or deleted. 167789Sahrens * 168789Sahrens * Anonymous buffers are buffers that are not associated with 169789Sahrens * a DVA. These are buffers that hold dirty block copies 170789Sahrens * before they are written to stable storage. By definition, 1711544Seschrock * they are "ref'd" and are considered part of arc_mru 172789Sahrens * that cannot be freed. Generally, they will aquire a DVA 1731544Seschrock * as they are written and migrate onto the arc_mru list. 174789Sahrens */ 175789Sahrens 176789Sahrens typedef struct arc_state { 177789Sahrens list_t list; /* linked list of evictable buffer in state */ 178789Sahrens uint64_t lsize; /* total size of buffers in the linked list */ 179789Sahrens uint64_t size; /* total size of all buffers in this state */ 180789Sahrens uint64_t hits; 181789Sahrens kmutex_t mtx; 182789Sahrens } arc_state_t; 183789Sahrens 184789Sahrens /* The 5 states: */ 185789Sahrens static arc_state_t ARC_anon; 1861544Seschrock static arc_state_t ARC_mru; 1871544Seschrock static arc_state_t ARC_mru_ghost; 1881544Seschrock static arc_state_t ARC_mfu; 1891544Seschrock static arc_state_t ARC_mfu_ghost; 190789Sahrens 191789Sahrens static struct arc { 192789Sahrens arc_state_t *anon; 1931544Seschrock arc_state_t *mru; 1941544Seschrock arc_state_t *mru_ghost; 1951544Seschrock arc_state_t *mfu; 1961544Seschrock arc_state_t *mfu_ghost; 197789Sahrens uint64_t size; /* Actual total arc size */ 1981544Seschrock uint64_t p; /* Target size (in bytes) of mru */ 199789Sahrens uint64_t c; /* Target size of cache (in bytes) */ 200789Sahrens uint64_t c_min; /* Minimum target cache size */ 201789Sahrens uint64_t c_max; /* Maximum target cache size */ 202789Sahrens 203789Sahrens /* performance stats */ 204789Sahrens uint64_t hits; 205789Sahrens uint64_t misses; 206789Sahrens uint64_t deleted; 2072688Smaybee uint64_t recycle_miss; 2082688Smaybee uint64_t mutex_miss; 2092688Smaybee uint64_t evict_skip; 210789Sahrens uint64_t hash_elements; 211789Sahrens uint64_t hash_elements_max; 212789Sahrens uint64_t hash_collisions; 213789Sahrens uint64_t hash_chains; 214789Sahrens uint32_t hash_chain_max; 215789Sahrens 216789Sahrens int no_grow; /* Don't try to grow cache size */ 217789Sahrens } arc; 218789Sahrens 219789Sahrens static uint64_t arc_tempreserve; 220789Sahrens 221789Sahrens typedef struct arc_callback arc_callback_t; 222789Sahrens 223789Sahrens struct arc_callback { 224789Sahrens arc_done_func_t *acb_done; 225789Sahrens void *acb_private; 226789Sahrens arc_byteswap_func_t *acb_byteswap; 227789Sahrens arc_buf_t *acb_buf; 228789Sahrens zio_t *acb_zio_dummy; 229789Sahrens arc_callback_t *acb_next; 230789Sahrens }; 231789Sahrens 232789Sahrens struct arc_buf_hdr { 233789Sahrens /* immutable */ 234789Sahrens uint64_t b_size; 235789Sahrens spa_t *b_spa; 236789Sahrens 237789Sahrens /* protected by hash lock */ 238789Sahrens dva_t b_dva; 239789Sahrens uint64_t b_birth; 240789Sahrens uint64_t b_cksum0; 241789Sahrens 242789Sahrens arc_buf_hdr_t *b_hash_next; 243789Sahrens arc_buf_t *b_buf; 244789Sahrens uint32_t b_flags; 2451544Seschrock uint32_t b_datacnt; 246789Sahrens 247789Sahrens kcondvar_t b_cv; 248789Sahrens arc_callback_t *b_acb; 249789Sahrens 250789Sahrens /* protected by arc state mutex */ 251789Sahrens arc_state_t *b_state; 252789Sahrens list_node_t b_arc_node; 253789Sahrens 254789Sahrens /* updated atomically */ 255789Sahrens clock_t b_arc_access; 256789Sahrens 257789Sahrens /* self protecting */ 258789Sahrens refcount_t b_refcnt; 259789Sahrens }; 260789Sahrens 2611544Seschrock static arc_buf_t *arc_eviction_list; 2621544Seschrock static kmutex_t arc_eviction_mtx; 263*2887Smaybee static arc_buf_hdr_t arc_eviction_hdr; 2642688Smaybee static void arc_get_data_buf(arc_buf_t *buf); 2652688Smaybee static void arc_access(arc_buf_hdr_t *buf, kmutex_t *hash_lock); 2661544Seschrock 2671544Seschrock #define GHOST_STATE(state) \ 2681544Seschrock ((state) == arc.mru_ghost || (state) == arc.mfu_ghost) 2691544Seschrock 270789Sahrens /* 271789Sahrens * Private ARC flags. These flags are private ARC only flags that will show up 272789Sahrens * in b_flags in the arc_hdr_buf_t. Some flags are publicly declared, and can 273789Sahrens * be passed in as arc_flags in things like arc_read. However, these flags 274789Sahrens * should never be passed and should only be set by ARC code. When adding new 275789Sahrens * public flags, make sure not to smash the private ones. 276789Sahrens */ 277789Sahrens 2781544Seschrock #define ARC_IN_HASH_TABLE (1 << 9) /* this buffer is hashed */ 279789Sahrens #define ARC_IO_IN_PROGRESS (1 << 10) /* I/O in progress for buf */ 280789Sahrens #define ARC_IO_ERROR (1 << 11) /* I/O failed for buf */ 281789Sahrens #define ARC_FREED_IN_READ (1 << 12) /* buf freed while in read */ 2821544Seschrock #define ARC_BUF_AVAILABLE (1 << 13) /* block not in active use */ 2832391Smaybee #define ARC_INDIRECT (1 << 14) /* this is an indirect block */ 284789Sahrens 2851544Seschrock #define HDR_IN_HASH_TABLE(hdr) ((hdr)->b_flags & ARC_IN_HASH_TABLE) 286789Sahrens #define HDR_IO_IN_PROGRESS(hdr) ((hdr)->b_flags & ARC_IO_IN_PROGRESS) 287789Sahrens #define HDR_IO_ERROR(hdr) ((hdr)->b_flags & ARC_IO_ERROR) 288789Sahrens #define HDR_FREED_IN_READ(hdr) ((hdr)->b_flags & ARC_FREED_IN_READ) 2891544Seschrock #define HDR_BUF_AVAILABLE(hdr) ((hdr)->b_flags & ARC_BUF_AVAILABLE) 290789Sahrens 291789Sahrens /* 292789Sahrens * Hash table routines 293789Sahrens */ 294789Sahrens 295789Sahrens #define HT_LOCK_PAD 64 296789Sahrens 297789Sahrens struct ht_lock { 298789Sahrens kmutex_t ht_lock; 299789Sahrens #ifdef _KERNEL 300789Sahrens unsigned char pad[(HT_LOCK_PAD - sizeof (kmutex_t))]; 301789Sahrens #endif 302789Sahrens }; 303789Sahrens 304789Sahrens #define BUF_LOCKS 256 305789Sahrens typedef struct buf_hash_table { 306789Sahrens uint64_t ht_mask; 307789Sahrens arc_buf_hdr_t **ht_table; 308789Sahrens struct ht_lock ht_locks[BUF_LOCKS]; 309789Sahrens } buf_hash_table_t; 310789Sahrens 311789Sahrens static buf_hash_table_t buf_hash_table; 312789Sahrens 313789Sahrens #define BUF_HASH_INDEX(spa, dva, birth) \ 314789Sahrens (buf_hash(spa, dva, birth) & buf_hash_table.ht_mask) 315789Sahrens #define BUF_HASH_LOCK_NTRY(idx) (buf_hash_table.ht_locks[idx & (BUF_LOCKS-1)]) 316789Sahrens #define BUF_HASH_LOCK(idx) (&(BUF_HASH_LOCK_NTRY(idx).ht_lock)) 317789Sahrens #define HDR_LOCK(buf) \ 318789Sahrens (BUF_HASH_LOCK(BUF_HASH_INDEX(buf->b_spa, &buf->b_dva, buf->b_birth))) 319789Sahrens 320789Sahrens uint64_t zfs_crc64_table[256]; 321789Sahrens 322789Sahrens static uint64_t 323789Sahrens buf_hash(spa_t *spa, dva_t *dva, uint64_t birth) 324789Sahrens { 325789Sahrens uintptr_t spav = (uintptr_t)spa; 326789Sahrens uint8_t *vdva = (uint8_t *)dva; 327789Sahrens uint64_t crc = -1ULL; 328789Sahrens int i; 329789Sahrens 330789Sahrens ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); 331789Sahrens 332789Sahrens for (i = 0; i < sizeof (dva_t); i++) 333789Sahrens crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF]; 334789Sahrens 335789Sahrens crc ^= (spav>>8) ^ birth; 336789Sahrens 337789Sahrens return (crc); 338789Sahrens } 339789Sahrens 340789Sahrens #define BUF_EMPTY(buf) \ 341789Sahrens ((buf)->b_dva.dva_word[0] == 0 && \ 342789Sahrens (buf)->b_dva.dva_word[1] == 0 && \ 343789Sahrens (buf)->b_birth == 0) 344789Sahrens 345789Sahrens #define BUF_EQUAL(spa, dva, birth, buf) \ 346789Sahrens ((buf)->b_dva.dva_word[0] == (dva)->dva_word[0]) && \ 347789Sahrens ((buf)->b_dva.dva_word[1] == (dva)->dva_word[1]) && \ 348789Sahrens ((buf)->b_birth == birth) && ((buf)->b_spa == spa) 349789Sahrens 350789Sahrens static arc_buf_hdr_t * 351789Sahrens buf_hash_find(spa_t *spa, dva_t *dva, uint64_t birth, kmutex_t **lockp) 352789Sahrens { 353789Sahrens uint64_t idx = BUF_HASH_INDEX(spa, dva, birth); 354789Sahrens kmutex_t *hash_lock = BUF_HASH_LOCK(idx); 355789Sahrens arc_buf_hdr_t *buf; 356789Sahrens 357789Sahrens mutex_enter(hash_lock); 358789Sahrens for (buf = buf_hash_table.ht_table[idx]; buf != NULL; 359789Sahrens buf = buf->b_hash_next) { 360789Sahrens if (BUF_EQUAL(spa, dva, birth, buf)) { 361789Sahrens *lockp = hash_lock; 362789Sahrens return (buf); 363789Sahrens } 364789Sahrens } 365789Sahrens mutex_exit(hash_lock); 366789Sahrens *lockp = NULL; 367789Sahrens return (NULL); 368789Sahrens } 369789Sahrens 370789Sahrens /* 371789Sahrens * Insert an entry into the hash table. If there is already an element 372789Sahrens * equal to elem in the hash table, then the already existing element 373789Sahrens * will be returned and the new element will not be inserted. 374789Sahrens * Otherwise returns NULL. 375789Sahrens */ 376789Sahrens static arc_buf_hdr_t * 377789Sahrens buf_hash_insert(arc_buf_hdr_t *buf, kmutex_t **lockp) 378789Sahrens { 379789Sahrens uint64_t idx = BUF_HASH_INDEX(buf->b_spa, &buf->b_dva, buf->b_birth); 380789Sahrens kmutex_t *hash_lock = BUF_HASH_LOCK(idx); 381789Sahrens arc_buf_hdr_t *fbuf; 382789Sahrens uint32_t max, i; 383789Sahrens 3841544Seschrock ASSERT(!HDR_IN_HASH_TABLE(buf)); 385789Sahrens *lockp = hash_lock; 386789Sahrens mutex_enter(hash_lock); 387789Sahrens for (fbuf = buf_hash_table.ht_table[idx], i = 0; fbuf != NULL; 388789Sahrens fbuf = fbuf->b_hash_next, i++) { 389789Sahrens if (BUF_EQUAL(buf->b_spa, &buf->b_dva, buf->b_birth, fbuf)) 390789Sahrens return (fbuf); 391789Sahrens } 392789Sahrens 393789Sahrens buf->b_hash_next = buf_hash_table.ht_table[idx]; 394789Sahrens buf_hash_table.ht_table[idx] = buf; 3951544Seschrock buf->b_flags |= ARC_IN_HASH_TABLE; 396789Sahrens 397789Sahrens /* collect some hash table performance data */ 398789Sahrens if (i > 0) { 399789Sahrens atomic_add_64(&arc.hash_collisions, 1); 400789Sahrens if (i == 1) 401789Sahrens atomic_add_64(&arc.hash_chains, 1); 402789Sahrens } 403789Sahrens while (i > (max = arc.hash_chain_max) && 404789Sahrens max != atomic_cas_32(&arc.hash_chain_max, max, i)) { 405789Sahrens continue; 406789Sahrens } 407789Sahrens atomic_add_64(&arc.hash_elements, 1); 408789Sahrens if (arc.hash_elements > arc.hash_elements_max) 409789Sahrens atomic_add_64(&arc.hash_elements_max, 1); 410789Sahrens 411789Sahrens return (NULL); 412789Sahrens } 413789Sahrens 414789Sahrens static void 415789Sahrens buf_hash_remove(arc_buf_hdr_t *buf) 416789Sahrens { 417789Sahrens arc_buf_hdr_t *fbuf, **bufp; 418789Sahrens uint64_t idx = BUF_HASH_INDEX(buf->b_spa, &buf->b_dva, buf->b_birth); 419789Sahrens 420789Sahrens ASSERT(MUTEX_HELD(BUF_HASH_LOCK(idx))); 4211544Seschrock ASSERT(HDR_IN_HASH_TABLE(buf)); 422789Sahrens 423789Sahrens bufp = &buf_hash_table.ht_table[idx]; 424789Sahrens while ((fbuf = *bufp) != buf) { 425789Sahrens ASSERT(fbuf != NULL); 426789Sahrens bufp = &fbuf->b_hash_next; 427789Sahrens } 428789Sahrens *bufp = buf->b_hash_next; 429789Sahrens buf->b_hash_next = NULL; 4301544Seschrock buf->b_flags &= ~ARC_IN_HASH_TABLE; 431789Sahrens 432789Sahrens /* collect some hash table performance data */ 433789Sahrens atomic_add_64(&arc.hash_elements, -1); 434789Sahrens if (buf_hash_table.ht_table[idx] && 435789Sahrens buf_hash_table.ht_table[idx]->b_hash_next == NULL) 436789Sahrens atomic_add_64(&arc.hash_chains, -1); 437789Sahrens } 438789Sahrens 439789Sahrens /* 440789Sahrens * Global data structures and functions for the buf kmem cache. 441789Sahrens */ 442789Sahrens static kmem_cache_t *hdr_cache; 443789Sahrens static kmem_cache_t *buf_cache; 444789Sahrens 445789Sahrens static void 446789Sahrens buf_fini(void) 447789Sahrens { 448789Sahrens int i; 449789Sahrens 450789Sahrens kmem_free(buf_hash_table.ht_table, 451789Sahrens (buf_hash_table.ht_mask + 1) * sizeof (void *)); 452789Sahrens for (i = 0; i < BUF_LOCKS; i++) 453789Sahrens mutex_destroy(&buf_hash_table.ht_locks[i].ht_lock); 454789Sahrens kmem_cache_destroy(hdr_cache); 455789Sahrens kmem_cache_destroy(buf_cache); 456789Sahrens } 457789Sahrens 458789Sahrens /* 459789Sahrens * Constructor callback - called when the cache is empty 460789Sahrens * and a new buf is requested. 461789Sahrens */ 462789Sahrens /* ARGSUSED */ 463789Sahrens static int 464789Sahrens hdr_cons(void *vbuf, void *unused, int kmflag) 465789Sahrens { 466789Sahrens arc_buf_hdr_t *buf = vbuf; 467789Sahrens 468789Sahrens bzero(buf, sizeof (arc_buf_hdr_t)); 469789Sahrens refcount_create(&buf->b_refcnt); 470789Sahrens cv_init(&buf->b_cv, NULL, CV_DEFAULT, NULL); 471789Sahrens return (0); 472789Sahrens } 473789Sahrens 474789Sahrens /* 475789Sahrens * Destructor callback - called when a cached buf is 476789Sahrens * no longer required. 477789Sahrens */ 478789Sahrens /* ARGSUSED */ 479789Sahrens static void 480789Sahrens hdr_dest(void *vbuf, void *unused) 481789Sahrens { 482789Sahrens arc_buf_hdr_t *buf = vbuf; 483789Sahrens 484789Sahrens refcount_destroy(&buf->b_refcnt); 485789Sahrens cv_destroy(&buf->b_cv); 486789Sahrens } 487789Sahrens 4881544Seschrock static int arc_reclaim_needed(void); 489789Sahrens void arc_kmem_reclaim(void); 490789Sahrens 491789Sahrens /* 492789Sahrens * Reclaim callback -- invoked when memory is low. 493789Sahrens */ 494789Sahrens /* ARGSUSED */ 495789Sahrens static void 496789Sahrens hdr_recl(void *unused) 497789Sahrens { 498789Sahrens dprintf("hdr_recl called\n"); 4991544Seschrock if (arc_reclaim_needed()) 5001544Seschrock arc_kmem_reclaim(); 501789Sahrens } 502789Sahrens 503789Sahrens static void 504789Sahrens buf_init(void) 505789Sahrens { 506789Sahrens uint64_t *ct; 5071544Seschrock uint64_t hsize = 1ULL << 12; 508789Sahrens int i, j; 509789Sahrens 510789Sahrens /* 511789Sahrens * The hash table is big enough to fill all of physical memory 5121544Seschrock * with an average 64K block size. The table will take up 5131544Seschrock * totalmem*sizeof(void*)/64K (eg. 128KB/GB with 8-byte pointers). 514789Sahrens */ 5151544Seschrock while (hsize * 65536 < physmem * PAGESIZE) 516789Sahrens hsize <<= 1; 5171544Seschrock retry: 518789Sahrens buf_hash_table.ht_mask = hsize - 1; 5191544Seschrock buf_hash_table.ht_table = 5201544Seschrock kmem_zalloc(hsize * sizeof (void*), KM_NOSLEEP); 5211544Seschrock if (buf_hash_table.ht_table == NULL) { 5221544Seschrock ASSERT(hsize > (1ULL << 8)); 5231544Seschrock hsize >>= 1; 5241544Seschrock goto retry; 5251544Seschrock } 526789Sahrens 527789Sahrens hdr_cache = kmem_cache_create("arc_buf_hdr_t", sizeof (arc_buf_hdr_t), 528789Sahrens 0, hdr_cons, hdr_dest, hdr_recl, NULL, NULL, 0); 529789Sahrens buf_cache = kmem_cache_create("arc_buf_t", sizeof (arc_buf_t), 530789Sahrens 0, NULL, NULL, NULL, NULL, NULL, 0); 531789Sahrens 532789Sahrens for (i = 0; i < 256; i++) 533789Sahrens for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) 534789Sahrens *ct = (*ct >> 1) ^ (-(*ct & 1) & ZFS_CRC64_POLY); 535789Sahrens 536789Sahrens for (i = 0; i < BUF_LOCKS; i++) { 537789Sahrens mutex_init(&buf_hash_table.ht_locks[i].ht_lock, 538789Sahrens NULL, MUTEX_DEFAULT, NULL); 539789Sahrens } 540789Sahrens } 541789Sahrens 542789Sahrens #define ARC_MINTIME (hz>>4) /* 62 ms */ 543789Sahrens 544789Sahrens static void 545789Sahrens add_reference(arc_buf_hdr_t *ab, kmutex_t *hash_lock, void *tag) 546789Sahrens { 547789Sahrens ASSERT(MUTEX_HELD(hash_lock)); 548789Sahrens 549789Sahrens if ((refcount_add(&ab->b_refcnt, tag) == 1) && 550789Sahrens (ab->b_state != arc.anon)) { 5511544Seschrock int delta = ab->b_size * ab->b_datacnt; 552789Sahrens 553789Sahrens ASSERT(!MUTEX_HELD(&ab->b_state->mtx)); 554789Sahrens mutex_enter(&ab->b_state->mtx); 555789Sahrens ASSERT(list_link_active(&ab->b_arc_node)); 556789Sahrens list_remove(&ab->b_state->list, ab); 5571544Seschrock if (GHOST_STATE(ab->b_state)) { 5581544Seschrock ASSERT3U(ab->b_datacnt, ==, 0); 5591544Seschrock ASSERT3P(ab->b_buf, ==, NULL); 5601544Seschrock delta = ab->b_size; 5611544Seschrock } 5621544Seschrock ASSERT(delta > 0); 5631544Seschrock ASSERT3U(ab->b_state->lsize, >=, delta); 5641544Seschrock atomic_add_64(&ab->b_state->lsize, -delta); 565789Sahrens mutex_exit(&ab->b_state->mtx); 5662391Smaybee /* remove the prefetch flag is we get a reference */ 5672391Smaybee if (ab->b_flags & ARC_PREFETCH) 5682391Smaybee ab->b_flags &= ~ARC_PREFETCH; 569789Sahrens } 570789Sahrens } 571789Sahrens 572789Sahrens static int 573789Sahrens remove_reference(arc_buf_hdr_t *ab, kmutex_t *hash_lock, void *tag) 574789Sahrens { 575789Sahrens int cnt; 576789Sahrens 5771544Seschrock ASSERT(ab->b_state == arc.anon || MUTEX_HELD(hash_lock)); 5781544Seschrock ASSERT(!GHOST_STATE(ab->b_state)); 579789Sahrens 580789Sahrens if (((cnt = refcount_remove(&ab->b_refcnt, tag)) == 0) && 581789Sahrens (ab->b_state != arc.anon)) { 582789Sahrens 583789Sahrens ASSERT(!MUTEX_HELD(&ab->b_state->mtx)); 584789Sahrens mutex_enter(&ab->b_state->mtx); 585789Sahrens ASSERT(!list_link_active(&ab->b_arc_node)); 586789Sahrens list_insert_head(&ab->b_state->list, ab); 5871544Seschrock ASSERT(ab->b_datacnt > 0); 5881544Seschrock atomic_add_64(&ab->b_state->lsize, ab->b_size * ab->b_datacnt); 5891544Seschrock ASSERT3U(ab->b_state->size, >=, ab->b_state->lsize); 590789Sahrens mutex_exit(&ab->b_state->mtx); 591789Sahrens } 592789Sahrens return (cnt); 593789Sahrens } 594789Sahrens 595789Sahrens /* 596789Sahrens * Move the supplied buffer to the indicated state. The mutex 597789Sahrens * for the buffer must be held by the caller. 598789Sahrens */ 599789Sahrens static void 6001544Seschrock arc_change_state(arc_state_t *new_state, arc_buf_hdr_t *ab, kmutex_t *hash_lock) 601789Sahrens { 6021544Seschrock arc_state_t *old_state = ab->b_state; 6031544Seschrock int refcnt = refcount_count(&ab->b_refcnt); 6041544Seschrock int from_delta, to_delta; 605789Sahrens 606789Sahrens ASSERT(MUTEX_HELD(hash_lock)); 6071544Seschrock ASSERT(new_state != old_state); 6081544Seschrock ASSERT(refcnt == 0 || ab->b_datacnt > 0); 6091544Seschrock ASSERT(ab->b_datacnt == 0 || !GHOST_STATE(new_state)); 6101544Seschrock 6111544Seschrock from_delta = to_delta = ab->b_datacnt * ab->b_size; 612789Sahrens 613789Sahrens /* 614789Sahrens * If this buffer is evictable, transfer it from the 615789Sahrens * old state list to the new state list. 616789Sahrens */ 6171544Seschrock if (refcnt == 0) { 6181544Seschrock if (old_state != arc.anon) { 6191544Seschrock int use_mutex = !MUTEX_HELD(&old_state->mtx); 6201544Seschrock 6211544Seschrock if (use_mutex) 6221544Seschrock mutex_enter(&old_state->mtx); 6231544Seschrock 6241544Seschrock ASSERT(list_link_active(&ab->b_arc_node)); 6251544Seschrock list_remove(&old_state->list, ab); 626789Sahrens 6272391Smaybee /* 6282391Smaybee * If prefetching out of the ghost cache, 6292391Smaybee * we will have a non-null datacnt. 6302391Smaybee */ 6312391Smaybee if (GHOST_STATE(old_state) && ab->b_datacnt == 0) { 6322391Smaybee /* ghost elements have a ghost size */ 6331544Seschrock ASSERT(ab->b_buf == NULL); 6341544Seschrock from_delta = ab->b_size; 635789Sahrens } 6361544Seschrock ASSERT3U(old_state->lsize, >=, from_delta); 6371544Seschrock atomic_add_64(&old_state->lsize, -from_delta); 6381544Seschrock 6391544Seschrock if (use_mutex) 6401544Seschrock mutex_exit(&old_state->mtx); 641789Sahrens } 642789Sahrens if (new_state != arc.anon) { 6431544Seschrock int use_mutex = !MUTEX_HELD(&new_state->mtx); 644789Sahrens 6451544Seschrock if (use_mutex) 646789Sahrens mutex_enter(&new_state->mtx); 6471544Seschrock 648789Sahrens list_insert_head(&new_state->list, ab); 6491544Seschrock 6501544Seschrock /* ghost elements have a ghost size */ 6511544Seschrock if (GHOST_STATE(new_state)) { 6521544Seschrock ASSERT(ab->b_datacnt == 0); 6531544Seschrock ASSERT(ab->b_buf == NULL); 6541544Seschrock to_delta = ab->b_size; 6551544Seschrock } 6561544Seschrock atomic_add_64(&new_state->lsize, to_delta); 6571544Seschrock ASSERT3U(new_state->size + to_delta, >=, 6581544Seschrock new_state->lsize); 6591544Seschrock 6601544Seschrock if (use_mutex) 661789Sahrens mutex_exit(&new_state->mtx); 662789Sahrens } 663789Sahrens } 664789Sahrens 665789Sahrens ASSERT(!BUF_EMPTY(ab)); 6661544Seschrock if (new_state == arc.anon && old_state != arc.anon) { 667789Sahrens buf_hash_remove(ab); 668789Sahrens } 669789Sahrens 6701544Seschrock /* adjust state sizes */ 6711544Seschrock if (to_delta) 6721544Seschrock atomic_add_64(&new_state->size, to_delta); 6731544Seschrock if (from_delta) { 6741544Seschrock ASSERT3U(old_state->size, >=, from_delta); 6751544Seschrock atomic_add_64(&old_state->size, -from_delta); 676789Sahrens } 677789Sahrens ab->b_state = new_state; 678789Sahrens } 679789Sahrens 680789Sahrens arc_buf_t * 681789Sahrens arc_buf_alloc(spa_t *spa, int size, void *tag) 682789Sahrens { 683789Sahrens arc_buf_hdr_t *hdr; 684789Sahrens arc_buf_t *buf; 685789Sahrens 686789Sahrens ASSERT3U(size, >, 0); 687789Sahrens hdr = kmem_cache_alloc(hdr_cache, KM_SLEEP); 688789Sahrens ASSERT(BUF_EMPTY(hdr)); 689789Sahrens hdr->b_size = size; 690789Sahrens hdr->b_spa = spa; 691789Sahrens hdr->b_state = arc.anon; 692789Sahrens hdr->b_arc_access = 0; 693789Sahrens buf = kmem_cache_alloc(buf_cache, KM_SLEEP); 694789Sahrens buf->b_hdr = hdr; 6952688Smaybee buf->b_data = NULL; 6961544Seschrock buf->b_efunc = NULL; 6971544Seschrock buf->b_private = NULL; 698789Sahrens buf->b_next = NULL; 699789Sahrens hdr->b_buf = buf; 7002688Smaybee arc_get_data_buf(buf); 7011544Seschrock hdr->b_datacnt = 1; 702789Sahrens hdr->b_flags = 0; 703789Sahrens ASSERT(refcount_is_zero(&hdr->b_refcnt)); 704789Sahrens (void) refcount_add(&hdr->b_refcnt, tag); 705789Sahrens 706789Sahrens return (buf); 707789Sahrens } 708789Sahrens 7092688Smaybee static arc_buf_t * 7102688Smaybee arc_buf_clone(arc_buf_t *from) 7111544Seschrock { 7122688Smaybee arc_buf_t *buf; 7132688Smaybee arc_buf_hdr_t *hdr = from->b_hdr; 7142688Smaybee uint64_t size = hdr->b_size; 7151544Seschrock 7162688Smaybee buf = kmem_cache_alloc(buf_cache, KM_SLEEP); 7172688Smaybee buf->b_hdr = hdr; 7182688Smaybee buf->b_data = NULL; 7192688Smaybee buf->b_efunc = NULL; 7202688Smaybee buf->b_private = NULL; 7212688Smaybee buf->b_next = hdr->b_buf; 7222688Smaybee hdr->b_buf = buf; 7232688Smaybee arc_get_data_buf(buf); 7242688Smaybee bcopy(from->b_data, buf->b_data, size); 7252688Smaybee hdr->b_datacnt += 1; 7262688Smaybee return (buf); 7271544Seschrock } 7281544Seschrock 7291544Seschrock void 7301544Seschrock arc_buf_add_ref(arc_buf_t *buf, void* tag) 7311544Seschrock { 732*2887Smaybee arc_buf_hdr_t *hdr; 7331544Seschrock kmutex_t *hash_lock; 7341544Seschrock 7352724Smaybee /* 7362724Smaybee * Check to see if this buffer is currently being evicted via 737*2887Smaybee * arc_do_user_evicts(). 7382724Smaybee */ 739*2887Smaybee mutex_enter(&arc_eviction_mtx); 740*2887Smaybee hdr = buf->b_hdr; 741*2887Smaybee if (hdr == NULL) { 742*2887Smaybee mutex_exit(&arc_eviction_mtx); 7432724Smaybee return; 744*2887Smaybee } 745*2887Smaybee hash_lock = HDR_LOCK(hdr); 746*2887Smaybee mutex_exit(&arc_eviction_mtx); 7472724Smaybee 7482724Smaybee mutex_enter(hash_lock); 7491544Seschrock if (buf->b_data == NULL) { 7501544Seschrock /* 7511544Seschrock * This buffer is evicted. 7521544Seschrock */ 7532724Smaybee mutex_exit(hash_lock); 7541544Seschrock return; 7551544Seschrock } 7561544Seschrock 7572724Smaybee ASSERT(buf->b_hdr == hdr); 7582724Smaybee ASSERT(hdr->b_state == arc.mru || hdr->b_state == arc.mfu); 7591544Seschrock add_reference(hdr, hash_lock, tag); 7602688Smaybee arc_access(hdr, hash_lock); 7612688Smaybee mutex_exit(hash_lock); 7621544Seschrock atomic_add_64(&arc.hits, 1); 7631544Seschrock } 7641544Seschrock 765789Sahrens static void 7662688Smaybee arc_buf_destroy(arc_buf_t *buf, boolean_t recycle, boolean_t all) 7671544Seschrock { 7681544Seschrock arc_buf_t **bufp; 7691544Seschrock 7701544Seschrock /* free up data associated with the buf */ 7711544Seschrock if (buf->b_data) { 7721544Seschrock arc_state_t *state = buf->b_hdr->b_state; 7731544Seschrock uint64_t size = buf->b_hdr->b_size; 7741544Seschrock 7752688Smaybee if (!recycle) { 7762688Smaybee zio_buf_free(buf->b_data, size); 7772688Smaybee atomic_add_64(&arc.size, -size); 7782688Smaybee } 7791544Seschrock if (list_link_active(&buf->b_hdr->b_arc_node)) { 7801544Seschrock ASSERT(refcount_is_zero(&buf->b_hdr->b_refcnt)); 7811544Seschrock ASSERT(state != arc.anon); 7821544Seschrock ASSERT3U(state->lsize, >=, size); 7831544Seschrock atomic_add_64(&state->lsize, -size); 7841544Seschrock } 7851544Seschrock ASSERT3U(state->size, >=, size); 7861544Seschrock atomic_add_64(&state->size, -size); 7871544Seschrock buf->b_data = NULL; 7881544Seschrock ASSERT(buf->b_hdr->b_datacnt > 0); 7891544Seschrock buf->b_hdr->b_datacnt -= 1; 7901544Seschrock } 7911544Seschrock 7921544Seschrock /* only remove the buf if requested */ 7931544Seschrock if (!all) 7941544Seschrock return; 7951544Seschrock 7961544Seschrock /* remove the buf from the hdr list */ 7971544Seschrock for (bufp = &buf->b_hdr->b_buf; *bufp != buf; bufp = &(*bufp)->b_next) 7981544Seschrock continue; 7991544Seschrock *bufp = buf->b_next; 8001544Seschrock 8011544Seschrock ASSERT(buf->b_efunc == NULL); 8021544Seschrock 8031544Seschrock /* clean up the buf */ 8041544Seschrock buf->b_hdr = NULL; 8051544Seschrock kmem_cache_free(buf_cache, buf); 8061544Seschrock } 8071544Seschrock 8081544Seschrock static void 8091544Seschrock arc_hdr_destroy(arc_buf_hdr_t *hdr) 810789Sahrens { 811789Sahrens ASSERT(refcount_is_zero(&hdr->b_refcnt)); 812789Sahrens ASSERT3P(hdr->b_state, ==, arc.anon); 8131544Seschrock ASSERT(!HDR_IO_IN_PROGRESS(hdr)); 814789Sahrens 815789Sahrens if (!BUF_EMPTY(hdr)) { 8161544Seschrock ASSERT(!HDR_IN_HASH_TABLE(hdr)); 817789Sahrens bzero(&hdr->b_dva, sizeof (dva_t)); 818789Sahrens hdr->b_birth = 0; 819789Sahrens hdr->b_cksum0 = 0; 820789Sahrens } 8211544Seschrock while (hdr->b_buf) { 822789Sahrens arc_buf_t *buf = hdr->b_buf; 823789Sahrens 8241544Seschrock if (buf->b_efunc) { 8251544Seschrock mutex_enter(&arc_eviction_mtx); 8261544Seschrock ASSERT(buf->b_hdr != NULL); 8272688Smaybee arc_buf_destroy(hdr->b_buf, FALSE, FALSE); 8281544Seschrock hdr->b_buf = buf->b_next; 829*2887Smaybee buf->b_hdr = &arc_eviction_hdr; 8301544Seschrock buf->b_next = arc_eviction_list; 8311544Seschrock arc_eviction_list = buf; 8321544Seschrock mutex_exit(&arc_eviction_mtx); 8331544Seschrock } else { 8342688Smaybee arc_buf_destroy(hdr->b_buf, FALSE, TRUE); 8351544Seschrock } 836789Sahrens } 8371544Seschrock 838789Sahrens ASSERT(!list_link_active(&hdr->b_arc_node)); 839789Sahrens ASSERT3P(hdr->b_hash_next, ==, NULL); 840789Sahrens ASSERT3P(hdr->b_acb, ==, NULL); 841789Sahrens kmem_cache_free(hdr_cache, hdr); 842789Sahrens } 843789Sahrens 844789Sahrens void 845789Sahrens arc_buf_free(arc_buf_t *buf, void *tag) 846789Sahrens { 847789Sahrens arc_buf_hdr_t *hdr = buf->b_hdr; 8481544Seschrock int hashed = hdr->b_state != arc.anon; 8491544Seschrock 8501544Seschrock ASSERT(buf->b_efunc == NULL); 8511544Seschrock ASSERT(buf->b_data != NULL); 8521544Seschrock 8531544Seschrock if (hashed) { 8541544Seschrock kmutex_t *hash_lock = HDR_LOCK(hdr); 8551544Seschrock 8561544Seschrock mutex_enter(hash_lock); 8571544Seschrock (void) remove_reference(hdr, hash_lock, tag); 8581544Seschrock if (hdr->b_datacnt > 1) 8592688Smaybee arc_buf_destroy(buf, FALSE, TRUE); 8601544Seschrock else 8611544Seschrock hdr->b_flags |= ARC_BUF_AVAILABLE; 8621544Seschrock mutex_exit(hash_lock); 8631544Seschrock } else if (HDR_IO_IN_PROGRESS(hdr)) { 8641544Seschrock int destroy_hdr; 8651544Seschrock /* 8661544Seschrock * We are in the middle of an async write. Don't destroy 8671544Seschrock * this buffer unless the write completes before we finish 8681544Seschrock * decrementing the reference count. 8691544Seschrock */ 8701544Seschrock mutex_enter(&arc_eviction_mtx); 8711544Seschrock (void) remove_reference(hdr, NULL, tag); 8721544Seschrock ASSERT(refcount_is_zero(&hdr->b_refcnt)); 8731544Seschrock destroy_hdr = !HDR_IO_IN_PROGRESS(hdr); 8741544Seschrock mutex_exit(&arc_eviction_mtx); 8751544Seschrock if (destroy_hdr) 8761544Seschrock arc_hdr_destroy(hdr); 8771544Seschrock } else { 8781544Seschrock if (remove_reference(hdr, NULL, tag) > 0) { 8791544Seschrock ASSERT(HDR_IO_ERROR(hdr)); 8802688Smaybee arc_buf_destroy(buf, FALSE, TRUE); 8811544Seschrock } else { 8821544Seschrock arc_hdr_destroy(hdr); 8831544Seschrock } 8841544Seschrock } 8851544Seschrock } 8861544Seschrock 8871544Seschrock int 8881544Seschrock arc_buf_remove_ref(arc_buf_t *buf, void* tag) 8891544Seschrock { 8901544Seschrock arc_buf_hdr_t *hdr = buf->b_hdr; 891789Sahrens kmutex_t *hash_lock = HDR_LOCK(hdr); 8921544Seschrock int no_callback = (buf->b_efunc == NULL); 8931544Seschrock 8941544Seschrock if (hdr->b_state == arc.anon) { 8951544Seschrock arc_buf_free(buf, tag); 8961544Seschrock return (no_callback); 8971544Seschrock } 898789Sahrens 899789Sahrens mutex_enter(hash_lock); 9001544Seschrock ASSERT(hdr->b_state != arc.anon); 9011544Seschrock ASSERT(buf->b_data != NULL); 902789Sahrens 9031544Seschrock (void) remove_reference(hdr, hash_lock, tag); 9041544Seschrock if (hdr->b_datacnt > 1) { 9051544Seschrock if (no_callback) 9062688Smaybee arc_buf_destroy(buf, FALSE, TRUE); 9071544Seschrock } else if (no_callback) { 9081544Seschrock ASSERT(hdr->b_buf == buf && buf->b_next == NULL); 9091544Seschrock hdr->b_flags |= ARC_BUF_AVAILABLE; 910789Sahrens } 9111544Seschrock ASSERT(no_callback || hdr->b_datacnt > 1 || 9121544Seschrock refcount_is_zero(&hdr->b_refcnt)); 913789Sahrens mutex_exit(hash_lock); 9141544Seschrock return (no_callback); 915789Sahrens } 916789Sahrens 917789Sahrens int 918789Sahrens arc_buf_size(arc_buf_t *buf) 919789Sahrens { 920789Sahrens return (buf->b_hdr->b_size); 921789Sahrens } 922789Sahrens 923789Sahrens /* 924789Sahrens * Evict buffers from list until we've removed the specified number of 925789Sahrens * bytes. Move the removed buffers to the appropriate evict state. 9262688Smaybee * If the recycle flag is set, then attempt to "recycle" a buffer: 9272688Smaybee * - look for a buffer to evict that is `bytes' long. 9282688Smaybee * - return the data block from this buffer rather than freeing it. 9292688Smaybee * This flag is used by callers that are trying to make space for a 9302688Smaybee * new buffer in a full arc cache. 931789Sahrens */ 9322688Smaybee static void * 9332688Smaybee arc_evict(arc_state_t *state, int64_t bytes, boolean_t recycle) 934789Sahrens { 935789Sahrens arc_state_t *evicted_state; 9362688Smaybee uint64_t bytes_evicted = 0, skipped = 0, missed = 0; 937789Sahrens arc_buf_hdr_t *ab, *ab_prev; 938789Sahrens kmutex_t *hash_lock; 9392688Smaybee boolean_t have_lock; 9402688Smaybee void *steal = NULL; 941789Sahrens 9421544Seschrock ASSERT(state == arc.mru || state == arc.mfu); 943789Sahrens 9441544Seschrock evicted_state = (state == arc.mru) ? arc.mru_ghost : arc.mfu_ghost; 945789Sahrens 946789Sahrens mutex_enter(&state->mtx); 947789Sahrens mutex_enter(&evicted_state->mtx); 948789Sahrens 949789Sahrens for (ab = list_tail(&state->list); ab; ab = ab_prev) { 950789Sahrens ab_prev = list_prev(&state->list, ab); 9512391Smaybee /* prefetch buffers have a minimum lifespan */ 9522688Smaybee if (HDR_IO_IN_PROGRESS(ab) || 9532688Smaybee (ab->b_flags & (ARC_PREFETCH|ARC_INDIRECT) && 9542688Smaybee lbolt - ab->b_arc_access < arc_min_prefetch_lifespan)) { 9552391Smaybee skipped++; 9562391Smaybee continue; 9572391Smaybee } 9582688Smaybee if (recycle && (ab->b_size != bytes || ab->b_datacnt > 1)) 9592688Smaybee continue; 960789Sahrens hash_lock = HDR_LOCK(ab); 9612688Smaybee have_lock = MUTEX_HELD(hash_lock); 9622688Smaybee if (have_lock || mutex_tryenter(hash_lock)) { 963789Sahrens ASSERT3U(refcount_count(&ab->b_refcnt), ==, 0); 9641544Seschrock ASSERT(ab->b_datacnt > 0); 9651544Seschrock while (ab->b_buf) { 9661544Seschrock arc_buf_t *buf = ab->b_buf; 9672688Smaybee if (buf->b_data) { 9681544Seschrock bytes_evicted += ab->b_size; 9692688Smaybee if (recycle) 9702688Smaybee steal = buf->b_data; 9712688Smaybee } 9721544Seschrock if (buf->b_efunc) { 9731544Seschrock mutex_enter(&arc_eviction_mtx); 9742688Smaybee arc_buf_destroy(buf, recycle, FALSE); 9751544Seschrock ab->b_buf = buf->b_next; 976*2887Smaybee buf->b_hdr = &arc_eviction_hdr; 9771544Seschrock buf->b_next = arc_eviction_list; 9781544Seschrock arc_eviction_list = buf; 9791544Seschrock mutex_exit(&arc_eviction_mtx); 9801544Seschrock } else { 9812688Smaybee arc_buf_destroy(buf, recycle, TRUE); 9821544Seschrock } 9831544Seschrock } 9841544Seschrock ASSERT(ab->b_datacnt == 0); 985789Sahrens arc_change_state(evicted_state, ab, hash_lock); 9861544Seschrock ASSERT(HDR_IN_HASH_TABLE(ab)); 9871544Seschrock ab->b_flags = ARC_IN_HASH_TABLE; 988789Sahrens DTRACE_PROBE1(arc__evict, arc_buf_hdr_t *, ab); 9892688Smaybee if (!have_lock) 9902688Smaybee mutex_exit(hash_lock); 9911544Seschrock if (bytes >= 0 && bytes_evicted >= bytes) 992789Sahrens break; 993789Sahrens } else { 9942688Smaybee missed += 1; 995789Sahrens } 996789Sahrens } 997789Sahrens mutex_exit(&evicted_state->mtx); 998789Sahrens mutex_exit(&state->mtx); 999789Sahrens 1000789Sahrens if (bytes_evicted < bytes) 1001789Sahrens dprintf("only evicted %lld bytes from %x", 1002789Sahrens (longlong_t)bytes_evicted, state); 1003789Sahrens 10042688Smaybee if (skipped) 10052688Smaybee atomic_add_64(&arc.evict_skip, skipped); 10062688Smaybee if (missed) 10072688Smaybee atomic_add_64(&arc.mutex_miss, missed); 10082688Smaybee return (steal); 1009789Sahrens } 1010789Sahrens 1011789Sahrens /* 1012789Sahrens * Remove buffers from list until we've removed the specified number of 1013789Sahrens * bytes. Destroy the buffers that are removed. 1014789Sahrens */ 1015789Sahrens static void 10161544Seschrock arc_evict_ghost(arc_state_t *state, int64_t bytes) 1017789Sahrens { 1018789Sahrens arc_buf_hdr_t *ab, *ab_prev; 1019789Sahrens kmutex_t *hash_lock; 10201544Seschrock uint64_t bytes_deleted = 0; 10211544Seschrock uint_t bufs_skipped = 0; 1022789Sahrens 10231544Seschrock ASSERT(GHOST_STATE(state)); 1024789Sahrens top: 1025789Sahrens mutex_enter(&state->mtx); 1026789Sahrens for (ab = list_tail(&state->list); ab; ab = ab_prev) { 1027789Sahrens ab_prev = list_prev(&state->list, ab); 1028789Sahrens hash_lock = HDR_LOCK(ab); 1029789Sahrens if (mutex_tryenter(hash_lock)) { 10302391Smaybee ASSERT(!HDR_IO_IN_PROGRESS(ab)); 10311544Seschrock ASSERT(ab->b_buf == NULL); 1032789Sahrens arc_change_state(arc.anon, ab, hash_lock); 1033789Sahrens mutex_exit(hash_lock); 1034789Sahrens atomic_add_64(&arc.deleted, 1); 10351544Seschrock bytes_deleted += ab->b_size; 10361544Seschrock arc_hdr_destroy(ab); 1037789Sahrens DTRACE_PROBE1(arc__delete, arc_buf_hdr_t *, ab); 1038789Sahrens if (bytes >= 0 && bytes_deleted >= bytes) 1039789Sahrens break; 1040789Sahrens } else { 1041789Sahrens if (bytes < 0) { 1042789Sahrens mutex_exit(&state->mtx); 1043789Sahrens mutex_enter(hash_lock); 1044789Sahrens mutex_exit(hash_lock); 1045789Sahrens goto top; 1046789Sahrens } 1047789Sahrens bufs_skipped += 1; 1048789Sahrens } 1049789Sahrens } 1050789Sahrens mutex_exit(&state->mtx); 1051789Sahrens 1052789Sahrens if (bufs_skipped) { 10532688Smaybee atomic_add_64(&arc.mutex_miss, bufs_skipped); 1054789Sahrens ASSERT(bytes >= 0); 1055789Sahrens } 1056789Sahrens 1057789Sahrens if (bytes_deleted < bytes) 1058789Sahrens dprintf("only deleted %lld bytes from %p", 1059789Sahrens (longlong_t)bytes_deleted, state); 1060789Sahrens } 1061789Sahrens 1062789Sahrens static void 1063789Sahrens arc_adjust(void) 1064789Sahrens { 1065789Sahrens int64_t top_sz, mru_over, arc_over; 1066789Sahrens 10671544Seschrock top_sz = arc.anon->size + arc.mru->size; 1068789Sahrens 10691544Seschrock if (top_sz > arc.p && arc.mru->lsize > 0) { 10701544Seschrock int64_t toevict = MIN(arc.mru->lsize, top_sz-arc.p); 10712688Smaybee (void) arc_evict(arc.mru, toevict, FALSE); 10721544Seschrock top_sz = arc.anon->size + arc.mru->size; 1073789Sahrens } 1074789Sahrens 10751544Seschrock mru_over = top_sz + arc.mru_ghost->size - arc.c; 1076789Sahrens 1077789Sahrens if (mru_over > 0) { 10781544Seschrock if (arc.mru_ghost->lsize > 0) { 10791544Seschrock int64_t todelete = MIN(arc.mru_ghost->lsize, mru_over); 10801544Seschrock arc_evict_ghost(arc.mru_ghost, todelete); 1081789Sahrens } 1082789Sahrens } 1083789Sahrens 1084789Sahrens if ((arc_over = arc.size - arc.c) > 0) { 10851544Seschrock int64_t tbl_over; 1086789Sahrens 10871544Seschrock if (arc.mfu->lsize > 0) { 10881544Seschrock int64_t toevict = MIN(arc.mfu->lsize, arc_over); 10892688Smaybee (void) arc_evict(arc.mfu, toevict, FALSE); 1090789Sahrens } 1091789Sahrens 10921544Seschrock tbl_over = arc.size + arc.mru_ghost->lsize + 10931544Seschrock arc.mfu_ghost->lsize - arc.c*2; 1094789Sahrens 10951544Seschrock if (tbl_over > 0 && arc.mfu_ghost->lsize > 0) { 10961544Seschrock int64_t todelete = MIN(arc.mfu_ghost->lsize, tbl_over); 10971544Seschrock arc_evict_ghost(arc.mfu_ghost, todelete); 1098789Sahrens } 1099789Sahrens } 1100789Sahrens } 1101789Sahrens 11021544Seschrock static void 11031544Seschrock arc_do_user_evicts(void) 11041544Seschrock { 11051544Seschrock mutex_enter(&arc_eviction_mtx); 11061544Seschrock while (arc_eviction_list != NULL) { 11071544Seschrock arc_buf_t *buf = arc_eviction_list; 11081544Seschrock arc_eviction_list = buf->b_next; 11091544Seschrock buf->b_hdr = NULL; 11101544Seschrock mutex_exit(&arc_eviction_mtx); 11111544Seschrock 11121819Smaybee if (buf->b_efunc != NULL) 11131819Smaybee VERIFY(buf->b_efunc(buf) == 0); 11141544Seschrock 11151544Seschrock buf->b_efunc = NULL; 11161544Seschrock buf->b_private = NULL; 11171544Seschrock kmem_cache_free(buf_cache, buf); 11181544Seschrock mutex_enter(&arc_eviction_mtx); 11191544Seschrock } 11201544Seschrock mutex_exit(&arc_eviction_mtx); 11211544Seschrock } 11221544Seschrock 1123789Sahrens /* 1124789Sahrens * Flush all *evictable* data from the cache. 1125789Sahrens * NOTE: this will not touch "active" (i.e. referenced) data. 1126789Sahrens */ 1127789Sahrens void 1128789Sahrens arc_flush(void) 1129789Sahrens { 11302688Smaybee while (list_head(&arc.mru->list)) 11312688Smaybee (void) arc_evict(arc.mru, -1, FALSE); 11322688Smaybee while (list_head(&arc.mfu->list)) 11332688Smaybee (void) arc_evict(arc.mfu, -1, FALSE); 1134789Sahrens 11351544Seschrock arc_evict_ghost(arc.mru_ghost, -1); 11361544Seschrock arc_evict_ghost(arc.mfu_ghost, -1); 11371544Seschrock 11381544Seschrock mutex_enter(&arc_reclaim_thr_lock); 11391544Seschrock arc_do_user_evicts(); 11401544Seschrock mutex_exit(&arc_reclaim_thr_lock); 11411544Seschrock ASSERT(arc_eviction_list == NULL); 1142789Sahrens } 1143789Sahrens 11442391Smaybee int arc_kmem_reclaim_shift = 5; /* log2(fraction of arc to reclaim) */ 11452391Smaybee 1146789Sahrens void 1147789Sahrens arc_kmem_reclaim(void) 1148789Sahrens { 11492048Sstans uint64_t to_free; 11502048Sstans 1151789Sahrens /* 1152789Sahrens * We need arc_reclaim_lock because we don't want multiple 1153789Sahrens * threads trying to reclaim concurrently. 1154789Sahrens */ 1155789Sahrens 1156789Sahrens /* 1157789Sahrens * umem calls the reclaim func when we destroy the buf cache, 1158789Sahrens * which is after we do arc_fini(). So we set a flag to prevent 1159789Sahrens * accessing the destroyed mutexes and lists. 1160789Sahrens */ 1161789Sahrens if (arc_dead) 1162789Sahrens return; 1163789Sahrens 11641544Seschrock if (arc.c <= arc.c_min) 11651544Seschrock return; 11661544Seschrock 1167789Sahrens mutex_enter(&arc_reclaim_lock); 1168789Sahrens 11692048Sstans #ifdef _KERNEL 11702391Smaybee to_free = MAX(arc.c >> arc_kmem_reclaim_shift, ptob(needfree)); 11712048Sstans #else 11722391Smaybee to_free = arc.c >> arc_kmem_reclaim_shift; 11732048Sstans #endif 11742048Sstans if (arc.c > to_free) 11752048Sstans atomic_add_64(&arc.c, -to_free); 11762048Sstans else 11772048Sstans arc.c = arc.c_min; 11782048Sstans 11792391Smaybee atomic_add_64(&arc.p, -(arc.p >> arc_kmem_reclaim_shift)); 11801544Seschrock if (arc.c > arc.size) 11811544Seschrock arc.c = arc.size; 1182789Sahrens if (arc.c < arc.c_min) 1183789Sahrens arc.c = arc.c_min; 11841544Seschrock if (arc.p > arc.c) 11851544Seschrock arc.p = (arc.c >> 1); 11861544Seschrock ASSERT((int64_t)arc.p >= 0); 1187789Sahrens 1188789Sahrens arc_adjust(); 1189789Sahrens 1190789Sahrens mutex_exit(&arc_reclaim_lock); 1191789Sahrens } 1192789Sahrens 1193789Sahrens static int 1194789Sahrens arc_reclaim_needed(void) 1195789Sahrens { 1196789Sahrens uint64_t extra; 1197789Sahrens 1198789Sahrens #ifdef _KERNEL 11992048Sstans 12002048Sstans if (needfree) 12012048Sstans return (1); 12022048Sstans 1203789Sahrens /* 1204789Sahrens * take 'desfree' extra pages, so we reclaim sooner, rather than later 1205789Sahrens */ 1206789Sahrens extra = desfree; 1207789Sahrens 1208789Sahrens /* 1209789Sahrens * check that we're out of range of the pageout scanner. It starts to 1210789Sahrens * schedule paging if freemem is less than lotsfree and needfree. 1211789Sahrens * lotsfree is the high-water mark for pageout, and needfree is the 1212789Sahrens * number of needed free pages. We add extra pages here to make sure 1213789Sahrens * the scanner doesn't start up while we're freeing memory. 1214789Sahrens */ 1215789Sahrens if (freemem < lotsfree + needfree + extra) 1216789Sahrens return (1); 1217789Sahrens 1218789Sahrens /* 1219789Sahrens * check to make sure that swapfs has enough space so that anon 1220789Sahrens * reservations can still succeeed. anon_resvmem() checks that the 1221789Sahrens * availrmem is greater than swapfs_minfree, and the number of reserved 1222789Sahrens * swap pages. We also add a bit of extra here just to prevent 1223789Sahrens * circumstances from getting really dire. 1224789Sahrens */ 1225789Sahrens if (availrmem < swapfs_minfree + swapfs_reserve + extra) 1226789Sahrens return (1); 1227789Sahrens 12281936Smaybee #if defined(__i386) 1229789Sahrens /* 1230789Sahrens * If we're on an i386 platform, it's possible that we'll exhaust the 1231789Sahrens * kernel heap space before we ever run out of available physical 1232789Sahrens * memory. Most checks of the size of the heap_area compare against 1233789Sahrens * tune.t_minarmem, which is the minimum available real memory that we 1234789Sahrens * can have in the system. However, this is generally fixed at 25 pages 1235789Sahrens * which is so low that it's useless. In this comparison, we seek to 1236789Sahrens * calculate the total heap-size, and reclaim if more than 3/4ths of the 1237789Sahrens * heap is allocated. (Or, in the caclulation, if less than 1/4th is 1238789Sahrens * free) 1239789Sahrens */ 1240789Sahrens if (btop(vmem_size(heap_arena, VMEM_FREE)) < 1241789Sahrens (btop(vmem_size(heap_arena, VMEM_FREE | VMEM_ALLOC)) >> 2)) 1242789Sahrens return (1); 1243789Sahrens #endif 1244789Sahrens 1245789Sahrens #else 1246789Sahrens if (spa_get_random(100) == 0) 1247789Sahrens return (1); 1248789Sahrens #endif 1249789Sahrens return (0); 1250789Sahrens } 1251789Sahrens 1252789Sahrens static void 1253789Sahrens arc_kmem_reap_now(arc_reclaim_strategy_t strat) 1254789Sahrens { 1255789Sahrens size_t i; 1256789Sahrens kmem_cache_t *prev_cache = NULL; 1257789Sahrens extern kmem_cache_t *zio_buf_cache[]; 1258789Sahrens 12591484Sek110237 #ifdef _KERNEL 12601484Sek110237 /* 12611484Sek110237 * First purge some DNLC entries, in case the DNLC is using 12621484Sek110237 * up too much memory. 12631484Sek110237 */ 12641505Sek110237 dnlc_reduce_cache((void *)(uintptr_t)arc_reduce_dnlc_percent); 12651936Smaybee 12661936Smaybee #if defined(__i386) 12671936Smaybee /* 12681936Smaybee * Reclaim unused memory from all kmem caches. 12691936Smaybee */ 12701936Smaybee kmem_reap(); 12711936Smaybee #endif 12721484Sek110237 #endif 12731484Sek110237 1274789Sahrens /* 12751544Seschrock * An agressive reclamation will shrink the cache size as well as 12761544Seschrock * reap free buffers from the arc kmem caches. 1277789Sahrens */ 1278789Sahrens if (strat == ARC_RECLAIM_AGGR) 12791544Seschrock arc_kmem_reclaim(); 1280789Sahrens 1281789Sahrens for (i = 0; i < SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT; i++) { 1282789Sahrens if (zio_buf_cache[i] != prev_cache) { 1283789Sahrens prev_cache = zio_buf_cache[i]; 1284789Sahrens kmem_cache_reap_now(zio_buf_cache[i]); 1285789Sahrens } 1286789Sahrens } 12871544Seschrock kmem_cache_reap_now(buf_cache); 12881544Seschrock kmem_cache_reap_now(hdr_cache); 1289789Sahrens } 1290789Sahrens 1291789Sahrens static void 1292789Sahrens arc_reclaim_thread(void) 1293789Sahrens { 1294789Sahrens clock_t growtime = 0; 1295789Sahrens arc_reclaim_strategy_t last_reclaim = ARC_RECLAIM_CONS; 1296789Sahrens callb_cpr_t cpr; 1297789Sahrens 1298789Sahrens CALLB_CPR_INIT(&cpr, &arc_reclaim_thr_lock, callb_generic_cpr, FTAG); 1299789Sahrens 1300789Sahrens mutex_enter(&arc_reclaim_thr_lock); 1301789Sahrens while (arc_thread_exit == 0) { 1302789Sahrens if (arc_reclaim_needed()) { 1303789Sahrens 1304789Sahrens if (arc.no_grow) { 1305789Sahrens if (last_reclaim == ARC_RECLAIM_CONS) { 1306789Sahrens last_reclaim = ARC_RECLAIM_AGGR; 1307789Sahrens } else { 1308789Sahrens last_reclaim = ARC_RECLAIM_CONS; 1309789Sahrens } 1310789Sahrens } else { 1311789Sahrens arc.no_grow = TRUE; 1312789Sahrens last_reclaim = ARC_RECLAIM_AGGR; 1313789Sahrens membar_producer(); 1314789Sahrens } 1315789Sahrens 1316789Sahrens /* reset the growth delay for every reclaim */ 1317789Sahrens growtime = lbolt + (arc_grow_retry * hz); 13182856Snd150628 ASSERT(growtime > 0); 1319789Sahrens 1320789Sahrens arc_kmem_reap_now(last_reclaim); 1321789Sahrens 1322789Sahrens } else if ((growtime > 0) && ((growtime - lbolt) <= 0)) { 1323789Sahrens arc.no_grow = FALSE; 1324789Sahrens } 1325789Sahrens 13261544Seschrock if (arc_eviction_list != NULL) 13271544Seschrock arc_do_user_evicts(); 13281544Seschrock 1329789Sahrens /* block until needed, or one second, whichever is shorter */ 1330789Sahrens CALLB_CPR_SAFE_BEGIN(&cpr); 1331789Sahrens (void) cv_timedwait(&arc_reclaim_thr_cv, 1332789Sahrens &arc_reclaim_thr_lock, (lbolt + hz)); 1333789Sahrens CALLB_CPR_SAFE_END(&cpr, &arc_reclaim_thr_lock); 1334789Sahrens } 1335789Sahrens 1336789Sahrens arc_thread_exit = 0; 1337789Sahrens cv_broadcast(&arc_reclaim_thr_cv); 1338789Sahrens CALLB_CPR_EXIT(&cpr); /* drops arc_reclaim_thr_lock */ 1339789Sahrens thread_exit(); 1340789Sahrens } 1341789Sahrens 13421544Seschrock /* 13431544Seschrock * Adapt arc info given the number of bytes we are trying to add and 13441544Seschrock * the state that we are comming from. This function is only called 13451544Seschrock * when we are adding new content to the cache. 13461544Seschrock */ 1347789Sahrens static void 13481544Seschrock arc_adapt(int bytes, arc_state_t *state) 1349789Sahrens { 13501544Seschrock int mult; 13511544Seschrock 13521544Seschrock ASSERT(bytes > 0); 1353789Sahrens /* 13541544Seschrock * Adapt the target size of the MRU list: 13551544Seschrock * - if we just hit in the MRU ghost list, then increase 13561544Seschrock * the target size of the MRU list. 13571544Seschrock * - if we just hit in the MFU ghost list, then increase 13581544Seschrock * the target size of the MFU list by decreasing the 13591544Seschrock * target size of the MRU list. 1360789Sahrens */ 13611544Seschrock if (state == arc.mru_ghost) { 13621544Seschrock mult = ((arc.mru_ghost->size >= arc.mfu_ghost->size) ? 13631544Seschrock 1 : (arc.mfu_ghost->size/arc.mru_ghost->size)); 13641544Seschrock 13651544Seschrock arc.p = MIN(arc.c, arc.p + bytes * mult); 13661544Seschrock } else if (state == arc.mfu_ghost) { 13671544Seschrock mult = ((arc.mfu_ghost->size >= arc.mru_ghost->size) ? 13681544Seschrock 1 : (arc.mru_ghost->size/arc.mfu_ghost->size)); 13691544Seschrock 13701544Seschrock arc.p = MAX(0, (int64_t)arc.p - bytes * mult); 13711544Seschrock } 13721544Seschrock ASSERT((int64_t)arc.p >= 0); 1373789Sahrens 1374789Sahrens if (arc_reclaim_needed()) { 1375789Sahrens cv_signal(&arc_reclaim_thr_cv); 1376789Sahrens return; 1377789Sahrens } 1378789Sahrens 1379789Sahrens if (arc.no_grow) 1380789Sahrens return; 1381789Sahrens 13821544Seschrock if (arc.c >= arc.c_max) 13831544Seschrock return; 13841544Seschrock 1385789Sahrens /* 13861544Seschrock * If we're within (2 * maxblocksize) bytes of the target 13871544Seschrock * cache size, increment the target cache size 1388789Sahrens */ 13891544Seschrock if (arc.size > arc.c - (2ULL << SPA_MAXBLOCKSHIFT)) { 13901544Seschrock atomic_add_64(&arc.c, (int64_t)bytes); 1391789Sahrens if (arc.c > arc.c_max) 1392789Sahrens arc.c = arc.c_max; 13931544Seschrock else if (state == arc.anon) 13941544Seschrock atomic_add_64(&arc.p, (int64_t)bytes); 13951544Seschrock if (arc.p > arc.c) 13961544Seschrock arc.p = arc.c; 1397789Sahrens } 13981544Seschrock ASSERT((int64_t)arc.p >= 0); 1399789Sahrens } 1400789Sahrens 1401789Sahrens /* 14021544Seschrock * Check if the cache has reached its limits and eviction is required 14031544Seschrock * prior to insert. 1404789Sahrens */ 1405789Sahrens static int 1406789Sahrens arc_evict_needed() 1407789Sahrens { 1408789Sahrens if (arc_reclaim_needed()) 1409789Sahrens return (1); 1410789Sahrens 14111544Seschrock return (arc.size > arc.c); 1412789Sahrens } 1413789Sahrens 1414789Sahrens /* 14152688Smaybee * The buffer, supplied as the first argument, needs a data block. 14162688Smaybee * So, if we are at cache max, determine which cache should be victimized. 14172688Smaybee * We have the following cases: 1418789Sahrens * 14191544Seschrock * 1. Insert for MRU, p > sizeof(arc.anon + arc.mru) -> 1420789Sahrens * In this situation if we're out of space, but the resident size of the MFU is 1421789Sahrens * under the limit, victimize the MFU cache to satisfy this insertion request. 1422789Sahrens * 14231544Seschrock * 2. Insert for MRU, p <= sizeof(arc.anon + arc.mru) -> 1424789Sahrens * Here, we've used up all of the available space for the MRU, so we need to 1425789Sahrens * evict from our own cache instead. Evict from the set of resident MRU 1426789Sahrens * entries. 1427789Sahrens * 14281544Seschrock * 3. Insert for MFU (c - p) > sizeof(arc.mfu) -> 1429789Sahrens * c minus p represents the MFU space in the cache, since p is the size of the 1430789Sahrens * cache that is dedicated to the MRU. In this situation there's still space on 1431789Sahrens * the MFU side, so the MRU side needs to be victimized. 1432789Sahrens * 14331544Seschrock * 4. Insert for MFU (c - p) < sizeof(arc.mfu) -> 1434789Sahrens * MFU's resident set is consuming more space than it has been allotted. In 1435789Sahrens * this situation, we must victimize our own cache, the MFU, for this insertion. 1436789Sahrens */ 1437789Sahrens static void 14382688Smaybee arc_get_data_buf(arc_buf_t *buf) 1439789Sahrens { 14402688Smaybee arc_state_t *state = buf->b_hdr->b_state; 14412688Smaybee uint64_t size = buf->b_hdr->b_size; 14422688Smaybee 14432688Smaybee arc_adapt(size, state); 1444789Sahrens 14452688Smaybee /* 14462688Smaybee * We have not yet reached cache maximum size, 14472688Smaybee * just allocate a new buffer. 14482688Smaybee */ 14492688Smaybee if (!arc_evict_needed()) { 14502688Smaybee buf->b_data = zio_buf_alloc(size); 14512688Smaybee atomic_add_64(&arc.size, size); 14522688Smaybee goto out; 14532688Smaybee } 14542688Smaybee 14552688Smaybee /* 14562688Smaybee * If we are prefetching from the mfu ghost list, this buffer 14572688Smaybee * will end up on the mru list; so steal space from there. 14582688Smaybee */ 14592688Smaybee if (state == arc.mfu_ghost) 14602688Smaybee state = buf->b_hdr->b_flags & ARC_PREFETCH ? arc.mru : arc.mfu; 14612688Smaybee else if (state == arc.mru_ghost) 14622688Smaybee state = arc.mru; 1463789Sahrens 14642688Smaybee if (state == arc.mru || state == arc.anon) { 14652688Smaybee uint64_t mru_used = arc.anon->size + arc.mru->size; 14662688Smaybee state = (arc.p > mru_used) ? arc.mfu : arc.mru; 1467789Sahrens } else { 14682688Smaybee /* MFU cases */ 14692688Smaybee uint64_t mfu_space = arc.c - arc.p; 14702688Smaybee state = (mfu_space > arc.mfu->size) ? arc.mru : arc.mfu; 14712688Smaybee } 14722688Smaybee if ((buf->b_data = arc_evict(state, size, TRUE)) == NULL) { 14732688Smaybee (void) arc_evict(state, size, FALSE); 14742688Smaybee buf->b_data = zio_buf_alloc(size); 14752688Smaybee atomic_add_64(&arc.size, size); 14762688Smaybee atomic_add_64(&arc.recycle_miss, 1); 14772688Smaybee if (arc.size > arc.c) 14782688Smaybee arc_adjust(); 14792688Smaybee } 14802688Smaybee ASSERT(buf->b_data != NULL); 14812688Smaybee out: 14822688Smaybee /* 14832688Smaybee * Update the state size. Note that ghost states have a 14842688Smaybee * "ghost size" and so don't need to be updated. 14852688Smaybee */ 14862688Smaybee if (!GHOST_STATE(buf->b_hdr->b_state)) { 14872688Smaybee arc_buf_hdr_t *hdr = buf->b_hdr; 14882688Smaybee 14892688Smaybee atomic_add_64(&hdr->b_state->size, size); 14902688Smaybee if (list_link_active(&hdr->b_arc_node)) { 14912688Smaybee ASSERT(refcount_is_zero(&hdr->b_refcnt)); 14922688Smaybee atomic_add_64(&hdr->b_state->lsize, size); 1493789Sahrens } 1494789Sahrens } 1495789Sahrens } 1496789Sahrens 1497789Sahrens /* 1498789Sahrens * This routine is called whenever a buffer is accessed. 14991544Seschrock * NOTE: the hash lock is dropped in this function. 1500789Sahrens */ 1501789Sahrens static void 15022688Smaybee arc_access(arc_buf_hdr_t *buf, kmutex_t *hash_lock) 1503789Sahrens { 1504789Sahrens ASSERT(MUTEX_HELD(hash_lock)); 1505789Sahrens 1506789Sahrens if (buf->b_state == arc.anon) { 1507789Sahrens /* 1508789Sahrens * This buffer is not in the cache, and does not 1509789Sahrens * appear in our "ghost" list. Add the new buffer 1510789Sahrens * to the MRU state. 1511789Sahrens */ 1512789Sahrens 1513789Sahrens ASSERT(buf->b_arc_access == 0); 1514789Sahrens buf->b_arc_access = lbolt; 15151544Seschrock DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, buf); 15161544Seschrock arc_change_state(arc.mru, buf, hash_lock); 1517789Sahrens 15181544Seschrock } else if (buf->b_state == arc.mru) { 1519789Sahrens /* 15202391Smaybee * If this buffer is here because of a prefetch, then either: 15212391Smaybee * - clear the flag if this is a "referencing" read 15222391Smaybee * (any subsequent access will bump this into the MFU state). 15232391Smaybee * or 15242391Smaybee * - move the buffer to the head of the list if this is 15252391Smaybee * another prefetch (to make it less likely to be evicted). 1526789Sahrens */ 1527789Sahrens if ((buf->b_flags & ARC_PREFETCH) != 0) { 15282391Smaybee if (refcount_count(&buf->b_refcnt) == 0) { 15292391Smaybee ASSERT(list_link_active(&buf->b_arc_node)); 15302391Smaybee mutex_enter(&arc.mru->mtx); 15312391Smaybee list_remove(&arc.mru->list, buf); 15322391Smaybee list_insert_head(&arc.mru->list, buf); 15332391Smaybee mutex_exit(&arc.mru->mtx); 15342391Smaybee } else { 15352391Smaybee buf->b_flags &= ~ARC_PREFETCH; 15362391Smaybee atomic_add_64(&arc.mru->hits, 1); 15372391Smaybee } 15382391Smaybee buf->b_arc_access = lbolt; 1539789Sahrens return; 1540789Sahrens } 1541789Sahrens 1542789Sahrens /* 1543789Sahrens * This buffer has been "accessed" only once so far, 1544789Sahrens * but it is still in the cache. Move it to the MFU 1545789Sahrens * state. 1546789Sahrens */ 1547789Sahrens if (lbolt > buf->b_arc_access + ARC_MINTIME) { 1548789Sahrens /* 1549789Sahrens * More than 125ms have passed since we 1550789Sahrens * instantiated this buffer. Move it to the 1551789Sahrens * most frequently used state. 1552789Sahrens */ 1553789Sahrens buf->b_arc_access = lbolt; 15541544Seschrock DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf); 15551544Seschrock arc_change_state(arc.mfu, buf, hash_lock); 1556789Sahrens } 15571544Seschrock atomic_add_64(&arc.mru->hits, 1); 15581544Seschrock } else if (buf->b_state == arc.mru_ghost) { 1559789Sahrens arc_state_t *new_state; 1560789Sahrens /* 1561789Sahrens * This buffer has been "accessed" recently, but 1562789Sahrens * was evicted from the cache. Move it to the 1563789Sahrens * MFU state. 1564789Sahrens */ 1565789Sahrens 1566789Sahrens if (buf->b_flags & ARC_PREFETCH) { 15671544Seschrock new_state = arc.mru; 15682391Smaybee if (refcount_count(&buf->b_refcnt) > 0) 15692391Smaybee buf->b_flags &= ~ARC_PREFETCH; 15701544Seschrock DTRACE_PROBE1(new_state__mru, arc_buf_hdr_t *, buf); 1571789Sahrens } else { 15721544Seschrock new_state = arc.mfu; 15731544Seschrock DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf); 1574789Sahrens } 1575789Sahrens 1576789Sahrens buf->b_arc_access = lbolt; 1577789Sahrens arc_change_state(new_state, buf, hash_lock); 1578789Sahrens 15791544Seschrock atomic_add_64(&arc.mru_ghost->hits, 1); 15801544Seschrock } else if (buf->b_state == arc.mfu) { 1581789Sahrens /* 1582789Sahrens * This buffer has been accessed more than once and is 1583789Sahrens * still in the cache. Keep it in the MFU state. 1584789Sahrens * 15852391Smaybee * NOTE: an add_reference() that occurred when we did 15862391Smaybee * the arc_read() will have kicked this off the list. 15872391Smaybee * If it was a prefetch, we will explicitly move it to 15882391Smaybee * the head of the list now. 1589789Sahrens */ 15902391Smaybee if ((buf->b_flags & ARC_PREFETCH) != 0) { 15912391Smaybee ASSERT(refcount_count(&buf->b_refcnt) == 0); 15922391Smaybee ASSERT(list_link_active(&buf->b_arc_node)); 15932391Smaybee mutex_enter(&arc.mfu->mtx); 15942391Smaybee list_remove(&arc.mfu->list, buf); 15952391Smaybee list_insert_head(&arc.mfu->list, buf); 15962391Smaybee mutex_exit(&arc.mfu->mtx); 15972391Smaybee } 15981544Seschrock atomic_add_64(&arc.mfu->hits, 1); 15992391Smaybee buf->b_arc_access = lbolt; 16001544Seschrock } else if (buf->b_state == arc.mfu_ghost) { 16012391Smaybee arc_state_t *new_state = arc.mfu; 1602789Sahrens /* 1603789Sahrens * This buffer has been accessed more than once but has 1604789Sahrens * been evicted from the cache. Move it back to the 1605789Sahrens * MFU state. 1606789Sahrens */ 1607789Sahrens 16082391Smaybee if (buf->b_flags & ARC_PREFETCH) { 16092391Smaybee /* 16102391Smaybee * This is a prefetch access... 16112391Smaybee * move this block back to the MRU state. 16122391Smaybee */ 16132391Smaybee ASSERT3U(refcount_count(&buf->b_refcnt), ==, 0); 16142391Smaybee new_state = arc.mru; 16152391Smaybee } 16162391Smaybee 1617789Sahrens buf->b_arc_access = lbolt; 16181544Seschrock DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, buf); 16192391Smaybee arc_change_state(new_state, buf, hash_lock); 1620789Sahrens 16211544Seschrock atomic_add_64(&arc.mfu_ghost->hits, 1); 1622789Sahrens } else { 1623789Sahrens ASSERT(!"invalid arc state"); 1624789Sahrens } 1625789Sahrens } 1626789Sahrens 1627789Sahrens /* a generic arc_done_func_t which you can use */ 1628789Sahrens /* ARGSUSED */ 1629789Sahrens void 1630789Sahrens arc_bcopy_func(zio_t *zio, arc_buf_t *buf, void *arg) 1631789Sahrens { 1632789Sahrens bcopy(buf->b_data, arg, buf->b_hdr->b_size); 16331544Seschrock VERIFY(arc_buf_remove_ref(buf, arg) == 1); 1634789Sahrens } 1635789Sahrens 1636789Sahrens /* a generic arc_done_func_t which you can use */ 1637789Sahrens void 1638789Sahrens arc_getbuf_func(zio_t *zio, arc_buf_t *buf, void *arg) 1639789Sahrens { 1640789Sahrens arc_buf_t **bufp = arg; 1641789Sahrens if (zio && zio->io_error) { 16421544Seschrock VERIFY(arc_buf_remove_ref(buf, arg) == 1); 1643789Sahrens *bufp = NULL; 1644789Sahrens } else { 1645789Sahrens *bufp = buf; 1646789Sahrens } 1647789Sahrens } 1648789Sahrens 1649789Sahrens static void 1650789Sahrens arc_read_done(zio_t *zio) 1651789Sahrens { 16521589Smaybee arc_buf_hdr_t *hdr, *found; 1653789Sahrens arc_buf_t *buf; 1654789Sahrens arc_buf_t *abuf; /* buffer we're assigning to callback */ 1655789Sahrens kmutex_t *hash_lock; 1656789Sahrens arc_callback_t *callback_list, *acb; 1657789Sahrens int freeable = FALSE; 1658789Sahrens 1659789Sahrens buf = zio->io_private; 1660789Sahrens hdr = buf->b_hdr; 1661789Sahrens 16621589Smaybee /* 16631589Smaybee * The hdr was inserted into hash-table and removed from lists 16641589Smaybee * prior to starting I/O. We should find this header, since 16651589Smaybee * it's in the hash table, and it should be legit since it's 16661589Smaybee * not possible to evict it during the I/O. The only possible 16671589Smaybee * reason for it not to be found is if we were freed during the 16681589Smaybee * read. 16691589Smaybee */ 16701589Smaybee found = buf_hash_find(zio->io_spa, &hdr->b_dva, hdr->b_birth, 1671789Sahrens &hash_lock); 1672789Sahrens 16731589Smaybee ASSERT((found == NULL && HDR_FREED_IN_READ(hdr) && hash_lock == NULL) || 16741589Smaybee (found == hdr && DVA_EQUAL(&hdr->b_dva, BP_IDENTITY(zio->io_bp)))); 1675789Sahrens 1676789Sahrens /* byteswap if necessary */ 1677789Sahrens callback_list = hdr->b_acb; 1678789Sahrens ASSERT(callback_list != NULL); 1679789Sahrens if (BP_SHOULD_BYTESWAP(zio->io_bp) && callback_list->acb_byteswap) 1680789Sahrens callback_list->acb_byteswap(buf->b_data, hdr->b_size); 1681789Sahrens 1682789Sahrens /* create copies of the data buffer for the callers */ 1683789Sahrens abuf = buf; 1684789Sahrens for (acb = callback_list; acb; acb = acb->acb_next) { 1685789Sahrens if (acb->acb_done) { 16862688Smaybee if (abuf == NULL) 16872688Smaybee abuf = arc_buf_clone(buf); 1688789Sahrens acb->acb_buf = abuf; 1689789Sahrens abuf = NULL; 1690789Sahrens } 1691789Sahrens } 1692789Sahrens hdr->b_acb = NULL; 1693789Sahrens hdr->b_flags &= ~ARC_IO_IN_PROGRESS; 16941544Seschrock ASSERT(!HDR_BUF_AVAILABLE(hdr)); 16951544Seschrock if (abuf == buf) 16961544Seschrock hdr->b_flags |= ARC_BUF_AVAILABLE; 1697789Sahrens 1698789Sahrens ASSERT(refcount_is_zero(&hdr->b_refcnt) || callback_list != NULL); 1699789Sahrens 1700789Sahrens if (zio->io_error != 0) { 1701789Sahrens hdr->b_flags |= ARC_IO_ERROR; 1702789Sahrens if (hdr->b_state != arc.anon) 1703789Sahrens arc_change_state(arc.anon, hdr, hash_lock); 17041544Seschrock if (HDR_IN_HASH_TABLE(hdr)) 17051544Seschrock buf_hash_remove(hdr); 1706789Sahrens freeable = refcount_is_zero(&hdr->b_refcnt); 17072391Smaybee /* convert checksum errors into IO errors */ 17081544Seschrock if (zio->io_error == ECKSUM) 17091544Seschrock zio->io_error = EIO; 1710789Sahrens } 1711789Sahrens 17121544Seschrock /* 17132391Smaybee * Broadcast before we drop the hash_lock to avoid the possibility 17142391Smaybee * that the hdr (and hence the cv) might be freed before we get to 17152391Smaybee * the cv_broadcast(). 17161544Seschrock */ 17171544Seschrock cv_broadcast(&hdr->b_cv); 17181544Seschrock 17191589Smaybee if (hash_lock) { 1720789Sahrens /* 1721789Sahrens * Only call arc_access on anonymous buffers. This is because 1722789Sahrens * if we've issued an I/O for an evicted buffer, we've already 1723789Sahrens * called arc_access (to prevent any simultaneous readers from 1724789Sahrens * getting confused). 1725789Sahrens */ 1726789Sahrens if (zio->io_error == 0 && hdr->b_state == arc.anon) 17272688Smaybee arc_access(hdr, hash_lock); 17282688Smaybee mutex_exit(hash_lock); 1729789Sahrens } else { 1730789Sahrens /* 1731789Sahrens * This block was freed while we waited for the read to 1732789Sahrens * complete. It has been removed from the hash table and 1733789Sahrens * moved to the anonymous state (so that it won't show up 1734789Sahrens * in the cache). 1735789Sahrens */ 1736789Sahrens ASSERT3P(hdr->b_state, ==, arc.anon); 1737789Sahrens freeable = refcount_is_zero(&hdr->b_refcnt); 1738789Sahrens } 1739789Sahrens 1740789Sahrens /* execute each callback and free its structure */ 1741789Sahrens while ((acb = callback_list) != NULL) { 1742789Sahrens if (acb->acb_done) 1743789Sahrens acb->acb_done(zio, acb->acb_buf, acb->acb_private); 1744789Sahrens 1745789Sahrens if (acb->acb_zio_dummy != NULL) { 1746789Sahrens acb->acb_zio_dummy->io_error = zio->io_error; 1747789Sahrens zio_nowait(acb->acb_zio_dummy); 1748789Sahrens } 1749789Sahrens 1750789Sahrens callback_list = acb->acb_next; 1751789Sahrens kmem_free(acb, sizeof (arc_callback_t)); 1752789Sahrens } 1753789Sahrens 1754789Sahrens if (freeable) 17551544Seschrock arc_hdr_destroy(hdr); 1756789Sahrens } 1757789Sahrens 1758789Sahrens /* 1759789Sahrens * "Read" the block block at the specified DVA (in bp) via the 1760789Sahrens * cache. If the block is found in the cache, invoke the provided 1761789Sahrens * callback immediately and return. Note that the `zio' parameter 1762789Sahrens * in the callback will be NULL in this case, since no IO was 1763789Sahrens * required. If the block is not in the cache pass the read request 1764789Sahrens * on to the spa with a substitute callback function, so that the 1765789Sahrens * requested block will be added to the cache. 1766789Sahrens * 1767789Sahrens * If a read request arrives for a block that has a read in-progress, 1768789Sahrens * either wait for the in-progress read to complete (and return the 1769789Sahrens * results); or, if this is a read with a "done" func, add a record 1770789Sahrens * to the read to invoke the "done" func when the read completes, 1771789Sahrens * and return; or just return. 1772789Sahrens * 1773789Sahrens * arc_read_done() will invoke all the requested "done" functions 1774789Sahrens * for readers of this block. 1775789Sahrens */ 1776789Sahrens int 1777789Sahrens arc_read(zio_t *pio, spa_t *spa, blkptr_t *bp, arc_byteswap_func_t *swap, 1778789Sahrens arc_done_func_t *done, void *private, int priority, int flags, 17792391Smaybee uint32_t *arc_flags, zbookmark_t *zb) 1780789Sahrens { 1781789Sahrens arc_buf_hdr_t *hdr; 1782789Sahrens arc_buf_t *buf; 1783789Sahrens kmutex_t *hash_lock; 1784789Sahrens zio_t *rzio; 1785789Sahrens 1786789Sahrens top: 1787789Sahrens hdr = buf_hash_find(spa, BP_IDENTITY(bp), bp->blk_birth, &hash_lock); 17881544Seschrock if (hdr && hdr->b_datacnt > 0) { 1789789Sahrens 17902391Smaybee *arc_flags |= ARC_CACHED; 17912391Smaybee 1792789Sahrens if (HDR_IO_IN_PROGRESS(hdr)) { 17932391Smaybee 17942391Smaybee if (*arc_flags & ARC_WAIT) { 17952391Smaybee cv_wait(&hdr->b_cv, hash_lock); 17962391Smaybee mutex_exit(hash_lock); 17972391Smaybee goto top; 17982391Smaybee } 17992391Smaybee ASSERT(*arc_flags & ARC_NOWAIT); 18002391Smaybee 18012391Smaybee if (done) { 1802789Sahrens arc_callback_t *acb = NULL; 1803789Sahrens 1804789Sahrens acb = kmem_zalloc(sizeof (arc_callback_t), 1805789Sahrens KM_SLEEP); 1806789Sahrens acb->acb_done = done; 1807789Sahrens acb->acb_private = private; 1808789Sahrens acb->acb_byteswap = swap; 1809789Sahrens if (pio != NULL) 1810789Sahrens acb->acb_zio_dummy = zio_null(pio, 1811789Sahrens spa, NULL, NULL, flags); 1812789Sahrens 1813789Sahrens ASSERT(acb->acb_done != NULL); 1814789Sahrens acb->acb_next = hdr->b_acb; 1815789Sahrens hdr->b_acb = acb; 1816789Sahrens add_reference(hdr, hash_lock, private); 1817789Sahrens mutex_exit(hash_lock); 1818789Sahrens return (0); 1819789Sahrens } 1820789Sahrens mutex_exit(hash_lock); 1821789Sahrens return (0); 1822789Sahrens } 1823789Sahrens 18241544Seschrock ASSERT(hdr->b_state == arc.mru || hdr->b_state == arc.mfu); 1825789Sahrens 18261544Seschrock if (done) { 18272688Smaybee add_reference(hdr, hash_lock, private); 18281544Seschrock /* 18291544Seschrock * If this block is already in use, create a new 18301544Seschrock * copy of the data so that we will be guaranteed 18311544Seschrock * that arc_release() will always succeed. 18321544Seschrock */ 18331544Seschrock buf = hdr->b_buf; 18341544Seschrock ASSERT(buf); 18351544Seschrock ASSERT(buf->b_data); 18362688Smaybee if (HDR_BUF_AVAILABLE(hdr)) { 18371544Seschrock ASSERT(buf->b_efunc == NULL); 18381544Seschrock hdr->b_flags &= ~ARC_BUF_AVAILABLE; 18392688Smaybee } else { 18402688Smaybee buf = arc_buf_clone(buf); 18411544Seschrock } 18422391Smaybee } else if (*arc_flags & ARC_PREFETCH && 18432391Smaybee refcount_count(&hdr->b_refcnt) == 0) { 18442391Smaybee hdr->b_flags |= ARC_PREFETCH; 1845789Sahrens } 1846789Sahrens DTRACE_PROBE1(arc__hit, arc_buf_hdr_t *, hdr); 18472688Smaybee arc_access(hdr, hash_lock); 18482688Smaybee mutex_exit(hash_lock); 1849789Sahrens atomic_add_64(&arc.hits, 1); 1850789Sahrens if (done) 1851789Sahrens done(NULL, buf, private); 1852789Sahrens } else { 1853789Sahrens uint64_t size = BP_GET_LSIZE(bp); 1854789Sahrens arc_callback_t *acb; 1855789Sahrens 1856789Sahrens if (hdr == NULL) { 1857789Sahrens /* this block is not in the cache */ 1858789Sahrens arc_buf_hdr_t *exists; 1859789Sahrens 1860789Sahrens buf = arc_buf_alloc(spa, size, private); 1861789Sahrens hdr = buf->b_hdr; 1862789Sahrens hdr->b_dva = *BP_IDENTITY(bp); 1863789Sahrens hdr->b_birth = bp->blk_birth; 1864789Sahrens hdr->b_cksum0 = bp->blk_cksum.zc_word[0]; 1865789Sahrens exists = buf_hash_insert(hdr, &hash_lock); 1866789Sahrens if (exists) { 1867789Sahrens /* somebody beat us to the hash insert */ 1868789Sahrens mutex_exit(hash_lock); 1869789Sahrens bzero(&hdr->b_dva, sizeof (dva_t)); 1870789Sahrens hdr->b_birth = 0; 1871789Sahrens hdr->b_cksum0 = 0; 18721544Seschrock (void) arc_buf_remove_ref(buf, private); 1873789Sahrens goto top; /* restart the IO request */ 1874789Sahrens } 18752391Smaybee /* if this is a prefetch, we don't have a reference */ 18762391Smaybee if (*arc_flags & ARC_PREFETCH) { 18772391Smaybee (void) remove_reference(hdr, hash_lock, 18782391Smaybee private); 18792391Smaybee hdr->b_flags |= ARC_PREFETCH; 18802391Smaybee } 18812391Smaybee if (BP_GET_LEVEL(bp) > 0) 18822391Smaybee hdr->b_flags |= ARC_INDIRECT; 1883789Sahrens } else { 1884789Sahrens /* this block is in the ghost cache */ 18851544Seschrock ASSERT(GHOST_STATE(hdr->b_state)); 18861544Seschrock ASSERT(!HDR_IO_IN_PROGRESS(hdr)); 18872391Smaybee ASSERT3U(refcount_count(&hdr->b_refcnt), ==, 0); 18882391Smaybee ASSERT(hdr->b_buf == NULL); 1889789Sahrens 18902391Smaybee /* if this is a prefetch, we don't have a reference */ 18912391Smaybee if (*arc_flags & ARC_PREFETCH) 18922391Smaybee hdr->b_flags |= ARC_PREFETCH; 18932391Smaybee else 18942391Smaybee add_reference(hdr, hash_lock, private); 1895789Sahrens buf = kmem_cache_alloc(buf_cache, KM_SLEEP); 18961544Seschrock buf->b_hdr = hdr; 18972688Smaybee buf->b_data = NULL; 18981544Seschrock buf->b_efunc = NULL; 18991544Seschrock buf->b_private = NULL; 19001544Seschrock buf->b_next = NULL; 19011544Seschrock hdr->b_buf = buf; 19022688Smaybee arc_get_data_buf(buf); 19031544Seschrock ASSERT(hdr->b_datacnt == 0); 19041544Seschrock hdr->b_datacnt = 1; 19052391Smaybee 1906789Sahrens } 1907789Sahrens 1908789Sahrens acb = kmem_zalloc(sizeof (arc_callback_t), KM_SLEEP); 1909789Sahrens acb->acb_done = done; 1910789Sahrens acb->acb_private = private; 1911789Sahrens acb->acb_byteswap = swap; 1912789Sahrens 1913789Sahrens ASSERT(hdr->b_acb == NULL); 1914789Sahrens hdr->b_acb = acb; 1915789Sahrens hdr->b_flags |= ARC_IO_IN_PROGRESS; 1916789Sahrens 1917789Sahrens /* 1918789Sahrens * If the buffer has been evicted, migrate it to a present state 1919789Sahrens * before issuing the I/O. Once we drop the hash-table lock, 1920789Sahrens * the header will be marked as I/O in progress and have an 1921789Sahrens * attached buffer. At this point, anybody who finds this 1922789Sahrens * buffer ought to notice that it's legit but has a pending I/O. 1923789Sahrens */ 1924789Sahrens 19251544Seschrock if (GHOST_STATE(hdr->b_state)) 19262688Smaybee arc_access(hdr, hash_lock); 19272688Smaybee mutex_exit(hash_lock); 1928789Sahrens 1929789Sahrens ASSERT3U(hdr->b_size, ==, size); 19301596Sahrens DTRACE_PROBE3(arc__miss, blkptr_t *, bp, uint64_t, size, 19311596Sahrens zbookmark_t *, zb); 1932789Sahrens atomic_add_64(&arc.misses, 1); 19331544Seschrock 1934789Sahrens rzio = zio_read(pio, spa, bp, buf->b_data, size, 19351544Seschrock arc_read_done, buf, priority, flags, zb); 1936789Sahrens 19372391Smaybee if (*arc_flags & ARC_WAIT) 1938789Sahrens return (zio_wait(rzio)); 1939789Sahrens 19402391Smaybee ASSERT(*arc_flags & ARC_NOWAIT); 1941789Sahrens zio_nowait(rzio); 1942789Sahrens } 1943789Sahrens return (0); 1944789Sahrens } 1945789Sahrens 1946789Sahrens /* 1947789Sahrens * arc_read() variant to support pool traversal. If the block is already 1948789Sahrens * in the ARC, make a copy of it; otherwise, the caller will do the I/O. 1949789Sahrens * The idea is that we don't want pool traversal filling up memory, but 1950789Sahrens * if the ARC already has the data anyway, we shouldn't pay for the I/O. 1951789Sahrens */ 1952789Sahrens int 1953789Sahrens arc_tryread(spa_t *spa, blkptr_t *bp, void *data) 1954789Sahrens { 1955789Sahrens arc_buf_hdr_t *hdr; 1956789Sahrens kmutex_t *hash_mtx; 1957789Sahrens int rc = 0; 1958789Sahrens 1959789Sahrens hdr = buf_hash_find(spa, BP_IDENTITY(bp), bp->blk_birth, &hash_mtx); 1960789Sahrens 19611544Seschrock if (hdr && hdr->b_datacnt > 0 && !HDR_IO_IN_PROGRESS(hdr)) { 19621544Seschrock arc_buf_t *buf = hdr->b_buf; 19631544Seschrock 19641544Seschrock ASSERT(buf); 19651544Seschrock while (buf->b_data == NULL) { 19661544Seschrock buf = buf->b_next; 19671544Seschrock ASSERT(buf); 19681544Seschrock } 19691544Seschrock bcopy(buf->b_data, data, hdr->b_size); 19701544Seschrock } else { 1971789Sahrens rc = ENOENT; 19721544Seschrock } 1973789Sahrens 1974789Sahrens if (hash_mtx) 1975789Sahrens mutex_exit(hash_mtx); 1976789Sahrens 1977789Sahrens return (rc); 1978789Sahrens } 1979789Sahrens 19801544Seschrock void 19811544Seschrock arc_set_callback(arc_buf_t *buf, arc_evict_func_t *func, void *private) 19821544Seschrock { 19831544Seschrock ASSERT(buf->b_hdr != NULL); 19841544Seschrock ASSERT(buf->b_hdr->b_state != arc.anon); 19851544Seschrock ASSERT(!refcount_is_zero(&buf->b_hdr->b_refcnt) || func == NULL); 19861544Seschrock buf->b_efunc = func; 19871544Seschrock buf->b_private = private; 19881544Seschrock } 19891544Seschrock 19901544Seschrock /* 19911544Seschrock * This is used by the DMU to let the ARC know that a buffer is 19921544Seschrock * being evicted, so the ARC should clean up. If this arc buf 19931544Seschrock * is not yet in the evicted state, it will be put there. 19941544Seschrock */ 19951544Seschrock int 19961544Seschrock arc_buf_evict(arc_buf_t *buf) 19971544Seschrock { 1998*2887Smaybee arc_buf_hdr_t *hdr; 19991544Seschrock kmutex_t *hash_lock; 20001544Seschrock arc_buf_t **bufp; 20011544Seschrock 2002*2887Smaybee mutex_enter(&arc_eviction_mtx); 2003*2887Smaybee hdr = buf->b_hdr; 20041544Seschrock if (hdr == NULL) { 20051544Seschrock /* 20061544Seschrock * We are in arc_do_user_evicts(). 20071544Seschrock */ 20081544Seschrock ASSERT(buf->b_data == NULL); 2009*2887Smaybee mutex_exit(&arc_eviction_mtx); 20101544Seschrock return (0); 20111544Seschrock } 2012*2887Smaybee hash_lock = HDR_LOCK(hdr); 2013*2887Smaybee mutex_exit(&arc_eviction_mtx); 20141544Seschrock 20151544Seschrock mutex_enter(hash_lock); 20161544Seschrock 20172724Smaybee if (buf->b_data == NULL) { 20182724Smaybee /* 20192724Smaybee * We are on the eviction list. 20202724Smaybee */ 20212724Smaybee mutex_exit(hash_lock); 20222724Smaybee mutex_enter(&arc_eviction_mtx); 20232724Smaybee if (buf->b_hdr == NULL) { 20242724Smaybee /* 20252724Smaybee * We are already in arc_do_user_evicts(). 20262724Smaybee */ 20272724Smaybee mutex_exit(&arc_eviction_mtx); 20282724Smaybee return (0); 20292724Smaybee } else { 20302724Smaybee arc_buf_t copy = *buf; /* structure assignment */ 20312724Smaybee /* 20322724Smaybee * Process this buffer now 20332724Smaybee * but let arc_do_user_evicts() do the reaping. 20342724Smaybee */ 20352724Smaybee buf->b_efunc = NULL; 20362724Smaybee mutex_exit(&arc_eviction_mtx); 20372724Smaybee VERIFY(copy.b_efunc(©) == 0); 20382724Smaybee return (1); 20392724Smaybee } 20402724Smaybee } 20412724Smaybee 20422724Smaybee ASSERT(buf->b_hdr == hdr); 20432724Smaybee ASSERT3U(refcount_count(&hdr->b_refcnt), <, hdr->b_datacnt); 20441544Seschrock ASSERT(hdr->b_state == arc.mru || hdr->b_state == arc.mfu); 20451544Seschrock 20461544Seschrock /* 20471544Seschrock * Pull this buffer off of the hdr 20481544Seschrock */ 20491544Seschrock bufp = &hdr->b_buf; 20501544Seschrock while (*bufp != buf) 20511544Seschrock bufp = &(*bufp)->b_next; 20521544Seschrock *bufp = buf->b_next; 20531544Seschrock 20541544Seschrock ASSERT(buf->b_data != NULL); 20552688Smaybee arc_buf_destroy(buf, FALSE, FALSE); 20561544Seschrock 20571544Seschrock if (hdr->b_datacnt == 0) { 20581544Seschrock arc_state_t *old_state = hdr->b_state; 20591544Seschrock arc_state_t *evicted_state; 20601544Seschrock 20611544Seschrock ASSERT(refcount_is_zero(&hdr->b_refcnt)); 20621544Seschrock 20631544Seschrock evicted_state = 20641544Seschrock (old_state == arc.mru) ? arc.mru_ghost : arc.mfu_ghost; 20651544Seschrock 20661544Seschrock mutex_enter(&old_state->mtx); 20671544Seschrock mutex_enter(&evicted_state->mtx); 20681544Seschrock 20691544Seschrock arc_change_state(evicted_state, hdr, hash_lock); 20701544Seschrock ASSERT(HDR_IN_HASH_TABLE(hdr)); 20711544Seschrock hdr->b_flags = ARC_IN_HASH_TABLE; 20721544Seschrock 20731544Seschrock mutex_exit(&evicted_state->mtx); 20741544Seschrock mutex_exit(&old_state->mtx); 20751544Seschrock } 20761544Seschrock mutex_exit(hash_lock); 20771819Smaybee 20781544Seschrock VERIFY(buf->b_efunc(buf) == 0); 20791544Seschrock buf->b_efunc = NULL; 20801544Seschrock buf->b_private = NULL; 20811544Seschrock buf->b_hdr = NULL; 20821544Seschrock kmem_cache_free(buf_cache, buf); 20831544Seschrock return (1); 20841544Seschrock } 20851544Seschrock 2086789Sahrens /* 2087789Sahrens * Release this buffer from the cache. This must be done 2088789Sahrens * after a read and prior to modifying the buffer contents. 2089789Sahrens * If the buffer has more than one reference, we must make 2090789Sahrens * make a new hdr for the buffer. 2091789Sahrens */ 2092789Sahrens void 2093789Sahrens arc_release(arc_buf_t *buf, void *tag) 2094789Sahrens { 2095789Sahrens arc_buf_hdr_t *hdr = buf->b_hdr; 2096789Sahrens kmutex_t *hash_lock = HDR_LOCK(hdr); 2097789Sahrens 2098789Sahrens /* this buffer is not on any list */ 2099789Sahrens ASSERT(refcount_count(&hdr->b_refcnt) > 0); 2100789Sahrens 2101789Sahrens if (hdr->b_state == arc.anon) { 2102789Sahrens /* this buffer is already released */ 2103789Sahrens ASSERT3U(refcount_count(&hdr->b_refcnt), ==, 1); 2104789Sahrens ASSERT(BUF_EMPTY(hdr)); 21051544Seschrock ASSERT(buf->b_efunc == NULL); 2106789Sahrens return; 2107789Sahrens } 2108789Sahrens 2109789Sahrens mutex_enter(hash_lock); 2110789Sahrens 21111544Seschrock /* 21121544Seschrock * Do we have more than one buf? 21131544Seschrock */ 21141544Seschrock if (hdr->b_buf != buf || buf->b_next != NULL) { 2115789Sahrens arc_buf_hdr_t *nhdr; 2116789Sahrens arc_buf_t **bufp; 2117789Sahrens uint64_t blksz = hdr->b_size; 2118789Sahrens spa_t *spa = hdr->b_spa; 2119789Sahrens 21201544Seschrock ASSERT(hdr->b_datacnt > 1); 2121789Sahrens /* 2122789Sahrens * Pull the data off of this buf and attach it to 2123789Sahrens * a new anonymous buf. 2124789Sahrens */ 21251544Seschrock (void) remove_reference(hdr, hash_lock, tag); 2126789Sahrens bufp = &hdr->b_buf; 21271544Seschrock while (*bufp != buf) 2128789Sahrens bufp = &(*bufp)->b_next; 2129789Sahrens *bufp = (*bufp)->b_next; 21301544Seschrock 2131789Sahrens ASSERT3U(hdr->b_state->size, >=, hdr->b_size); 2132789Sahrens atomic_add_64(&hdr->b_state->size, -hdr->b_size); 21331544Seschrock if (refcount_is_zero(&hdr->b_refcnt)) { 21341544Seschrock ASSERT3U(hdr->b_state->lsize, >=, hdr->b_size); 21351544Seschrock atomic_add_64(&hdr->b_state->lsize, -hdr->b_size); 21361544Seschrock } 21371544Seschrock hdr->b_datacnt -= 1; 21381544Seschrock 2139789Sahrens mutex_exit(hash_lock); 2140789Sahrens 2141789Sahrens nhdr = kmem_cache_alloc(hdr_cache, KM_SLEEP); 2142789Sahrens nhdr->b_size = blksz; 2143789Sahrens nhdr->b_spa = spa; 2144789Sahrens nhdr->b_buf = buf; 2145789Sahrens nhdr->b_state = arc.anon; 2146789Sahrens nhdr->b_arc_access = 0; 2147789Sahrens nhdr->b_flags = 0; 21481544Seschrock nhdr->b_datacnt = 1; 2149789Sahrens buf->b_hdr = nhdr; 2150789Sahrens buf->b_next = NULL; 2151789Sahrens (void) refcount_add(&nhdr->b_refcnt, tag); 2152789Sahrens atomic_add_64(&arc.anon->size, blksz); 2153789Sahrens 2154789Sahrens hdr = nhdr; 2155789Sahrens } else { 21561544Seschrock ASSERT(refcount_count(&hdr->b_refcnt) == 1); 2157789Sahrens ASSERT(!list_link_active(&hdr->b_arc_node)); 2158789Sahrens ASSERT(!HDR_IO_IN_PROGRESS(hdr)); 2159789Sahrens arc_change_state(arc.anon, hdr, hash_lock); 2160789Sahrens hdr->b_arc_access = 0; 2161789Sahrens mutex_exit(hash_lock); 2162789Sahrens bzero(&hdr->b_dva, sizeof (dva_t)); 2163789Sahrens hdr->b_birth = 0; 2164789Sahrens hdr->b_cksum0 = 0; 2165789Sahrens } 21661544Seschrock buf->b_efunc = NULL; 21671544Seschrock buf->b_private = NULL; 2168789Sahrens } 2169789Sahrens 2170789Sahrens int 2171789Sahrens arc_released(arc_buf_t *buf) 2172789Sahrens { 21731544Seschrock return (buf->b_data != NULL && buf->b_hdr->b_state == arc.anon); 21741544Seschrock } 21751544Seschrock 21761544Seschrock int 21771544Seschrock arc_has_callback(arc_buf_t *buf) 21781544Seschrock { 21791544Seschrock return (buf->b_efunc != NULL); 2180789Sahrens } 2181789Sahrens 21821544Seschrock #ifdef ZFS_DEBUG 21831544Seschrock int 21841544Seschrock arc_referenced(arc_buf_t *buf) 21851544Seschrock { 21861544Seschrock return (refcount_count(&buf->b_hdr->b_refcnt)); 21871544Seschrock } 21881544Seschrock #endif 21891544Seschrock 2190789Sahrens static void 2191789Sahrens arc_write_done(zio_t *zio) 2192789Sahrens { 2193789Sahrens arc_buf_t *buf; 2194789Sahrens arc_buf_hdr_t *hdr; 2195789Sahrens arc_callback_t *acb; 2196789Sahrens 2197789Sahrens buf = zio->io_private; 2198789Sahrens hdr = buf->b_hdr; 2199789Sahrens acb = hdr->b_acb; 2200789Sahrens hdr->b_acb = NULL; 22011544Seschrock ASSERT(acb != NULL); 2202789Sahrens 2203789Sahrens /* this buffer is on no lists and is not in the hash table */ 2204789Sahrens ASSERT3P(hdr->b_state, ==, arc.anon); 2205789Sahrens 2206789Sahrens hdr->b_dva = *BP_IDENTITY(zio->io_bp); 2207789Sahrens hdr->b_birth = zio->io_bp->blk_birth; 2208789Sahrens hdr->b_cksum0 = zio->io_bp->blk_cksum.zc_word[0]; 22091544Seschrock /* 22101544Seschrock * If the block to be written was all-zero, we may have 22111544Seschrock * compressed it away. In this case no write was performed 22121544Seschrock * so there will be no dva/birth-date/checksum. The buffer 22131544Seschrock * must therefor remain anonymous (and uncached). 22141544Seschrock */ 2215789Sahrens if (!BUF_EMPTY(hdr)) { 2216789Sahrens arc_buf_hdr_t *exists; 2217789Sahrens kmutex_t *hash_lock; 2218789Sahrens 2219789Sahrens exists = buf_hash_insert(hdr, &hash_lock); 2220789Sahrens if (exists) { 2221789Sahrens /* 2222789Sahrens * This can only happen if we overwrite for 2223789Sahrens * sync-to-convergence, because we remove 2224789Sahrens * buffers from the hash table when we arc_free(). 2225789Sahrens */ 2226789Sahrens ASSERT(DVA_EQUAL(BP_IDENTITY(&zio->io_bp_orig), 2227789Sahrens BP_IDENTITY(zio->io_bp))); 2228789Sahrens ASSERT3U(zio->io_bp_orig.blk_birth, ==, 2229789Sahrens zio->io_bp->blk_birth); 2230789Sahrens 2231789Sahrens ASSERT(refcount_is_zero(&exists->b_refcnt)); 2232789Sahrens arc_change_state(arc.anon, exists, hash_lock); 2233789Sahrens mutex_exit(hash_lock); 22341544Seschrock arc_hdr_destroy(exists); 2235789Sahrens exists = buf_hash_insert(hdr, &hash_lock); 2236789Sahrens ASSERT3P(exists, ==, NULL); 2237789Sahrens } 22381544Seschrock hdr->b_flags &= ~ARC_IO_IN_PROGRESS; 22392688Smaybee arc_access(hdr, hash_lock); 22402688Smaybee mutex_exit(hash_lock); 22411544Seschrock } else if (acb->acb_done == NULL) { 22421544Seschrock int destroy_hdr; 22431544Seschrock /* 22441544Seschrock * This is an anonymous buffer with no user callback, 22451544Seschrock * destroy it if there are no active references. 22461544Seschrock */ 22471544Seschrock mutex_enter(&arc_eviction_mtx); 22481544Seschrock destroy_hdr = refcount_is_zero(&hdr->b_refcnt); 22491544Seschrock hdr->b_flags &= ~ARC_IO_IN_PROGRESS; 22501544Seschrock mutex_exit(&arc_eviction_mtx); 22511544Seschrock if (destroy_hdr) 22521544Seschrock arc_hdr_destroy(hdr); 22531544Seschrock } else { 22541544Seschrock hdr->b_flags &= ~ARC_IO_IN_PROGRESS; 2255789Sahrens } 22561544Seschrock 22571544Seschrock if (acb->acb_done) { 2258789Sahrens ASSERT(!refcount_is_zero(&hdr->b_refcnt)); 2259789Sahrens acb->acb_done(zio, buf, acb->acb_private); 2260789Sahrens } 2261789Sahrens 22621544Seschrock kmem_free(acb, sizeof (arc_callback_t)); 2263789Sahrens } 2264789Sahrens 2265789Sahrens int 22661775Sbillm arc_write(zio_t *pio, spa_t *spa, int checksum, int compress, int ncopies, 2267789Sahrens uint64_t txg, blkptr_t *bp, arc_buf_t *buf, 2268789Sahrens arc_done_func_t *done, void *private, int priority, int flags, 22691544Seschrock uint32_t arc_flags, zbookmark_t *zb) 2270789Sahrens { 2271789Sahrens arc_buf_hdr_t *hdr = buf->b_hdr; 2272789Sahrens arc_callback_t *acb; 2273789Sahrens zio_t *rzio; 2274789Sahrens 2275789Sahrens /* this is a private buffer - no locking required */ 2276789Sahrens ASSERT3P(hdr->b_state, ==, arc.anon); 2277789Sahrens ASSERT(BUF_EMPTY(hdr)); 2278789Sahrens ASSERT(!HDR_IO_ERROR(hdr)); 22792237Smaybee ASSERT((hdr->b_flags & ARC_IO_IN_PROGRESS) == 0); 22802237Smaybee ASSERT(hdr->b_acb == 0); 2281789Sahrens acb = kmem_zalloc(sizeof (arc_callback_t), KM_SLEEP); 2282789Sahrens acb->acb_done = done; 2283789Sahrens acb->acb_private = private; 2284789Sahrens acb->acb_byteswap = (arc_byteswap_func_t *)-1; 2285789Sahrens hdr->b_acb = acb; 22861544Seschrock hdr->b_flags |= ARC_IO_IN_PROGRESS; 22871775Sbillm rzio = zio_write(pio, spa, checksum, compress, ncopies, txg, bp, 22881544Seschrock buf->b_data, hdr->b_size, arc_write_done, buf, priority, flags, zb); 2289789Sahrens 2290789Sahrens if (arc_flags & ARC_WAIT) 2291789Sahrens return (zio_wait(rzio)); 2292789Sahrens 2293789Sahrens ASSERT(arc_flags & ARC_NOWAIT); 2294789Sahrens zio_nowait(rzio); 2295789Sahrens 2296789Sahrens return (0); 2297789Sahrens } 2298789Sahrens 2299789Sahrens int 2300789Sahrens arc_free(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp, 2301789Sahrens zio_done_func_t *done, void *private, uint32_t arc_flags) 2302789Sahrens { 2303789Sahrens arc_buf_hdr_t *ab; 2304789Sahrens kmutex_t *hash_lock; 2305789Sahrens zio_t *zio; 2306789Sahrens 2307789Sahrens /* 2308789Sahrens * If this buffer is in the cache, release it, so it 2309789Sahrens * can be re-used. 2310789Sahrens */ 2311789Sahrens ab = buf_hash_find(spa, BP_IDENTITY(bp), bp->blk_birth, &hash_lock); 2312789Sahrens if (ab != NULL) { 2313789Sahrens /* 2314789Sahrens * The checksum of blocks to free is not always 2315789Sahrens * preserved (eg. on the deadlist). However, if it is 2316789Sahrens * nonzero, it should match what we have in the cache. 2317789Sahrens */ 2318789Sahrens ASSERT(bp->blk_cksum.zc_word[0] == 0 || 2319789Sahrens ab->b_cksum0 == bp->blk_cksum.zc_word[0]); 23201990Smaybee if (ab->b_state != arc.anon) 23211990Smaybee arc_change_state(arc.anon, ab, hash_lock); 23222391Smaybee if (HDR_IO_IN_PROGRESS(ab)) { 23232391Smaybee /* 23242391Smaybee * This should only happen when we prefetch. 23252391Smaybee */ 23262391Smaybee ASSERT(ab->b_flags & ARC_PREFETCH); 23272391Smaybee ASSERT3U(ab->b_datacnt, ==, 1); 23282391Smaybee ab->b_flags |= ARC_FREED_IN_READ; 23292391Smaybee if (HDR_IN_HASH_TABLE(ab)) 23302391Smaybee buf_hash_remove(ab); 23312391Smaybee ab->b_arc_access = 0; 23322391Smaybee bzero(&ab->b_dva, sizeof (dva_t)); 23332391Smaybee ab->b_birth = 0; 23342391Smaybee ab->b_cksum0 = 0; 23352391Smaybee ab->b_buf->b_efunc = NULL; 23362391Smaybee ab->b_buf->b_private = NULL; 23372391Smaybee mutex_exit(hash_lock); 23382391Smaybee } else if (refcount_is_zero(&ab->b_refcnt)) { 2339789Sahrens mutex_exit(hash_lock); 23401544Seschrock arc_hdr_destroy(ab); 2341789Sahrens atomic_add_64(&arc.deleted, 1); 2342789Sahrens } else { 23431589Smaybee /* 23442391Smaybee * We still have an active reference on this 23452391Smaybee * buffer. This can happen, e.g., from 23462391Smaybee * dbuf_unoverride(). 23471589Smaybee */ 23482391Smaybee ASSERT(!HDR_IN_HASH_TABLE(ab)); 2349789Sahrens ab->b_arc_access = 0; 2350789Sahrens bzero(&ab->b_dva, sizeof (dva_t)); 2351789Sahrens ab->b_birth = 0; 2352789Sahrens ab->b_cksum0 = 0; 23531544Seschrock ab->b_buf->b_efunc = NULL; 23541544Seschrock ab->b_buf->b_private = NULL; 2355789Sahrens mutex_exit(hash_lock); 2356789Sahrens } 2357789Sahrens } 2358789Sahrens 2359789Sahrens zio = zio_free(pio, spa, txg, bp, done, private); 2360789Sahrens 2361789Sahrens if (arc_flags & ARC_WAIT) 2362789Sahrens return (zio_wait(zio)); 2363789Sahrens 2364789Sahrens ASSERT(arc_flags & ARC_NOWAIT); 2365789Sahrens zio_nowait(zio); 2366789Sahrens 2367789Sahrens return (0); 2368789Sahrens } 2369789Sahrens 2370789Sahrens void 2371789Sahrens arc_tempreserve_clear(uint64_t tempreserve) 2372789Sahrens { 2373789Sahrens atomic_add_64(&arc_tempreserve, -tempreserve); 2374789Sahrens ASSERT((int64_t)arc_tempreserve >= 0); 2375789Sahrens } 2376789Sahrens 2377789Sahrens int 2378789Sahrens arc_tempreserve_space(uint64_t tempreserve) 2379789Sahrens { 2380789Sahrens #ifdef ZFS_DEBUG 2381789Sahrens /* 2382789Sahrens * Once in a while, fail for no reason. Everything should cope. 2383789Sahrens */ 2384789Sahrens if (spa_get_random(10000) == 0) { 2385789Sahrens dprintf("forcing random failure\n"); 2386789Sahrens return (ERESTART); 2387789Sahrens } 2388789Sahrens #endif 2389982Smaybee if (tempreserve > arc.c/4 && !arc.no_grow) 2390982Smaybee arc.c = MIN(arc.c_max, tempreserve * 4); 2391982Smaybee if (tempreserve > arc.c) 2392982Smaybee return (ENOMEM); 2393982Smaybee 2394789Sahrens /* 2395982Smaybee * Throttle writes when the amount of dirty data in the cache 2396982Smaybee * gets too large. We try to keep the cache less than half full 2397982Smaybee * of dirty blocks so that our sync times don't grow too large. 2398982Smaybee * Note: if two requests come in concurrently, we might let them 2399982Smaybee * both succeed, when one of them should fail. Not a huge deal. 2400982Smaybee * 2401982Smaybee * XXX The limit should be adjusted dynamically to keep the time 2402982Smaybee * to sync a dataset fixed (around 1-5 seconds?). 2403789Sahrens */ 2404789Sahrens 2405982Smaybee if (tempreserve + arc_tempreserve + arc.anon->size > arc.c / 2 && 2406982Smaybee arc_tempreserve + arc.anon->size > arc.c / 4) { 2407789Sahrens dprintf("failing, arc_tempreserve=%lluK anon=%lluK " 2408789Sahrens "tempreserve=%lluK arc.c=%lluK\n", 2409789Sahrens arc_tempreserve>>10, arc.anon->lsize>>10, 2410789Sahrens tempreserve>>10, arc.c>>10); 2411789Sahrens return (ERESTART); 2412789Sahrens } 2413789Sahrens atomic_add_64(&arc_tempreserve, tempreserve); 2414789Sahrens return (0); 2415789Sahrens } 2416789Sahrens 2417789Sahrens void 2418789Sahrens arc_init(void) 2419789Sahrens { 2420789Sahrens mutex_init(&arc_reclaim_lock, NULL, MUTEX_DEFAULT, NULL); 2421789Sahrens mutex_init(&arc_reclaim_thr_lock, NULL, MUTEX_DEFAULT, NULL); 2422789Sahrens cv_init(&arc_reclaim_thr_cv, NULL, CV_DEFAULT, NULL); 2423789Sahrens 24242391Smaybee /* Convert seconds to clock ticks */ 24252638Sperrin arc_min_prefetch_lifespan = 1 * hz; 24262391Smaybee 2427789Sahrens /* Start out with 1/8 of all memory */ 2428789Sahrens arc.c = physmem * PAGESIZE / 8; 2429789Sahrens 2430789Sahrens #ifdef _KERNEL 2431789Sahrens /* 2432789Sahrens * On architectures where the physical memory can be larger 2433789Sahrens * than the addressable space (intel in 32-bit mode), we may 2434789Sahrens * need to limit the cache to 1/8 of VM size. 2435789Sahrens */ 2436789Sahrens arc.c = MIN(arc.c, vmem_size(heap_arena, VMEM_ALLOC | VMEM_FREE) / 8); 2437789Sahrens #endif 2438789Sahrens 2439982Smaybee /* set min cache to 1/32 of all memory, or 64MB, whichever is more */ 2440789Sahrens arc.c_min = MAX(arc.c / 4, 64<<20); 2441982Smaybee /* set max to 3/4 of all memory, or all but 1GB, whichever is more */ 2442789Sahrens if (arc.c * 8 >= 1<<30) 2443789Sahrens arc.c_max = (arc.c * 8) - (1<<30); 2444789Sahrens else 2445789Sahrens arc.c_max = arc.c_min; 2446789Sahrens arc.c_max = MAX(arc.c * 6, arc.c_max); 24472885Sahrens 24482885Sahrens /* 24492885Sahrens * Allow the tunables to override our calculations if they are 24502885Sahrens * reasonable (ie. over 64MB) 24512885Sahrens */ 24522885Sahrens if (zfs_arc_max > 64<<20 && zfs_arc_max < physmem * PAGESIZE) 24532885Sahrens arc.c_max = zfs_arc_max; 24542885Sahrens if (zfs_arc_min > 64<<20 && zfs_arc_min <= arc.c_max) 24552885Sahrens arc.c_min = zfs_arc_min; 24562885Sahrens 2457789Sahrens arc.c = arc.c_max; 2458789Sahrens arc.p = (arc.c >> 1); 2459789Sahrens 2460789Sahrens /* if kmem_flags are set, lets try to use less memory */ 2461789Sahrens if (kmem_debugging()) 2462789Sahrens arc.c = arc.c / 2; 2463789Sahrens if (arc.c < arc.c_min) 2464789Sahrens arc.c = arc.c_min; 2465789Sahrens 2466789Sahrens arc.anon = &ARC_anon; 24671544Seschrock arc.mru = &ARC_mru; 24681544Seschrock arc.mru_ghost = &ARC_mru_ghost; 24691544Seschrock arc.mfu = &ARC_mfu; 24701544Seschrock arc.mfu_ghost = &ARC_mfu_ghost; 24711544Seschrock arc.size = 0; 2472789Sahrens 24732688Smaybee arc.hits = 0; 24742688Smaybee arc.recycle_miss = 0; 24752688Smaybee arc.evict_skip = 0; 24762688Smaybee arc.mutex_miss = 0; 24772688Smaybee 24782856Snd150628 mutex_init(&arc.anon->mtx, NULL, MUTEX_DEFAULT, NULL); 24792856Snd150628 mutex_init(&arc.mru->mtx, NULL, MUTEX_DEFAULT, NULL); 24802856Snd150628 mutex_init(&arc.mru_ghost->mtx, NULL, MUTEX_DEFAULT, NULL); 24812856Snd150628 mutex_init(&arc.mfu->mtx, NULL, MUTEX_DEFAULT, NULL); 24822856Snd150628 mutex_init(&arc.mfu_ghost->mtx, NULL, MUTEX_DEFAULT, NULL); 24832856Snd150628 24841544Seschrock list_create(&arc.mru->list, sizeof (arc_buf_hdr_t), 2485789Sahrens offsetof(arc_buf_hdr_t, b_arc_node)); 24861544Seschrock list_create(&arc.mru_ghost->list, sizeof (arc_buf_hdr_t), 2487789Sahrens offsetof(arc_buf_hdr_t, b_arc_node)); 24881544Seschrock list_create(&arc.mfu->list, sizeof (arc_buf_hdr_t), 2489789Sahrens offsetof(arc_buf_hdr_t, b_arc_node)); 24901544Seschrock list_create(&arc.mfu_ghost->list, sizeof (arc_buf_hdr_t), 2491789Sahrens offsetof(arc_buf_hdr_t, b_arc_node)); 2492789Sahrens 2493789Sahrens buf_init(); 2494789Sahrens 2495789Sahrens arc_thread_exit = 0; 24961544Seschrock arc_eviction_list = NULL; 24971544Seschrock mutex_init(&arc_eviction_mtx, NULL, MUTEX_DEFAULT, NULL); 2498*2887Smaybee bzero(&arc_eviction_hdr, sizeof (arc_buf_hdr_t)); 2499789Sahrens 2500789Sahrens (void) thread_create(NULL, 0, arc_reclaim_thread, NULL, 0, &p0, 2501789Sahrens TS_RUN, minclsyspri); 2502789Sahrens } 2503789Sahrens 2504789Sahrens void 2505789Sahrens arc_fini(void) 2506789Sahrens { 2507789Sahrens mutex_enter(&arc_reclaim_thr_lock); 2508789Sahrens arc_thread_exit = 1; 2509789Sahrens while (arc_thread_exit != 0) 2510789Sahrens cv_wait(&arc_reclaim_thr_cv, &arc_reclaim_thr_lock); 2511789Sahrens mutex_exit(&arc_reclaim_thr_lock); 2512789Sahrens 2513789Sahrens arc_flush(); 2514789Sahrens 2515789Sahrens arc_dead = TRUE; 2516789Sahrens 25171544Seschrock mutex_destroy(&arc_eviction_mtx); 2518789Sahrens mutex_destroy(&arc_reclaim_lock); 2519789Sahrens mutex_destroy(&arc_reclaim_thr_lock); 2520789Sahrens cv_destroy(&arc_reclaim_thr_cv); 2521789Sahrens 25221544Seschrock list_destroy(&arc.mru->list); 25231544Seschrock list_destroy(&arc.mru_ghost->list); 25241544Seschrock list_destroy(&arc.mfu->list); 25251544Seschrock list_destroy(&arc.mfu_ghost->list); 2526789Sahrens 25272856Snd150628 mutex_destroy(&arc.anon->mtx); 25282856Snd150628 mutex_destroy(&arc.mru->mtx); 25292856Snd150628 mutex_destroy(&arc.mru_ghost->mtx); 25302856Snd150628 mutex_destroy(&arc.mfu->mtx); 25312856Snd150628 mutex_destroy(&arc.mfu_ghost->mtx); 25322856Snd150628 2533789Sahrens buf_fini(); 2534789Sahrens } 2535