blob: cd75c906048f288396b96d4c8cf0bfb85302745e [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason234b63a2007-03-13 10:46:10 -040019#ifndef __BTRFS__
20#define __BTRFS__
Chris Masoneb60cea2007-02-02 09:18:22 -050021
Chris Masone20d96d2007-03-22 12:13:20 -040022#include <linux/fs.h>
Chris Masond6025572007-03-30 14:27:56 -040023#include <linux/buffer_head.h>
Chris Mason08607c12007-06-08 15:33:54 -040024#include <linux/workqueue.h>
Josef Bacik58176a92007-08-29 15:47:34 -040025#include <linux/completion.h>
Chris Mason8ef97622007-03-26 10:15:30 -040026#include "bit-radix.h"
Chris Masone20d96d2007-03-22 12:13:20 -040027
Chris Masone089f052007-03-16 16:20:31 -040028struct btrfs_trans_handle;
Chris Mason79154b12007-03-22 15:59:16 -040029struct btrfs_transaction;
Chris Mason35b7e472007-05-02 15:53:43 -040030extern struct kmem_cache *btrfs_trans_handle_cachep;
31extern struct kmem_cache *btrfs_transaction_cachep;
32extern struct kmem_cache *btrfs_bit_radix_cachep;
Chris Mason2c90e5d2007-04-02 10:50:19 -040033extern struct kmem_cache *btrfs_path_cachep;
Chris Masone089f052007-03-16 16:20:31 -040034
Chris Mason3768f362007-03-13 16:47:54 -040035#define BTRFS_MAGIC "_BtRfS_M"
Chris Masoneb60cea2007-02-02 09:18:22 -050036
Chris Mason6407bf62007-03-27 06:33:00 -040037#define BTRFS_ROOT_TREE_OBJECTID 1ULL
Chris Mason0cf6c622007-06-09 09:22:25 -040038#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
39#define BTRFS_FS_TREE_OBJECTID 3ULL
40#define BTRFS_ROOT_TREE_DIR_OBJECTID 4ULL
41#define BTRFS_FIRST_FREE_OBJECTID 5ULL
Chris Mason3768f362007-03-13 16:47:54 -040042
Chris Masonfec577f2007-02-26 10:40:21 -050043/*
Chris Masone20d96d2007-03-22 12:13:20 -040044 * we can actually store much bigger names, but lets not confuse the rest
45 * of linux
46 */
47#define BTRFS_NAME_LEN 255
48
Chris Masonf254e522007-03-29 15:15:27 -040049/* 32 bytes in various csum fields */
50#define BTRFS_CSUM_SIZE 32
Chris Mason509659c2007-05-10 12:36:17 -040051/* four bytes for CRC32 */
52#define BTRFS_CRC32_SIZE 4
Chris Masone06afa82007-05-23 15:44:28 -040053#define BTRFS_EMPTY_DIR_SIZE 6
Chris Masonf254e522007-03-29 15:15:27 -040054
Chris Masonfabb5682007-06-07 22:13:21 -040055#define BTRFS_FT_UNKNOWN 0
56#define BTRFS_FT_REG_FILE 1
57#define BTRFS_FT_DIR 2
58#define BTRFS_FT_CHRDEV 3
59#define BTRFS_FT_BLKDEV 4
60#define BTRFS_FT_FIFO 5
61#define BTRFS_FT_SOCK 6
62#define BTRFS_FT_SYMLINK 7
63#define BTRFS_FT_MAX 8
64
Chris Masone20d96d2007-03-22 12:13:20 -040065/*
Chris Masonfec577f2007-02-26 10:40:21 -050066 * the key defines the order in the tree, and so it also defines (optimal)
67 * block layout. objectid corresonds to the inode number. The flags
68 * tells us things about the object, and is a kind of stream selector.
69 * so for a given inode, keys with flags of 1 might refer to the inode
70 * data, flags of 2 may point to file data in the btree and flags == 3
71 * may point to extents.
72 *
73 * offset is the starting byte offset for this key in the stream.
Chris Masone2fa7222007-03-12 16:22:34 -040074 *
75 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
76 * in cpu native order. Otherwise they are identical and their sizes
77 * should be the same (ie both packed)
Chris Masonfec577f2007-02-26 10:40:21 -050078 */
Chris Masone2fa7222007-03-12 16:22:34 -040079struct btrfs_disk_key {
80 __le64 objectid;
Chris Masonf254e522007-03-29 15:15:27 -040081 __le32 flags;
Chris Mason70b2bef2007-04-17 15:39:32 -040082 __le64 offset;
Chris Masone2fa7222007-03-12 16:22:34 -040083} __attribute__ ((__packed__));
84
85struct btrfs_key {
Chris Masoneb60cea2007-02-02 09:18:22 -050086 u64 objectid;
Chris Masonf254e522007-03-29 15:15:27 -040087 u32 flags;
Chris Mason70b2bef2007-04-17 15:39:32 -040088 u64 offset;
Chris Masoneb60cea2007-02-02 09:18:22 -050089} __attribute__ ((__packed__));
90
Chris Masonfec577f2007-02-26 10:40:21 -050091/*
92 * every tree block (leaf or node) starts with this header.
93 */
Chris Masonbb492bb2007-03-12 12:29:44 -040094struct btrfs_header {
Chris Masonf254e522007-03-29 15:15:27 -040095 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason3768f362007-03-13 16:47:54 -040096 u8 fsid[16]; /* FS specific uuid */
Chris Masonbb492bb2007-03-12 12:29:44 -040097 __le64 blocknr; /* which block this node is supposed to live in */
Chris Mason7f5c1512007-03-23 15:56:19 -040098 __le64 generation;
Chris Mason4d775672007-04-20 20:23:12 -040099 __le64 owner;
Chris Masonbb492bb2007-03-12 12:29:44 -0400100 __le16 nritems;
101 __le16 flags;
Chris Mason9a6f11e2007-03-27 09:06:38 -0400102 u8 level;
Chris Masoneb60cea2007-02-02 09:18:22 -0500103} __attribute__ ((__packed__));
104
Chris Mason234b63a2007-03-13 10:46:10 -0400105#define BTRFS_MAX_LEVEL 8
Chris Mason123abc82007-03-14 14:14:43 -0400106#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
107 sizeof(struct btrfs_header)) / \
108 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
109#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
110#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
Chris Mason236454df2007-04-19 13:37:44 -0400111#define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
112 sizeof(struct btrfs_item) - \
113 sizeof(struct btrfs_file_extent_item))
Chris Masoneb60cea2007-02-02 09:18:22 -0500114
Chris Masone20d96d2007-03-22 12:13:20 -0400115struct buffer_head;
Chris Masonfec577f2007-02-26 10:40:21 -0500116/*
Chris Masonfec577f2007-02-26 10:40:21 -0500117 * the super block basically lists the main trees of the FS
118 * it currently lacks any block count etc etc
119 */
Chris Mason234b63a2007-03-13 10:46:10 -0400120struct btrfs_super_block {
Chris Masonf254e522007-03-29 15:15:27 -0400121 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason87cbda52007-03-28 19:44:27 -0400122 /* the first 3 fields must match struct btrfs_header */
Chris Mason3768f362007-03-13 16:47:54 -0400123 u8 fsid[16]; /* FS specific uuid */
124 __le64 blocknr; /* this block number */
Chris Mason3768f362007-03-13 16:47:54 -0400125 __le64 magic;
Chris Mason3768f362007-03-13 16:47:54 -0400126 __le64 generation;
127 __le64 root;
128 __le64 total_blocks;
129 __le64 blocks_used;
Chris Mason2e635a22007-03-21 11:12:56 -0400130 __le64 root_dir_objectid;
Chris Mason5eda7b52007-06-22 14:16:25 -0400131 __le32 blocksize;
Chris Masoncfaa7292007-02-21 17:04:57 -0500132} __attribute__ ((__packed__));
133
Chris Masonfec577f2007-02-26 10:40:21 -0500134/*
Chris Mason62e27492007-03-15 12:56:47 -0400135 * A leaf is full of items. offset and size tell us where to find
Chris Masonfec577f2007-02-26 10:40:21 -0500136 * the item in the leaf (relative to the start of the data area)
137 */
Chris Mason0783fcf2007-03-12 20:12:07 -0400138struct btrfs_item {
Chris Masone2fa7222007-03-12 16:22:34 -0400139 struct btrfs_disk_key key;
Chris Mason123abc82007-03-14 14:14:43 -0400140 __le32 offset;
Chris Mason0783fcf2007-03-12 20:12:07 -0400141 __le16 size;
Chris Masoneb60cea2007-02-02 09:18:22 -0500142} __attribute__ ((__packed__));
143
Chris Masonfec577f2007-02-26 10:40:21 -0500144/*
145 * leaves have an item area and a data area:
146 * [item0, item1....itemN] [free space] [dataN...data1, data0]
147 *
148 * The data is separate from the items to get the keys closer together
149 * during searches.
150 */
Chris Mason234b63a2007-03-13 10:46:10 -0400151struct btrfs_leaf {
Chris Masonbb492bb2007-03-12 12:29:44 -0400152 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400153 struct btrfs_item items[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500154} __attribute__ ((__packed__));
155
Chris Masonfec577f2007-02-26 10:40:21 -0500156/*
157 * all non-leaf blocks are nodes, they hold only keys and pointers to
158 * other blocks
159 */
Chris Mason123abc82007-03-14 14:14:43 -0400160struct btrfs_key_ptr {
161 struct btrfs_disk_key key;
162 __le64 blockptr;
163} __attribute__ ((__packed__));
164
Chris Mason234b63a2007-03-13 10:46:10 -0400165struct btrfs_node {
Chris Masonbb492bb2007-03-12 12:29:44 -0400166 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400167 struct btrfs_key_ptr ptrs[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500168} __attribute__ ((__packed__));
169
Chris Masonfec577f2007-02-26 10:40:21 -0500170/*
Chris Mason234b63a2007-03-13 10:46:10 -0400171 * btrfs_paths remember the path taken from the root down to the leaf.
172 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
Chris Masonfec577f2007-02-26 10:40:21 -0500173 * to any other levels that are present.
174 *
175 * The slots array records the index of the item or block pointer
176 * used while walking the tree.
177 */
Chris Mason234b63a2007-03-13 10:46:10 -0400178struct btrfs_path {
Chris Masone20d96d2007-03-22 12:13:20 -0400179 struct buffer_head *nodes[BTRFS_MAX_LEVEL];
Chris Mason234b63a2007-03-13 10:46:10 -0400180 int slots[BTRFS_MAX_LEVEL];
Chris Mason3c69fae2007-08-07 15:52:22 -0400181 int reada;
Chris Mason6702ed42007-08-07 16:15:09 -0400182 int lowest_level;
Chris Masoneb60cea2007-02-02 09:18:22 -0500183};
Chris Mason5de08d72007-02-24 06:24:44 -0500184
Chris Mason62e27492007-03-15 12:56:47 -0400185/*
186 * items in the extent btree are used to record the objectid of the
187 * owner of the block and the number of references
188 */
189struct btrfs_extent_item {
190 __le32 refs;
Chris Mason4d775672007-04-20 20:23:12 -0400191 __le64 owner;
Chris Mason62e27492007-03-15 12:56:47 -0400192} __attribute__ ((__packed__));
193
Chris Mason1e1d2702007-03-15 19:03:33 -0400194struct btrfs_inode_timespec {
Chris Masonf254e522007-03-29 15:15:27 -0400195 __le64 sec;
Chris Mason1e1d2702007-03-15 19:03:33 -0400196 __le32 nsec;
197} __attribute__ ((__packed__));
198
199/*
200 * there is no padding here on purpose. If you want to extent the inode,
201 * make a new item type
202 */
203struct btrfs_inode_item {
204 __le64 generation;
205 __le64 size;
206 __le64 nblocks;
Chris Mason31f3c992007-04-30 15:25:45 -0400207 __le64 block_group;
Chris Mason1e1d2702007-03-15 19:03:33 -0400208 __le32 nlink;
209 __le32 uid;
210 __le32 gid;
211 __le32 mode;
212 __le32 rdev;
213 __le16 flags;
214 __le16 compat_flags;
215 struct btrfs_inode_timespec atime;
216 struct btrfs_inode_timespec ctime;
217 struct btrfs_inode_timespec mtime;
218 struct btrfs_inode_timespec otime;
219} __attribute__ ((__packed__));
220
Chris Mason62e27492007-03-15 12:56:47 -0400221struct btrfs_dir_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400222 struct btrfs_disk_key location;
Chris Mason62e27492007-03-15 12:56:47 -0400223 __le16 flags;
Chris Masona8a2ee02007-03-16 08:46:49 -0400224 __le16 name_len;
Chris Mason62e27492007-03-15 12:56:47 -0400225 u8 type;
226} __attribute__ ((__packed__));
227
228struct btrfs_root_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400229 struct btrfs_inode_item inode;
230 __le64 root_dirid;
Chris Mason62e27492007-03-15 12:56:47 -0400231 __le64 blocknr;
Chris Mason62e27492007-03-15 12:56:47 -0400232 __le64 block_limit;
233 __le64 blocks_used;
Chris Mason5eda7b52007-06-22 14:16:25 -0400234 __le32 flags;
Chris Mason62e27492007-03-15 12:56:47 -0400235 __le32 refs;
Chris Mason5eda7b52007-06-22 14:16:25 -0400236 struct btrfs_disk_key drop_progress;
237 u8 drop_level;
Chris Mason9f5fae22007-03-20 14:38:32 -0400238} __attribute__ ((__packed__));
239
Chris Mason236454df2007-04-19 13:37:44 -0400240#define BTRFS_FILE_EXTENT_REG 0
241#define BTRFS_FILE_EXTENT_INLINE 1
242
Chris Mason9f5fae22007-03-20 14:38:32 -0400243struct btrfs_file_extent_item {
Chris Mason71951f32007-03-27 09:16:29 -0400244 __le64 generation;
Chris Mason236454df2007-04-19 13:37:44 -0400245 u8 type;
Chris Mason9f5fae22007-03-20 14:38:32 -0400246 /*
247 * disk space consumed by the extent, checksum blocks are included
248 * in these numbers
249 */
250 __le64 disk_blocknr;
251 __le64 disk_num_blocks;
252 /*
Chris Masondee26a92007-03-26 16:00:06 -0400253 * the logical offset in file blocks (no csums)
Chris Mason9f5fae22007-03-20 14:38:32 -0400254 * this extent record is for. This allows a file extent to point
255 * into the middle of an existing extent on disk, sharing it
256 * between two snapshots (useful if some bytes in the middle of the
257 * extent have changed
258 */
259 __le64 offset;
260 /*
261 * the logical number of file blocks (no csums included)
262 */
263 __le64 num_blocks;
264} __attribute__ ((__packed__));
265
Chris Masonf254e522007-03-29 15:15:27 -0400266struct btrfs_csum_item {
Chris Mason509659c2007-05-10 12:36:17 -0400267 u8 csum;
Chris Masonf254e522007-03-29 15:15:27 -0400268} __attribute__ ((__packed__));
269
Chris Mason9078a3e2007-04-26 16:46:15 -0400270/* tag for the radix tree of block groups in ram */
271#define BTRFS_BLOCK_GROUP_DIRTY 0
Chris Mason31f3c992007-04-30 15:25:45 -0400272#define BTRFS_BLOCK_GROUP_AVAIL 1
Chris Mason9078a3e2007-04-26 16:46:15 -0400273#define BTRFS_BLOCK_GROUP_SIZE (256 * 1024 * 1024)
Chris Mason1e2677e2007-05-29 16:52:18 -0400274
275
276#define BTRFS_BLOCK_GROUP_DATA 1
Chris Mason9078a3e2007-04-26 16:46:15 -0400277struct btrfs_block_group_item {
278 __le64 used;
Chris Mason1e2677e2007-05-29 16:52:18 -0400279 u8 flags;
Chris Mason9078a3e2007-04-26 16:46:15 -0400280} __attribute__ ((__packed__));
281
282struct btrfs_block_group_cache {
283 struct btrfs_key key;
284 struct btrfs_block_group_item item;
Chris Mason3e1ad542007-05-07 20:03:49 -0400285 struct radix_tree_root *radix;
Chris Masoncd1bc462007-04-27 10:08:34 -0400286 u64 first_free;
287 u64 last_alloc;
Chris Masonbe744172007-05-06 10:15:01 -0400288 u64 pinned;
Chris Masone37c9e62007-05-09 20:13:14 -0400289 u64 last_prealloc;
Chris Masonbe744172007-05-06 10:15:01 -0400290 int data;
Chris Masone37c9e62007-05-09 20:13:14 -0400291 int cached;
Chris Mason9078a3e2007-04-26 16:46:15 -0400292};
293
Chris Mason9f5fae22007-03-20 14:38:32 -0400294struct btrfs_fs_info {
Chris Mason9f5fae22007-03-20 14:38:32 -0400295 struct btrfs_root *extent_root;
296 struct btrfs_root *tree_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400297 struct radix_tree_root fs_roots_radix;
Chris Mason8ef97622007-03-26 10:15:30 -0400298 struct radix_tree_root pending_del_radix;
Chris Mason9f5fae22007-03-20 14:38:32 -0400299 struct radix_tree_root pinned_radix;
Chris Mason9078a3e2007-04-26 16:46:15 -0400300 struct radix_tree_root block_group_radix;
Chris Masonbe744172007-05-06 10:15:01 -0400301 struct radix_tree_root block_group_data_radix;
Chris Masone37c9e62007-05-09 20:13:14 -0400302 struct radix_tree_root extent_map_radix;
Chris Mason26b80032007-08-08 20:17:12 -0400303 struct radix_tree_root extent_ins_radix;
Chris Mason293ffd52007-03-20 15:57:25 -0400304 u64 generation;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400305 u64 last_trans_committed;
Chris Mason79154b12007-03-22 15:59:16 -0400306 struct btrfs_transaction *running_transaction;
Chris Mason1261ec42007-03-20 20:35:03 -0400307 struct btrfs_super_block *disk_super;
Chris Mason4b52dff2007-06-26 10:06:50 -0400308 struct btrfs_super_block super_copy;
Chris Masone20d96d2007-03-22 12:13:20 -0400309 struct buffer_head *sb_buffer;
310 struct super_block *sb;
Chris Masond98237b2007-03-28 13:57:48 -0400311 struct inode *btree_inode;
Chris Mason79154b12007-03-22 15:59:16 -0400312 struct mutex trans_mutex;
Chris Masond561c022007-03-23 19:47:49 -0400313 struct mutex fs_mutex;
Chris Mason8fd17792007-04-19 21:01:03 -0400314 struct list_head trans_list;
Chris Masonfacda1e2007-06-08 18:11:48 -0400315 struct list_head dead_roots;
Chris Mason08607c12007-06-08 15:33:54 -0400316 struct delayed_work trans_work;
Josef Bacik58176a92007-08-29 15:47:34 -0400317 struct kobject super_kobj;
318 struct completion kobj_unregister;
Chris Masone66f7092007-04-20 13:16:02 -0400319 int do_barriers;
Chris Masonfacda1e2007-06-08 18:11:48 -0400320 int closing;
Chris Mason62e27492007-03-15 12:56:47 -0400321};
322
323/*
324 * in ram representation of the tree. extent_root is used for all allocations
Chris Masonf2458e12007-04-25 15:52:25 -0400325 * and for the extent tree extent_root root.
Chris Mason62e27492007-03-15 12:56:47 -0400326 */
327struct btrfs_root {
Chris Masone20d96d2007-03-22 12:13:20 -0400328 struct buffer_head *node;
329 struct buffer_head *commit_root;
Chris Mason62e27492007-03-15 12:56:47 -0400330 struct btrfs_root_item root_item;
331 struct btrfs_key root_key;
Chris Mason9f5fae22007-03-20 14:38:32 -0400332 struct btrfs_fs_info *fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400333 struct inode *inode;
Josef Bacik58176a92007-08-29 15:47:34 -0400334 struct kobject root_kobj;
335 struct completion kobj_unregister;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400336 u64 objectid;
337 u64 last_trans;
Chris Mason62e27492007-03-15 12:56:47 -0400338 u32 blocksize;
Chris Mason9f5fae22007-03-20 14:38:32 -0400339 u32 type;
Chris Mason1b05da22007-04-10 12:13:09 -0400340 u64 highest_inode;
341 u64 last_inode_alloc;
Chris Mason9f3a7422007-08-07 15:52:19 -0400342 int ref_cows;
Chris Mason6702ed42007-08-07 16:15:09 -0400343 struct btrfs_key defrag_progress;
344 int defrag_running;
345 int defrag_level;
Josef Bacik58176a92007-08-29 15:47:34 -0400346 char *name;
Chris Mason62e27492007-03-15 12:56:47 -0400347};
348
Chris Mason62e27492007-03-15 12:56:47 -0400349/* the lower bits in the key flags defines the item type */
350#define BTRFS_KEY_TYPE_MAX 256
Chris Masona429e512007-04-18 16:15:28 -0400351#define BTRFS_KEY_TYPE_SHIFT 24
352#define BTRFS_KEY_TYPE_MASK (((u32)BTRFS_KEY_TYPE_MAX - 1) << \
353 BTRFS_KEY_TYPE_SHIFT)
Chris Mason1e1d2702007-03-15 19:03:33 -0400354
355/*
356 * inode items have the data typically returned from stat and store other
357 * info about object characteristics. There is one for every file and dir in
358 * the FS
359 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400360#define BTRFS_INODE_ITEM_KEY 1
361
362/* reserve 2-15 close to the inode for later flexibility */
Chris Mason1e1d2702007-03-15 19:03:33 -0400363
364/*
365 * dir items are the name -> inode pointers in a directory. There is one
366 * for every name in a directory.
367 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400368#define BTRFS_DIR_ITEM_KEY 16
369#define BTRFS_DIR_INDEX_KEY 17
Chris Mason1e1d2702007-03-15 19:03:33 -0400370/*
Chris Mason9078a3e2007-04-26 16:46:15 -0400371 * extent data is for file data
Chris Mason1e1d2702007-03-15 19:03:33 -0400372 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400373#define BTRFS_EXTENT_DATA_KEY 18
Chris Mason1e1d2702007-03-15 19:03:33 -0400374/*
Chris Masonf254e522007-03-29 15:15:27 -0400375 * csum items have the checksums for data in the extents
376 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400377#define BTRFS_CSUM_ITEM_KEY 19
378
379/* reserve 20-31 for other file stuff */
Chris Masonf254e522007-03-29 15:15:27 -0400380
381/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400382 * root items point to tree roots. There are typically in the root
383 * tree used by the super block to find all the other trees
384 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400385#define BTRFS_ROOT_ITEM_KEY 32
Chris Mason1e1d2702007-03-15 19:03:33 -0400386/*
387 * extent items are in the extent map tree. These record which blocks
388 * are used, and how many references there are to each block
389 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400390#define BTRFS_EXTENT_ITEM_KEY 33
391
392/*
393 * block groups give us hints into the extent allocation trees. Which
394 * blocks are free etc etc
395 */
396#define BTRFS_BLOCK_GROUP_ITEM_KEY 34
Chris Mason9f5fae22007-03-20 14:38:32 -0400397
398/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400399 * string items are for debugging. They just store a short string of
400 * data in the FS
401 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400402#define BTRFS_STRING_ITEM_KEY 253
403
404
405static inline u64 btrfs_block_group_used(struct btrfs_block_group_item *bi)
406{
407 return le64_to_cpu(bi->used);
408}
409
410static inline void btrfs_set_block_group_used(struct
411 btrfs_block_group_item *bi,
412 u64 val)
413{
414 bi->used = cpu_to_le64(val);
415}
Chris Mason1e1d2702007-03-15 19:03:33 -0400416
417static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i)
418{
419 return le64_to_cpu(i->generation);
420}
421
422static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i,
423 u64 val)
424{
425 i->generation = cpu_to_le64(val);
426}
427
428static inline u64 btrfs_inode_size(struct btrfs_inode_item *i)
429{
430 return le64_to_cpu(i->size);
431}
432
433static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val)
434{
435 i->size = cpu_to_le64(val);
436}
437
438static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i)
439{
440 return le64_to_cpu(i->nblocks);
441}
442
443static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val)
444{
445 i->nblocks = cpu_to_le64(val);
446}
447
Chris Mason31f3c992007-04-30 15:25:45 -0400448static inline u64 btrfs_inode_block_group(struct btrfs_inode_item *i)
449{
450 return le64_to_cpu(i->block_group);
451}
452
453static inline void btrfs_set_inode_block_group(struct btrfs_inode_item *i,
454 u64 val)
455{
456 i->block_group = cpu_to_le64(val);
457}
458
Chris Mason1e1d2702007-03-15 19:03:33 -0400459static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i)
460{
461 return le32_to_cpu(i->nlink);
462}
463
464static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val)
465{
466 i->nlink = cpu_to_le32(val);
467}
468
469static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i)
470{
471 return le32_to_cpu(i->uid);
472}
473
474static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val)
475{
476 i->uid = cpu_to_le32(val);
477}
478
479static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i)
480{
481 return le32_to_cpu(i->gid);
482}
483
484static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val)
485{
486 i->gid = cpu_to_le32(val);
487}
488
489static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i)
490{
491 return le32_to_cpu(i->mode);
492}
493
494static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val)
495{
496 i->mode = cpu_to_le32(val);
497}
498
499static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i)
500{
501 return le32_to_cpu(i->rdev);
502}
503
504static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val)
505{
506 i->rdev = cpu_to_le32(val);
507}
508
509static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i)
510{
511 return le16_to_cpu(i->flags);
512}
513
514static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val)
515{
516 i->flags = cpu_to_le16(val);
517}
518
519static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i)
520{
521 return le16_to_cpu(i->compat_flags);
522}
523
524static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i,
525 u16 val)
526{
527 i->compat_flags = cpu_to_le16(val);
528}
529
Chris Masonf254e522007-03-29 15:15:27 -0400530static inline u64 btrfs_timespec_sec(struct btrfs_inode_timespec *ts)
Chris Masone20d96d2007-03-22 12:13:20 -0400531{
Chris Masonf254e522007-03-29 15:15:27 -0400532 return le64_to_cpu(ts->sec);
Chris Masone20d96d2007-03-22 12:13:20 -0400533}
534
535static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts,
Chris Masonf254e522007-03-29 15:15:27 -0400536 u64 val)
Chris Masone20d96d2007-03-22 12:13:20 -0400537{
Chris Masonf254e522007-03-29 15:15:27 -0400538 ts->sec = cpu_to_le64(val);
Chris Masone20d96d2007-03-22 12:13:20 -0400539}
540
541static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts)
542{
543 return le32_to_cpu(ts->nsec);
544}
545
546static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts,
547 u32 val)
548{
549 ts->nsec = cpu_to_le32(val);
550}
551
Chris Mason234b63a2007-03-13 10:46:10 -0400552static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400553{
554 return le32_to_cpu(ei->refs);
555}
556
Chris Mason234b63a2007-03-13 10:46:10 -0400557static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400558{
559 ei->refs = cpu_to_le32(val);
560}
561
Chris Mason4d775672007-04-20 20:23:12 -0400562static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
563{
564 return le64_to_cpu(ei->owner);
565}
566
567static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
568{
569 ei->owner = cpu_to_le64(val);
570}
571
Chris Mason234b63a2007-03-13 10:46:10 -0400572static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400573{
Chris Mason123abc82007-03-14 14:14:43 -0400574 return le64_to_cpu(n->ptrs[nr].blockptr);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400575}
576
Chris Mason4d775672007-04-20 20:23:12 -0400577
Chris Mason234b63a2007-03-13 10:46:10 -0400578static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
579 u64 val)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400580{
Chris Mason123abc82007-03-14 14:14:43 -0400581 n->ptrs[nr].blockptr = cpu_to_le64(val);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400582}
583
Chris Mason123abc82007-03-14 14:14:43 -0400584static inline u32 btrfs_item_offset(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400585{
Chris Mason123abc82007-03-14 14:14:43 -0400586 return le32_to_cpu(item->offset);
Chris Mason0783fcf2007-03-12 20:12:07 -0400587}
588
Chris Mason123abc82007-03-14 14:14:43 -0400589static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
Chris Mason0783fcf2007-03-12 20:12:07 -0400590{
Chris Mason123abc82007-03-14 14:14:43 -0400591 item->offset = cpu_to_le32(val);
Chris Mason0783fcf2007-03-12 20:12:07 -0400592}
593
Chris Mason123abc82007-03-14 14:14:43 -0400594static inline u32 btrfs_item_end(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400595{
Chris Mason123abc82007-03-14 14:14:43 -0400596 return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
Chris Mason0783fcf2007-03-12 20:12:07 -0400597}
598
599static inline u16 btrfs_item_size(struct btrfs_item *item)
600{
601 return le16_to_cpu(item->size);
602}
603
604static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
605{
606 item->size = cpu_to_le16(val);
607}
608
Chris Mason1d4f6402007-03-15 15:18:43 -0400609static inline u16 btrfs_dir_flags(struct btrfs_dir_item *d)
610{
611 return le16_to_cpu(d->flags);
612}
613
614static inline void btrfs_set_dir_flags(struct btrfs_dir_item *d, u16 val)
615{
616 d->flags = cpu_to_le16(val);
617}
618
619static inline u8 btrfs_dir_type(struct btrfs_dir_item *d)
620{
621 return d->type;
622}
623
624static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val)
625{
626 d->type = val;
627}
628
Chris Masona8a2ee02007-03-16 08:46:49 -0400629static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d)
Chris Mason1d4f6402007-03-15 15:18:43 -0400630{
Chris Masona8a2ee02007-03-16 08:46:49 -0400631 return le16_to_cpu(d->name_len);
632}
633
634static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val)
635{
636 d->name_len = cpu_to_le16(val);
Chris Mason1d4f6402007-03-15 15:18:43 -0400637}
638
Chris Masone2fa7222007-03-12 16:22:34 -0400639static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
640 struct btrfs_disk_key *disk)
641{
642 cpu->offset = le64_to_cpu(disk->offset);
643 cpu->flags = le32_to_cpu(disk->flags);
644 cpu->objectid = le64_to_cpu(disk->objectid);
645}
646
647static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
648 struct btrfs_key *cpu)
649{
650 disk->offset = cpu_to_le64(cpu->offset);
651 disk->flags = cpu_to_le32(cpu->flags);
652 disk->objectid = cpu_to_le64(cpu->objectid);
653}
654
Chris Mason62e27492007-03-15 12:56:47 -0400655static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400656{
657 return le64_to_cpu(disk->objectid);
658}
659
Chris Mason62e27492007-03-15 12:56:47 -0400660static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk,
661 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400662{
663 disk->objectid = cpu_to_le64(val);
664}
665
Chris Mason62e27492007-03-15 12:56:47 -0400666static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400667{
668 return le64_to_cpu(disk->offset);
669}
670
Chris Mason62e27492007-03-15 12:56:47 -0400671static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk,
672 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400673{
674 disk->offset = cpu_to_le64(val);
675}
676
Chris Mason62e27492007-03-15 12:56:47 -0400677static inline u32 btrfs_disk_key_flags(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400678{
679 return le32_to_cpu(disk->flags);
680}
681
Chris Mason62e27492007-03-15 12:56:47 -0400682static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key *disk,
683 u32 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400684{
685 disk->flags = cpu_to_le32(val);
686}
687
Chris Masona429e512007-04-18 16:15:28 -0400688static inline u32 btrfs_disk_key_type(struct btrfs_disk_key *key)
689{
690 return le32_to_cpu(key->flags) >> BTRFS_KEY_TYPE_SHIFT;
691}
692
693static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key,
694 u32 val)
695{
696 u32 flags = btrfs_disk_key_flags(key);
697 BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
698 val = val << BTRFS_KEY_TYPE_SHIFT;
699 flags = (flags & ~BTRFS_KEY_TYPE_MASK) | val;
700 btrfs_set_disk_key_flags(key, flags);
701}
702
703static inline u32 btrfs_key_type(struct btrfs_key *key)
704{
705 return key->flags >> BTRFS_KEY_TYPE_SHIFT;
706}
707
708static inline void btrfs_set_key_type(struct btrfs_key *key, u32 val)
709{
710 BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
711 val = val << BTRFS_KEY_TYPE_SHIFT;
712 key->flags = (key->flags & ~(BTRFS_KEY_TYPE_MASK)) | val;
713}
714
Chris Masonbb492bb2007-03-12 12:29:44 -0400715static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400716{
Chris Masonbb492bb2007-03-12 12:29:44 -0400717 return le64_to_cpu(h->blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400718}
719
Chris Masonbb492bb2007-03-12 12:29:44 -0400720static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
Chris Mason7518a232007-03-12 12:01:18 -0400721{
Chris Masonbb492bb2007-03-12 12:29:44 -0400722 h->blocknr = cpu_to_le64(blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400723}
724
Chris Mason7f5c1512007-03-23 15:56:19 -0400725static inline u64 btrfs_header_generation(struct btrfs_header *h)
726{
727 return le64_to_cpu(h->generation);
728}
729
730static inline void btrfs_set_header_generation(struct btrfs_header *h,
731 u64 val)
732{
733 h->generation = cpu_to_le64(val);
734}
735
Chris Mason4d775672007-04-20 20:23:12 -0400736static inline u64 btrfs_header_owner(struct btrfs_header *h)
737{
738 return le64_to_cpu(h->owner);
739}
740
741static inline void btrfs_set_header_owner(struct btrfs_header *h,
742 u64 val)
743{
744 h->owner = cpu_to_le64(val);
745}
746
Chris Masonbb492bb2007-03-12 12:29:44 -0400747static inline u16 btrfs_header_nritems(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400748{
Chris Masonbb492bb2007-03-12 12:29:44 -0400749 return le16_to_cpu(h->nritems);
Chris Mason7518a232007-03-12 12:01:18 -0400750}
751
Chris Masonbb492bb2007-03-12 12:29:44 -0400752static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400753{
Chris Masonbb492bb2007-03-12 12:29:44 -0400754 h->nritems = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400755}
756
Chris Masonbb492bb2007-03-12 12:29:44 -0400757static inline u16 btrfs_header_flags(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400758{
Chris Masonbb492bb2007-03-12 12:29:44 -0400759 return le16_to_cpu(h->flags);
Chris Mason7518a232007-03-12 12:01:18 -0400760}
761
Chris Masonbb492bb2007-03-12 12:29:44 -0400762static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400763{
Chris Masonbb492bb2007-03-12 12:29:44 -0400764 h->flags = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400765}
766
Chris Masonbb492bb2007-03-12 12:29:44 -0400767static inline int btrfs_header_level(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400768{
Chris Mason9a6f11e2007-03-27 09:06:38 -0400769 return h->level;
Chris Mason7518a232007-03-12 12:01:18 -0400770}
771
Chris Masonbb492bb2007-03-12 12:29:44 -0400772static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
Chris Mason7518a232007-03-12 12:01:18 -0400773{
Chris Mason234b63a2007-03-13 10:46:10 -0400774 BUG_ON(level > BTRFS_MAX_LEVEL);
Chris Mason9a6f11e2007-03-27 09:06:38 -0400775 h->level = level;
Chris Mason7518a232007-03-12 12:01:18 -0400776}
777
Chris Mason234b63a2007-03-13 10:46:10 -0400778static inline int btrfs_is_leaf(struct btrfs_node *n)
Chris Mason7518a232007-03-12 12:01:18 -0400779{
780 return (btrfs_header_level(&n->header) == 0);
781}
782
Chris Mason3768f362007-03-13 16:47:54 -0400783static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
784{
785 return le64_to_cpu(item->blocknr);
786}
787
788static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
789{
790 item->blocknr = cpu_to_le64(val);
791}
792
Chris Masond6e4a422007-04-06 15:37:36 -0400793static inline u64 btrfs_root_dirid(struct btrfs_root_item *item)
794{
795 return le64_to_cpu(item->root_dirid);
796}
797
798static inline void btrfs_set_root_dirid(struct btrfs_root_item *item, u64 val)
799{
800 item->root_dirid = cpu_to_le64(val);
801}
802
Chris Mason3768f362007-03-13 16:47:54 -0400803static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
804{
805 return le32_to_cpu(item->refs);
806}
807
808static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
809{
810 item->refs = cpu_to_le32(val);
811}
812
Chris Mason5eda7b52007-06-22 14:16:25 -0400813static inline u32 btrfs_root_flags(struct btrfs_root_item *item)
814{
815 return le32_to_cpu(item->flags);
816}
817
818static inline void btrfs_set_root_flags(struct btrfs_root_item *item, u32 val)
819{
820 item->flags = cpu_to_le32(val);
821}
822
Josef Bacik58176a92007-08-29 15:47:34 -0400823static inline void btrfs_set_root_blocks_used(struct btrfs_root_item *item,
824 u64 val)
825{
826 item->blocks_used = cpu_to_le64(val);
827}
828
829static inline u64 btrfs_root_blocks_used(struct btrfs_root_item *item)
830{
831 return le64_to_cpu(item->blocks_used);
832}
833
834static inline void btrfs_set_root_block_limit(struct btrfs_root_item *item,
835 u64 val)
836{
837 item->block_limit = cpu_to_le64(val);
838}
839
840static inline u64 btrfs_root_block_limit(struct btrfs_root_item *item)
841{
842 return le64_to_cpu(item->block_limit);
843}
844
Chris Mason3768f362007-03-13 16:47:54 -0400845static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
846{
847 return le64_to_cpu(s->blocknr);
848}
849
850static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
851{
852 s->blocknr = cpu_to_le64(val);
853}
854
Chris Mason0f7d52f2007-04-09 10:42:37 -0400855static inline u64 btrfs_super_generation(struct btrfs_super_block *s)
856{
857 return le64_to_cpu(s->generation);
858}
859
860static inline void btrfs_set_super_generation(struct btrfs_super_block *s,
861 u64 val)
862{
863 s->generation = cpu_to_le64(val);
864}
865
Chris Mason3768f362007-03-13 16:47:54 -0400866static inline u64 btrfs_super_root(struct btrfs_super_block *s)
867{
868 return le64_to_cpu(s->root);
869}
870
871static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
872{
873 s->root = cpu_to_le64(val);
874}
875
876static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
877{
878 return le64_to_cpu(s->total_blocks);
879}
880
881static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
882 u64 val)
883{
884 s->total_blocks = cpu_to_le64(val);
885}
886
887static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
888{
889 return le64_to_cpu(s->blocks_used);
890}
891
892static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
893 u64 val)
894{
895 s->blocks_used = cpu_to_le64(val);
896}
897
Chris Mason123abc82007-03-14 14:14:43 -0400898static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
Chris Mason3768f362007-03-13 16:47:54 -0400899{
Chris Mason123abc82007-03-14 14:14:43 -0400900 return le32_to_cpu(s->blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400901}
902
903static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
Chris Mason123abc82007-03-14 14:14:43 -0400904 u32 val)
Chris Mason3768f362007-03-13 16:47:54 -0400905{
Chris Mason123abc82007-03-14 14:14:43 -0400906 s->blocksize = cpu_to_le32(val);
907}
908
Chris Mason2e635a22007-03-21 11:12:56 -0400909static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s)
910{
911 return le64_to_cpu(s->root_dir_objectid);
912}
913
914static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64
915 val)
916{
917 s->root_dir_objectid = cpu_to_le64(val);
918}
919
Chris Mason123abc82007-03-14 14:14:43 -0400920static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
921{
922 return (u8 *)l->items;
Chris Mason3768f362007-03-13 16:47:54 -0400923}
Chris Mason9f5fae22007-03-20 14:38:32 -0400924
Chris Mason236454df2007-04-19 13:37:44 -0400925static inline int btrfs_file_extent_type(struct btrfs_file_extent_item *e)
926{
927 return e->type;
928}
929static inline void btrfs_set_file_extent_type(struct btrfs_file_extent_item *e,
930 u8 val)
931{
932 e->type = val;
933}
934
935static inline char *btrfs_file_extent_inline_start(struct
936 btrfs_file_extent_item *e)
937{
938 return (char *)(&e->disk_blocknr);
939}
940
941static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
942{
943 return (unsigned long)(&((struct
944 btrfs_file_extent_item *)NULL)->disk_blocknr) + datasize;
945}
946
947static inline u32 btrfs_file_extent_inline_len(struct btrfs_item *e)
948{
949 struct btrfs_file_extent_item *fe = NULL;
950 return btrfs_item_size(e) - (unsigned long)(&fe->disk_blocknr);
951}
952
Chris Mason9f5fae22007-03-20 14:38:32 -0400953static inline u64 btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item
954 *e)
955{
956 return le64_to_cpu(e->disk_blocknr);
957}
958
959static inline void btrfs_set_file_extent_disk_blocknr(struct
960 btrfs_file_extent_item
961 *e, u64 val)
962{
963 e->disk_blocknr = cpu_to_le64(val);
964}
965
Chris Mason71951f32007-03-27 09:16:29 -0400966static inline u64 btrfs_file_extent_generation(struct btrfs_file_extent_item *e)
967{
968 return le64_to_cpu(e->generation);
969}
970
971static inline void btrfs_set_file_extent_generation(struct
972 btrfs_file_extent_item *e,
973 u64 val)
974{
975 e->generation = cpu_to_le64(val);
976}
977
Chris Mason9f5fae22007-03-20 14:38:32 -0400978static inline u64 btrfs_file_extent_disk_num_blocks(struct
979 btrfs_file_extent_item *e)
980{
981 return le64_to_cpu(e->disk_num_blocks);
982}
983
984static inline void btrfs_set_file_extent_disk_num_blocks(struct
985 btrfs_file_extent_item
986 *e, u64 val)
987{
988 e->disk_num_blocks = cpu_to_le64(val);
989}
990
991static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e)
992{
993 return le64_to_cpu(e->offset);
994}
995
996static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
997 *e, u64 val)
998{
999 e->offset = cpu_to_le64(val);
1000}
1001
1002static inline u64 btrfs_file_extent_num_blocks(struct btrfs_file_extent_item
1003 *e)
1004{
1005 return le64_to_cpu(e->num_blocks);
1006}
1007
1008static inline void btrfs_set_file_extent_num_blocks(struct
1009 btrfs_file_extent_item *e,
1010 u64 val)
1011{
1012 e->num_blocks = cpu_to_le64(val);
1013}
1014
Chris Masone20d96d2007-03-22 12:13:20 -04001015static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
1016{
1017 return sb->s_fs_info;
1018}
1019
Chris Masond6025572007-03-30 14:27:56 -04001020static inline void btrfs_check_bounds(void *vptr, size_t len,
1021 void *vcontainer, size_t container_len)
1022{
1023 char *ptr = vptr;
1024 char *container = vcontainer;
1025 WARN_ON(ptr < container);
1026 WARN_ON(ptr + len > container + container_len);
1027}
1028
1029static inline void btrfs_memcpy(struct btrfs_root *root,
1030 void *dst_block,
1031 void *dst, const void *src, size_t nr)
1032{
1033 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
1034 memcpy(dst, src, nr);
1035}
1036
1037static inline void btrfs_memmove(struct btrfs_root *root,
1038 void *dst_block,
1039 void *dst, void *src, size_t nr)
1040{
1041 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
1042 memmove(dst, src, nr);
1043}
1044
Josef Bacik58176a92007-08-29 15:47:34 -04001045static inline int btrfs_set_root_name(struct btrfs_root *root,
1046 const char *name, int len)
1047{
1048 /* if we already have a name just free it */
1049 if (root->name)
1050 kfree(root->name);
1051
1052 root->name = kmalloc(len+1, GFP_KERNEL);
1053 if (!root->name)
1054 return -ENOMEM;
1055
1056 memcpy(root->name, name, len);
1057 root->name[len] ='\0';
1058
1059 return 0;
1060}
1061
Chris Mason4beb1b82007-03-14 10:31:29 -04001062/* helper function to cast into the data area of the leaf. */
1063#define btrfs_item_ptr(leaf, slot, type) \
Chris Mason123abc82007-03-14 14:14:43 -04001064 ((type *)(btrfs_leaf_data(leaf) + \
1065 btrfs_item_offset((leaf)->items + (slot))))
Chris Mason4beb1b82007-03-14 10:31:29 -04001066
Chris Mason95e05282007-08-29 09:11:44 -04001067/* mount option defines and helpers */
1068#define BTRFS_MOUNT_SUBVOL 0x000001
1069#define btrfs_clear_opt(o, opt) o &= ~BTRFS_MOUNT_##opt
1070#define btrfs_set_opt(o, opt) o |= BTRFS_MOUNT_##opt
1071#define btrfs_test_opt(sb, opt) (BTRFS_SB(sb)->s_mount_opt & \
1072 BTRFS_MOUNT_##opt)
Chris Masonb18c6682007-04-17 13:26:50 -04001073/* extent-tree.c */
Chris Masone9d0b132007-08-10 14:06:19 -04001074int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1075 struct btrfs_root *root);
Chris Masonccd467d2007-06-28 15:57:36 -04001076int btrfs_copy_pinned(struct btrfs_root *root, struct radix_tree_root *copy);
Chris Mason5276aed2007-06-11 21:33:38 -04001077struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
1078 btrfs_fs_info *info,
1079 u64 blocknr);
Chris Mason31f3c992007-04-30 15:25:45 -04001080struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1081 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -04001082 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -04001083 int data, int owner);
Chris Masonc5739bb2007-04-10 09:27:04 -04001084int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
1085 struct btrfs_root *root);
Chris Masone20d96d2007-03-22 12:13:20 -04001086struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Mason6702ed42007-08-07 16:15:09 -04001087 struct btrfs_root *root, u64 hint,
1088 u64 empty_size);
Chris Mason4d775672007-04-20 20:23:12 -04001089int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1090 struct btrfs_root *root, u64 owner,
Chris Mason6702ed42007-08-07 16:15:09 -04001091 u64 num_blocks, u64 empty_size, u64 search_start,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001092 u64 search_end, struct btrfs_key *ins, int data);
Chris Masone089f052007-03-16 16:20:31 -04001093int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -04001094 struct buffer_head *buf);
Chris Masone089f052007-03-16 16:20:31 -04001095int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
1096 *root, u64 blocknr, u64 num_blocks, int pin);
Chris Masonccd467d2007-06-28 15:57:36 -04001097int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1098 struct btrfs_root *root,
1099 struct radix_tree_root *unpin_radix);
Chris Masonb18c6682007-04-17 13:26:50 -04001100int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1101 struct btrfs_root *root,
1102 u64 blocknr, u64 num_blocks);
Chris Mason9078a3e2007-04-26 16:46:15 -04001103int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1104 struct btrfs_root *root);
1105int btrfs_free_block_groups(struct btrfs_fs_info *info);
1106int btrfs_read_block_groups(struct btrfs_root *root);
Chris Masondee26a92007-03-26 16:00:06 -04001107/* ctree.c */
Chris Mason6702ed42007-08-07 16:15:09 -04001108int btrfs_cow_block(struct btrfs_trans_handle *trans, struct btrfs_root
1109 *root, struct buffer_head *buf, struct buffer_head
1110 *parent, int parent_slot, struct buffer_head
1111 **cow_ret);
Chris Mason6567e832007-04-16 09:22:45 -04001112int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1113 *root, struct btrfs_path *path, u32 data_size);
Chris Masonb18c6682007-04-17 13:26:50 -04001114int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1115 struct btrfs_root *root,
1116 struct btrfs_path *path,
1117 u32 new_size);
Chris Masone089f052007-03-16 16:20:31 -04001118int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1119 *root, struct btrfs_key *key, struct btrfs_path *p, int
1120 ins_len, int cow);
Chris Mason6702ed42007-08-07 16:15:09 -04001121int btrfs_realloc_node(struct btrfs_trans_handle *trans,
1122 struct btrfs_root *root, struct buffer_head *parent,
Chris Masone9d0b132007-08-10 14:06:19 -04001123 int cache_only, u64 *last_ret);
Chris Mason234b63a2007-03-13 10:46:10 -04001124void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
Chris Mason2c90e5d2007-04-02 10:50:19 -04001125struct btrfs_path *btrfs_alloc_path(void);
1126void btrfs_free_path(struct btrfs_path *p);
Chris Mason234b63a2007-03-13 10:46:10 -04001127void btrfs_init_path(struct btrfs_path *p);
Chris Masone089f052007-03-16 16:20:31 -04001128int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1129 struct btrfs_path *path);
1130int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1131 *root, struct btrfs_key *key, void *data, u32 data_size);
1132int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
1133 *root, struct btrfs_path *path, struct btrfs_key
1134 *cpu_key, u32 data_size);
Chris Mason234b63a2007-03-13 10:46:10 -04001135int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Mason123abc82007-03-14 14:14:43 -04001136int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
Chris Masone089f052007-03-16 16:20:31 -04001137int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04001138 *root);
Chris Masondee26a92007-03-26 16:00:06 -04001139/* root-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001140int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1141 struct btrfs_key *key);
1142int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1143 *root, struct btrfs_key *key, struct btrfs_root_item
1144 *item);
1145int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1146 *root, struct btrfs_key *key, struct btrfs_root_item
1147 *item);
1148int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1149 btrfs_root_item *item, struct btrfs_key *key);
Chris Mason5eda7b52007-06-22 14:16:25 -04001150int btrfs_find_dead_roots(struct btrfs_root *root);
Chris Masondee26a92007-03-26 16:00:06 -04001151/* dir-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001152int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001153 *root, const char *name, int name_len, u64 dir,
1154 struct btrfs_key *location, u8 type);
Chris Mason7e381802007-04-19 15:36:27 -04001155struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1156 struct btrfs_root *root,
1157 struct btrfs_path *path, u64 dir,
1158 const char *name, int name_len,
1159 int mod);
1160struct btrfs_dir_item *
1161btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1162 struct btrfs_root *root,
1163 struct btrfs_path *path, u64 dir,
1164 u64 objectid, const char *name, int name_len,
1165 int mod);
1166struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1167 struct btrfs_path *path,
Chris Mason7f5c1512007-03-23 15:56:19 -04001168 const char *name, int name_len);
Chris Mason7e381802007-04-19 15:36:27 -04001169int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1170 struct btrfs_root *root,
1171 struct btrfs_path *path,
1172 struct btrfs_dir_item *di);
Chris Masondee26a92007-03-26 16:00:06 -04001173/* inode-map.c */
Chris Mason9f5fae22007-03-20 14:38:32 -04001174int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1175 struct btrfs_root *fs_root,
1176 u64 dirid, u64 *objectid);
Chris Mason5be6f7f2007-04-05 13:35:25 -04001177int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1178
Chris Masondee26a92007-03-26 16:00:06 -04001179/* inode-item.c */
Chris Mason293ffd52007-03-20 15:57:25 -04001180int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1181 *root, u64 objectid, struct btrfs_inode_item
1182 *inode_item);
1183int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001184 *root, struct btrfs_path *path,
1185 struct btrfs_key *location, int mod);
Chris Masondee26a92007-03-26 16:00:06 -04001186
1187/* file-item.c */
Chris Masonb18c6682007-04-17 13:26:50 -04001188int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Chris Masondee26a92007-03-26 16:00:06 -04001189 struct btrfs_root *root,
Chris Masonb18c6682007-04-17 13:26:50 -04001190 u64 objectid, u64 pos, u64 offset,
Chris Mason3a686372007-05-24 13:35:57 -04001191 u64 disk_num_blocks,
Chris Masonb18c6682007-04-17 13:26:50 -04001192 u64 num_blocks);
Chris Masondee26a92007-03-26 16:00:06 -04001193int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
1194 struct btrfs_root *root,
1195 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -04001196 u64 blocknr, int mod);
Chris Masonf254e522007-03-29 15:15:27 -04001197int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
1198 struct btrfs_root *root,
1199 u64 objectid, u64 offset,
1200 char *data, size_t len);
Chris Masonb18c6682007-04-17 13:26:50 -04001201struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
1202 struct btrfs_root *root,
1203 struct btrfs_path *path,
1204 u64 objectid, u64 offset,
1205 int cow);
Chris Mason1de037a2007-05-29 15:17:08 -04001206int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
1207 struct btrfs_root *root, struct btrfs_path *path,
1208 u64 isize);
Chris Mason39279cc2007-06-12 06:35:45 -04001209/* inode.c */
Chris Mason9ebefb182007-06-15 13:50:00 -04001210int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page);
1211int btrfs_readpage(struct file *file, struct page *page);
Chris Mason39279cc2007-06-12 06:35:45 -04001212void btrfs_delete_inode(struct inode *inode);
1213void btrfs_read_locked_inode(struct inode *inode);
1214int btrfs_write_inode(struct inode *inode, int wait);
1215void btrfs_dirty_inode(struct inode *inode);
1216struct inode *btrfs_alloc_inode(struct super_block *sb);
1217void btrfs_destroy_inode(struct inode *inode);
1218int btrfs_init_cachep(void);
1219void btrfs_destroy_cachep(void);
1220int btrfs_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
1221 unsigned long arg);
1222long btrfs_compat_ioctl(struct file *file, unsigned int cmd,
1223 unsigned long arg);
1224struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1225 struct btrfs_root *root);
1226int btrfs_commit_write(struct file *file, struct page *page,
1227 unsigned from, unsigned to);
1228int btrfs_get_block(struct inode *inode, sector_t iblock,
1229 struct buffer_head *result, int create);
Chris Masona52d9a82007-08-27 16:49:44 -04001230struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
1231 size_t page_offset, u64 start, u64 end,
1232 int create);
1233int btrfs_update_inode(struct btrfs_trans_handle *trans,
1234 struct btrfs_root *root,
1235 struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001236/* file.c */
Chris Masona52d9a82007-08-27 16:49:44 -04001237int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end);
Chris Mason39279cc2007-06-12 06:35:45 -04001238extern struct file_operations btrfs_file_operations;
1239int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1240 struct btrfs_root *root, struct inode *inode,
1241 u64 start, u64 end, u64 *hint_block);
Chris Mason6702ed42007-08-07 16:15:09 -04001242/* tree-defrag.c */
1243int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
1244 struct btrfs_root *root, int cache_only);
Josef Bacik58176a92007-08-29 15:47:34 -04001245
1246/* sysfs.c */
1247int btrfs_init_sysfs(void);
1248void btrfs_exit_sysfs(void);
1249int btrfs_sysfs_add_super(struct btrfs_fs_info *fs);
1250int btrfs_sysfs_add_root(struct btrfs_root *root);
1251void btrfs_sysfs_del_root(struct btrfs_root *root);
1252void btrfs_sysfs_del_super(struct btrfs_fs_info *root);
1253
Chris Masoneb60cea2007-02-02 09:18:22 -05001254#endif