1 1.1 haad /* 2 1.1 haad * CDDL HEADER START 3 1.1 haad * 4 1.1 haad * The contents of this file are subject to the terms of the 5 1.1 haad * Common Development and Distribution License (the "License"). 6 1.1 haad * You may not use this file except in compliance with the License. 7 1.1 haad * 8 1.1 haad * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 1.1 haad * or http://www.opensolaris.org/os/licensing. 10 1.1 haad * See the License for the specific language governing permissions 11 1.1 haad * and limitations under the License. 12 1.1 haad * 13 1.1 haad * When distributing Covered Code, include this CDDL HEADER in each 14 1.1 haad * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 1.1 haad * If applicable, add the following below this CDDL HEADER, with the 16 1.1 haad * fields enclosed by brackets "[]" replaced with your own identifying 17 1.1 haad * information: Portions Copyright [yyyy] [name of copyright owner] 18 1.1 haad * 19 1.1 haad * CDDL HEADER END 20 1.1 haad */ 21 1.1 haad /* 22 1.1.1.3 chs * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 23 1.1.1.3 chs * Copyright (c) 2012, 2016 by Delphix. All rights reserved. 24 1.1.1.3 chs * Copyright (c) 2013 by Saso Kiselkov. All rights reserved. 25 1.1 haad */ 26 1.1 haad 27 1.1 haad #ifndef _SYS_ARC_H 28 1.1 haad #define _SYS_ARC_H 29 1.1 haad 30 1.1 haad #include <sys/zfs_context.h> 31 1.1 haad 32 1.1 haad #ifdef __cplusplus 33 1.1 haad extern "C" { 34 1.1 haad #endif 35 1.1 haad 36 1.1 haad #include <sys/zio.h> 37 1.1 haad #include <sys/dmu.h> 38 1.1 haad #include <sys/spa.h> 39 1.1 haad 40 1.1.1.3 chs /* 41 1.1.1.3 chs * Used by arc_flush() to inform arc_evict_state() that it should evict 42 1.1.1.3 chs * all available buffers from the arc state being passed in. 43 1.1.1.3 chs */ 44 1.1.1.3 chs #define ARC_EVICT_ALL -1ULL 45 1.1.1.3 chs 46 1.1.1.3 chs #define HDR_SET_LSIZE(hdr, x) do { \ 47 1.1.1.3 chs ASSERT(IS_P2ALIGNED(x, 1U << SPA_MINBLOCKSHIFT)); \ 48 1.1.1.3 chs (hdr)->b_lsize = ((x) >> SPA_MINBLOCKSHIFT); \ 49 1.1.1.3 chs _NOTE(CONSTCOND) } while (0) 50 1.1.1.3 chs 51 1.1.1.3 chs #define HDR_SET_PSIZE(hdr, x) do { \ 52 1.1.1.3 chs ASSERT(IS_P2ALIGNED((x), 1U << SPA_MINBLOCKSHIFT)); \ 53 1.1.1.3 chs (hdr)->b_psize = ((x) >> SPA_MINBLOCKSHIFT); \ 54 1.1.1.3 chs _NOTE(CONSTCOND) } while (0) 55 1.1.1.3 chs 56 1.1.1.3 chs #define HDR_GET_LSIZE(hdr) ((hdr)->b_lsize << SPA_MINBLOCKSHIFT) 57 1.1.1.3 chs #define HDR_GET_PSIZE(hdr) ((hdr)->b_psize << SPA_MINBLOCKSHIFT) 58 1.1.1.3 chs 59 1.1 haad typedef struct arc_buf_hdr arc_buf_hdr_t; 60 1.1 haad typedef struct arc_buf arc_buf_t; 61 1.1.1.3 chs typedef void arc_done_func_t(zio_t *zio, arc_buf_t *buf, void *priv); 62 1.1 haad 63 1.1 haad /* generic arc_done_func_t's which you can use */ 64 1.1 haad arc_done_func_t arc_bcopy_func; 65 1.1 haad arc_done_func_t arc_getbuf_func; 66 1.1 haad 67 1.1.1.3 chs extern int zfs_arc_num_sublists_per_state; 68 1.1.1.3 chs 69 1.1.1.3 chs typedef enum arc_flags 70 1.1.1.3 chs { 71 1.1.1.3 chs /* 72 1.1.1.3 chs * Public flags that can be passed into the ARC by external consumers. 73 1.1.1.3 chs */ 74 1.1.1.3 chs ARC_FLAG_WAIT = 1 << 0, /* perform sync I/O */ 75 1.1.1.3 chs ARC_FLAG_NOWAIT = 1 << 1, /* perform async I/O */ 76 1.1.1.3 chs ARC_FLAG_PREFETCH = 1 << 2, /* I/O is a prefetch */ 77 1.1.1.3 chs ARC_FLAG_CACHED = 1 << 3, /* I/O was in cache */ 78 1.1.1.3 chs ARC_FLAG_L2CACHE = 1 << 4, /* cache in L2ARC */ 79 1.1.1.3 chs ARC_FLAG_PREDICTIVE_PREFETCH = 1 << 5, /* I/O from zfetch */ 80 1.1.1.3 chs 81 1.1.1.3 chs /* 82 1.1.1.3 chs * Private ARC flags. These flags are private ARC only flags that 83 1.1.1.3 chs * will show up in b_flags in the arc_hdr_buf_t. These flags should 84 1.1.1.3 chs * only be set by ARC code. 85 1.1.1.3 chs */ 86 1.1.1.3 chs ARC_FLAG_IN_HASH_TABLE = 1 << 6, /* buffer is hashed */ 87 1.1.1.3 chs ARC_FLAG_IO_IN_PROGRESS = 1 << 7, /* I/O in progress */ 88 1.1.1.3 chs ARC_FLAG_IO_ERROR = 1 << 8, /* I/O failed for buf */ 89 1.1.1.3 chs ARC_FLAG_INDIRECT = 1 << 9, /* indirect block */ 90 1.1.1.3 chs /* Indicates that block was read with ASYNC priority. */ 91 1.1.1.3 chs ARC_FLAG_PRIO_ASYNC_READ = 1 << 10, 92 1.1.1.3 chs ARC_FLAG_L2_WRITING = 1 << 11, /* write in progress */ 93 1.1.1.3 chs ARC_FLAG_L2_EVICTED = 1 << 12, /* evicted during I/O */ 94 1.1.1.3 chs ARC_FLAG_L2_WRITE_HEAD = 1 << 13, /* head of write list */ 95 1.1.1.3 chs /* indicates that the buffer contains metadata (otherwise, data) */ 96 1.1.1.3 chs ARC_FLAG_BUFC_METADATA = 1 << 14, 97 1.1.1.3 chs 98 1.1.1.3 chs /* Flags specifying whether optional hdr struct fields are defined */ 99 1.1.1.3 chs ARC_FLAG_HAS_L1HDR = 1 << 15, 100 1.1.1.3 chs ARC_FLAG_HAS_L2HDR = 1 << 16, 101 1.1.1.3 chs 102 1.1.1.3 chs /* 103 1.1.1.3 chs * Indicates the arc_buf_hdr_t's b_pdata matches the on-disk data. 104 1.1.1.3 chs * This allows the l2arc to use the blkptr's checksum to verify 105 1.1.1.3 chs * the data without having to store the checksum in the hdr. 106 1.1.1.3 chs */ 107 1.1.1.3 chs ARC_FLAG_COMPRESSED_ARC = 1 << 17, 108 1.1.1.3 chs ARC_FLAG_SHARED_DATA = 1 << 18, 109 1.1.1.3 chs 110 1.1.1.3 chs /* 111 1.1.1.3 chs * The arc buffer's compression mode is stored in the top 7 bits of the 112 1.1.1.3 chs * flags field, so these dummy flags are included so that MDB can 113 1.1.1.3 chs * interpret the enum properly. 114 1.1.1.3 chs */ 115 1.1.1.3 chs ARC_FLAG_COMPRESS_0 = 1 << 24, 116 1.1.1.3 chs ARC_FLAG_COMPRESS_1 = 1 << 25, 117 1.1.1.3 chs ARC_FLAG_COMPRESS_2 = 1 << 26, 118 1.1.1.3 chs ARC_FLAG_COMPRESS_3 = 1 << 27, 119 1.1.1.3 chs ARC_FLAG_COMPRESS_4 = 1 << 28, 120 1.1.1.3 chs ARC_FLAG_COMPRESS_5 = 1 << 29, 121 1.1.1.3 chs ARC_FLAG_COMPRESS_6 = 1 << 30 122 1.1.1.3 chs 123 1.1.1.3 chs } arc_flags_t; 124 1.1.1.3 chs 125 1.1 haad struct arc_buf { 126 1.1 haad arc_buf_hdr_t *b_hdr; 127 1.1 haad arc_buf_t *b_next; 128 1.1.1.3 chs kmutex_t b_evict_lock; 129 1.1 haad void *b_data; 130 1.1 haad }; 131 1.1 haad 132 1.1 haad typedef enum arc_buf_contents { 133 1.1.1.3 chs ARC_BUFC_INVALID, /* invalid type */ 134 1.1 haad ARC_BUFC_DATA, /* buffer contains data */ 135 1.1 haad ARC_BUFC_METADATA, /* buffer contains metadata */ 136 1.1 haad ARC_BUFC_NUMTYPES 137 1.1 haad } arc_buf_contents_t; 138 1.1 haad 139 1.1.1.2 haad /* 140 1.1.1.2 haad * The following breakdows of arc_size exist for kstat only. 141 1.1.1.2 haad */ 142 1.1.1.2 haad typedef enum arc_space_type { 143 1.1.1.2 haad ARC_SPACE_DATA, 144 1.1.1.3 chs ARC_SPACE_META, 145 1.1.1.2 haad ARC_SPACE_HDRS, 146 1.1.1.2 haad ARC_SPACE_L2HDRS, 147 1.1.1.2 haad ARC_SPACE_OTHER, 148 1.1.1.2 haad ARC_SPACE_NUMTYPES 149 1.1.1.2 haad } arc_space_type_t; 150 1.1.1.2 haad 151 1.1.1.2 haad void arc_space_consume(uint64_t space, arc_space_type_t type); 152 1.1.1.2 haad void arc_space_return(uint64_t space, arc_space_type_t type); 153 1.1.1.3 chs arc_buf_t *arc_alloc_buf(spa_t *spa, int32_t size, void *tag, 154 1.1 haad arc_buf_contents_t type); 155 1.1.1.2 haad arc_buf_t *arc_loan_buf(spa_t *spa, int size); 156 1.1.1.2 haad void arc_return_buf(arc_buf_t *buf, void *tag); 157 1.1.1.2 haad void arc_loan_inuse_buf(arc_buf_t *buf, void *tag); 158 1.1.1.3 chs void arc_buf_destroy(arc_buf_t *buf, void *tag); 159 1.1 haad int arc_buf_size(arc_buf_t *buf); 160 1.1 haad void arc_release(arc_buf_t *buf, void *tag); 161 1.1 haad int arc_released(arc_buf_t *buf); 162 1.1 haad void arc_buf_freeze(arc_buf_t *buf); 163 1.1 haad void arc_buf_thaw(arc_buf_t *buf); 164 1.1 haad #ifdef ZFS_DEBUG 165 1.1 haad int arc_referenced(arc_buf_t *buf); 166 1.1 haad #endif 167 1.1 haad 168 1.1.1.3 chs int arc_read(zio_t *pio, spa_t *spa, const blkptr_t *bp, 169 1.1.1.3 chs arc_done_func_t *done, void *priv, zio_priority_t priority, int flags, 170 1.1.1.3 chs arc_flags_t *arc_flags, const zbookmark_phys_t *zb); 171 1.1.1.2 haad zio_t *arc_write(zio_t *pio, spa_t *spa, uint64_t txg, 172 1.1.1.2 haad blkptr_t *bp, arc_buf_t *buf, boolean_t l2arc, const zio_prop_t *zp, 173 1.1.1.3 chs arc_done_func_t *ready, arc_done_func_t *child_ready, 174 1.1.1.3 chs arc_done_func_t *physdone, arc_done_func_t *done, 175 1.1.1.3 chs void *priv, zio_priority_t priority, int zio_flags, 176 1.1.1.3 chs const zbookmark_phys_t *zb); 177 1.1.1.3 chs void arc_freed(spa_t *spa, const blkptr_t *bp); 178 1.1 haad 179 1.1.1.3 chs void arc_flush(spa_t *spa, boolean_t retry); 180 1.1 haad void arc_tempreserve_clear(uint64_t reserve); 181 1.1 haad int arc_tempreserve_space(uint64_t reserve, uint64_t txg); 182 1.1 haad 183 1.1.1.3 chs uint64_t arc_max_bytes(void); 184 1.1 haad void arc_init(void); 185 1.1 haad void arc_fini(void); 186 1.1 haad 187 1.1 haad /* 188 1.1 haad * Level 2 ARC 189 1.1 haad */ 190 1.1 haad 191 1.1.1.2 haad void l2arc_add_vdev(spa_t *spa, vdev_t *vd); 192 1.1 haad void l2arc_remove_vdev(vdev_t *vd); 193 1.1 haad boolean_t l2arc_vdev_present(vdev_t *vd); 194 1.1 haad void l2arc_init(void); 195 1.1 haad void l2arc_fini(void); 196 1.1 haad void l2arc_start(void); 197 1.1 haad void l2arc_stop(void); 198 1.1 haad 199 1.1.1.3 chs #ifdef illumos 200 1.1.1.3 chs #ifndef _KERNEL 201 1.1.1.3 chs extern boolean_t arc_watch; 202 1.1.1.3 chs extern int arc_procfd; 203 1.1.1.3 chs #endif 204 1.1.1.3 chs #endif /* illumos */ 205 1.1.1.3 chs 206 1.1 haad #ifdef __cplusplus 207 1.1 haad } 208 1.1 haad #endif 209 1.1 haad 210 1.1 haad #endif /* _SYS_ARC_H */ 211