Print this page
5179 remove unused ZFS ARC functions
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/common/fs/zfs/sys/arc.h
+++ new/usr/src/uts/common/fs/zfs/sys/arc.h
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21 /*
22 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 23 * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
24 24 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
25 25 */
26 26
27 27 #ifndef _SYS_ARC_H
28 28 #define _SYS_ARC_H
29 29
30 30 #include <sys/zfs_context.h>
31 31
32 32 #ifdef __cplusplus
33 33 extern "C" {
34 34 #endif
35 35
36 36 #include <sys/zio.h>
37 37 #include <sys/dmu.h>
38 38 #include <sys/spa.h>
39 39
40 40 typedef struct arc_buf_hdr arc_buf_hdr_t;
41 41 typedef struct arc_buf arc_buf_t;
42 42 typedef void arc_done_func_t(zio_t *zio, arc_buf_t *buf, void *private);
43 43 typedef int arc_evict_func_t(void *private);
44 44
45 45 /* generic arc_done_func_t's which you can use */
46 46 arc_done_func_t arc_bcopy_func;
47 47 arc_done_func_t arc_getbuf_func;
48 48
49 49 struct arc_buf {
50 50 arc_buf_hdr_t *b_hdr;
51 51 arc_buf_t *b_next;
52 52 kmutex_t b_evict_lock;
53 53 void *b_data;
54 54 arc_evict_func_t *b_efunc;
55 55 void *b_private;
56 56 };
57 57
58 58 typedef enum arc_buf_contents {
59 59 ARC_BUFC_DATA, /* buffer contains data */
60 60 ARC_BUFC_METADATA, /* buffer contains metadata */
61 61 ARC_BUFC_NUMTYPES
62 62 } arc_buf_contents_t;
63 63 /*
64 64 * These are the flags we pass into calls to the arc
65 65 */
66 66 #define ARC_WAIT (1 << 1) /* perform I/O synchronously */
67 67 #define ARC_NOWAIT (1 << 2) /* perform I/O asynchronously */
68 68 #define ARC_PREFETCH (1 << 3) /* I/O is a prefetch */
69 69 #define ARC_CACHED (1 << 4) /* I/O was already in cache */
70 70 #define ARC_L2CACHE (1 << 5) /* cache in L2ARC */
71 71 #define ARC_L2COMPRESS (1 << 6) /* compress in L2ARC */
72 72
73 73 /*
74 74 * The following breakdows of arc_size exist for kstat only.
75 75 */
↓ open down ↓ |
75 lines elided |
↑ open up ↑ |
76 76 typedef enum arc_space_type {
77 77 ARC_SPACE_DATA,
78 78 ARC_SPACE_HDRS,
79 79 ARC_SPACE_L2HDRS,
80 80 ARC_SPACE_OTHER,
81 81 ARC_SPACE_NUMTYPES
82 82 } arc_space_type_t;
83 83
84 84 void arc_space_consume(uint64_t space, arc_space_type_t type);
85 85 void arc_space_return(uint64_t space, arc_space_type_t type);
86 -void *arc_data_buf_alloc(uint64_t space);
87 -void arc_data_buf_free(void *buf, uint64_t space);
88 86 arc_buf_t *arc_buf_alloc(spa_t *spa, int size, void *tag,
89 87 arc_buf_contents_t type);
90 88 arc_buf_t *arc_loan_buf(spa_t *spa, int size);
91 89 void arc_return_buf(arc_buf_t *buf, void *tag);
92 90 void arc_loan_inuse_buf(arc_buf_t *buf, void *tag);
93 91 void arc_buf_add_ref(arc_buf_t *buf, void *tag);
94 92 boolean_t arc_buf_remove_ref(arc_buf_t *buf, void *tag);
95 93 int arc_buf_size(arc_buf_t *buf);
96 94 void arc_release(arc_buf_t *buf, void *tag);
97 95 int arc_released(arc_buf_t *buf);
98 96 void arc_buf_freeze(arc_buf_t *buf);
99 97 void arc_buf_thaw(arc_buf_t *buf);
100 98 boolean_t arc_buf_eviction_needed(arc_buf_t *buf);
101 99 #ifdef ZFS_DEBUG
102 100 int arc_referenced(arc_buf_t *buf);
103 101 #endif
104 102
105 103 int arc_read(zio_t *pio, spa_t *spa, const blkptr_t *bp,
106 104 arc_done_func_t *done, void *private, zio_priority_t priority, int flags,
107 105 uint32_t *arc_flags, const zbookmark_phys_t *zb);
108 106 zio_t *arc_write(zio_t *pio, spa_t *spa, uint64_t txg,
109 107 blkptr_t *bp, arc_buf_t *buf, boolean_t l2arc, boolean_t l2arc_compress,
110 108 const zio_prop_t *zp, arc_done_func_t *ready, arc_done_func_t *physdone,
111 109 arc_done_func_t *done, void *private, zio_priority_t priority,
112 110 int zio_flags, const zbookmark_phys_t *zb);
113 111 void arc_freed(spa_t *spa, const blkptr_t *bp);
114 112
115 113 void arc_set_callback(arc_buf_t *buf, arc_evict_func_t *func, void *private);
116 114 boolean_t arc_clear_callback(arc_buf_t *buf);
117 115
118 116 void arc_flush(spa_t *spa);
119 117 void arc_tempreserve_clear(uint64_t reserve);
120 118 int arc_tempreserve_space(uint64_t reserve, uint64_t txg);
121 119
122 120 void arc_init(void);
123 121 void arc_fini(void);
124 122
125 123 /*
126 124 * Level 2 ARC
127 125 */
128 126
129 127 void l2arc_add_vdev(spa_t *spa, vdev_t *vd);
130 128 void l2arc_remove_vdev(vdev_t *vd);
131 129 boolean_t l2arc_vdev_present(vdev_t *vd);
132 130 void l2arc_init(void);
133 131 void l2arc_fini(void);
134 132 void l2arc_start(void);
135 133 void l2arc_stop(void);
136 134
137 135 #ifndef _KERNEL
138 136 extern boolean_t arc_watch;
139 137 extern int arc_procfd;
140 138 #endif
141 139
142 140 #ifdef __cplusplus
143 141 }
144 142 #endif
145 143
146 144 #endif /* _SYS_ARC_H */
↓ open down ↓ |
49 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX