blob: 5ab25a0cb16a27de10972e2e747b84ff63173ae8 [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 Mason0cf6c622007-06-09 09:22:25 -040019#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
20#define BTRFS_FS_TREE_OBJECTID 3ULL
21#define BTRFS_ROOT_TREE_DIR_OBJECTID 4ULL
22#define BTRFS_FIRST_FREE_OBJECTID 5ULL
Chris Mason3768f362007-03-13 16:47:54 -040023
Chris Masonfec577f2007-02-26 10:40:21 -050024/*
Chris Masone20d96d2007-03-22 12:13:20 -040025 * we can actually store much bigger names, but lets not confuse the rest
26 * of linux
27 */
28#define BTRFS_NAME_LEN 255
29
Chris Masonf254e522007-03-29 15:15:27 -040030/* 32 bytes in various csum fields */
31#define BTRFS_CSUM_SIZE 32
Chris Mason509659c2007-05-10 12:36:17 -040032/* four bytes for CRC32 */
33#define BTRFS_CRC32_SIZE 4
Chris Masone06afa82007-05-23 15:44:28 -040034#define BTRFS_EMPTY_DIR_SIZE 6
Chris Masonf254e522007-03-29 15:15:27 -040035
Chris Masonfabb5682007-06-07 22:13:21 -040036#define BTRFS_FT_UNKNOWN 0
37#define BTRFS_FT_REG_FILE 1
38#define BTRFS_FT_DIR 2
39#define BTRFS_FT_CHRDEV 3
40#define BTRFS_FT_BLKDEV 4
41#define BTRFS_FT_FIFO 5
42#define BTRFS_FT_SOCK 6
43#define BTRFS_FT_SYMLINK 7
44#define BTRFS_FT_MAX 8
45
Chris Masone20d96d2007-03-22 12:13:20 -040046/*
Chris Masonfec577f2007-02-26 10:40:21 -050047 * the key defines the order in the tree, and so it also defines (optimal)
48 * block layout. objectid corresonds to the inode number. The flags
49 * tells us things about the object, and is a kind of stream selector.
50 * so for a given inode, keys with flags of 1 might refer to the inode
51 * data, flags of 2 may point to file data in the btree and flags == 3
52 * may point to extents.
53 *
54 * offset is the starting byte offset for this key in the stream.
Chris Masone2fa7222007-03-12 16:22:34 -040055 *
56 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
57 * in cpu native order. Otherwise they are identical and their sizes
58 * should be the same (ie both packed)
Chris Masonfec577f2007-02-26 10:40:21 -050059 */
Chris Masone2fa7222007-03-12 16:22:34 -040060struct btrfs_disk_key {
61 __le64 objectid;
Chris Masonf254e522007-03-29 15:15:27 -040062 __le32 flags;
Chris Mason70b2bef2007-04-17 15:39:32 -040063 __le64 offset;
Chris Masone2fa7222007-03-12 16:22:34 -040064} __attribute__ ((__packed__));
65
66struct btrfs_key {
Chris Masoneb60cea2007-02-02 09:18:22 -050067 u64 objectid;
Chris Masonf254e522007-03-29 15:15:27 -040068 u32 flags;
Chris Mason70b2bef2007-04-17 15:39:32 -040069 u64 offset;
Chris Masoneb60cea2007-02-02 09:18:22 -050070} __attribute__ ((__packed__));
71
Chris Masonfec577f2007-02-26 10:40:21 -050072/*
73 * every tree block (leaf or node) starts with this header.
74 */
Chris Masonbb492bb2007-03-12 12:29:44 -040075struct btrfs_header {
Chris Masonf254e522007-03-29 15:15:27 -040076 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason3768f362007-03-13 16:47:54 -040077 u8 fsid[16]; /* FS specific uuid */
Chris Masonbb492bb2007-03-12 12:29:44 -040078 __le64 blocknr; /* which block this node is supposed to live in */
Chris Mason7f5c1512007-03-23 15:56:19 -040079 __le64 generation;
Chris Mason4d775672007-04-20 20:23:12 -040080 __le64 owner;
Chris Masonbb492bb2007-03-12 12:29:44 -040081 __le16 nritems;
82 __le16 flags;
Chris Mason9a6f11e2007-03-27 09:06:38 -040083 u8 level;
Chris Masoneb60cea2007-02-02 09:18:22 -050084} __attribute__ ((__packed__));
85
Chris Mason234b63a2007-03-13 10:46:10 -040086#define BTRFS_MAX_LEVEL 8
Chris Mason123abc82007-03-14 14:14:43 -040087#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
88 sizeof(struct btrfs_header)) / \
89 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
90#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
91#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
Chris Mason236454d2007-04-19 13:37:44 -040092#define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
93 sizeof(struct btrfs_item) - \
94 sizeof(struct btrfs_file_extent_item))
Chris Masoneb60cea2007-02-02 09:18:22 -050095
Chris Masone20d96d2007-03-22 12:13:20 -040096struct buffer_head;
Chris Masonfec577f2007-02-26 10:40:21 -050097/*
Chris Masonfec577f2007-02-26 10:40:21 -050098 * the super block basically lists the main trees of the FS
99 * it currently lacks any block count etc etc
100 */
Chris Mason234b63a2007-03-13 10:46:10 -0400101struct btrfs_super_block {
Chris Masonf254e522007-03-29 15:15:27 -0400102 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason87cbda52007-03-28 19:44:27 -0400103 /* the first 3 fields must match struct btrfs_header */
Chris Mason3768f362007-03-13 16:47:54 -0400104 u8 fsid[16]; /* FS specific uuid */
105 __le64 blocknr; /* this block number */
Chris Mason3768f362007-03-13 16:47:54 -0400106 __le64 magic;
Chris Mason123abc82007-03-14 14:14:43 -0400107 __le32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400108 __le64 generation;
109 __le64 root;
110 __le64 total_blocks;
111 __le64 blocks_used;
Chris Mason2e635a22007-03-21 11:12:56 -0400112 __le64 root_dir_objectid;
Chris Masoncfaa7292007-02-21 17:04:57 -0500113} __attribute__ ((__packed__));
114
Chris Masonfec577f2007-02-26 10:40:21 -0500115/*
Chris Mason62e27492007-03-15 12:56:47 -0400116 * A leaf is full of items. offset and size tell us where to find
Chris Masonfec577f2007-02-26 10:40:21 -0500117 * the item in the leaf (relative to the start of the data area)
118 */
Chris Mason0783fcf2007-03-12 20:12:07 -0400119struct btrfs_item {
Chris Masone2fa7222007-03-12 16:22:34 -0400120 struct btrfs_disk_key key;
Chris Mason123abc82007-03-14 14:14:43 -0400121 __le32 offset;
Chris Mason0783fcf2007-03-12 20:12:07 -0400122 __le16 size;
Chris Masoneb60cea2007-02-02 09:18:22 -0500123} __attribute__ ((__packed__));
124
Chris Masonfec577f2007-02-26 10:40:21 -0500125/*
126 * leaves have an item area and a data area:
127 * [item0, item1....itemN] [free space] [dataN...data1, data0]
128 *
129 * The data is separate from the items to get the keys closer together
130 * during searches.
131 */
Chris Mason234b63a2007-03-13 10:46:10 -0400132struct btrfs_leaf {
Chris Masonbb492bb2007-03-12 12:29:44 -0400133 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400134 struct btrfs_item items[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500135} __attribute__ ((__packed__));
136
Chris Masonfec577f2007-02-26 10:40:21 -0500137/*
138 * all non-leaf blocks are nodes, they hold only keys and pointers to
139 * other blocks
140 */
Chris Mason123abc82007-03-14 14:14:43 -0400141struct btrfs_key_ptr {
142 struct btrfs_disk_key key;
143 __le64 blockptr;
144} __attribute__ ((__packed__));
145
Chris Mason234b63a2007-03-13 10:46:10 -0400146struct btrfs_node {
Chris Masonbb492bb2007-03-12 12:29:44 -0400147 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400148 struct btrfs_key_ptr ptrs[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500149} __attribute__ ((__packed__));
150
Chris Masonfec577f2007-02-26 10:40:21 -0500151/*
Chris Mason234b63a2007-03-13 10:46:10 -0400152 * btrfs_paths remember the path taken from the root down to the leaf.
153 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
Chris Masonfec577f2007-02-26 10:40:21 -0500154 * to any other levels that are present.
155 *
156 * The slots array records the index of the item or block pointer
157 * used while walking the tree.
158 */
Chris Mason234b63a2007-03-13 10:46:10 -0400159struct btrfs_path {
Chris Masone20d96d2007-03-22 12:13:20 -0400160 struct buffer_head *nodes[BTRFS_MAX_LEVEL];
Chris Mason234b63a2007-03-13 10:46:10 -0400161 int slots[BTRFS_MAX_LEVEL];
Chris Masoneb60cea2007-02-02 09:18:22 -0500162};
Chris Mason5de08d72007-02-24 06:24:44 -0500163
Chris Mason62e27492007-03-15 12:56:47 -0400164/*
165 * items in the extent btree are used to record the objectid of the
166 * owner of the block and the number of references
167 */
168struct btrfs_extent_item {
169 __le32 refs;
Chris Mason4d775672007-04-20 20:23:12 -0400170 __le64 owner;
Chris Mason62e27492007-03-15 12:56:47 -0400171} __attribute__ ((__packed__));
172
Chris Mason1e1d2702007-03-15 19:03:33 -0400173struct btrfs_inode_timespec {
Chris Masonf254e522007-03-29 15:15:27 -0400174 __le64 sec;
Chris Mason1e1d2702007-03-15 19:03:33 -0400175 __le32 nsec;
176} __attribute__ ((__packed__));
177
178/*
179 * there is no padding here on purpose. If you want to extent the inode,
180 * make a new item type
181 */
182struct btrfs_inode_item {
183 __le64 generation;
184 __le64 size;
185 __le64 nblocks;
Chris Mason31f3c992007-04-30 15:25:45 -0400186 __le64 block_group;
Chris Mason1e1d2702007-03-15 19:03:33 -0400187 __le32 nlink;
188 __le32 uid;
189 __le32 gid;
190 __le32 mode;
191 __le32 rdev;
192 __le16 flags;
193 __le16 compat_flags;
194 struct btrfs_inode_timespec atime;
195 struct btrfs_inode_timespec ctime;
196 struct btrfs_inode_timespec mtime;
197 struct btrfs_inode_timespec otime;
198} __attribute__ ((__packed__));
199
Chris Mason62e27492007-03-15 12:56:47 -0400200struct btrfs_dir_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400201 struct btrfs_disk_key location;
Chris Mason62e27492007-03-15 12:56:47 -0400202 __le16 flags;
Chris Masona8a2ee02007-03-16 08:46:49 -0400203 __le16 name_len;
Chris Mason62e27492007-03-15 12:56:47 -0400204 u8 type;
205} __attribute__ ((__packed__));
206
207struct btrfs_root_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400208 struct btrfs_inode_item inode;
209 __le64 root_dirid;
Chris Mason62e27492007-03-15 12:56:47 -0400210 __le64 blocknr;
211 __le32 flags;
212 __le64 block_limit;
213 __le64 blocks_used;
214 __le32 refs;
Chris Mason9f5fae22007-03-20 14:38:32 -0400215} __attribute__ ((__packed__));
216
Chris Mason236454d2007-04-19 13:37:44 -0400217#define BTRFS_FILE_EXTENT_REG 0
218#define BTRFS_FILE_EXTENT_INLINE 1
219
Chris Mason9f5fae22007-03-20 14:38:32 -0400220struct btrfs_file_extent_item {
Chris Mason71951f32007-03-27 09:16:29 -0400221 __le64 generation;
Chris Mason236454d2007-04-19 13:37:44 -0400222 u8 type;
Chris Mason9f5fae22007-03-20 14:38:32 -0400223 /*
224 * disk space consumed by the extent, checksum blocks are included
225 * in these numbers
226 */
227 __le64 disk_blocknr;
228 __le64 disk_num_blocks;
229 /*
Chris Masondee26a92007-03-26 16:00:06 -0400230 * the logical offset in file blocks (no csums)
Chris Mason9f5fae22007-03-20 14:38:32 -0400231 * this extent record is for. This allows a file extent to point
232 * into the middle of an existing extent on disk, sharing it
233 * between two snapshots (useful if some bytes in the middle of the
234 * extent have changed
235 */
236 __le64 offset;
237 /*
238 * the logical number of file blocks (no csums included)
239 */
240 __le64 num_blocks;
241} __attribute__ ((__packed__));
242
Chris Masonf254e522007-03-29 15:15:27 -0400243struct btrfs_csum_item {
Chris Mason509659c2007-05-10 12:36:17 -0400244 u8 csum;
Chris Masonf254e522007-03-29 15:15:27 -0400245} __attribute__ ((__packed__));
246
Chris Mason9078a3e2007-04-26 16:46:15 -0400247/* tag for the radix tree of block groups in ram */
248#define BTRFS_BLOCK_GROUP_DIRTY 0
Chris Mason31f3c992007-04-30 15:25:45 -0400249#define BTRFS_BLOCK_GROUP_AVAIL 1
Chris Mason9078a3e2007-04-26 16:46:15 -0400250#define BTRFS_BLOCK_GROUP_SIZE (256 * 1024 * 1024)
Chris Mason1e2677e2007-05-29 16:52:18 -0400251
252
253#define BTRFS_BLOCK_GROUP_DATA 1
Chris Mason9078a3e2007-04-26 16:46:15 -0400254struct btrfs_block_group_item {
255 __le64 used;
Chris Mason1e2677e2007-05-29 16:52:18 -0400256 u8 flags;
Chris Mason9078a3e2007-04-26 16:46:15 -0400257} __attribute__ ((__packed__));
258
259struct btrfs_block_group_cache {
260 struct btrfs_key key;
261 struct btrfs_block_group_item item;
Chris Mason3e1ad542007-05-07 20:03:49 -0400262 struct radix_tree_root *radix;
Chris Masoncd1bc462007-04-27 10:08:34 -0400263 u64 first_free;
264 u64 last_alloc;
Chris Masonbe744172007-05-06 10:15:01 -0400265 u64 pinned;
Chris Masone37c9e62007-05-09 20:13:14 -0400266 u64 last_prealloc;
Chris Masonbe744172007-05-06 10:15:01 -0400267 int data;
Chris Masone37c9e62007-05-09 20:13:14 -0400268 int cached;
Chris Mason9078a3e2007-04-26 16:46:15 -0400269};
270
Chris Mason87cbda52007-03-28 19:44:27 -0400271struct crypto_hash;
Chris Mason08607c12007-06-08 15:33:54 -0400272
Chris Mason9f5fae22007-03-20 14:38:32 -0400273struct btrfs_fs_info {
Chris Masonfacda1e2007-06-08 18:11:48 -0400274 spinlock_t hash_lock;
Chris Mason9f5fae22007-03-20 14:38:32 -0400275 struct btrfs_root *extent_root;
276 struct btrfs_root *tree_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400277 struct radix_tree_root fs_roots_radix;
Chris Mason8ef97622007-03-26 10:15:30 -0400278 struct radix_tree_root pending_del_radix;
Chris Mason9f5fae22007-03-20 14:38:32 -0400279 struct radix_tree_root pinned_radix;
Chris Mason9078a3e2007-04-26 16:46:15 -0400280 struct radix_tree_root block_group_radix;
Chris Masonbe744172007-05-06 10:15:01 -0400281 struct radix_tree_root block_group_data_radix;
Chris Masone37c9e62007-05-09 20:13:14 -0400282 struct radix_tree_root extent_map_radix;
Chris Masonf2458e12007-04-25 15:52:25 -0400283
284 u64 extent_tree_insert[BTRFS_MAX_LEVEL * 3];
285 int extent_tree_insert_nr;
286 u64 extent_tree_prealloc[BTRFS_MAX_LEVEL * 3];
287 int extent_tree_prealloc_nr;
288
Chris Mason293ffd52007-03-20 15:57:25 -0400289 u64 generation;
Chris Mason79154b12007-03-22 15:59:16 -0400290 struct btrfs_transaction *running_transaction;
Chris Mason1261ec42007-03-20 20:35:03 -0400291 struct btrfs_super_block *disk_super;
Chris Masone20d96d2007-03-22 12:13:20 -0400292 struct buffer_head *sb_buffer;
293 struct super_block *sb;
Chris Masond98237b2007-03-28 13:57:48 -0400294 struct inode *btree_inode;
Chris Mason79154b12007-03-22 15:59:16 -0400295 struct mutex trans_mutex;
Chris Masond561c022007-03-23 19:47:49 -0400296 struct mutex fs_mutex;
Chris Mason8fd17792007-04-19 21:01:03 -0400297 struct list_head trans_list;
Chris Masonfacda1e2007-06-08 18:11:48 -0400298 struct list_head dead_roots;
Chris Mason87cbda52007-03-28 19:44:27 -0400299 struct crypto_hash *hash_tfm;
Chris Mason08607c12007-06-08 15:33:54 -0400300 struct delayed_work trans_work;
Chris Masone66f7092007-04-20 13:16:02 -0400301 int do_barriers;
Chris Masonfacda1e2007-06-08 18:11:48 -0400302 int closing;
Chris Mason62e27492007-03-15 12:56:47 -0400303};
304
305/*
306 * in ram representation of the tree. extent_root is used for all allocations
Chris Masonf2458e12007-04-25 15:52:25 -0400307 * and for the extent tree extent_root root.
Chris Mason62e27492007-03-15 12:56:47 -0400308 */
309struct btrfs_root {
Chris Masone20d96d2007-03-22 12:13:20 -0400310 struct buffer_head *node;
311 struct buffer_head *commit_root;
Chris Mason62e27492007-03-15 12:56:47 -0400312 struct btrfs_root_item root_item;
313 struct btrfs_key root_key;
Chris Mason9f5fae22007-03-20 14:38:32 -0400314 struct btrfs_fs_info *fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400315 struct inode *inode;
316 u64 objectid;
317 u64 last_trans;
Chris Mason62e27492007-03-15 12:56:47 -0400318 u32 blocksize;
Chris Mason9f5fae22007-03-20 14:38:32 -0400319 int ref_cows;
320 u32 type;
Chris Mason1b05da22007-04-10 12:13:09 -0400321 u64 highest_inode;
322 u64 last_inode_alloc;
Chris Mason62e27492007-03-15 12:56:47 -0400323};
324
Chris Mason62e27492007-03-15 12:56:47 -0400325/* the lower bits in the key flags defines the item type */
326#define BTRFS_KEY_TYPE_MAX 256
Chris Masona429e512007-04-18 16:15:28 -0400327#define BTRFS_KEY_TYPE_SHIFT 24
328#define BTRFS_KEY_TYPE_MASK (((u32)BTRFS_KEY_TYPE_MAX - 1) << \
329 BTRFS_KEY_TYPE_SHIFT)
Chris Mason1e1d2702007-03-15 19:03:33 -0400330
331/*
332 * inode items have the data typically returned from stat and store other
333 * info about object characteristics. There is one for every file and dir in
334 * the FS
335 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400336#define BTRFS_INODE_ITEM_KEY 1
337
338/* reserve 2-15 close to the inode for later flexibility */
Chris Mason1e1d2702007-03-15 19:03:33 -0400339
340/*
341 * dir items are the name -> inode pointers in a directory. There is one
342 * for every name in a directory.
343 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400344#define BTRFS_DIR_ITEM_KEY 16
345#define BTRFS_DIR_INDEX_KEY 17
Chris Mason1e1d2702007-03-15 19:03:33 -0400346/*
Chris Mason9078a3e2007-04-26 16:46:15 -0400347 * extent data is for file data
Chris Mason1e1d2702007-03-15 19:03:33 -0400348 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400349#define BTRFS_EXTENT_DATA_KEY 18
Chris Mason1e1d2702007-03-15 19:03:33 -0400350/*
Chris Masonf254e522007-03-29 15:15:27 -0400351 * csum items have the checksums for data in the extents
352 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400353#define BTRFS_CSUM_ITEM_KEY 19
354
355/* reserve 20-31 for other file stuff */
Chris Masonf254e522007-03-29 15:15:27 -0400356
357/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400358 * root items point to tree roots. There are typically in the root
359 * tree used by the super block to find all the other trees
360 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400361#define BTRFS_ROOT_ITEM_KEY 32
Chris Mason1e1d2702007-03-15 19:03:33 -0400362/*
363 * extent items are in the extent map tree. These record which blocks
364 * are used, and how many references there are to each block
365 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400366#define BTRFS_EXTENT_ITEM_KEY 33
367
368/*
369 * block groups give us hints into the extent allocation trees. Which
370 * blocks are free etc etc
371 */
372#define BTRFS_BLOCK_GROUP_ITEM_KEY 34
Chris Mason9f5fae22007-03-20 14:38:32 -0400373
374/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400375 * string items are for debugging. They just store a short string of
376 * data in the FS
377 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400378#define BTRFS_STRING_ITEM_KEY 253
379
380
381static inline u64 btrfs_block_group_used(struct btrfs_block_group_item *bi)
382{
383 return le64_to_cpu(bi->used);
384}
385
386static inline void btrfs_set_block_group_used(struct
387 btrfs_block_group_item *bi,
388 u64 val)
389{
390 bi->used = cpu_to_le64(val);
391}
Chris Mason1e1d2702007-03-15 19:03:33 -0400392
393static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i)
394{
395 return le64_to_cpu(i->generation);
396}
397
398static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i,
399 u64 val)
400{
401 i->generation = cpu_to_le64(val);
402}
403
404static inline u64 btrfs_inode_size(struct btrfs_inode_item *i)
405{
406 return le64_to_cpu(i->size);
407}
408
409static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val)
410{
411 i->size = cpu_to_le64(val);
412}
413
414static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i)
415{
416 return le64_to_cpu(i->nblocks);
417}
418
419static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val)
420{
421 i->nblocks = cpu_to_le64(val);
422}
423
Chris Mason31f3c992007-04-30 15:25:45 -0400424static inline u64 btrfs_inode_block_group(struct btrfs_inode_item *i)
425{
426 return le64_to_cpu(i->block_group);
427}
428
429static inline void btrfs_set_inode_block_group(struct btrfs_inode_item *i,
430 u64 val)
431{
432 i->block_group = cpu_to_le64(val);
433}
434
Chris Mason1e1d2702007-03-15 19:03:33 -0400435static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i)
436{
437 return le32_to_cpu(i->nlink);
438}
439
440static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val)
441{
442 i->nlink = cpu_to_le32(val);
443}
444
445static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i)
446{
447 return le32_to_cpu(i->uid);
448}
449
450static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val)
451{
452 i->uid = cpu_to_le32(val);
453}
454
455static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i)
456{
457 return le32_to_cpu(i->gid);
458}
459
460static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val)
461{
462 i->gid = cpu_to_le32(val);
463}
464
465static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i)
466{
467 return le32_to_cpu(i->mode);
468}
469
470static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val)
471{
472 i->mode = cpu_to_le32(val);
473}
474
475static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i)
476{
477 return le32_to_cpu(i->rdev);
478}
479
480static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val)
481{
482 i->rdev = cpu_to_le32(val);
483}
484
485static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i)
486{
487 return le16_to_cpu(i->flags);
488}
489
490static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val)
491{
492 i->flags = cpu_to_le16(val);
493}
494
495static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i)
496{
497 return le16_to_cpu(i->compat_flags);
498}
499
500static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i,
501 u16 val)
502{
503 i->compat_flags = cpu_to_le16(val);
504}
505
Chris Masonf254e522007-03-29 15:15:27 -0400506static inline u64 btrfs_timespec_sec(struct btrfs_inode_timespec *ts)
Chris Masone20d96d2007-03-22 12:13:20 -0400507{
Chris Masonf254e522007-03-29 15:15:27 -0400508 return le64_to_cpu(ts->sec);
Chris Masone20d96d2007-03-22 12:13:20 -0400509}
510
511static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts,
Chris Masonf254e522007-03-29 15:15:27 -0400512 u64 val)
Chris Masone20d96d2007-03-22 12:13:20 -0400513{
Chris Masonf254e522007-03-29 15:15:27 -0400514 ts->sec = cpu_to_le64(val);
Chris Masone20d96d2007-03-22 12:13:20 -0400515}
516
517static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts)
518{
519 return le32_to_cpu(ts->nsec);
520}
521
522static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts,
523 u32 val)
524{
525 ts->nsec = cpu_to_le32(val);
526}
527
Chris Mason234b63a2007-03-13 10:46:10 -0400528static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400529{
530 return le32_to_cpu(ei->refs);
531}
532
Chris Mason234b63a2007-03-13 10:46:10 -0400533static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400534{
535 ei->refs = cpu_to_le32(val);
536}
537
Chris Mason4d775672007-04-20 20:23:12 -0400538static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
539{
540 return le64_to_cpu(ei->owner);
541}
542
543static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
544{
545 ei->owner = cpu_to_le64(val);
546}
547
Chris Mason234b63a2007-03-13 10:46:10 -0400548static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400549{
Chris Mason123abc82007-03-14 14:14:43 -0400550 return le64_to_cpu(n->ptrs[nr].blockptr);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400551}
552
Chris Mason4d775672007-04-20 20:23:12 -0400553
Chris Mason234b63a2007-03-13 10:46:10 -0400554static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
555 u64 val)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400556{
Chris Mason123abc82007-03-14 14:14:43 -0400557 n->ptrs[nr].blockptr = cpu_to_le64(val);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400558}
559
Chris Mason123abc82007-03-14 14:14:43 -0400560static inline u32 btrfs_item_offset(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400561{
Chris Mason123abc82007-03-14 14:14:43 -0400562 return le32_to_cpu(item->offset);
Chris Mason0783fcf2007-03-12 20:12:07 -0400563}
564
Chris Mason123abc82007-03-14 14:14:43 -0400565static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
Chris Mason0783fcf2007-03-12 20:12:07 -0400566{
Chris Mason123abc82007-03-14 14:14:43 -0400567 item->offset = cpu_to_le32(val);
Chris Mason0783fcf2007-03-12 20:12:07 -0400568}
569
Chris Mason123abc82007-03-14 14:14:43 -0400570static inline u32 btrfs_item_end(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400571{
Chris Mason123abc82007-03-14 14:14:43 -0400572 return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
Chris Mason0783fcf2007-03-12 20:12:07 -0400573}
574
575static inline u16 btrfs_item_size(struct btrfs_item *item)
576{
577 return le16_to_cpu(item->size);
578}
579
580static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
581{
582 item->size = cpu_to_le16(val);
583}
584
Chris Mason1d4f6402007-03-15 15:18:43 -0400585static inline u16 btrfs_dir_flags(struct btrfs_dir_item *d)
586{
587 return le16_to_cpu(d->flags);
588}
589
590static inline void btrfs_set_dir_flags(struct btrfs_dir_item *d, u16 val)
591{
592 d->flags = cpu_to_le16(val);
593}
594
595static inline u8 btrfs_dir_type(struct btrfs_dir_item *d)
596{
597 return d->type;
598}
599
600static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val)
601{
602 d->type = val;
603}
604
Chris Masona8a2ee02007-03-16 08:46:49 -0400605static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d)
Chris Mason1d4f6402007-03-15 15:18:43 -0400606{
Chris Masona8a2ee02007-03-16 08:46:49 -0400607 return le16_to_cpu(d->name_len);
608}
609
610static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val)
611{
612 d->name_len = cpu_to_le16(val);
Chris Mason1d4f6402007-03-15 15:18:43 -0400613}
614
Chris Masone2fa7222007-03-12 16:22:34 -0400615static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
616 struct btrfs_disk_key *disk)
617{
618 cpu->offset = le64_to_cpu(disk->offset);
619 cpu->flags = le32_to_cpu(disk->flags);
620 cpu->objectid = le64_to_cpu(disk->objectid);
621}
622
623static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
624 struct btrfs_key *cpu)
625{
626 disk->offset = cpu_to_le64(cpu->offset);
627 disk->flags = cpu_to_le32(cpu->flags);
628 disk->objectid = cpu_to_le64(cpu->objectid);
629}
630
Chris Mason62e27492007-03-15 12:56:47 -0400631static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400632{
633 return le64_to_cpu(disk->objectid);
634}
635
Chris Mason62e27492007-03-15 12:56:47 -0400636static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk,
637 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400638{
639 disk->objectid = cpu_to_le64(val);
640}
641
Chris Mason62e27492007-03-15 12:56:47 -0400642static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400643{
644 return le64_to_cpu(disk->offset);
645}
646
Chris Mason62e27492007-03-15 12:56:47 -0400647static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk,
648 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400649{
650 disk->offset = cpu_to_le64(val);
651}
652
Chris Mason62e27492007-03-15 12:56:47 -0400653static inline u32 btrfs_disk_key_flags(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400654{
655 return le32_to_cpu(disk->flags);
656}
657
Chris Mason62e27492007-03-15 12:56:47 -0400658static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key *disk,
659 u32 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400660{
661 disk->flags = cpu_to_le32(val);
662}
663
Chris Masona429e512007-04-18 16:15:28 -0400664static inline u32 btrfs_disk_key_type(struct btrfs_disk_key *key)
665{
666 return le32_to_cpu(key->flags) >> BTRFS_KEY_TYPE_SHIFT;
667}
668
669static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key,
670 u32 val)
671{
672 u32 flags = btrfs_disk_key_flags(key);
673 BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
674 val = val << BTRFS_KEY_TYPE_SHIFT;
675 flags = (flags & ~BTRFS_KEY_TYPE_MASK) | val;
676 btrfs_set_disk_key_flags(key, flags);
677}
678
679static inline u32 btrfs_key_type(struct btrfs_key *key)
680{
681 return key->flags >> BTRFS_KEY_TYPE_SHIFT;
682}
683
684static inline void btrfs_set_key_type(struct btrfs_key *key, u32 val)
685{
686 BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
687 val = val << BTRFS_KEY_TYPE_SHIFT;
688 key->flags = (key->flags & ~(BTRFS_KEY_TYPE_MASK)) | val;
689}
690
Chris Masonbb492bb2007-03-12 12:29:44 -0400691static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400692{
Chris Masonbb492bb2007-03-12 12:29:44 -0400693 return le64_to_cpu(h->blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400694}
695
Chris Masonbb492bb2007-03-12 12:29:44 -0400696static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
Chris Mason7518a232007-03-12 12:01:18 -0400697{
Chris Masonbb492bb2007-03-12 12:29:44 -0400698 h->blocknr = cpu_to_le64(blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400699}
700
Chris Mason7f5c1512007-03-23 15:56:19 -0400701static inline u64 btrfs_header_generation(struct btrfs_header *h)
702{
703 return le64_to_cpu(h->generation);
704}
705
706static inline void btrfs_set_header_generation(struct btrfs_header *h,
707 u64 val)
708{
709 h->generation = cpu_to_le64(val);
710}
711
Chris Mason4d775672007-04-20 20:23:12 -0400712static inline u64 btrfs_header_owner(struct btrfs_header *h)
713{
714 return le64_to_cpu(h->owner);
715}
716
717static inline void btrfs_set_header_owner(struct btrfs_header *h,
718 u64 val)
719{
720 h->owner = cpu_to_le64(val);
721}
722
Chris Masonbb492bb2007-03-12 12:29:44 -0400723static inline u16 btrfs_header_nritems(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400724{
Chris Masonbb492bb2007-03-12 12:29:44 -0400725 return le16_to_cpu(h->nritems);
Chris Mason7518a232007-03-12 12:01:18 -0400726}
727
Chris Masonbb492bb2007-03-12 12:29:44 -0400728static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400729{
Chris Masonbb492bb2007-03-12 12:29:44 -0400730 h->nritems = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400731}
732
Chris Masonbb492bb2007-03-12 12:29:44 -0400733static inline u16 btrfs_header_flags(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400734{
Chris Masonbb492bb2007-03-12 12:29:44 -0400735 return le16_to_cpu(h->flags);
Chris Mason7518a232007-03-12 12:01:18 -0400736}
737
Chris Masonbb492bb2007-03-12 12:29:44 -0400738static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400739{
Chris Masonbb492bb2007-03-12 12:29:44 -0400740 h->flags = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400741}
742
Chris Masonbb492bb2007-03-12 12:29:44 -0400743static inline int btrfs_header_level(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400744{
Chris Mason9a6f11e2007-03-27 09:06:38 -0400745 return h->level;
Chris Mason7518a232007-03-12 12:01:18 -0400746}
747
Chris Masonbb492bb2007-03-12 12:29:44 -0400748static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
Chris Mason7518a232007-03-12 12:01:18 -0400749{
Chris Mason234b63a2007-03-13 10:46:10 -0400750 BUG_ON(level > BTRFS_MAX_LEVEL);
Chris Mason9a6f11e2007-03-27 09:06:38 -0400751 h->level = level;
Chris Mason7518a232007-03-12 12:01:18 -0400752}
753
Chris Mason234b63a2007-03-13 10:46:10 -0400754static inline int btrfs_is_leaf(struct btrfs_node *n)
Chris Mason7518a232007-03-12 12:01:18 -0400755{
756 return (btrfs_header_level(&n->header) == 0);
757}
758
Chris Mason3768f362007-03-13 16:47:54 -0400759static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
760{
761 return le64_to_cpu(item->blocknr);
762}
763
764static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
765{
766 item->blocknr = cpu_to_le64(val);
767}
768
Chris Masond6e4a422007-04-06 15:37:36 -0400769static inline u64 btrfs_root_dirid(struct btrfs_root_item *item)
770{
771 return le64_to_cpu(item->root_dirid);
772}
773
774static inline void btrfs_set_root_dirid(struct btrfs_root_item *item, u64 val)
775{
776 item->root_dirid = cpu_to_le64(val);
777}
778
Chris Mason3768f362007-03-13 16:47:54 -0400779static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
780{
781 return le32_to_cpu(item->refs);
782}
783
784static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
785{
786 item->refs = cpu_to_le32(val);
787}
788
789static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
790{
791 return le64_to_cpu(s->blocknr);
792}
793
794static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
795{
796 s->blocknr = cpu_to_le64(val);
797}
798
Chris Mason0f7d52f2007-04-09 10:42:37 -0400799static inline u64 btrfs_super_generation(struct btrfs_super_block *s)
800{
801 return le64_to_cpu(s->generation);
802}
803
804static inline void btrfs_set_super_generation(struct btrfs_super_block *s,
805 u64 val)
806{
807 s->generation = cpu_to_le64(val);
808}
809
Chris Mason3768f362007-03-13 16:47:54 -0400810static inline u64 btrfs_super_root(struct btrfs_super_block *s)
811{
812 return le64_to_cpu(s->root);
813}
814
815static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
816{
817 s->root = cpu_to_le64(val);
818}
819
820static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
821{
822 return le64_to_cpu(s->total_blocks);
823}
824
825static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
826 u64 val)
827{
828 s->total_blocks = cpu_to_le64(val);
829}
830
831static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
832{
833 return le64_to_cpu(s->blocks_used);
834}
835
836static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
837 u64 val)
838{
839 s->blocks_used = cpu_to_le64(val);
840}
841
Chris Mason123abc82007-03-14 14:14:43 -0400842static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
Chris Mason3768f362007-03-13 16:47:54 -0400843{
Chris Mason123abc82007-03-14 14:14:43 -0400844 return le32_to_cpu(s->blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400845}
846
847static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
Chris Mason123abc82007-03-14 14:14:43 -0400848 u32 val)
Chris Mason3768f362007-03-13 16:47:54 -0400849{
Chris Mason123abc82007-03-14 14:14:43 -0400850 s->blocksize = cpu_to_le32(val);
851}
852
Chris Mason2e635a22007-03-21 11:12:56 -0400853static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s)
854{
855 return le64_to_cpu(s->root_dir_objectid);
856}
857
858static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64
859 val)
860{
861 s->root_dir_objectid = cpu_to_le64(val);
862}
863
Chris Mason123abc82007-03-14 14:14:43 -0400864static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
865{
866 return (u8 *)l->items;
Chris Mason3768f362007-03-13 16:47:54 -0400867}
Chris Mason9f5fae22007-03-20 14:38:32 -0400868
Chris Mason236454d2007-04-19 13:37:44 -0400869static inline int btrfs_file_extent_type(struct btrfs_file_extent_item *e)
870{
871 return e->type;
872}
873static inline void btrfs_set_file_extent_type(struct btrfs_file_extent_item *e,
874 u8 val)
875{
876 e->type = val;
877}
878
879static inline char *btrfs_file_extent_inline_start(struct
880 btrfs_file_extent_item *e)
881{
882 return (char *)(&e->disk_blocknr);
883}
884
885static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
886{
887 return (unsigned long)(&((struct
888 btrfs_file_extent_item *)NULL)->disk_blocknr) + datasize;
889}
890
891static inline u32 btrfs_file_extent_inline_len(struct btrfs_item *e)
892{
893 struct btrfs_file_extent_item *fe = NULL;
894 return btrfs_item_size(e) - (unsigned long)(&fe->disk_blocknr);
895}
896
Chris Mason9f5fae22007-03-20 14:38:32 -0400897static inline u64 btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item
898 *e)
899{
900 return le64_to_cpu(e->disk_blocknr);
901}
902
903static inline void btrfs_set_file_extent_disk_blocknr(struct
904 btrfs_file_extent_item
905 *e, u64 val)
906{
907 e->disk_blocknr = cpu_to_le64(val);
908}
909
Chris Mason71951f32007-03-27 09:16:29 -0400910static inline u64 btrfs_file_extent_generation(struct btrfs_file_extent_item *e)
911{
912 return le64_to_cpu(e->generation);
913}
914
915static inline void btrfs_set_file_extent_generation(struct
916 btrfs_file_extent_item *e,
917 u64 val)
918{
919 e->generation = cpu_to_le64(val);
920}
921
Chris Mason9f5fae22007-03-20 14:38:32 -0400922static inline u64 btrfs_file_extent_disk_num_blocks(struct
923 btrfs_file_extent_item *e)
924{
925 return le64_to_cpu(e->disk_num_blocks);
926}
927
928static inline void btrfs_set_file_extent_disk_num_blocks(struct
929 btrfs_file_extent_item
930 *e, u64 val)
931{
932 e->disk_num_blocks = cpu_to_le64(val);
933}
934
935static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e)
936{
937 return le64_to_cpu(e->offset);
938}
939
940static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
941 *e, u64 val)
942{
943 e->offset = cpu_to_le64(val);
944}
945
946static inline u64 btrfs_file_extent_num_blocks(struct btrfs_file_extent_item
947 *e)
948{
949 return le64_to_cpu(e->num_blocks);
950}
951
952static inline void btrfs_set_file_extent_num_blocks(struct
953 btrfs_file_extent_item *e,
954 u64 val)
955{
956 e->num_blocks = cpu_to_le64(val);
957}
958
Chris Masone20d96d2007-03-22 12:13:20 -0400959static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
960{
961 return sb->s_fs_info;
962}
963
Chris Masond6025572007-03-30 14:27:56 -0400964static inline void btrfs_check_bounds(void *vptr, size_t len,
965 void *vcontainer, size_t container_len)
966{
967 char *ptr = vptr;
968 char *container = vcontainer;
969 WARN_ON(ptr < container);
970 WARN_ON(ptr + len > container + container_len);
971}
972
973static inline void btrfs_memcpy(struct btrfs_root *root,
974 void *dst_block,
975 void *dst, const void *src, size_t nr)
976{
977 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
978 memcpy(dst, src, nr);
979}
980
981static inline void btrfs_memmove(struct btrfs_root *root,
982 void *dst_block,
983 void *dst, void *src, size_t nr)
984{
985 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
986 memmove(dst, src, nr);
987}
988
989static inline void btrfs_mark_buffer_dirty(struct buffer_head *bh)
990{
991 WARN_ON(!atomic_read(&bh->b_count));
992 mark_buffer_dirty(bh);
993}
994
Chris Mason4beb1b82007-03-14 10:31:29 -0400995/* helper function to cast into the data area of the leaf. */
996#define btrfs_item_ptr(leaf, slot, type) \
Chris Mason123abc82007-03-14 14:14:43 -0400997 ((type *)(btrfs_leaf_data(leaf) + \
998 btrfs_item_offset((leaf)->items + (slot))))
Chris Mason4beb1b82007-03-14 10:31:29 -0400999
Chris Masonb18c6682007-04-17 13:26:50 -04001000/* extent-tree.c */
Chris Mason31f3c992007-04-30 15:25:45 -04001001struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1002 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -04001003 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -04001004 int data, int owner);
Chris Masonc5739bb2007-04-10 09:27:04 -04001005int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
1006 struct btrfs_root *root);
Chris Masone20d96d2007-03-22 12:13:20 -04001007struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Mason31f3c992007-04-30 15:25:45 -04001008 struct btrfs_root *root, u64 hint);
Chris Mason4d775672007-04-20 20:23:12 -04001009int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1010 struct btrfs_root *root, u64 owner,
Chris Masonc62a1922007-04-24 12:07:39 -04001011 u64 num_blocks, u64 search_start,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001012 u64 search_end, struct btrfs_key *ins, int data);
Chris Masone089f052007-03-16 16:20:31 -04001013int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -04001014 struct buffer_head *buf);
Chris Masone089f052007-03-16 16:20:31 -04001015int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
1016 *root, u64 blocknr, u64 num_blocks, int pin);
Chris Masondee26a92007-03-26 16:00:06 -04001017int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
1018 btrfs_root *root);
Chris Masonb18c6682007-04-17 13:26:50 -04001019int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1020 struct btrfs_root *root,
1021 u64 blocknr, u64 num_blocks);
Chris Mason9078a3e2007-04-26 16:46:15 -04001022int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1023 struct btrfs_root *root);
1024int btrfs_free_block_groups(struct btrfs_fs_info *info);
1025int btrfs_read_block_groups(struct btrfs_root *root);
Chris Masondee26a92007-03-26 16:00:06 -04001026/* ctree.c */
Chris Mason6567e832007-04-16 09:22:45 -04001027int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1028 *root, struct btrfs_path *path, u32 data_size);
Chris Masonb18c6682007-04-17 13:26:50 -04001029int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1030 struct btrfs_root *root,
1031 struct btrfs_path *path,
1032 u32 new_size);
Chris Masone089f052007-03-16 16:20:31 -04001033int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1034 *root, struct btrfs_key *key, struct btrfs_path *p, int
1035 ins_len, int cow);
Chris Mason234b63a2007-03-13 10:46:10 -04001036void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
Chris Mason2c90e5d2007-04-02 10:50:19 -04001037struct btrfs_path *btrfs_alloc_path(void);
1038void btrfs_free_path(struct btrfs_path *p);
Chris Mason234b63a2007-03-13 10:46:10 -04001039void btrfs_init_path(struct btrfs_path *p);
Chris Masone089f052007-03-16 16:20:31 -04001040int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1041 struct btrfs_path *path);
1042int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1043 *root, struct btrfs_key *key, void *data, u32 data_size);
1044int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
1045 *root, struct btrfs_path *path, struct btrfs_key
1046 *cpu_key, u32 data_size);
Chris Mason234b63a2007-03-13 10:46:10 -04001047int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Mason123abc82007-03-14 14:14:43 -04001048int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
Chris Masone089f052007-03-16 16:20:31 -04001049int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -04001050 *root, struct buffer_head *snap);
Chris Masondee26a92007-03-26 16:00:06 -04001051/* root-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001052int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1053 struct btrfs_key *key);
1054int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1055 *root, struct btrfs_key *key, struct btrfs_root_item
1056 *item);
1057int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1058 *root, struct btrfs_key *key, struct btrfs_root_item
1059 *item);
1060int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1061 btrfs_root_item *item, struct btrfs_key *key);
Chris Masondee26a92007-03-26 16:00:06 -04001062/* dir-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001063int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001064 *root, const char *name, int name_len, u64 dir,
1065 struct btrfs_key *location, u8 type);
Chris Mason7e381802007-04-19 15:36:27 -04001066struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1067 struct btrfs_root *root,
1068 struct btrfs_path *path, u64 dir,
1069 const char *name, int name_len,
1070 int mod);
1071struct btrfs_dir_item *
1072btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1073 struct btrfs_root *root,
1074 struct btrfs_path *path, u64 dir,
1075 u64 objectid, const char *name, int name_len,
1076 int mod);
1077struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1078 struct btrfs_path *path,
Chris Mason7f5c1512007-03-23 15:56:19 -04001079 const char *name, int name_len);
Chris Mason7e381802007-04-19 15:36:27 -04001080int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1081 struct btrfs_root *root,
1082 struct btrfs_path *path,
1083 struct btrfs_dir_item *di);
Chris Masondee26a92007-03-26 16:00:06 -04001084/* inode-map.c */
Chris Mason9f5fae22007-03-20 14:38:32 -04001085int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1086 struct btrfs_root *fs_root,
1087 u64 dirid, u64 *objectid);
Chris Mason5be6f7f2007-04-05 13:35:25 -04001088int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1089
Chris Masondee26a92007-03-26 16:00:06 -04001090/* inode-item.c */
Chris Mason293ffd52007-03-20 15:57:25 -04001091int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1092 *root, u64 objectid, struct btrfs_inode_item
1093 *inode_item);
1094int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001095 *root, struct btrfs_path *path,
1096 struct btrfs_key *location, int mod);
Chris Masondee26a92007-03-26 16:00:06 -04001097
1098/* file-item.c */
Chris Masonb18c6682007-04-17 13:26:50 -04001099int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Chris Masondee26a92007-03-26 16:00:06 -04001100 struct btrfs_root *root,
Chris Masonb18c6682007-04-17 13:26:50 -04001101 u64 objectid, u64 pos, u64 offset,
Chris Mason3a686372007-05-24 13:35:57 -04001102 u64 disk_num_blocks,
Chris Masonb18c6682007-04-17 13:26:50 -04001103 u64 num_blocks);
Chris Masondee26a92007-03-26 16:00:06 -04001104int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
1105 struct btrfs_root *root,
1106 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -04001107 u64 blocknr, int mod);
Chris Masonf254e522007-03-29 15:15:27 -04001108int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
1109 struct btrfs_root *root,
1110 u64 objectid, u64 offset,
1111 char *data, size_t len);
1112int btrfs_csum_verify_file_block(struct btrfs_root *root,
1113 u64 objectid, u64 offset,
1114 char *data, size_t len);
Chris Masonb18c6682007-04-17 13:26:50 -04001115struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
1116 struct btrfs_root *root,
1117 struct btrfs_path *path,
1118 u64 objectid, u64 offset,
1119 int cow);
Chris Mason1de037a2007-05-29 15:17:08 -04001120int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
1121 struct btrfs_root *root, struct btrfs_path *path,
1122 u64 isize);
Chris Masond6e4a422007-04-06 15:37:36 -04001123/* super.c */
Chris Masoneb60cea2007-02-02 09:18:22 -05001124#endif