blob: e93ba1a5c812ced98c089a21b0347f9e4c2f6a3e [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 Masone20d96d2007-03-22 12:13:20 -04004#include <linux/fs.h>
Chris Masond6025572007-03-30 14:27:56 -04005#include <linux/buffer_head.h>
Chris Mason08607c12007-06-08 15:33:54 -04006#include <linux/workqueue.h>
Chris Mason8ef97622007-03-26 10:15:30 -04007#include "bit-radix.h"
Chris Masone20d96d2007-03-22 12:13:20 -04008
Chris Masone089f052007-03-16 16:20:31 -04009struct btrfs_trans_handle;
Chris Mason79154b12007-03-22 15:59:16 -040010struct btrfs_transaction;
Chris Mason35b7e472007-05-02 15:53:43 -040011extern struct kmem_cache *btrfs_trans_handle_cachep;
12extern struct kmem_cache *btrfs_transaction_cachep;
13extern struct kmem_cache *btrfs_bit_radix_cachep;
Chris Mason2c90e5d2007-04-02 10:50:19 -040014extern struct kmem_cache *btrfs_path_cachep;
Chris Masone089f052007-03-16 16:20:31 -040015
Chris Mason3768f362007-03-13 16:47:54 -040016#define BTRFS_MAGIC "_BtRfS_M"
Chris Masoneb60cea2007-02-02 09:18:22 -050017
Chris Mason6407bf62007-03-27 06:33:00 -040018#define BTRFS_ROOT_TREE_OBJECTID 1ULL
Chris Mason0bd93ba2007-04-11 13:57:44 -040019#define BTRFS_DEV_TREE_OBJECTID 2ULL
20#define BTRFS_EXTENT_TREE_OBJECTID 3ULL
21#define BTRFS_FS_TREE_OBJECTID 4ULL
22#define BTRFS_ROOT_TREE_DIR_OBJECTID 5ULL
23#define BTRFS_FIRST_FREE_OBJECTID 6ULL
Chris Mason3768f362007-03-13 16:47:54 -040024
Chris Masonfec577f2007-02-26 10:40:21 -050025/*
Chris Masone20d96d2007-03-22 12:13:20 -040026 * we can actually store much bigger names, but lets not confuse the rest
27 * of linux
28 */
29#define BTRFS_NAME_LEN 255
30
Chris Masonf254e522007-03-29 15:15:27 -040031/* 32 bytes in various csum fields */
32#define BTRFS_CSUM_SIZE 32
Chris Mason509659c2007-05-10 12:36:17 -040033/* four bytes for CRC32 */
34#define BTRFS_CRC32_SIZE 4
Chris Masone06afa82007-05-23 15:44:28 -040035#define BTRFS_EMPTY_DIR_SIZE 6
Chris Masonf254e522007-03-29 15:15:27 -040036
Chris Masonfabb5682007-06-07 22:13:21 -040037#define BTRFS_FT_UNKNOWN 0
38#define BTRFS_FT_REG_FILE 1
39#define BTRFS_FT_DIR 2
40#define BTRFS_FT_CHRDEV 3
41#define BTRFS_FT_BLKDEV 4
42#define BTRFS_FT_FIFO 5
43#define BTRFS_FT_SOCK 6
44#define BTRFS_FT_SYMLINK 7
45#define BTRFS_FT_MAX 8
46
Chris Masone20d96d2007-03-22 12:13:20 -040047/*
Chris Masonfec577f2007-02-26 10:40:21 -050048 * the key defines the order in the tree, and so it also defines (optimal)
49 * block layout. objectid corresonds to the inode number. The flags
50 * tells us things about the object, and is a kind of stream selector.
51 * so for a given inode, keys with flags of 1 might refer to the inode
52 * data, flags of 2 may point to file data in the btree and flags == 3
53 * may point to extents.
54 *
55 * offset is the starting byte offset for this key in the stream.
Chris Masone2fa7222007-03-12 16:22:34 -040056 *
57 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
58 * in cpu native order. Otherwise they are identical and their sizes
59 * should be the same (ie both packed)
Chris Masonfec577f2007-02-26 10:40:21 -050060 */
Chris Masone2fa7222007-03-12 16:22:34 -040061struct btrfs_disk_key {
62 __le64 objectid;
Chris Masonf254e522007-03-29 15:15:27 -040063 __le32 flags;
Chris Mason70b2bef2007-04-17 15:39:32 -040064 __le64 offset;
Chris Masone2fa7222007-03-12 16:22:34 -040065} __attribute__ ((__packed__));
66
67struct btrfs_key {
Chris Masoneb60cea2007-02-02 09:18:22 -050068 u64 objectid;
Chris Masonf254e522007-03-29 15:15:27 -040069 u32 flags;
Chris Mason70b2bef2007-04-17 15:39:32 -040070 u64 offset;
Chris Masoneb60cea2007-02-02 09:18:22 -050071} __attribute__ ((__packed__));
72
Chris Masonfec577f2007-02-26 10:40:21 -050073/*
74 * every tree block (leaf or node) starts with this header.
75 */
Chris Masonbb492bb2007-03-12 12:29:44 -040076struct btrfs_header {
Chris Masonf254e522007-03-29 15:15:27 -040077 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason3768f362007-03-13 16:47:54 -040078 u8 fsid[16]; /* FS specific uuid */
Chris Masonbb492bb2007-03-12 12:29:44 -040079 __le64 blocknr; /* which block this node is supposed to live in */
Chris Mason7f5c1512007-03-23 15:56:19 -040080 __le64 generation;
Chris Mason4d775672007-04-20 20:23:12 -040081 __le64 owner;
Chris Masonbb492bb2007-03-12 12:29:44 -040082 __le16 nritems;
83 __le16 flags;
Chris Mason9a6f11e2007-03-27 09:06:38 -040084 u8 level;
Chris Masoneb60cea2007-02-02 09:18:22 -050085} __attribute__ ((__packed__));
86
Chris Mason234b63a2007-03-13 10:46:10 -040087#define BTRFS_MAX_LEVEL 8
Chris Mason123abc82007-03-14 14:14:43 -040088#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
89 sizeof(struct btrfs_header)) / \
90 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
91#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
92#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
Chris Mason236454d2007-04-19 13:37:44 -040093#define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
94 sizeof(struct btrfs_item) - \
95 sizeof(struct btrfs_file_extent_item))
Chris Masoneb60cea2007-02-02 09:18:22 -050096
Chris Masone20d96d2007-03-22 12:13:20 -040097struct buffer_head;
Chris Masonfec577f2007-02-26 10:40:21 -050098/*
Chris Masonfec577f2007-02-26 10:40:21 -050099 * the super block basically lists the main trees of the FS
100 * it currently lacks any block count etc etc
101 */
Chris Mason234b63a2007-03-13 10:46:10 -0400102struct btrfs_super_block {
Chris Masonf254e522007-03-29 15:15:27 -0400103 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason87cbda52007-03-28 19:44:27 -0400104 /* the first 3 fields must match struct btrfs_header */
Chris Mason3768f362007-03-13 16:47:54 -0400105 u8 fsid[16]; /* FS specific uuid */
106 __le64 blocknr; /* this block number */
Chris Mason3768f362007-03-13 16:47:54 -0400107 __le64 magic;
Chris Mason123abc82007-03-14 14:14:43 -0400108 __le32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400109 __le64 generation;
110 __le64 root;
111 __le64 total_blocks;
112 __le64 blocks_used;
Chris Mason2e635a22007-03-21 11:12:56 -0400113 __le64 root_dir_objectid;
Chris Masonb4100d62007-04-12 12:14:00 -0400114 __le64 last_device_id;
Chris Mason0bd93ba2007-04-11 13:57:44 -0400115 /* fields below here vary with the underlying disk */
116 __le64 device_block_start;
117 __le64 device_num_blocks;
118 __le64 device_root;
Chris Masonb4100d62007-04-12 12:14:00 -0400119 __le64 device_id;
Chris Masoncfaa7292007-02-21 17:04:57 -0500120} __attribute__ ((__packed__));
121
Chris Masonfec577f2007-02-26 10:40:21 -0500122/*
Chris Mason62e27492007-03-15 12:56:47 -0400123 * A leaf is full of items. offset and size tell us where to find
Chris Masonfec577f2007-02-26 10:40:21 -0500124 * the item in the leaf (relative to the start of the data area)
125 */
Chris Mason0783fcf2007-03-12 20:12:07 -0400126struct btrfs_item {
Chris Masone2fa7222007-03-12 16:22:34 -0400127 struct btrfs_disk_key key;
Chris Mason123abc82007-03-14 14:14:43 -0400128 __le32 offset;
Chris Mason0783fcf2007-03-12 20:12:07 -0400129 __le16 size;
Chris Masoneb60cea2007-02-02 09:18:22 -0500130} __attribute__ ((__packed__));
131
Chris Masonfec577f2007-02-26 10:40:21 -0500132/*
133 * leaves have an item area and a data area:
134 * [item0, item1....itemN] [free space] [dataN...data1, data0]
135 *
136 * The data is separate from the items to get the keys closer together
137 * during searches.
138 */
Chris Mason234b63a2007-03-13 10:46:10 -0400139struct btrfs_leaf {
Chris Masonbb492bb2007-03-12 12:29:44 -0400140 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400141 struct btrfs_item items[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500142} __attribute__ ((__packed__));
143
Chris Masonfec577f2007-02-26 10:40:21 -0500144/*
145 * all non-leaf blocks are nodes, they hold only keys and pointers to
146 * other blocks
147 */
Chris Mason123abc82007-03-14 14:14:43 -0400148struct btrfs_key_ptr {
149 struct btrfs_disk_key key;
150 __le64 blockptr;
151} __attribute__ ((__packed__));
152
Chris Mason234b63a2007-03-13 10:46:10 -0400153struct btrfs_node {
Chris Masonbb492bb2007-03-12 12:29:44 -0400154 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400155 struct btrfs_key_ptr ptrs[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500156} __attribute__ ((__packed__));
157
Chris Masonfec577f2007-02-26 10:40:21 -0500158/*
Chris Mason234b63a2007-03-13 10:46:10 -0400159 * btrfs_paths remember the path taken from the root down to the leaf.
160 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
Chris Masonfec577f2007-02-26 10:40:21 -0500161 * to any other levels that are present.
162 *
163 * The slots array records the index of the item or block pointer
164 * used while walking the tree.
165 */
Chris Mason234b63a2007-03-13 10:46:10 -0400166struct btrfs_path {
Chris Masone20d96d2007-03-22 12:13:20 -0400167 struct buffer_head *nodes[BTRFS_MAX_LEVEL];
Chris Mason234b63a2007-03-13 10:46:10 -0400168 int slots[BTRFS_MAX_LEVEL];
Chris Masoneb60cea2007-02-02 09:18:22 -0500169};
Chris Mason5de08d72007-02-24 06:24:44 -0500170
Chris Mason62e27492007-03-15 12:56:47 -0400171/*
172 * items in the extent btree are used to record the objectid of the
173 * owner of the block and the number of references
174 */
175struct btrfs_extent_item {
176 __le32 refs;
Chris Mason4d775672007-04-20 20:23:12 -0400177 __le64 owner;
Chris Mason62e27492007-03-15 12:56:47 -0400178} __attribute__ ((__packed__));
179
Chris Mason1e1d2702007-03-15 19:03:33 -0400180struct btrfs_inode_timespec {
Chris Masonf254e522007-03-29 15:15:27 -0400181 __le64 sec;
Chris Mason1e1d2702007-03-15 19:03:33 -0400182 __le32 nsec;
183} __attribute__ ((__packed__));
184
185/*
186 * there is no padding here on purpose. If you want to extent the inode,
187 * make a new item type
188 */
189struct btrfs_inode_item {
190 __le64 generation;
191 __le64 size;
192 __le64 nblocks;
Chris Mason31f3c992007-04-30 15:25:45 -0400193 __le64 block_group;
Chris Mason1e1d2702007-03-15 19:03:33 -0400194 __le32 nlink;
195 __le32 uid;
196 __le32 gid;
197 __le32 mode;
198 __le32 rdev;
199 __le16 flags;
200 __le16 compat_flags;
201 struct btrfs_inode_timespec atime;
202 struct btrfs_inode_timespec ctime;
203 struct btrfs_inode_timespec mtime;
204 struct btrfs_inode_timespec otime;
205} __attribute__ ((__packed__));
206
Chris Mason62e27492007-03-15 12:56:47 -0400207struct btrfs_dir_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400208 struct btrfs_disk_key location;
Chris Mason62e27492007-03-15 12:56:47 -0400209 __le16 flags;
Chris Masona8a2ee02007-03-16 08:46:49 -0400210 __le16 name_len;
Chris Mason62e27492007-03-15 12:56:47 -0400211 u8 type;
212} __attribute__ ((__packed__));
213
214struct btrfs_root_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400215 struct btrfs_inode_item inode;
216 __le64 root_dirid;
Chris Mason62e27492007-03-15 12:56:47 -0400217 __le64 blocknr;
218 __le32 flags;
219 __le64 block_limit;
220 __le64 blocks_used;
221 __le32 refs;
Chris Mason9f5fae22007-03-20 14:38:32 -0400222} __attribute__ ((__packed__));
223
Chris Mason236454d2007-04-19 13:37:44 -0400224#define BTRFS_FILE_EXTENT_REG 0
225#define BTRFS_FILE_EXTENT_INLINE 1
226
Chris Mason9f5fae22007-03-20 14:38:32 -0400227struct btrfs_file_extent_item {
Chris Mason71951f32007-03-27 09:16:29 -0400228 __le64 generation;
Chris Mason236454d2007-04-19 13:37:44 -0400229 u8 type;
Chris Mason9f5fae22007-03-20 14:38:32 -0400230 /*
231 * disk space consumed by the extent, checksum blocks are included
232 * in these numbers
233 */
234 __le64 disk_blocknr;
235 __le64 disk_num_blocks;
236 /*
Chris Masondee26a92007-03-26 16:00:06 -0400237 * the logical offset in file blocks (no csums)
Chris Mason9f5fae22007-03-20 14:38:32 -0400238 * this extent record is for. This allows a file extent to point
239 * into the middle of an existing extent on disk, sharing it
240 * between two snapshots (useful if some bytes in the middle of the
241 * extent have changed
242 */
243 __le64 offset;
244 /*
245 * the logical number of file blocks (no csums included)
246 */
247 __le64 num_blocks;
248} __attribute__ ((__packed__));
249
Chris Masonf254e522007-03-29 15:15:27 -0400250struct btrfs_csum_item {
Chris Mason509659c2007-05-10 12:36:17 -0400251 u8 csum;
Chris Masonf254e522007-03-29 15:15:27 -0400252} __attribute__ ((__packed__));
253
Chris Mason0bd93ba2007-04-11 13:57:44 -0400254struct btrfs_device_item {
255 __le16 pathlen;
Chris Masonb4100d62007-04-12 12:14:00 -0400256 __le64 device_id;
Chris Mason0bd93ba2007-04-11 13:57:44 -0400257} __attribute__ ((__packed__));
258
Chris Mason9078a3e2007-04-26 16:46:15 -0400259/* tag for the radix tree of block groups in ram */
260#define BTRFS_BLOCK_GROUP_DIRTY 0
Chris Mason31f3c992007-04-30 15:25:45 -0400261#define BTRFS_BLOCK_GROUP_AVAIL 1
Chris Mason9078a3e2007-04-26 16:46:15 -0400262#define BTRFS_BLOCK_GROUP_SIZE (256 * 1024 * 1024)
Chris Mason1e2677e2007-05-29 16:52:18 -0400263
264
265#define BTRFS_BLOCK_GROUP_DATA 1
Chris Mason9078a3e2007-04-26 16:46:15 -0400266struct btrfs_block_group_item {
267 __le64 used;
Chris Mason1e2677e2007-05-29 16:52:18 -0400268 u8 flags;
Chris Mason9078a3e2007-04-26 16:46:15 -0400269} __attribute__ ((__packed__));
270
271struct btrfs_block_group_cache {
272 struct btrfs_key key;
273 struct btrfs_block_group_item item;
Chris Mason3e1ad542007-05-07 20:03:49 -0400274 struct radix_tree_root *radix;
Chris Masoncd1bc462007-04-27 10:08:34 -0400275 u64 first_free;
276 u64 last_alloc;
Chris Masonbe744172007-05-06 10:15:01 -0400277 u64 pinned;
Chris Masone37c9e62007-05-09 20:13:14 -0400278 u64 last_prealloc;
Chris Masonbe744172007-05-06 10:15:01 -0400279 int data;
Chris Masone37c9e62007-05-09 20:13:14 -0400280 int cached;
Chris Mason9078a3e2007-04-26 16:46:15 -0400281};
282
Chris Mason87cbda52007-03-28 19:44:27 -0400283struct crypto_hash;
Chris Mason08607c12007-06-08 15:33:54 -0400284
Chris Mason9f5fae22007-03-20 14:38:32 -0400285struct btrfs_fs_info {
Chris Masonfacda1e2007-06-08 18:11:48 -0400286 spinlock_t hash_lock;
Chris Mason9f5fae22007-03-20 14:38:32 -0400287 struct btrfs_root *extent_root;
288 struct btrfs_root *tree_root;
Chris Mason0bd93ba2007-04-11 13:57:44 -0400289 struct btrfs_root *dev_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400290 struct radix_tree_root fs_roots_radix;
Chris Mason8ef97622007-03-26 10:15:30 -0400291 struct radix_tree_root pending_del_radix;
Chris Mason9f5fae22007-03-20 14:38:32 -0400292 struct radix_tree_root pinned_radix;
Chris Mason7eccb902007-04-11 15:53:25 -0400293 struct radix_tree_root dev_radix;
Chris Mason9078a3e2007-04-26 16:46:15 -0400294 struct radix_tree_root block_group_radix;
Chris Masonbe744172007-05-06 10:15:01 -0400295 struct radix_tree_root block_group_data_radix;
Chris Masone37c9e62007-05-09 20:13:14 -0400296 struct radix_tree_root extent_map_radix;
Chris Masonf2458e12007-04-25 15:52:25 -0400297
298 u64 extent_tree_insert[BTRFS_MAX_LEVEL * 3];
299 int extent_tree_insert_nr;
300 u64 extent_tree_prealloc[BTRFS_MAX_LEVEL * 3];
301 int extent_tree_prealloc_nr;
302
Chris Mason293ffd52007-03-20 15:57:25 -0400303 u64 generation;
Chris Mason79154b12007-03-22 15:59:16 -0400304 struct btrfs_transaction *running_transaction;
Chris Mason1261ec42007-03-20 20:35:03 -0400305 struct btrfs_super_block *disk_super;
Chris Masone20d96d2007-03-22 12:13:20 -0400306 struct buffer_head *sb_buffer;
307 struct super_block *sb;
Chris Masond98237b2007-03-28 13:57:48 -0400308 struct inode *btree_inode;
Chris Mason79154b12007-03-22 15:59:16 -0400309 struct mutex trans_mutex;
Chris Masond561c022007-03-23 19:47:49 -0400310 struct mutex fs_mutex;
Chris Mason8fd17792007-04-19 21:01:03 -0400311 struct list_head trans_list;
Chris Masonfacda1e2007-06-08 18:11:48 -0400312 struct list_head dead_roots;
Chris Mason87cbda52007-03-28 19:44:27 -0400313 struct crypto_hash *hash_tfm;
Chris Mason08607c12007-06-08 15:33:54 -0400314 struct delayed_work trans_work;
Chris Masone66f7092007-04-20 13:16:02 -0400315 int do_barriers;
Chris Masonfacda1e2007-06-08 18:11:48 -0400316 int closing;
Chris Mason62e27492007-03-15 12:56:47 -0400317};
318
319/*
320 * in ram representation of the tree. extent_root is used for all allocations
Chris Masonf2458e12007-04-25 15:52:25 -0400321 * and for the extent tree extent_root root.
Chris Mason62e27492007-03-15 12:56:47 -0400322 */
323struct btrfs_root {
Chris Masone20d96d2007-03-22 12:13:20 -0400324 struct buffer_head *node;
325 struct buffer_head *commit_root;
Chris Mason62e27492007-03-15 12:56:47 -0400326 struct btrfs_root_item root_item;
327 struct btrfs_key root_key;
Chris Mason9f5fae22007-03-20 14:38:32 -0400328 struct btrfs_fs_info *fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400329 struct inode *inode;
330 u64 objectid;
331 u64 last_trans;
Chris Mason62e27492007-03-15 12:56:47 -0400332 u32 blocksize;
Chris Mason9f5fae22007-03-20 14:38:32 -0400333 int ref_cows;
334 u32 type;
Chris Mason1b05da22007-04-10 12:13:09 -0400335 u64 highest_inode;
336 u64 last_inode_alloc;
Chris Mason62e27492007-03-15 12:56:47 -0400337};
338
Chris Mason62e27492007-03-15 12:56:47 -0400339/* the lower bits in the key flags defines the item type */
340#define BTRFS_KEY_TYPE_MAX 256
Chris Masona429e512007-04-18 16:15:28 -0400341#define BTRFS_KEY_TYPE_SHIFT 24
342#define BTRFS_KEY_TYPE_MASK (((u32)BTRFS_KEY_TYPE_MAX - 1) << \
343 BTRFS_KEY_TYPE_SHIFT)
Chris Mason1e1d2702007-03-15 19:03:33 -0400344
345/*
346 * inode items have the data typically returned from stat and store other
347 * info about object characteristics. There is one for every file and dir in
348 * the FS
349 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400350#define BTRFS_INODE_ITEM_KEY 1
351
352/* reserve 2-15 close to the inode for later flexibility */
Chris Mason1e1d2702007-03-15 19:03:33 -0400353
354/*
355 * dir items are the name -> inode pointers in a directory. There is one
356 * for every name in a directory.
357 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400358#define BTRFS_DIR_ITEM_KEY 16
359#define BTRFS_DIR_INDEX_KEY 17
Chris Mason1e1d2702007-03-15 19:03:33 -0400360/*
Chris Mason9078a3e2007-04-26 16:46:15 -0400361 * extent data is for file data
Chris Mason1e1d2702007-03-15 19:03:33 -0400362 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400363#define BTRFS_EXTENT_DATA_KEY 18
Chris Mason1e1d2702007-03-15 19:03:33 -0400364/*
Chris Masonf254e522007-03-29 15:15:27 -0400365 * csum items have the checksums for data in the extents
366 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400367#define BTRFS_CSUM_ITEM_KEY 19
368
369/* reserve 20-31 for other file stuff */
Chris Masonf254e522007-03-29 15:15:27 -0400370
371/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400372 * root items point to tree roots. There are typically in the root
373 * tree used by the super block to find all the other trees
374 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400375#define BTRFS_ROOT_ITEM_KEY 32
Chris Mason1e1d2702007-03-15 19:03:33 -0400376/*
377 * extent items are in the extent map tree. These record which blocks
378 * are used, and how many references there are to each block
379 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400380#define BTRFS_EXTENT_ITEM_KEY 33
381
382/*
383 * block groups give us hints into the extent allocation trees. Which
384 * blocks are free etc etc
385 */
386#define BTRFS_BLOCK_GROUP_ITEM_KEY 34
Chris Mason9f5fae22007-03-20 14:38:32 -0400387
388/*
Chris Mason0bd93ba2007-04-11 13:57:44 -0400389 * dev items list the devices that make up the FS
390 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400391#define BTRFS_DEV_ITEM_KEY 35
Chris Mason0bd93ba2007-04-11 13:57:44 -0400392
393/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400394 * string items are for debugging. They just store a short string of
395 * data in the FS
396 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400397#define BTRFS_STRING_ITEM_KEY 253
398
399
400static inline u64 btrfs_block_group_used(struct btrfs_block_group_item *bi)
401{
402 return le64_to_cpu(bi->used);
403}
404
405static inline void btrfs_set_block_group_used(struct
406 btrfs_block_group_item *bi,
407 u64 val)
408{
409 bi->used = cpu_to_le64(val);
410}
Chris Mason1e1d2702007-03-15 19:03:33 -0400411
412static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i)
413{
414 return le64_to_cpu(i->generation);
415}
416
417static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i,
418 u64 val)
419{
420 i->generation = cpu_to_le64(val);
421}
422
423static inline u64 btrfs_inode_size(struct btrfs_inode_item *i)
424{
425 return le64_to_cpu(i->size);
426}
427
428static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val)
429{
430 i->size = cpu_to_le64(val);
431}
432
433static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i)
434{
435 return le64_to_cpu(i->nblocks);
436}
437
438static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val)
439{
440 i->nblocks = cpu_to_le64(val);
441}
442
Chris Mason31f3c992007-04-30 15:25:45 -0400443static inline u64 btrfs_inode_block_group(struct btrfs_inode_item *i)
444{
445 return le64_to_cpu(i->block_group);
446}
447
448static inline void btrfs_set_inode_block_group(struct btrfs_inode_item *i,
449 u64 val)
450{
451 i->block_group = cpu_to_le64(val);
452}
453
Chris Mason1e1d2702007-03-15 19:03:33 -0400454static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i)
455{
456 return le32_to_cpu(i->nlink);
457}
458
459static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val)
460{
461 i->nlink = cpu_to_le32(val);
462}
463
464static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i)
465{
466 return le32_to_cpu(i->uid);
467}
468
469static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val)
470{
471 i->uid = cpu_to_le32(val);
472}
473
474static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i)
475{
476 return le32_to_cpu(i->gid);
477}
478
479static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val)
480{
481 i->gid = cpu_to_le32(val);
482}
483
484static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i)
485{
486 return le32_to_cpu(i->mode);
487}
488
489static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val)
490{
491 i->mode = cpu_to_le32(val);
492}
493
494static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i)
495{
496 return le32_to_cpu(i->rdev);
497}
498
499static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val)
500{
501 i->rdev = cpu_to_le32(val);
502}
503
504static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i)
505{
506 return le16_to_cpu(i->flags);
507}
508
509static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val)
510{
511 i->flags = cpu_to_le16(val);
512}
513
514static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i)
515{
516 return le16_to_cpu(i->compat_flags);
517}
518
519static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i,
520 u16 val)
521{
522 i->compat_flags = cpu_to_le16(val);
523}
524
Chris Masonf254e522007-03-29 15:15:27 -0400525static inline u64 btrfs_timespec_sec(struct btrfs_inode_timespec *ts)
Chris Masone20d96d2007-03-22 12:13:20 -0400526{
Chris Masonf254e522007-03-29 15:15:27 -0400527 return le64_to_cpu(ts->sec);
Chris Masone20d96d2007-03-22 12:13:20 -0400528}
529
530static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts,
Chris Masonf254e522007-03-29 15:15:27 -0400531 u64 val)
Chris Masone20d96d2007-03-22 12:13:20 -0400532{
Chris Masonf254e522007-03-29 15:15:27 -0400533 ts->sec = cpu_to_le64(val);
Chris Masone20d96d2007-03-22 12:13:20 -0400534}
535
536static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts)
537{
538 return le32_to_cpu(ts->nsec);
539}
540
541static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts,
542 u32 val)
543{
544 ts->nsec = cpu_to_le32(val);
545}
546
Chris Mason234b63a2007-03-13 10:46:10 -0400547static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400548{
549 return le32_to_cpu(ei->refs);
550}
551
Chris Mason234b63a2007-03-13 10:46:10 -0400552static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400553{
554 ei->refs = cpu_to_le32(val);
555}
556
Chris Mason4d775672007-04-20 20:23:12 -0400557static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
558{
559 return le64_to_cpu(ei->owner);
560}
561
562static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
563{
564 ei->owner = cpu_to_le64(val);
565}
566
Chris Mason234b63a2007-03-13 10:46:10 -0400567static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400568{
Chris Mason123abc82007-03-14 14:14:43 -0400569 return le64_to_cpu(n->ptrs[nr].blockptr);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400570}
571
Chris Mason4d775672007-04-20 20:23:12 -0400572
Chris Mason234b63a2007-03-13 10:46:10 -0400573static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
574 u64 val)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400575{
Chris Mason123abc82007-03-14 14:14:43 -0400576 n->ptrs[nr].blockptr = cpu_to_le64(val);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400577}
578
Chris Mason123abc82007-03-14 14:14:43 -0400579static inline u32 btrfs_item_offset(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400580{
Chris Mason123abc82007-03-14 14:14:43 -0400581 return le32_to_cpu(item->offset);
Chris Mason0783fcf2007-03-12 20:12:07 -0400582}
583
Chris Mason123abc82007-03-14 14:14:43 -0400584static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
Chris Mason0783fcf2007-03-12 20:12:07 -0400585{
Chris Mason123abc82007-03-14 14:14:43 -0400586 item->offset = cpu_to_le32(val);
Chris Mason0783fcf2007-03-12 20:12:07 -0400587}
588
Chris Mason123abc82007-03-14 14:14:43 -0400589static inline u32 btrfs_item_end(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400590{
Chris Mason123abc82007-03-14 14:14:43 -0400591 return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
Chris Mason0783fcf2007-03-12 20:12:07 -0400592}
593
594static inline u16 btrfs_item_size(struct btrfs_item *item)
595{
596 return le16_to_cpu(item->size);
597}
598
599static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
600{
601 item->size = cpu_to_le16(val);
602}
603
Chris Mason1d4f6402007-03-15 15:18:43 -0400604static inline u16 btrfs_dir_flags(struct btrfs_dir_item *d)
605{
606 return le16_to_cpu(d->flags);
607}
608
609static inline void btrfs_set_dir_flags(struct btrfs_dir_item *d, u16 val)
610{
611 d->flags = cpu_to_le16(val);
612}
613
614static inline u8 btrfs_dir_type(struct btrfs_dir_item *d)
615{
616 return d->type;
617}
618
619static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val)
620{
621 d->type = val;
622}
623
Chris Masona8a2ee02007-03-16 08:46:49 -0400624static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d)
Chris Mason1d4f6402007-03-15 15:18:43 -0400625{
Chris Masona8a2ee02007-03-16 08:46:49 -0400626 return le16_to_cpu(d->name_len);
627}
628
629static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val)
630{
631 d->name_len = cpu_to_le16(val);
Chris Mason1d4f6402007-03-15 15:18:43 -0400632}
633
Chris Masone2fa7222007-03-12 16:22:34 -0400634static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
635 struct btrfs_disk_key *disk)
636{
637 cpu->offset = le64_to_cpu(disk->offset);
638 cpu->flags = le32_to_cpu(disk->flags);
639 cpu->objectid = le64_to_cpu(disk->objectid);
640}
641
642static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
643 struct btrfs_key *cpu)
644{
645 disk->offset = cpu_to_le64(cpu->offset);
646 disk->flags = cpu_to_le32(cpu->flags);
647 disk->objectid = cpu_to_le64(cpu->objectid);
648}
649
Chris Mason62e27492007-03-15 12:56:47 -0400650static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400651{
652 return le64_to_cpu(disk->objectid);
653}
654
Chris Mason62e27492007-03-15 12:56:47 -0400655static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk,
656 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400657{
658 disk->objectid = cpu_to_le64(val);
659}
660
Chris Mason62e27492007-03-15 12:56:47 -0400661static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400662{
663 return le64_to_cpu(disk->offset);
664}
665
Chris Mason62e27492007-03-15 12:56:47 -0400666static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk,
667 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400668{
669 disk->offset = cpu_to_le64(val);
670}
671
Chris Mason62e27492007-03-15 12:56:47 -0400672static inline u32 btrfs_disk_key_flags(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400673{
674 return le32_to_cpu(disk->flags);
675}
676
Chris Mason62e27492007-03-15 12:56:47 -0400677static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key *disk,
678 u32 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400679{
680 disk->flags = cpu_to_le32(val);
681}
682
Chris Masona429e512007-04-18 16:15:28 -0400683static inline u32 btrfs_disk_key_type(struct btrfs_disk_key *key)
684{
685 return le32_to_cpu(key->flags) >> BTRFS_KEY_TYPE_SHIFT;
686}
687
688static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key,
689 u32 val)
690{
691 u32 flags = btrfs_disk_key_flags(key);
692 BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
693 val = val << BTRFS_KEY_TYPE_SHIFT;
694 flags = (flags & ~BTRFS_KEY_TYPE_MASK) | val;
695 btrfs_set_disk_key_flags(key, flags);
696}
697
698static inline u32 btrfs_key_type(struct btrfs_key *key)
699{
700 return key->flags >> BTRFS_KEY_TYPE_SHIFT;
701}
702
703static inline void btrfs_set_key_type(struct btrfs_key *key, u32 val)
704{
705 BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
706 val = val << BTRFS_KEY_TYPE_SHIFT;
707 key->flags = (key->flags & ~(BTRFS_KEY_TYPE_MASK)) | val;
708}
709
Chris Masonbb492bb2007-03-12 12:29:44 -0400710static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400711{
Chris Masonbb492bb2007-03-12 12:29:44 -0400712 return le64_to_cpu(h->blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400713}
714
Chris Masonbb492bb2007-03-12 12:29:44 -0400715static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
Chris Mason7518a232007-03-12 12:01:18 -0400716{
Chris Masonbb492bb2007-03-12 12:29:44 -0400717 h->blocknr = cpu_to_le64(blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400718}
719
Chris Mason7f5c1512007-03-23 15:56:19 -0400720static inline u64 btrfs_header_generation(struct btrfs_header *h)
721{
722 return le64_to_cpu(h->generation);
723}
724
725static inline void btrfs_set_header_generation(struct btrfs_header *h,
726 u64 val)
727{
728 h->generation = cpu_to_le64(val);
729}
730
Chris Mason4d775672007-04-20 20:23:12 -0400731static inline u64 btrfs_header_owner(struct btrfs_header *h)
732{
733 return le64_to_cpu(h->owner);
734}
735
736static inline void btrfs_set_header_owner(struct btrfs_header *h,
737 u64 val)
738{
739 h->owner = cpu_to_le64(val);
740}
741
Chris Masonbb492bb2007-03-12 12:29:44 -0400742static inline u16 btrfs_header_nritems(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400743{
Chris Masonbb492bb2007-03-12 12:29:44 -0400744 return le16_to_cpu(h->nritems);
Chris Mason7518a232007-03-12 12:01:18 -0400745}
746
Chris Masonbb492bb2007-03-12 12:29:44 -0400747static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400748{
Chris Masonbb492bb2007-03-12 12:29:44 -0400749 h->nritems = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400750}
751
Chris Masonbb492bb2007-03-12 12:29:44 -0400752static inline u16 btrfs_header_flags(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400753{
Chris Masonbb492bb2007-03-12 12:29:44 -0400754 return le16_to_cpu(h->flags);
Chris Mason7518a232007-03-12 12:01:18 -0400755}
756
Chris Masonbb492bb2007-03-12 12:29:44 -0400757static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400758{
Chris Masonbb492bb2007-03-12 12:29:44 -0400759 h->flags = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400760}
761
Chris Masonbb492bb2007-03-12 12:29:44 -0400762static inline int btrfs_header_level(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400763{
Chris Mason9a6f11e2007-03-27 09:06:38 -0400764 return h->level;
Chris Mason7518a232007-03-12 12:01:18 -0400765}
766
Chris Masonbb492bb2007-03-12 12:29:44 -0400767static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
Chris Mason7518a232007-03-12 12:01:18 -0400768{
Chris Mason234b63a2007-03-13 10:46:10 -0400769 BUG_ON(level > BTRFS_MAX_LEVEL);
Chris Mason9a6f11e2007-03-27 09:06:38 -0400770 h->level = level;
Chris Mason7518a232007-03-12 12:01:18 -0400771}
772
Chris Mason234b63a2007-03-13 10:46:10 -0400773static inline int btrfs_is_leaf(struct btrfs_node *n)
Chris Mason7518a232007-03-12 12:01:18 -0400774{
775 return (btrfs_header_level(&n->header) == 0);
776}
777
Chris Mason3768f362007-03-13 16:47:54 -0400778static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
779{
780 return le64_to_cpu(item->blocknr);
781}
782
783static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
784{
785 item->blocknr = cpu_to_le64(val);
786}
787
Chris Masond6e4a422007-04-06 15:37:36 -0400788static inline u64 btrfs_root_dirid(struct btrfs_root_item *item)
789{
790 return le64_to_cpu(item->root_dirid);
791}
792
793static inline void btrfs_set_root_dirid(struct btrfs_root_item *item, u64 val)
794{
795 item->root_dirid = cpu_to_le64(val);
796}
797
Chris Mason3768f362007-03-13 16:47:54 -0400798static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
799{
800 return le32_to_cpu(item->refs);
801}
802
803static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
804{
805 item->refs = cpu_to_le32(val);
806}
807
808static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
809{
810 return le64_to_cpu(s->blocknr);
811}
812
813static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
814{
815 s->blocknr = cpu_to_le64(val);
816}
817
Chris Mason0f7d52f2007-04-09 10:42:37 -0400818static inline u64 btrfs_super_generation(struct btrfs_super_block *s)
819{
820 return le64_to_cpu(s->generation);
821}
822
823static inline void btrfs_set_super_generation(struct btrfs_super_block *s,
824 u64 val)
825{
826 s->generation = cpu_to_le64(val);
827}
828
Chris Mason3768f362007-03-13 16:47:54 -0400829static inline u64 btrfs_super_root(struct btrfs_super_block *s)
830{
831 return le64_to_cpu(s->root);
832}
833
834static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
835{
836 s->root = cpu_to_le64(val);
837}
838
839static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
840{
841 return le64_to_cpu(s->total_blocks);
842}
843
844static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
845 u64 val)
846{
847 s->total_blocks = cpu_to_le64(val);
848}
849
850static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
851{
852 return le64_to_cpu(s->blocks_used);
853}
854
855static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
856 u64 val)
857{
858 s->blocks_used = cpu_to_le64(val);
859}
860
Chris Mason123abc82007-03-14 14:14:43 -0400861static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
Chris Mason3768f362007-03-13 16:47:54 -0400862{
Chris Mason123abc82007-03-14 14:14:43 -0400863 return le32_to_cpu(s->blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400864}
865
866static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
Chris Mason123abc82007-03-14 14:14:43 -0400867 u32 val)
Chris Mason3768f362007-03-13 16:47:54 -0400868{
Chris Mason123abc82007-03-14 14:14:43 -0400869 s->blocksize = cpu_to_le32(val);
870}
871
Chris Mason2e635a22007-03-21 11:12:56 -0400872static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s)
873{
874 return le64_to_cpu(s->root_dir_objectid);
875}
876
877static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64
878 val)
879{
880 s->root_dir_objectid = cpu_to_le64(val);
881}
882
Chris Masonb4100d62007-04-12 12:14:00 -0400883static inline u64 btrfs_super_last_device_id(struct btrfs_super_block *s)
884{
885 return le64_to_cpu(s->last_device_id);
886}
887
888static inline void btrfs_set_super_last_device_id(struct btrfs_super_block *s,
889 u64 val)
890{
891 s->last_device_id = cpu_to_le64(val);
892}
893
894static inline u64 btrfs_super_device_id(struct btrfs_super_block *s)
895{
896 return le64_to_cpu(s->device_id);
897}
898
899static inline void btrfs_set_super_device_id(struct btrfs_super_block *s,
900 u64 val)
901{
902 s->device_id = cpu_to_le64(val);
903}
904
Chris Mason0bd93ba2007-04-11 13:57:44 -0400905static inline u64 btrfs_super_device_block_start(struct btrfs_super_block *s)
906{
907 return le64_to_cpu(s->device_block_start);
908}
909
910static inline void btrfs_set_super_device_block_start(struct btrfs_super_block
911 *s, u64 val)
912{
913 s->device_block_start = cpu_to_le64(val);
914}
915
916static inline u64 btrfs_super_device_num_blocks(struct btrfs_super_block *s)
917{
918 return le64_to_cpu(s->device_num_blocks);
919}
920
921static inline void btrfs_set_super_device_num_blocks(struct btrfs_super_block
922 *s, u64 val)
923{
924 s->device_num_blocks = cpu_to_le64(val);
925}
926
927static inline u64 btrfs_super_device_root(struct btrfs_super_block *s)
928{
929 return le64_to_cpu(s->device_root);
930}
931
932static inline void btrfs_set_super_device_root(struct btrfs_super_block
933 *s, u64 val)
934{
935 s->device_root = cpu_to_le64(val);
936}
937
938
Chris Mason123abc82007-03-14 14:14:43 -0400939static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
940{
941 return (u8 *)l->items;
Chris Mason3768f362007-03-13 16:47:54 -0400942}
Chris Mason9f5fae22007-03-20 14:38:32 -0400943
Chris Mason236454d2007-04-19 13:37:44 -0400944static inline int btrfs_file_extent_type(struct btrfs_file_extent_item *e)
945{
946 return e->type;
947}
948static inline void btrfs_set_file_extent_type(struct btrfs_file_extent_item *e,
949 u8 val)
950{
951 e->type = val;
952}
953
954static inline char *btrfs_file_extent_inline_start(struct
955 btrfs_file_extent_item *e)
956{
957 return (char *)(&e->disk_blocknr);
958}
959
960static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
961{
962 return (unsigned long)(&((struct
963 btrfs_file_extent_item *)NULL)->disk_blocknr) + datasize;
964}
965
966static inline u32 btrfs_file_extent_inline_len(struct btrfs_item *e)
967{
968 struct btrfs_file_extent_item *fe = NULL;
969 return btrfs_item_size(e) - (unsigned long)(&fe->disk_blocknr);
970}
971
Chris Mason9f5fae22007-03-20 14:38:32 -0400972static inline u64 btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item
973 *e)
974{
975 return le64_to_cpu(e->disk_blocknr);
976}
977
978static inline void btrfs_set_file_extent_disk_blocknr(struct
979 btrfs_file_extent_item
980 *e, u64 val)
981{
982 e->disk_blocknr = cpu_to_le64(val);
983}
984
Chris Mason71951f32007-03-27 09:16:29 -0400985static inline u64 btrfs_file_extent_generation(struct btrfs_file_extent_item *e)
986{
987 return le64_to_cpu(e->generation);
988}
989
990static inline void btrfs_set_file_extent_generation(struct
991 btrfs_file_extent_item *e,
992 u64 val)
993{
994 e->generation = cpu_to_le64(val);
995}
996
Chris Mason9f5fae22007-03-20 14:38:32 -0400997static inline u64 btrfs_file_extent_disk_num_blocks(struct
998 btrfs_file_extent_item *e)
999{
1000 return le64_to_cpu(e->disk_num_blocks);
1001}
1002
1003static inline void btrfs_set_file_extent_disk_num_blocks(struct
1004 btrfs_file_extent_item
1005 *e, u64 val)
1006{
1007 e->disk_num_blocks = cpu_to_le64(val);
1008}
1009
1010static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e)
1011{
1012 return le64_to_cpu(e->offset);
1013}
1014
1015static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
1016 *e, u64 val)
1017{
1018 e->offset = cpu_to_le64(val);
1019}
1020
1021static inline u64 btrfs_file_extent_num_blocks(struct btrfs_file_extent_item
1022 *e)
1023{
1024 return le64_to_cpu(e->num_blocks);
1025}
1026
1027static inline void btrfs_set_file_extent_num_blocks(struct
1028 btrfs_file_extent_item *e,
1029 u64 val)
1030{
1031 e->num_blocks = cpu_to_le64(val);
1032}
1033
Chris Mason0bd93ba2007-04-11 13:57:44 -04001034static inline u16 btrfs_device_pathlen(struct btrfs_device_item *d)
1035{
1036 return le16_to_cpu(d->pathlen);
1037}
1038
1039static inline void btrfs_set_device_pathlen(struct btrfs_device_item *d,
1040 u16 val)
1041{
1042 d->pathlen = cpu_to_le16(val);
1043}
1044
Chris Masonb4100d62007-04-12 12:14:00 -04001045static inline u64 btrfs_device_id(struct btrfs_device_item *d)
1046{
1047 return le64_to_cpu(d->device_id);
1048}
1049
1050static inline void btrfs_set_device_id(struct btrfs_device_item *d,
1051 u64 val)
1052{
1053 d->device_id = cpu_to_le64(val);
1054}
1055
Chris Masone20d96d2007-03-22 12:13:20 -04001056static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
1057{
1058 return sb->s_fs_info;
1059}
1060
Chris Masond6025572007-03-30 14:27:56 -04001061static inline void btrfs_check_bounds(void *vptr, size_t len,
1062 void *vcontainer, size_t container_len)
1063{
1064 char *ptr = vptr;
1065 char *container = vcontainer;
1066 WARN_ON(ptr < container);
1067 WARN_ON(ptr + len > container + container_len);
1068}
1069
1070static inline void btrfs_memcpy(struct btrfs_root *root,
1071 void *dst_block,
1072 void *dst, const void *src, size_t nr)
1073{
1074 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
1075 memcpy(dst, src, nr);
1076}
1077
1078static inline void btrfs_memmove(struct btrfs_root *root,
1079 void *dst_block,
1080 void *dst, void *src, size_t nr)
1081{
1082 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
1083 memmove(dst, src, nr);
1084}
1085
1086static inline void btrfs_mark_buffer_dirty(struct buffer_head *bh)
1087{
1088 WARN_ON(!atomic_read(&bh->b_count));
1089 mark_buffer_dirty(bh);
1090}
1091
Chris Mason4beb1b82007-03-14 10:31:29 -04001092/* helper function to cast into the data area of the leaf. */
1093#define btrfs_item_ptr(leaf, slot, type) \
Chris Mason123abc82007-03-14 14:14:43 -04001094 ((type *)(btrfs_leaf_data(leaf) + \
1095 btrfs_item_offset((leaf)->items + (slot))))
Chris Mason4beb1b82007-03-14 10:31:29 -04001096
Chris Masonb18c6682007-04-17 13:26:50 -04001097/* extent-tree.c */
Chris Mason31f3c992007-04-30 15:25:45 -04001098struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1099 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -04001100 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -04001101 int data, int owner);
Chris Masonc5739bb2007-04-10 09:27:04 -04001102int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
1103 struct btrfs_root *root);
Chris Masone20d96d2007-03-22 12:13:20 -04001104struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Mason31f3c992007-04-30 15:25:45 -04001105 struct btrfs_root *root, u64 hint);
Chris Mason4d775672007-04-20 20:23:12 -04001106int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1107 struct btrfs_root *root, u64 owner,
Chris Masonc62a1922007-04-24 12:07:39 -04001108 u64 num_blocks, u64 search_start,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001109 u64 search_end, struct btrfs_key *ins, int data);
Chris Masone089f052007-03-16 16:20:31 -04001110int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -04001111 struct buffer_head *buf);
Chris Masone089f052007-03-16 16:20:31 -04001112int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
1113 *root, u64 blocknr, u64 num_blocks, int pin);
Chris Masondee26a92007-03-26 16:00:06 -04001114int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
1115 btrfs_root *root);
Chris Masonb18c6682007-04-17 13:26:50 -04001116int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1117 struct btrfs_root *root,
1118 u64 blocknr, u64 num_blocks);
Chris Mason9078a3e2007-04-26 16:46:15 -04001119int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1120 struct btrfs_root *root);
1121int btrfs_free_block_groups(struct btrfs_fs_info *info);
1122int btrfs_read_block_groups(struct btrfs_root *root);
Chris Masondee26a92007-03-26 16:00:06 -04001123/* ctree.c */
Chris Mason6567e832007-04-16 09:22:45 -04001124int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1125 *root, struct btrfs_path *path, u32 data_size);
Chris Masonb18c6682007-04-17 13:26:50 -04001126int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1127 struct btrfs_root *root,
1128 struct btrfs_path *path,
1129 u32 new_size);
Chris Masone089f052007-03-16 16:20:31 -04001130int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1131 *root, struct btrfs_key *key, struct btrfs_path *p, int
1132 ins_len, int cow);
Chris Mason234b63a2007-03-13 10:46:10 -04001133void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
Chris Mason2c90e5d2007-04-02 10:50:19 -04001134struct btrfs_path *btrfs_alloc_path(void);
1135void btrfs_free_path(struct btrfs_path *p);
Chris Mason234b63a2007-03-13 10:46:10 -04001136void btrfs_init_path(struct btrfs_path *p);
Chris Masone089f052007-03-16 16:20:31 -04001137int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1138 struct btrfs_path *path);
1139int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1140 *root, struct btrfs_key *key, void *data, u32 data_size);
1141int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
1142 *root, struct btrfs_path *path, struct btrfs_key
1143 *cpu_key, u32 data_size);
Chris Mason234b63a2007-03-13 10:46:10 -04001144int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Mason123abc82007-03-14 14:14:43 -04001145int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
Chris Masone089f052007-03-16 16:20:31 -04001146int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -04001147 *root, struct buffer_head *snap);
Chris Masondee26a92007-03-26 16:00:06 -04001148/* root-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001149int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1150 struct btrfs_key *key);
1151int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1152 *root, struct btrfs_key *key, struct btrfs_root_item
1153 *item);
1154int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1155 *root, struct btrfs_key *key, struct btrfs_root_item
1156 *item);
1157int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1158 btrfs_root_item *item, struct btrfs_key *key);
Chris Masondee26a92007-03-26 16:00:06 -04001159/* dir-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001160int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001161 *root, const char *name, int name_len, u64 dir,
1162 struct btrfs_key *location, u8 type);
Chris Mason7e381802007-04-19 15:36:27 -04001163struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1164 struct btrfs_root *root,
1165 struct btrfs_path *path, u64 dir,
1166 const char *name, int name_len,
1167 int mod);
1168struct btrfs_dir_item *
1169btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1170 struct btrfs_root *root,
1171 struct btrfs_path *path, u64 dir,
1172 u64 objectid, const char *name, int name_len,
1173 int mod);
1174struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1175 struct btrfs_path *path,
Chris Mason7f5c1512007-03-23 15:56:19 -04001176 const char *name, int name_len);
Chris Mason7e381802007-04-19 15:36:27 -04001177int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1178 struct btrfs_root *root,
1179 struct btrfs_path *path,
1180 struct btrfs_dir_item *di);
Chris Masondee26a92007-03-26 16:00:06 -04001181/* inode-map.c */
Chris Mason9f5fae22007-03-20 14:38:32 -04001182int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1183 struct btrfs_root *fs_root,
1184 u64 dirid, u64 *objectid);
Chris Mason5be6f7f2007-04-05 13:35:25 -04001185int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1186
Chris Masondee26a92007-03-26 16:00:06 -04001187/* inode-item.c */
Chris Mason293ffd52007-03-20 15:57:25 -04001188int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1189 *root, u64 objectid, struct btrfs_inode_item
1190 *inode_item);
1191int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001192 *root, struct btrfs_path *path,
1193 struct btrfs_key *location, int mod);
Chris Masondee26a92007-03-26 16:00:06 -04001194
1195/* file-item.c */
Chris Masonb18c6682007-04-17 13:26:50 -04001196int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Chris Masondee26a92007-03-26 16:00:06 -04001197 struct btrfs_root *root,
Chris Masonb18c6682007-04-17 13:26:50 -04001198 u64 objectid, u64 pos, u64 offset,
Chris Mason3a686372007-05-24 13:35:57 -04001199 u64 disk_num_blocks,
Chris Masonb18c6682007-04-17 13:26:50 -04001200 u64 num_blocks);
Chris Masondee26a92007-03-26 16:00:06 -04001201int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
1202 struct btrfs_root *root,
1203 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -04001204 u64 blocknr, int mod);
Chris Masonf254e522007-03-29 15:15:27 -04001205int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
1206 struct btrfs_root *root,
1207 u64 objectid, u64 offset,
1208 char *data, size_t len);
1209int btrfs_csum_verify_file_block(struct btrfs_root *root,
1210 u64 objectid, u64 offset,
1211 char *data, size_t len);
Chris Masonb18c6682007-04-17 13:26:50 -04001212struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
1213 struct btrfs_root *root,
1214 struct btrfs_path *path,
1215 u64 objectid, u64 offset,
1216 int cow);
Chris Mason1de037a2007-05-29 15:17:08 -04001217int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
1218 struct btrfs_root *root, struct btrfs_path *path,
1219 u64 isize);
Chris Masond6e4a422007-04-06 15:37:36 -04001220/* super.c */
Chris Masoneb60cea2007-02-02 09:18:22 -05001221#endif