blob: c61ad0f69be9ce22d5ffdab521508de32fd10ac8 [file] [log] [blame]
Chris Mason234b63a2007-03-13 10:46:10 -04001#ifndef __BTRFS__
2#define __BTRFS__
Chris Masoneb60cea2007-02-02 09:18:22 -05003
Chris Masoned2ff2c2007-03-01 18:59:40 -05004#include "list.h"
Chris Masone2fa7222007-03-12 16:22:34 -04005#include "kerncompat.h"
Chris Masoned2ff2c2007-03-01 18:59:40 -05006
Chris Mason3768f362007-03-13 16:47:54 -04007#define BTRFS_MAGIC "_BtRfS_M"
Chris Masoneb60cea2007-02-02 09:18:22 -05008
Chris Mason3768f362007-03-13 16:47:54 -04009#define BTRFS_ROOT_TREE_OBJECTID 1
10#define BTRFS_EXTENT_TREE_OBJECTID 2
11#define BTRFS_FS_TREE_OBJECTID 3
12
Chris Masonfec577f2007-02-26 10:40:21 -050013/*
14 * the key defines the order in the tree, and so it also defines (optimal)
15 * block layout. objectid corresonds to the inode number. The flags
16 * tells us things about the object, and is a kind of stream selector.
17 * so for a given inode, keys with flags of 1 might refer to the inode
18 * data, flags of 2 may point to file data in the btree and flags == 3
19 * may point to extents.
20 *
21 * offset is the starting byte offset for this key in the stream.
Chris Masone2fa7222007-03-12 16:22:34 -040022 *
23 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
24 * in cpu native order. Otherwise they are identical and their sizes
25 * should be the same (ie both packed)
Chris Masonfec577f2007-02-26 10:40:21 -050026 */
Chris Masone2fa7222007-03-12 16:22:34 -040027struct btrfs_disk_key {
28 __le64 objectid;
29 __le32 flags;
30 __le64 offset;
31} __attribute__ ((__packed__));
32
33struct btrfs_key {
Chris Masoneb60cea2007-02-02 09:18:22 -050034 u64 objectid;
35 u32 flags;
36 u64 offset;
37} __attribute__ ((__packed__));
38
Chris Masonfec577f2007-02-26 10:40:21 -050039/*
40 * every tree block (leaf or node) starts with this header.
41 */
Chris Masonbb492bb2007-03-12 12:29:44 -040042struct btrfs_header {
Chris Mason3768f362007-03-13 16:47:54 -040043 u8 fsid[16]; /* FS specific uuid */
Chris Masonbb492bb2007-03-12 12:29:44 -040044 __le64 blocknr; /* which block this node is supposed to live in */
45 __le64 parentid; /* objectid of the tree root */
46 __le32 csum;
47 __le32 ham;
48 __le16 nritems;
49 __le16 flags;
Chris Masonfec577f2007-02-26 10:40:21 -050050 /* generation flags to be added */
Chris Masoneb60cea2007-02-02 09:18:22 -050051} __attribute__ ((__packed__));
52
Chris Mason234b63a2007-03-13 10:46:10 -040053#define BTRFS_MAX_LEVEL 8
Chris Mason123abc82007-03-14 14:14:43 -040054#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
55 sizeof(struct btrfs_header)) / \
56 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
57#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
58#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
Chris Masoneb60cea2007-02-02 09:18:22 -050059
Chris Mason234b63a2007-03-13 10:46:10 -040060struct btrfs_buffer;
Chris Masond97e63b2007-02-20 16:40:44 -050061
Chris Mason3768f362007-03-13 16:47:54 -040062struct btrfs_root_item {
63 __le64 blocknr;
64 __le32 flags;
65 __le64 block_limit;
66 __le64 blocks_used;
67 __le32 refs;
68};
69
Chris Masonfec577f2007-02-26 10:40:21 -050070/*
71 * in ram representation of the tree. extent_root is used for all allocations
72 * and for the extent tree extent_root root. current_insert is used
73 * only for the extent tree.
74 */
Chris Mason234b63a2007-03-13 10:46:10 -040075struct btrfs_root {
76 struct btrfs_buffer *node;
77 struct btrfs_buffer *commit_root;
78 struct btrfs_root *extent_root;
Chris Mason3768f362007-03-13 16:47:54 -040079 struct btrfs_root *tree_root;
Chris Masone2fa7222007-03-12 16:22:34 -040080 struct btrfs_key current_insert;
81 struct btrfs_key last_insert;
Chris Masoneb60cea2007-02-02 09:18:22 -050082 int fp;
83 struct radix_tree_root cache_radix;
Chris Masona28ec192007-03-06 20:08:01 -050084 struct radix_tree_root pinned_radix;
Chris Masoned2ff2c2007-03-01 18:59:40 -050085 struct list_head trans;
86 struct list_head cache;
87 int cache_size;
Chris Mason3768f362007-03-13 16:47:54 -040088 int ref_cows;
89 struct btrfs_root_item root_item;
90 struct btrfs_key root_key;
Chris Mason123abc82007-03-14 14:14:43 -040091 u32 blocksize;
Chris Masoneb60cea2007-02-02 09:18:22 -050092};
93
Chris Masonfec577f2007-02-26 10:40:21 -050094/*
Chris Masonfec577f2007-02-26 10:40:21 -050095 * the super block basically lists the main trees of the FS
96 * it currently lacks any block count etc etc
97 */
Chris Mason234b63a2007-03-13 10:46:10 -040098struct btrfs_super_block {
Chris Mason3768f362007-03-13 16:47:54 -040099 u8 fsid[16]; /* FS specific uuid */
100 __le64 blocknr; /* this block number */
101 __le32 csum;
102 __le64 magic;
Chris Mason123abc82007-03-14 14:14:43 -0400103 __le32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400104 __le64 generation;
105 __le64 root;
106 __le64 total_blocks;
107 __le64 blocks_used;
Chris Masoncfaa7292007-02-21 17:04:57 -0500108} __attribute__ ((__packed__));
109
Chris Masonfec577f2007-02-26 10:40:21 -0500110/*
111 * A leaf is full of items. The exact type of item is defined by
112 * the key flags parameter. offset and size tell us where to find
113 * the item in the leaf (relative to the start of the data area)
114 */
Chris Mason0783fcf2007-03-12 20:12:07 -0400115struct btrfs_item {
Chris Masone2fa7222007-03-12 16:22:34 -0400116 struct btrfs_disk_key key;
Chris Mason123abc82007-03-14 14:14:43 -0400117 __le32 offset;
Chris Mason0783fcf2007-03-12 20:12:07 -0400118 __le16 size;
Chris Masoneb60cea2007-02-02 09:18:22 -0500119} __attribute__ ((__packed__));
120
Chris Masonfec577f2007-02-26 10:40:21 -0500121/*
122 * leaves have an item area and a data area:
123 * [item0, item1....itemN] [free space] [dataN...data1, data0]
124 *
125 * The data is separate from the items to get the keys closer together
126 * during searches.
127 */
Chris Mason234b63a2007-03-13 10:46:10 -0400128struct btrfs_leaf {
Chris Masonbb492bb2007-03-12 12:29:44 -0400129 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400130 struct btrfs_item items[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500131} __attribute__ ((__packed__));
132
Chris Masonfec577f2007-02-26 10:40:21 -0500133/*
134 * all non-leaf blocks are nodes, they hold only keys and pointers to
135 * other blocks
136 */
Chris Mason123abc82007-03-14 14:14:43 -0400137struct btrfs_key_ptr {
138 struct btrfs_disk_key key;
139 __le64 blockptr;
140} __attribute__ ((__packed__));
141
Chris Mason234b63a2007-03-13 10:46:10 -0400142struct btrfs_node {
Chris Masonbb492bb2007-03-12 12:29:44 -0400143 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400144 struct btrfs_key_ptr ptrs[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500145} __attribute__ ((__packed__));
146
Chris Masonfec577f2007-02-26 10:40:21 -0500147/*
148 * items in the extent btree are used to record the objectid of the
149 * owner of the block and the number of references
150 */
Chris Mason234b63a2007-03-13 10:46:10 -0400151struct btrfs_extent_item {
Chris Masoncf27e1e2007-03-13 09:49:06 -0400152 __le32 refs;
153 __le64 owner;
Chris Masond97e63b2007-02-20 16:40:44 -0500154} __attribute__ ((__packed__));
155
Chris Masonfec577f2007-02-26 10:40:21 -0500156/*
Chris Mason234b63a2007-03-13 10:46:10 -0400157 * btrfs_paths remember the path taken from the root down to the leaf.
158 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
Chris Masonfec577f2007-02-26 10:40:21 -0500159 * to any other levels that are present.
160 *
161 * The slots array records the index of the item or block pointer
162 * used while walking the tree.
163 */
Chris Mason234b63a2007-03-13 10:46:10 -0400164struct btrfs_path {
165 struct btrfs_buffer *nodes[BTRFS_MAX_LEVEL];
166 int slots[BTRFS_MAX_LEVEL];
Chris Masoneb60cea2007-02-02 09:18:22 -0500167};
Chris Mason5de08d72007-02-24 06:24:44 -0500168
Chris Mason234b63a2007-03-13 10:46:10 -0400169static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400170{
171 return le64_to_cpu(ei->owner);
172}
173
Chris Mason234b63a2007-03-13 10:46:10 -0400174static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400175{
176 ei->owner = cpu_to_le64(val);
177}
178
Chris Mason234b63a2007-03-13 10:46:10 -0400179static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400180{
181 return le32_to_cpu(ei->refs);
182}
183
Chris Mason234b63a2007-03-13 10:46:10 -0400184static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400185{
186 ei->refs = cpu_to_le32(val);
187}
188
Chris Mason234b63a2007-03-13 10:46:10 -0400189static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400190{
Chris Mason123abc82007-03-14 14:14:43 -0400191 return le64_to_cpu(n->ptrs[nr].blockptr);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400192}
193
Chris Mason234b63a2007-03-13 10:46:10 -0400194static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
195 u64 val)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400196{
Chris Mason123abc82007-03-14 14:14:43 -0400197 n->ptrs[nr].blockptr = cpu_to_le64(val);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400198}
199
Chris Mason123abc82007-03-14 14:14:43 -0400200static inline u32 btrfs_item_offset(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400201{
Chris Mason123abc82007-03-14 14:14:43 -0400202 return le32_to_cpu(item->offset);
Chris Mason0783fcf2007-03-12 20:12:07 -0400203}
204
Chris Mason123abc82007-03-14 14:14:43 -0400205static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
Chris Mason0783fcf2007-03-12 20:12:07 -0400206{
Chris Mason123abc82007-03-14 14:14:43 -0400207 item->offset = cpu_to_le32(val);
Chris Mason0783fcf2007-03-12 20:12:07 -0400208}
209
Chris Mason123abc82007-03-14 14:14:43 -0400210static inline u32 btrfs_item_end(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400211{
Chris Mason123abc82007-03-14 14:14:43 -0400212 return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
Chris Mason0783fcf2007-03-12 20:12:07 -0400213}
214
215static inline u16 btrfs_item_size(struct btrfs_item *item)
216{
217 return le16_to_cpu(item->size);
218}
219
220static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
221{
222 item->size = cpu_to_le16(val);
223}
224
Chris Masone2fa7222007-03-12 16:22:34 -0400225static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
226 struct btrfs_disk_key *disk)
227{
228 cpu->offset = le64_to_cpu(disk->offset);
229 cpu->flags = le32_to_cpu(disk->flags);
230 cpu->objectid = le64_to_cpu(disk->objectid);
231}
232
233static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
234 struct btrfs_key *cpu)
235{
236 disk->offset = cpu_to_le64(cpu->offset);
237 disk->flags = cpu_to_le32(cpu->flags);
238 disk->objectid = cpu_to_le64(cpu->objectid);
239}
240
241static inline u64 btrfs_key_objectid(struct btrfs_disk_key *disk)
242{
243 return le64_to_cpu(disk->objectid);
244}
245
246static inline void btrfs_set_key_objectid(struct btrfs_disk_key *disk,
247 u64 val)
248{
249 disk->objectid = cpu_to_le64(val);
250}
251
252static inline u64 btrfs_key_offset(struct btrfs_disk_key *disk)
253{
254 return le64_to_cpu(disk->offset);
255}
256
257static inline void btrfs_set_key_offset(struct btrfs_disk_key *disk,
258 u64 val)
259{
260 disk->offset = cpu_to_le64(val);
261}
262
263static inline u32 btrfs_key_flags(struct btrfs_disk_key *disk)
264{
265 return le32_to_cpu(disk->flags);
266}
267
268static inline void btrfs_set_key_flags(struct btrfs_disk_key *disk,
269 u32 val)
270{
271 disk->flags = cpu_to_le32(val);
272}
273
Chris Masonbb492bb2007-03-12 12:29:44 -0400274static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400275{
Chris Masonbb492bb2007-03-12 12:29:44 -0400276 return le64_to_cpu(h->blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400277}
278
Chris Masonbb492bb2007-03-12 12:29:44 -0400279static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
Chris Mason7518a232007-03-12 12:01:18 -0400280{
Chris Masonbb492bb2007-03-12 12:29:44 -0400281 h->blocknr = cpu_to_le64(blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400282}
283
Chris Masonbb492bb2007-03-12 12:29:44 -0400284static inline u64 btrfs_header_parentid(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400285{
Chris Masonbb492bb2007-03-12 12:29:44 -0400286 return le64_to_cpu(h->parentid);
Chris Mason7518a232007-03-12 12:01:18 -0400287}
288
Chris Masonbb492bb2007-03-12 12:29:44 -0400289static inline void btrfs_set_header_parentid(struct btrfs_header *h,
290 u64 parentid)
Chris Mason7518a232007-03-12 12:01:18 -0400291{
Chris Masonbb492bb2007-03-12 12:29:44 -0400292 h->parentid = cpu_to_le64(parentid);
Chris Mason7518a232007-03-12 12:01:18 -0400293}
294
Chris Masonbb492bb2007-03-12 12:29:44 -0400295static inline u16 btrfs_header_nritems(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400296{
Chris Masonbb492bb2007-03-12 12:29:44 -0400297 return le16_to_cpu(h->nritems);
Chris Mason7518a232007-03-12 12:01:18 -0400298}
299
Chris Masonbb492bb2007-03-12 12:29:44 -0400300static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400301{
Chris Masonbb492bb2007-03-12 12:29:44 -0400302 h->nritems = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400303}
304
Chris Masonbb492bb2007-03-12 12:29:44 -0400305static inline u16 btrfs_header_flags(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400306{
Chris Masonbb492bb2007-03-12 12:29:44 -0400307 return le16_to_cpu(h->flags);
Chris Mason7518a232007-03-12 12:01:18 -0400308}
309
Chris Masonbb492bb2007-03-12 12:29:44 -0400310static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400311{
Chris Masonbb492bb2007-03-12 12:29:44 -0400312 h->flags = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400313}
314
Chris Masonbb492bb2007-03-12 12:29:44 -0400315static inline int btrfs_header_level(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400316{
Chris Mason234b63a2007-03-13 10:46:10 -0400317 return btrfs_header_flags(h) & (BTRFS_MAX_LEVEL - 1);
Chris Mason7518a232007-03-12 12:01:18 -0400318}
319
Chris Masonbb492bb2007-03-12 12:29:44 -0400320static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
Chris Mason7518a232007-03-12 12:01:18 -0400321{
Chris Masonbb492bb2007-03-12 12:29:44 -0400322 u16 flags;
Chris Mason234b63a2007-03-13 10:46:10 -0400323 BUG_ON(level > BTRFS_MAX_LEVEL);
324 flags = btrfs_header_flags(h) & ~(BTRFS_MAX_LEVEL - 1);
Chris Mason7518a232007-03-12 12:01:18 -0400325 btrfs_set_header_flags(h, flags | level);
326}
327
Chris Mason234b63a2007-03-13 10:46:10 -0400328static inline int btrfs_is_leaf(struct btrfs_node *n)
Chris Mason7518a232007-03-12 12:01:18 -0400329{
330 return (btrfs_header_level(&n->header) == 0);
331}
332
Chris Mason3768f362007-03-13 16:47:54 -0400333static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
334{
335 return le64_to_cpu(item->blocknr);
336}
337
338static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
339{
340 item->blocknr = cpu_to_le64(val);
341}
342
343static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
344{
345 return le32_to_cpu(item->refs);
346}
347
348static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
349{
350 item->refs = cpu_to_le32(val);
351}
352
353static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
354{
355 return le64_to_cpu(s->blocknr);
356}
357
358static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
359{
360 s->blocknr = cpu_to_le64(val);
361}
362
363static inline u64 btrfs_super_root(struct btrfs_super_block *s)
364{
365 return le64_to_cpu(s->root);
366}
367
368static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
369{
370 s->root = cpu_to_le64(val);
371}
372
373static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
374{
375 return le64_to_cpu(s->total_blocks);
376}
377
378static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
379 u64 val)
380{
381 s->total_blocks = cpu_to_le64(val);
382}
383
384static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
385{
386 return le64_to_cpu(s->blocks_used);
387}
388
389static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
390 u64 val)
391{
392 s->blocks_used = cpu_to_le64(val);
393}
394
Chris Mason123abc82007-03-14 14:14:43 -0400395static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
Chris Mason3768f362007-03-13 16:47:54 -0400396{
Chris Mason123abc82007-03-14 14:14:43 -0400397 return le32_to_cpu(s->blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400398}
399
400static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
Chris Mason123abc82007-03-14 14:14:43 -0400401 u32 val)
Chris Mason3768f362007-03-13 16:47:54 -0400402{
Chris Mason123abc82007-03-14 14:14:43 -0400403 s->blocksize = cpu_to_le32(val);
404}
405
406static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
407{
408 return (u8 *)l->items;
Chris Mason3768f362007-03-13 16:47:54 -0400409}
410
Chris Mason4beb1b82007-03-14 10:31:29 -0400411/* helper function to cast into the data area of the leaf. */
412#define btrfs_item_ptr(leaf, slot, type) \
Chris Mason123abc82007-03-14 14:14:43 -0400413 ((type *)(btrfs_leaf_data(leaf) + \
414 btrfs_item_offset((leaf)->items + (slot))))
Chris Mason4beb1b82007-03-14 10:31:29 -0400415
Chris Mason234b63a2007-03-13 10:46:10 -0400416struct btrfs_buffer *btrfs_alloc_free_block(struct btrfs_root *root);
417int btrfs_inc_ref(struct btrfs_root *root, struct btrfs_buffer *buf);
418int btrfs_free_extent(struct btrfs_root *root, u64 blocknr, u64 num_blocks);
419int btrfs_search_slot(struct btrfs_root *root, struct btrfs_key *key,
420 struct btrfs_path *p, int ins_len, int cow);
421void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
422void btrfs_init_path(struct btrfs_path *p);
423int btrfs_del_item(struct btrfs_root *root, struct btrfs_path *path);
424int btrfs_insert_item(struct btrfs_root *root, struct btrfs_key *key,
Chris Masone2fa7222007-03-12 16:22:34 -0400425 void *data, int data_size);
Chris Mason234b63a2007-03-13 10:46:10 -0400426int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Mason123abc82007-03-14 14:14:43 -0400427int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
Chris Mason234b63a2007-03-13 10:46:10 -0400428int btrfs_drop_snapshot(struct btrfs_root *root, struct btrfs_buffer *snap);
429int btrfs_finish_extent_commit(struct btrfs_root *root);
Chris Mason3768f362007-03-13 16:47:54 -0400430int btrfs_del_root(struct btrfs_root *root, struct btrfs_key *key);
431int btrfs_insert_root(struct btrfs_root *root, struct btrfs_key *key,
432 struct btrfs_root_item *item);
433int btrfs_update_root(struct btrfs_root *root, struct btrfs_key *key,
434 struct btrfs_root_item *item);
435int btrfs_find_last_root(struct btrfs_root *root, u64 objectid,
436 struct btrfs_root_item *item, struct btrfs_key *key);
Chris Masoneb60cea2007-02-02 09:18:22 -0500437#endif