]> git.proxmox.com Git - mirror_zfs.git/blame - include/sys/arc.h
Illumos #3112, #3113, #3114
[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.
df4474f9 23 * Copyright (c) 2013 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
BB
40
41typedef struct arc_buf_hdr arc_buf_hdr_t;
42typedef struct arc_buf arc_buf_t;
ab26409d 43typedef struct arc_prune arc_prune_t;
34dc7c2f 44typedef void arc_done_func_t(zio_t *zio, arc_buf_t *buf, void *private);
ab26409d 45typedef void arc_prune_func_t(int64_t bytes, void *private);
34dc7c2f
BB
46typedef int arc_evict_func_t(void *private);
47
48/* generic arc_done_func_t's which you can use */
49arc_done_func_t arc_bcopy_func;
50arc_done_func_t arc_getbuf_func;
51
ab26409d
BB
52/* generic arc_prune_func_t wrapper for callbacks */
53struct arc_prune {
54 arc_prune_func_t *p_pfunc;
55 void *p_private;
56 list_node_t p_node;
57 refcount_t p_refcnt;
58};
59
34dc7c2f
BB
60struct arc_buf {
61 arc_buf_hdr_t *b_hdr;
62 arc_buf_t *b_next;
428870ff 63 kmutex_t b_evict_lock;
34dc7c2f
BB
64 void *b_data;
65 arc_evict_func_t *b_efunc;
66 void *b_private;
67};
68
69typedef enum arc_buf_contents {
70 ARC_BUFC_DATA, /* buffer contains data */
71 ARC_BUFC_METADATA, /* buffer contains metadata */
72 ARC_BUFC_NUMTYPES
73} arc_buf_contents_t;
74/*
75 * These are the flags we pass into calls to the arc
76 */
77#define ARC_WAIT (1 << 1) /* perform I/O synchronously */
78#define ARC_NOWAIT (1 << 2) /* perform I/O asynchronously */
79#define ARC_PREFETCH (1 << 3) /* I/O is a prefetch */
80#define ARC_CACHED (1 << 4) /* I/O was already in cache */
b128c09f 81#define ARC_L2CACHE (1 << 5) /* cache in L2ARC */
3a17a7a9 82#define ARC_L2COMPRESS (1 << 6) /* compress in L2ARC */
34dc7c2f 83
d164b209
BB
84/*
85 * The following breakdows of arc_size exist for kstat only.
86 */
87typedef enum arc_space_type {
88 ARC_SPACE_DATA,
89 ARC_SPACE_HDRS,
90 ARC_SPACE_L2HDRS,
91 ARC_SPACE_OTHER,
92 ARC_SPACE_NUMTYPES
93} arc_space_type_t;
94
e0b0ca98
BB
95typedef enum arc_state_type {
96 ARC_STATE_ANON,
97 ARC_STATE_MRU,
98 ARC_STATE_MRU_GHOST,
99 ARC_STATE_MFU,
100 ARC_STATE_MFU_GHOST,
101 ARC_STATE_L2C_ONLY,
102 ARC_STATE_NUMTYPES
103} arc_state_type_t;
104
105typedef struct arc_buf_info {
106 arc_state_type_t abi_state_type;
107 arc_buf_contents_t abi_state_contents;
108 uint64_t abi_state_index;
109 uint32_t abi_flags;
110 uint32_t abi_datacnt;
111 uint64_t abi_size;
112 uint64_t abi_spa;
113 uint64_t abi_access;
114 uint32_t abi_mru_hits;
115 uint32_t abi_mru_ghost_hits;
116 uint32_t abi_mfu_hits;
117 uint32_t abi_mfu_ghost_hits;
118 uint32_t abi_l2arc_hits;
119 uint32_t abi_holds;
120 uint64_t abi_l2arc_dattr;
121 uint64_t abi_l2arc_asize;
122 enum zio_compress abi_l2arc_compress;
123} arc_buf_info_t;
124
d164b209
BB
125void arc_space_consume(uint64_t space, arc_space_type_t type);
126void arc_space_return(uint64_t space, arc_space_type_t type);
34dc7c2f
BB
127arc_buf_t *arc_buf_alloc(spa_t *spa, int size, void *tag,
128 arc_buf_contents_t type);
9babb374
BB
129arc_buf_t *arc_loan_buf(spa_t *spa, int size);
130void arc_return_buf(arc_buf_t *buf, void *tag);
428870ff 131void arc_loan_inuse_buf(arc_buf_t *buf, void *tag);
34dc7c2f 132void arc_buf_add_ref(arc_buf_t *buf, void *tag);
13fe0198 133boolean_t arc_buf_remove_ref(arc_buf_t *buf, void *tag);
e0b0ca98 134void arc_buf_info(arc_buf_t *buf, arc_buf_info_t *abi, int state_index);
34dc7c2f
BB
135int arc_buf_size(arc_buf_t *buf);
136void arc_release(arc_buf_t *buf, void *tag);
137int arc_released(arc_buf_t *buf);
138int arc_has_callback(arc_buf_t *buf);
498877ba 139void arc_buf_sigsegv(int sig, siginfo_t *si, void *unused);
34dc7c2f
BB
140void arc_buf_freeze(arc_buf_t *buf);
141void arc_buf_thaw(arc_buf_t *buf);
1eb5bfa3 142boolean_t arc_buf_eviction_needed(arc_buf_t *buf);
34dc7c2f
BB
143#ifdef ZFS_DEBUG
144int arc_referenced(arc_buf_t *buf);
145#endif
146
294f6806 147int arc_read(zio_t *pio, spa_t *spa, const blkptr_t *bp,
34dc7c2f 148 arc_done_func_t *done, void *private, int priority, int flags,
b128c09f 149 uint32_t *arc_flags, const zbookmark_t *zb);
428870ff 150zio_t *arc_write(zio_t *pio, spa_t *spa, uint64_t txg,
3a17a7a9
SK
151 blkptr_t *bp, arc_buf_t *buf, boolean_t l2arc, boolean_t l2arc_compress,
152 const zio_prop_t *zp, arc_done_func_t *ready, arc_done_func_t *done,
153 void *private, int priority, int zio_flags, const zbookmark_t *zb);
34dc7c2f 154
ab26409d
BB
155arc_prune_t *arc_add_prune_callback(arc_prune_func_t *func, void *private);
156void arc_remove_prune_callback(arc_prune_t *p);
df4474f9 157void arc_freed(spa_t *spa, const blkptr_t *bp);
ab26409d 158
34dc7c2f
BB
159void arc_set_callback(arc_buf_t *buf, arc_evict_func_t *func, void *private);
160int arc_buf_evict(arc_buf_t *buf);
161
ab26409d 162void arc_adjust_meta(int64_t adjustment, boolean_t may_prune);
34dc7c2f
BB
163void arc_flush(spa_t *spa);
164void arc_tempreserve_clear(uint64_t reserve);
165int arc_tempreserve_space(uint64_t reserve, uint64_t txg);
166
167void arc_init(void);
168void arc_fini(void);
169
170/*
171 * Level 2 ARC
172 */
173
9babb374 174void l2arc_add_vdev(spa_t *spa, vdev_t *vd);
34dc7c2f 175void l2arc_remove_vdev(vdev_t *vd);
b128c09f 176boolean_t l2arc_vdev_present(vdev_t *vd);
34dc7c2f
BB
177void l2arc_init(void);
178void l2arc_fini(void);
b128c09f
BB
179void l2arc_start(void);
180void l2arc_stop(void);
34dc7c2f 181
7df05a42
RY
182/* Global tunings */
183extern int zfs_write_limit_shift;
184extern unsigned long zfs_write_limit_max;
185extern kmutex_t zfs_write_limit_lock;
186
498877ba
MA
187#ifndef _KERNEL
188extern boolean_t arc_watch;
189#endif
190
34dc7c2f
BB
191#ifdef __cplusplus
192}
193#endif
194
195#endif /* _SYS_ARC_H */