]> git.proxmox.com Git - mirror_zfs.git/blame - include/sys/arc.h
Limit the amount of dnode metadata in the ARC
[mirror_zfs.git] / include / sys / arc.h
CommitLineData
34dc7c2f
BB
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
428870ff 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
bc77ba73 23 * Copyright (c) 2012, 2016 by Delphix. All rights reserved.
3a17a7a9 24 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
34dc7c2f
BB
25 */
26
27#ifndef _SYS_ARC_H
28#define _SYS_ARC_H
29
34dc7c2f
BB
30#include <sys/zfs_context.h>
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36#include <sys/zio.h>
37#include <sys/dmu.h>
38#include <sys/spa.h>
ab26409d 39#include <sys/refcount.h>
34dc7c2f 40
ca0bf58d
PS
41/*
42 * Used by arc_flush() to inform arc_evict_state() that it should evict
43 * all available buffers from the arc state being passed in.
44 */
45#define ARC_EVICT_ALL -1ULL
46
34dc7c2f
BB
47typedef struct arc_buf_hdr arc_buf_hdr_t;
48typedef struct arc_buf arc_buf_t;
ab26409d 49typedef struct arc_prune arc_prune_t;
34dc7c2f 50typedef void arc_done_func_t(zio_t *zio, arc_buf_t *buf, void *private);
ab26409d 51typedef void arc_prune_func_t(int64_t bytes, void *private);
34dc7c2f
BB
52typedef int arc_evict_func_t(void *private);
53
69de3421
TC
54/* Shared module parameters */
55extern int zfs_arc_average_blocksize;
56
34dc7c2f
BB
57/* generic arc_done_func_t's which you can use */
58arc_done_func_t arc_bcopy_func;
59arc_done_func_t arc_getbuf_func;
60
ab26409d
BB
61/* generic arc_prune_func_t wrapper for callbacks */
62struct arc_prune {
63 arc_prune_func_t *p_pfunc;
64 void *p_private;
f6046738 65 uint64_t p_adjust;
ab26409d
BB
66 list_node_t p_node;
67 refcount_t p_refcnt;
68};
69
f6046738
BB
70typedef enum arc_strategy {
71 ARC_STRATEGY_META_ONLY = 0, /* Evict only meta data buffers */
72 ARC_STRATEGY_META_BALANCED = 1, /* Evict data buffers if needed */
73} arc_strategy_t;
74
2a432414
GW
75typedef enum arc_flags
76{
77 /*
78 * Public flags that can be passed into the ARC by external consumers.
79 */
80 ARC_FLAG_NONE = 1 << 0, /* No flags set */
81 ARC_FLAG_WAIT = 1 << 1, /* perform sync I/O */
82 ARC_FLAG_NOWAIT = 1 << 2, /* perform async I/O */
83 ARC_FLAG_PREFETCH = 1 << 3, /* I/O is a prefetch */
84 ARC_FLAG_CACHED = 1 << 4, /* I/O was in cache */
85 ARC_FLAG_L2CACHE = 1 << 5, /* cache in L2ARC */
86 ARC_FLAG_L2COMPRESS = 1 << 6, /* compress in L2ARC */
7f60329a 87 ARC_FLAG_PREDICTIVE_PREFETCH = 1 << 7, /* I/O from zfetch */
2a432414
GW
88
89 /*
90 * Private ARC flags. These flags are private ARC only flags that
91 * will show up in b_flags in the arc_hdr_buf_t. These flags should
92 * only be set by ARC code.
93 */
7f60329a
MA
94 ARC_FLAG_IN_HASH_TABLE = 1 << 8, /* buffer is hashed */
95 ARC_FLAG_IO_IN_PROGRESS = 1 << 9, /* I/O in progress */
96 ARC_FLAG_IO_ERROR = 1 << 10, /* I/O failed for buf */
97 ARC_FLAG_FREED_IN_READ = 1 << 11, /* freed during read */
98 ARC_FLAG_BUF_AVAILABLE = 1 << 12, /* block not in use */
99 ARC_FLAG_INDIRECT = 1 << 13, /* indirect block */
100 /* Indicates that block was read with ASYNC priority. */
101 ARC_FLAG_PRIO_ASYNC_READ = 1 << 14,
102 ARC_FLAG_L2_WRITING = 1 << 15, /* write in progress */
103 ARC_FLAG_L2_EVICTED = 1 << 16, /* evicted during I/O */
104 ARC_FLAG_L2_WRITE_HEAD = 1 << 17, /* head of write list */
b9541d6b 105 /* indicates that the buffer contains metadata (otherwise, data) */
7f60329a 106 ARC_FLAG_BUFC_METADATA = 1 << 18,
b9541d6b
CW
107
108 /* Flags specifying whether optional hdr struct fields are defined */
7f60329a
MA
109 ARC_FLAG_HAS_L1HDR = 1 << 19,
110 ARC_FLAG_HAS_L2HDR = 1 << 20,
111
2a432414
GW
112} arc_flags_t;
113
34dc7c2f
BB
114struct arc_buf {
115 arc_buf_hdr_t *b_hdr;
116 arc_buf_t *b_next;
428870ff 117 kmutex_t b_evict_lock;
34dc7c2f
BB
118 void *b_data;
119 arc_evict_func_t *b_efunc;
120 void *b_private;
121};
122
123typedef enum arc_buf_contents {
124 ARC_BUFC_DATA, /* buffer contains data */
125 ARC_BUFC_METADATA, /* buffer contains metadata */
126 ARC_BUFC_NUMTYPES
127} arc_buf_contents_t;
34dc7c2f 128
d164b209
BB
129/*
130 * The following breakdows of arc_size exist for kstat only.
131 */
132typedef enum arc_space_type {
133 ARC_SPACE_DATA,
cc7f677c 134 ARC_SPACE_META,
d164b209
BB
135 ARC_SPACE_HDRS,
136 ARC_SPACE_L2HDRS,
25458cbe
TC
137 ARC_SPACE_DBUF,
138 ARC_SPACE_DNODE,
139 ARC_SPACE_BONUS,
d164b209
BB
140 ARC_SPACE_NUMTYPES
141} arc_space_type_t;
142
e0b0ca98
BB
143typedef enum arc_state_type {
144 ARC_STATE_ANON,
145 ARC_STATE_MRU,
146 ARC_STATE_MRU_GHOST,
147 ARC_STATE_MFU,
148 ARC_STATE_MFU_GHOST,
149 ARC_STATE_L2C_ONLY,
150 ARC_STATE_NUMTYPES
151} arc_state_type_t;
152
153typedef struct arc_buf_info {
154 arc_state_type_t abi_state_type;
155 arc_buf_contents_t abi_state_contents;
e0b0ca98
BB
156 uint32_t abi_flags;
157 uint32_t abi_datacnt;
158 uint64_t abi_size;
159 uint64_t abi_spa;
160 uint64_t abi_access;
161 uint32_t abi_mru_hits;
162 uint32_t abi_mru_ghost_hits;
163 uint32_t abi_mfu_hits;
164 uint32_t abi_mfu_ghost_hits;
165 uint32_t abi_l2arc_hits;
166 uint32_t abi_holds;
167 uint64_t abi_l2arc_dattr;
168 uint64_t abi_l2arc_asize;
169 enum zio_compress abi_l2arc_compress;
170} arc_buf_info_t;
171
d164b209
BB
172void arc_space_consume(uint64_t space, arc_space_type_t type);
173void arc_space_return(uint64_t space, arc_space_type_t type);
5f6d0b6f 174arc_buf_t *arc_buf_alloc(spa_t *spa, uint64_t size, void *tag,
34dc7c2f 175 arc_buf_contents_t type);
5f6d0b6f 176arc_buf_t *arc_loan_buf(spa_t *spa, uint64_t size);
9babb374 177void arc_return_buf(arc_buf_t *buf, void *tag);
428870ff 178void arc_loan_inuse_buf(arc_buf_t *buf, void *tag);
34dc7c2f 179void arc_buf_add_ref(arc_buf_t *buf, void *tag);
13fe0198 180boolean_t arc_buf_remove_ref(arc_buf_t *buf, void *tag);
e0b0ca98 181void arc_buf_info(arc_buf_t *buf, arc_buf_info_t *abi, int state_index);
5f6d0b6f 182uint64_t arc_buf_size(arc_buf_t *buf);
34dc7c2f
BB
183void arc_release(arc_buf_t *buf, void *tag);
184int arc_released(arc_buf_t *buf);
498877ba 185void arc_buf_sigsegv(int sig, siginfo_t *si, void *unused);
34dc7c2f
BB
186void arc_buf_freeze(arc_buf_t *buf);
187void arc_buf_thaw(arc_buf_t *buf);
1eb5bfa3 188boolean_t arc_buf_eviction_needed(arc_buf_t *buf);
34dc7c2f
BB
189#ifdef ZFS_DEBUG
190int arc_referenced(arc_buf_t *buf);
191#endif
192
294f6806 193int arc_read(zio_t *pio, spa_t *spa, const blkptr_t *bp,
e8b96c60 194 arc_done_func_t *done, void *private, zio_priority_t priority, int flags,
2a432414 195 arc_flags_t *arc_flags, const zbookmark_phys_t *zb);
428870ff 196zio_t *arc_write(zio_t *pio, spa_t *spa, uint64_t txg,
3a17a7a9 197 blkptr_t *bp, arc_buf_t *buf, boolean_t l2arc, boolean_t l2arc_compress,
bc77ba73
PD
198 const zio_prop_t *zp,
199 arc_done_func_t *ready, arc_done_func_t *child_ready,
200 arc_done_func_t *physdone, arc_done_func_t *done,
201 void *private, zio_priority_t priority, int zio_flags,
202 const zbookmark_phys_t *zb);
34dc7c2f 203
ab26409d
BB
204arc_prune_t *arc_add_prune_callback(arc_prune_func_t *func, void *private);
205void arc_remove_prune_callback(arc_prune_t *p);
df4474f9 206void arc_freed(spa_t *spa, const blkptr_t *bp);
ab26409d 207
34dc7c2f 208void arc_set_callback(arc_buf_t *buf, arc_evict_func_t *func, void *private);
bd089c54 209boolean_t arc_clear_callback(arc_buf_t *buf);
34dc7c2f 210
ca0bf58d 211void arc_flush(spa_t *spa, boolean_t retry);
34dc7c2f
BB
212void arc_tempreserve_clear(uint64_t reserve);
213int arc_tempreserve_space(uint64_t reserve, uint64_t txg);
214
215void arc_init(void);
216void arc_fini(void);
217
218/*
219 * Level 2 ARC
220 */
221
9babb374 222void l2arc_add_vdev(spa_t *spa, vdev_t *vd);
34dc7c2f 223void l2arc_remove_vdev(vdev_t *vd);
b128c09f 224boolean_t l2arc_vdev_present(vdev_t *vd);
34dc7c2f
BB
225void l2arc_init(void);
226void l2arc_fini(void);
b128c09f
BB
227void l2arc_start(void);
228void l2arc_stop(void);
34dc7c2f 229
498877ba
MA
230#ifndef _KERNEL
231extern boolean_t arc_watch;
232#endif
233
34dc7c2f
BB
234#ifdef __cplusplus
235}
236#endif
237
238#endif /* _SYS_ARC_H */