xref: /illumos-gate/usr/src/uts/common/fs/zfs/sys/arc.h (revision ea8dc4b6d2251b437950c0056bc626b311c73c27)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef	_SYS_ARC_H
27 #define	_SYS_ARC_H
28 
29 #pragma ident	"%Z%%M%	%I%	%E% SMI"
30 
31 #include <sys/zfs_context.h>
32 
33 #ifdef	__cplusplus
34 extern "C" {
35 #endif
36 
37 #include <sys/zio.h>
38 
39 typedef struct arc_buf_hdr arc_buf_hdr_t;
40 typedef struct arc_buf arc_buf_t;
41 typedef void arc_done_func_t(zio_t *zio, arc_buf_t *buf, void *private);
42 typedef void arc_byteswap_func_t(void *buf, size_t size);
43 typedef int arc_evict_func_t(void *private);
44 
45 /* generic arc_done_func_t's which you can use */
46 arc_done_func_t arc_bcopy_func;
47 arc_done_func_t arc_getbuf_func;
48 
49 struct arc_buf {
50 	arc_buf_hdr_t		*b_hdr;
51 	arc_buf_t		*b_next;
52 	void			*b_data;
53 	arc_evict_func_t	*b_efunc;
54 	void			*b_private;
55 };
56 
57 /*
58  * These are the flags we pass into calls to the arc
59  */
60 #define	ARC_WAIT	(1 << 1)	/* perform I/O synchronously */
61 #define	ARC_NOWAIT	(1 << 2)	/* perform I/O asynchronously */
62 #define	ARC_PREFETCH	(1 << 3)	/* I/O is a prefetch */
63 
64 arc_buf_t *arc_buf_alloc(spa_t *spa, int size, void *tag);
65 void arc_buf_add_ref(arc_buf_t *buf, void *tag);
66 int arc_buf_remove_ref(arc_buf_t *buf, void *tag);
67 int arc_buf_size(arc_buf_t *buf);
68 void arc_release(arc_buf_t *buf, void *tag);
69 int arc_released(arc_buf_t *buf);
70 int arc_has_callback(arc_buf_t *buf);
71 #ifdef ZFS_DEBUG
72 int arc_referenced(arc_buf_t *buf);
73 #endif
74 
75 int arc_read(zio_t *pio, spa_t *spa, blkptr_t *bp, arc_byteswap_func_t *swap,
76     arc_done_func_t *done, void *private, int priority, int flags,
77     uint32_t arc_flags, zbookmark_t *zb);
78 int arc_write(zio_t *pio, spa_t *spa, int checksum, int compress,
79     uint64_t txg, blkptr_t *bp, arc_buf_t *buf,
80     arc_done_func_t *done, void *private, int priority, int flags,
81     uint32_t arc_flags, zbookmark_t *zb);
82 int arc_free(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp,
83     zio_done_func_t *done, void *private, uint32_t arc_flags);
84 int arc_tryread(spa_t *spa, blkptr_t *bp, void *data);
85 
86 void arc_set_callback(arc_buf_t *buf, arc_evict_func_t *func, void *private);
87 int arc_buf_evict(arc_buf_t *buf);
88 
89 void arc_flush(void);
90 void arc_tempreserve_clear(uint64_t tempreserve);
91 int arc_tempreserve_space(uint64_t tempreserve);
92 
93 void arc_init(void);
94 void arc_fini(void);
95 
96 #ifdef	__cplusplus
97 }
98 #endif
99 
100 #endif /* _SYS_ARC_H */
101