blob: c7f5161271d39e050c8d78deeece1f5b960fddb8 [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>
Chris Mason8ef97622007-03-26 10:15:30 -040025#include "bit-radix.h"
Chris Masone20d96d2007-03-22 12:13:20 -040026
Chris Masone089f052007-03-16 16:20:31 -040027struct btrfs_trans_handle;
Chris Mason79154b12007-03-22 15:59:16 -040028struct btrfs_transaction;
Chris Mason35b7e472007-05-02 15:53:43 -040029extern struct kmem_cache *btrfs_trans_handle_cachep;
30extern struct kmem_cache *btrfs_transaction_cachep;
31extern struct kmem_cache *btrfs_bit_radix_cachep;
Chris Mason2c90e5d2007-04-02 10:50:19 -040032extern struct kmem_cache *btrfs_path_cachep;
Chris Masone089f052007-03-16 16:20:31 -040033
Chris Mason3768f362007-03-13 16:47:54 -040034#define BTRFS_MAGIC "_BtRfS_M"
Chris Masoneb60cea2007-02-02 09:18:22 -050035
Chris Mason6407bf62007-03-27 06:33:00 -040036#define BTRFS_ROOT_TREE_OBJECTID 1ULL
Chris Mason0cf6c622007-06-09 09:22:25 -040037#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
38#define BTRFS_FS_TREE_OBJECTID 3ULL
39#define BTRFS_ROOT_TREE_DIR_OBJECTID 4ULL
40#define BTRFS_FIRST_FREE_OBJECTID 5ULL
Chris Mason3768f362007-03-13 16:47:54 -040041
Chris Masonfec577f2007-02-26 10:40:21 -050042/*
Chris Masone20d96d2007-03-22 12:13:20 -040043 * we can actually store much bigger names, but lets not confuse the rest
44 * of linux
45 */
46#define BTRFS_NAME_LEN 255
47
Chris Masonf254e522007-03-29 15:15:27 -040048/* 32 bytes in various csum fields */
49#define BTRFS_CSUM_SIZE 32
Chris Mason509659c2007-05-10 12:36:17 -040050/* four bytes for CRC32 */
51#define BTRFS_CRC32_SIZE 4
Chris Masone06afa82007-05-23 15:44:28 -040052#define BTRFS_EMPTY_DIR_SIZE 6
Chris Masonf254e522007-03-29 15:15:27 -040053
Chris Masonfabb5682007-06-07 22:13:21 -040054#define BTRFS_FT_UNKNOWN 0
55#define BTRFS_FT_REG_FILE 1
56#define BTRFS_FT_DIR 2
57#define BTRFS_FT_CHRDEV 3
58#define BTRFS_FT_BLKDEV 4
59#define BTRFS_FT_FIFO 5
60#define BTRFS_FT_SOCK 6
61#define BTRFS_FT_SYMLINK 7
62#define BTRFS_FT_MAX 8
63
Chris Masone20d96d2007-03-22 12:13:20 -040064/*
Chris Masonfec577f2007-02-26 10:40:21 -050065 * the key defines the order in the tree, and so it also defines (optimal)
66 * block layout. objectid corresonds to the inode number. The flags
67 * tells us things about the object, and is a kind of stream selector.
68 * so for a given inode, keys with flags of 1 might refer to the inode
69 * data, flags of 2 may point to file data in the btree and flags == 3
70 * may point to extents.
71 *
72 * offset is the starting byte offset for this key in the stream.
Chris Masone2fa7222007-03-12 16:22:34 -040073 *
74 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
75 * in cpu native order. Otherwise they are identical and their sizes
76 * should be the same (ie both packed)
Chris Masonfec577f2007-02-26 10:40:21 -050077 */
Chris Masone2fa7222007-03-12 16:22:34 -040078struct btrfs_disk_key {
79 __le64 objectid;
Chris Masonf254e522007-03-29 15:15:27 -040080 __le32 flags;
Chris Mason70b2bef2007-04-17 15:39:32 -040081 __le64 offset;
Chris Masone2fa7222007-03-12 16:22:34 -040082} __attribute__ ((__packed__));
83
84struct btrfs_key {
Chris Masoneb60cea2007-02-02 09:18:22 -050085 u64 objectid;
Chris Masonf254e522007-03-29 15:15:27 -040086 u32 flags;
Chris Mason70b2bef2007-04-17 15:39:32 -040087 u64 offset;
Chris Masoneb60cea2007-02-02 09:18:22 -050088} __attribute__ ((__packed__));
89
Chris Masonfec577f2007-02-26 10:40:21 -050090/*
91 * every tree block (leaf or node) starts with this header.
92 */
Chris Masonbb492bb2007-03-12 12:29:44 -040093struct btrfs_header {
Chris Masonf254e522007-03-29 15:15:27 -040094 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason3768f362007-03-13 16:47:54 -040095 u8 fsid[16]; /* FS specific uuid */
Chris Masonbb492bb2007-03-12 12:29:44 -040096 __le64 blocknr; /* which block this node is supposed to live in */
Chris Mason7f5c1512007-03-23 15:56:19 -040097 __le64 generation;
Chris Mason4d775672007-04-20 20:23:12 -040098 __le64 owner;
Chris Masonbb492bb2007-03-12 12:29:44 -040099 __le16 nritems;
100 __le16 flags;
Chris Mason9a6f11e2007-03-27 09:06:38 -0400101 u8 level;
Chris Masoneb60cea2007-02-02 09:18:22 -0500102} __attribute__ ((__packed__));
103
Chris Mason234b63a2007-03-13 10:46:10 -0400104#define BTRFS_MAX_LEVEL 8
Chris Mason123abc82007-03-14 14:14:43 -0400105#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \
106 sizeof(struct btrfs_header)) / \
107 (sizeof(struct btrfs_disk_key) + sizeof(u64)))
108#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
109#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize))
Chris Mason236454df2007-04-19 13:37:44 -0400110#define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
111 sizeof(struct btrfs_item) - \
112 sizeof(struct btrfs_file_extent_item))
Chris Masoneb60cea2007-02-02 09:18:22 -0500113
Chris Masone20d96d2007-03-22 12:13:20 -0400114struct buffer_head;
Chris Masonfec577f2007-02-26 10:40:21 -0500115/*
Chris Masonfec577f2007-02-26 10:40:21 -0500116 * the super block basically lists the main trees of the FS
117 * it currently lacks any block count etc etc
118 */
Chris Mason234b63a2007-03-13 10:46:10 -0400119struct btrfs_super_block {
Chris Masonf254e522007-03-29 15:15:27 -0400120 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason87cbda52007-03-28 19:44:27 -0400121 /* the first 3 fields must match struct btrfs_header */
Chris Mason3768f362007-03-13 16:47:54 -0400122 u8 fsid[16]; /* FS specific uuid */
123 __le64 blocknr; /* this block number */
Chris Mason3768f362007-03-13 16:47:54 -0400124 __le64 magic;
Chris Mason3768f362007-03-13 16:47:54 -0400125 __le64 generation;
126 __le64 root;
127 __le64 total_blocks;
128 __le64 blocks_used;
Chris Mason2e635a22007-03-21 11:12:56 -0400129 __le64 root_dir_objectid;
Chris Mason5eda7b52007-06-22 14:16:25 -0400130 __le32 blocksize;
Chris Masoncfaa7292007-02-21 17:04:57 -0500131} __attribute__ ((__packed__));
132
Chris Masonfec577f2007-02-26 10:40:21 -0500133/*
Chris Mason62e27492007-03-15 12:56:47 -0400134 * A leaf is full of items. offset and size tell us where to find
Chris Masonfec577f2007-02-26 10:40:21 -0500135 * the item in the leaf (relative to the start of the data area)
136 */
Chris Mason0783fcf2007-03-12 20:12:07 -0400137struct btrfs_item {
Chris Masone2fa7222007-03-12 16:22:34 -0400138 struct btrfs_disk_key key;
Chris Mason123abc82007-03-14 14:14:43 -0400139 __le32 offset;
Chris Mason0783fcf2007-03-12 20:12:07 -0400140 __le16 size;
Chris Masoneb60cea2007-02-02 09:18:22 -0500141} __attribute__ ((__packed__));
142
Chris Masonfec577f2007-02-26 10:40:21 -0500143/*
144 * leaves have an item area and a data area:
145 * [item0, item1....itemN] [free space] [dataN...data1, data0]
146 *
147 * The data is separate from the items to get the keys closer together
148 * during searches.
149 */
Chris Mason234b63a2007-03-13 10:46:10 -0400150struct btrfs_leaf {
Chris Masonbb492bb2007-03-12 12:29:44 -0400151 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400152 struct btrfs_item items[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500153} __attribute__ ((__packed__));
154
Chris Masonfec577f2007-02-26 10:40:21 -0500155/*
156 * all non-leaf blocks are nodes, they hold only keys and pointers to
157 * other blocks
158 */
Chris Mason123abc82007-03-14 14:14:43 -0400159struct btrfs_key_ptr {
160 struct btrfs_disk_key key;
161 __le64 blockptr;
162} __attribute__ ((__packed__));
163
Chris Mason234b63a2007-03-13 10:46:10 -0400164struct btrfs_node {
Chris Masonbb492bb2007-03-12 12:29:44 -0400165 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400166 struct btrfs_key_ptr ptrs[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500167} __attribute__ ((__packed__));
168
Chris Masonfec577f2007-02-26 10:40:21 -0500169/*
Chris Mason234b63a2007-03-13 10:46:10 -0400170 * btrfs_paths remember the path taken from the root down to the leaf.
171 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
Chris Masonfec577f2007-02-26 10:40:21 -0500172 * to any other levels that are present.
173 *
174 * The slots array records the index of the item or block pointer
175 * used while walking the tree.
176 */
Chris Mason234b63a2007-03-13 10:46:10 -0400177struct btrfs_path {
Chris Masone20d96d2007-03-22 12:13:20 -0400178 struct buffer_head *nodes[BTRFS_MAX_LEVEL];
Chris Mason234b63a2007-03-13 10:46:10 -0400179 int slots[BTRFS_MAX_LEVEL];
Chris Mason3c69fae2007-08-07 15:52:22 -0400180 int reada;
Chris Mason6702ed42007-08-07 16:15:09 -0400181 int lowest_level;
Chris Masoneb60cea2007-02-02 09:18:22 -0500182};
Chris Mason5de08d72007-02-24 06:24:44 -0500183
Chris Mason62e27492007-03-15 12:56:47 -0400184/*
185 * items in the extent btree are used to record the objectid of the
186 * owner of the block and the number of references
187 */
188struct btrfs_extent_item {
189 __le32 refs;
Chris Mason4d775672007-04-20 20:23:12 -0400190 __le64 owner;
Chris Mason62e27492007-03-15 12:56:47 -0400191} __attribute__ ((__packed__));
192
Chris Mason1e1d2702007-03-15 19:03:33 -0400193struct btrfs_inode_timespec {
Chris Masonf254e522007-03-29 15:15:27 -0400194 __le64 sec;
Chris Mason1e1d2702007-03-15 19:03:33 -0400195 __le32 nsec;
196} __attribute__ ((__packed__));
197
198/*
199 * there is no padding here on purpose. If you want to extent the inode,
200 * make a new item type
201 */
202struct btrfs_inode_item {
203 __le64 generation;
204 __le64 size;
205 __le64 nblocks;
Chris Mason31f3c992007-04-30 15:25:45 -0400206 __le64 block_group;
Chris Mason1e1d2702007-03-15 19:03:33 -0400207 __le32 nlink;
208 __le32 uid;
209 __le32 gid;
210 __le32 mode;
211 __le32 rdev;
212 __le16 flags;
213 __le16 compat_flags;
214 struct btrfs_inode_timespec atime;
215 struct btrfs_inode_timespec ctime;
216 struct btrfs_inode_timespec mtime;
217 struct btrfs_inode_timespec otime;
218} __attribute__ ((__packed__));
219
Chris Mason62e27492007-03-15 12:56:47 -0400220struct btrfs_dir_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400221 struct btrfs_disk_key location;
Chris Mason62e27492007-03-15 12:56:47 -0400222 __le16 flags;
Chris Masona8a2ee02007-03-16 08:46:49 -0400223 __le16 name_len;
Chris Mason62e27492007-03-15 12:56:47 -0400224 u8 type;
225} __attribute__ ((__packed__));
226
227struct btrfs_root_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400228 struct btrfs_inode_item inode;
229 __le64 root_dirid;
Chris Mason62e27492007-03-15 12:56:47 -0400230 __le64 blocknr;
Chris Mason62e27492007-03-15 12:56:47 -0400231 __le64 block_limit;
232 __le64 blocks_used;
Chris Mason5eda7b52007-06-22 14:16:25 -0400233 __le32 flags;
Chris Mason62e27492007-03-15 12:56:47 -0400234 __le32 refs;
Chris Mason5eda7b52007-06-22 14:16:25 -0400235 struct btrfs_disk_key drop_progress;
236 u8 drop_level;
Chris Mason9f5fae22007-03-20 14:38:32 -0400237} __attribute__ ((__packed__));
238
Chris Mason236454df2007-04-19 13:37:44 -0400239#define BTRFS_FILE_EXTENT_REG 0
240#define BTRFS_FILE_EXTENT_INLINE 1
241
Chris Mason9f5fae22007-03-20 14:38:32 -0400242struct btrfs_file_extent_item {
Chris Mason71951f32007-03-27 09:16:29 -0400243 __le64 generation;
Chris Mason236454df2007-04-19 13:37:44 -0400244 u8 type;
Chris Mason9f5fae22007-03-20 14:38:32 -0400245 /*
246 * disk space consumed by the extent, checksum blocks are included
247 * in these numbers
248 */
249 __le64 disk_blocknr;
250 __le64 disk_num_blocks;
251 /*
Chris Masondee26a92007-03-26 16:00:06 -0400252 * the logical offset in file blocks (no csums)
Chris Mason9f5fae22007-03-20 14:38:32 -0400253 * this extent record is for. This allows a file extent to point
254 * into the middle of an existing extent on disk, sharing it
255 * between two snapshots (useful if some bytes in the middle of the
256 * extent have changed
257 */
258 __le64 offset;
259 /*
260 * the logical number of file blocks (no csums included)
261 */
262 __le64 num_blocks;
263} __attribute__ ((__packed__));
264
Chris Masonf254e522007-03-29 15:15:27 -0400265struct btrfs_csum_item {
Chris Mason509659c2007-05-10 12:36:17 -0400266 u8 csum;
Chris Masonf254e522007-03-29 15:15:27 -0400267} __attribute__ ((__packed__));
268
Chris Mason9078a3e2007-04-26 16:46:15 -0400269/* tag for the radix tree of block groups in ram */
270#define BTRFS_BLOCK_GROUP_DIRTY 0
Chris Mason31f3c992007-04-30 15:25:45 -0400271#define BTRFS_BLOCK_GROUP_AVAIL 1
Chris Mason9078a3e2007-04-26 16:46:15 -0400272#define BTRFS_BLOCK_GROUP_SIZE (256 * 1024 * 1024)
Chris Mason1e2677e2007-05-29 16:52:18 -0400273
274
275#define BTRFS_BLOCK_GROUP_DATA 1
Chris Mason9078a3e2007-04-26 16:46:15 -0400276struct btrfs_block_group_item {
277 __le64 used;
Chris Mason1e2677e2007-05-29 16:52:18 -0400278 u8 flags;
Chris Mason9078a3e2007-04-26 16:46:15 -0400279} __attribute__ ((__packed__));
280
281struct btrfs_block_group_cache {
282 struct btrfs_key key;
283 struct btrfs_block_group_item item;
Chris Mason3e1ad542007-05-07 20:03:49 -0400284 struct radix_tree_root *radix;
Chris Masoncd1bc462007-04-27 10:08:34 -0400285 u64 first_free;
286 u64 last_alloc;
Chris Masonbe744172007-05-06 10:15:01 -0400287 u64 pinned;
Chris Masone37c9e62007-05-09 20:13:14 -0400288 u64 last_prealloc;
Chris Masonbe744172007-05-06 10:15:01 -0400289 int data;
Chris Masone37c9e62007-05-09 20:13:14 -0400290 int cached;
Chris Mason9078a3e2007-04-26 16:46:15 -0400291};
292
Chris Mason9f5fae22007-03-20 14:38:32 -0400293struct btrfs_fs_info {
Chris Mason9f5fae22007-03-20 14:38:32 -0400294 struct btrfs_root *extent_root;
295 struct btrfs_root *tree_root;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400296 struct radix_tree_root fs_roots_radix;
Chris Mason8ef97622007-03-26 10:15:30 -0400297 struct radix_tree_root pending_del_radix;
Chris Mason9f5fae22007-03-20 14:38:32 -0400298 struct radix_tree_root pinned_radix;
Chris Mason9078a3e2007-04-26 16:46:15 -0400299 struct radix_tree_root block_group_radix;
Chris Masonbe744172007-05-06 10:15:01 -0400300 struct radix_tree_root block_group_data_radix;
Chris Masone37c9e62007-05-09 20:13:14 -0400301 struct radix_tree_root extent_map_radix;
Chris Mason26b80032007-08-08 20:17:12 -0400302 struct radix_tree_root extent_ins_radix;
Chris Mason293ffd52007-03-20 15:57:25 -0400303 u64 generation;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400304 u64 last_trans_committed;
Chris Mason79154b12007-03-22 15:59:16 -0400305 struct btrfs_transaction *running_transaction;
Chris Mason1261ec42007-03-20 20:35:03 -0400306 struct btrfs_super_block *disk_super;
Chris Mason4b52dff2007-06-26 10:06:50 -0400307 struct btrfs_super_block super_copy;
Chris Masone20d96d2007-03-22 12:13:20 -0400308 struct buffer_head *sb_buffer;
309 struct super_block *sb;
Chris Masond98237b2007-03-28 13:57:48 -0400310 struct inode *btree_inode;
Chris Mason79154b12007-03-22 15:59:16 -0400311 struct mutex trans_mutex;
Chris Masond561c022007-03-23 19:47:49 -0400312 struct mutex fs_mutex;
Chris Mason8fd17792007-04-19 21:01:03 -0400313 struct list_head trans_list;
Chris Masonfacda1e2007-06-08 18:11:48 -0400314 struct list_head dead_roots;
Chris Mason08607c12007-06-08 15:33:54 -0400315 struct delayed_work trans_work;
Chris Masone66f7092007-04-20 13:16:02 -0400316 int do_barriers;
Chris Masonfacda1e2007-06-08 18:11:48 -0400317 int closing;
Chris Mason62e27492007-03-15 12:56:47 -0400318};
319
320/*
321 * in ram representation of the tree. extent_root is used for all allocations
Chris Masonf2458e12007-04-25 15:52:25 -0400322 * and for the extent tree extent_root root.
Chris Mason62e27492007-03-15 12:56:47 -0400323 */
324struct btrfs_root {
Chris Masone20d96d2007-03-22 12:13:20 -0400325 struct buffer_head *node;
326 struct buffer_head *commit_root;
Chris Mason62e27492007-03-15 12:56:47 -0400327 struct btrfs_root_item root_item;
328 struct btrfs_key root_key;
Chris Mason9f5fae22007-03-20 14:38:32 -0400329 struct btrfs_fs_info *fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400330 struct inode *inode;
331 u64 objectid;
332 u64 last_trans;
Chris Mason62e27492007-03-15 12:56:47 -0400333 u32 blocksize;
Chris Mason9f5fae22007-03-20 14:38:32 -0400334 u32 type;
Chris Mason1b05da22007-04-10 12:13:09 -0400335 u64 highest_inode;
336 u64 last_inode_alloc;
Chris Mason9f3a7422007-08-07 15:52:19 -0400337 int ref_cows;
Chris Mason6702ed42007-08-07 16:15:09 -0400338 struct btrfs_key defrag_progress;
339 int defrag_running;
340 int defrag_level;
Chris Mason62e27492007-03-15 12:56:47 -0400341};
342
Chris Mason62e27492007-03-15 12:56:47 -0400343/* the lower bits in the key flags defines the item type */
344#define BTRFS_KEY_TYPE_MAX 256
Chris Masona429e512007-04-18 16:15:28 -0400345#define BTRFS_KEY_TYPE_SHIFT 24
346#define BTRFS_KEY_TYPE_MASK (((u32)BTRFS_KEY_TYPE_MAX - 1) << \
347 BTRFS_KEY_TYPE_SHIFT)
Chris Mason1e1d2702007-03-15 19:03:33 -0400348
349/*
350 * inode items have the data typically returned from stat and store other
351 * info about object characteristics. There is one for every file and dir in
352 * the FS
353 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400354#define BTRFS_INODE_ITEM_KEY 1
355
356/* reserve 2-15 close to the inode for later flexibility */
Chris Mason1e1d2702007-03-15 19:03:33 -0400357
358/*
359 * dir items are the name -> inode pointers in a directory. There is one
360 * for every name in a directory.
361 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400362#define BTRFS_DIR_ITEM_KEY 16
363#define BTRFS_DIR_INDEX_KEY 17
Chris Mason1e1d2702007-03-15 19:03:33 -0400364/*
Chris Mason9078a3e2007-04-26 16:46:15 -0400365 * extent data is for file data
Chris Mason1e1d2702007-03-15 19:03:33 -0400366 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400367#define BTRFS_EXTENT_DATA_KEY 18
Chris Mason1e1d2702007-03-15 19:03:33 -0400368/*
Chris Masonf254e522007-03-29 15:15:27 -0400369 * csum items have the checksums for data in the extents
370 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400371#define BTRFS_CSUM_ITEM_KEY 19
372
373/* reserve 20-31 for other file stuff */
Chris Masonf254e522007-03-29 15:15:27 -0400374
375/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400376 * root items point to tree roots. There are typically in the root
377 * tree used by the super block to find all the other trees
378 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400379#define BTRFS_ROOT_ITEM_KEY 32
Chris Mason1e1d2702007-03-15 19:03:33 -0400380/*
381 * extent items are in the extent map tree. These record which blocks
382 * are used, and how many references there are to each block
383 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400384#define BTRFS_EXTENT_ITEM_KEY 33
385
386/*
387 * block groups give us hints into the extent allocation trees. Which
388 * blocks are free etc etc
389 */
390#define BTRFS_BLOCK_GROUP_ITEM_KEY 34
Chris Mason9f5fae22007-03-20 14:38:32 -0400391
392/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400393 * string items are for debugging. They just store a short string of
394 * data in the FS
395 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400396#define BTRFS_STRING_ITEM_KEY 253
397
398
399static inline u64 btrfs_block_group_used(struct btrfs_block_group_item *bi)
400{
401 return le64_to_cpu(bi->used);
402}
403
404static inline void btrfs_set_block_group_used(struct
405 btrfs_block_group_item *bi,
406 u64 val)
407{
408 bi->used = cpu_to_le64(val);
409}
Chris Mason1e1d2702007-03-15 19:03:33 -0400410
411static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i)
412{
413 return le64_to_cpu(i->generation);
414}
415
416static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i,
417 u64 val)
418{
419 i->generation = cpu_to_le64(val);
420}
421
422static inline u64 btrfs_inode_size(struct btrfs_inode_item *i)
423{
424 return le64_to_cpu(i->size);
425}
426
427static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val)
428{
429 i->size = cpu_to_le64(val);
430}
431
432static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i)
433{
434 return le64_to_cpu(i->nblocks);
435}
436
437static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val)
438{
439 i->nblocks = cpu_to_le64(val);
440}
441
Chris Mason31f3c992007-04-30 15:25:45 -0400442static inline u64 btrfs_inode_block_group(struct btrfs_inode_item *i)
443{
444 return le64_to_cpu(i->block_group);
445}
446
447static inline void btrfs_set_inode_block_group(struct btrfs_inode_item *i,
448 u64 val)
449{
450 i->block_group = cpu_to_le64(val);
451}
452
Chris Mason1e1d2702007-03-15 19:03:33 -0400453static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i)
454{
455 return le32_to_cpu(i->nlink);
456}
457
458static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val)
459{
460 i->nlink = cpu_to_le32(val);
461}
462
463static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i)
464{
465 return le32_to_cpu(i->uid);
466}
467
468static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val)
469{
470 i->uid = cpu_to_le32(val);
471}
472
473static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i)
474{
475 return le32_to_cpu(i->gid);
476}
477
478static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val)
479{
480 i->gid = cpu_to_le32(val);
481}
482
483static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i)
484{
485 return le32_to_cpu(i->mode);
486}
487
488static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val)
489{
490 i->mode = cpu_to_le32(val);
491}
492
493static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i)
494{
495 return le32_to_cpu(i->rdev);
496}
497
498static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val)
499{
500 i->rdev = cpu_to_le32(val);
501}
502
503static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i)
504{
505 return le16_to_cpu(i->flags);
506}
507
508static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val)
509{
510 i->flags = cpu_to_le16(val);
511}
512
513static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i)
514{
515 return le16_to_cpu(i->compat_flags);
516}
517
518static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i,
519 u16 val)
520{
521 i->compat_flags = cpu_to_le16(val);
522}
523
Chris Masonf254e522007-03-29 15:15:27 -0400524static inline u64 btrfs_timespec_sec(struct btrfs_inode_timespec *ts)
Chris Masone20d96d2007-03-22 12:13:20 -0400525{
Chris Masonf254e522007-03-29 15:15:27 -0400526 return le64_to_cpu(ts->sec);
Chris Masone20d96d2007-03-22 12:13:20 -0400527}
528
529static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts,
Chris Masonf254e522007-03-29 15:15:27 -0400530 u64 val)
Chris Masone20d96d2007-03-22 12:13:20 -0400531{
Chris Masonf254e522007-03-29 15:15:27 -0400532 ts->sec = cpu_to_le64(val);
Chris Masone20d96d2007-03-22 12:13:20 -0400533}
534
535static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts)
536{
537 return le32_to_cpu(ts->nsec);
538}
539
540static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts,
541 u32 val)
542{
543 ts->nsec = cpu_to_le32(val);
544}
545
Chris Mason234b63a2007-03-13 10:46:10 -0400546static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400547{
548 return le32_to_cpu(ei->refs);
549}
550
Chris Mason234b63a2007-03-13 10:46:10 -0400551static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val)
Chris Masoncf27e1e2007-03-13 09:49:06 -0400552{
553 ei->refs = cpu_to_le32(val);
554}
555
Chris Mason4d775672007-04-20 20:23:12 -0400556static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei)
557{
558 return le64_to_cpu(ei->owner);
559}
560
561static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val)
562{
563 ei->owner = cpu_to_le64(val);
564}
565
Chris Mason234b63a2007-03-13 10:46:10 -0400566static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400567{
Chris Mason123abc82007-03-14 14:14:43 -0400568 return le64_to_cpu(n->ptrs[nr].blockptr);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400569}
570
Chris Mason4d775672007-04-20 20:23:12 -0400571
Chris Mason234b63a2007-03-13 10:46:10 -0400572static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr,
573 u64 val)
Chris Mason1d4f8a02007-03-13 09:28:32 -0400574{
Chris Mason123abc82007-03-14 14:14:43 -0400575 n->ptrs[nr].blockptr = cpu_to_le64(val);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400576}
577
Chris Mason123abc82007-03-14 14:14:43 -0400578static inline u32 btrfs_item_offset(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400579{
Chris Mason123abc82007-03-14 14:14:43 -0400580 return le32_to_cpu(item->offset);
Chris Mason0783fcf2007-03-12 20:12:07 -0400581}
582
Chris Mason123abc82007-03-14 14:14:43 -0400583static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val)
Chris Mason0783fcf2007-03-12 20:12:07 -0400584{
Chris Mason123abc82007-03-14 14:14:43 -0400585 item->offset = cpu_to_le32(val);
Chris Mason0783fcf2007-03-12 20:12:07 -0400586}
587
Chris Mason123abc82007-03-14 14:14:43 -0400588static inline u32 btrfs_item_end(struct btrfs_item *item)
Chris Mason0783fcf2007-03-12 20:12:07 -0400589{
Chris Mason123abc82007-03-14 14:14:43 -0400590 return le32_to_cpu(item->offset) + le16_to_cpu(item->size);
Chris Mason0783fcf2007-03-12 20:12:07 -0400591}
592
593static inline u16 btrfs_item_size(struct btrfs_item *item)
594{
595 return le16_to_cpu(item->size);
596}
597
598static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val)
599{
600 item->size = cpu_to_le16(val);
601}
602
Chris Mason1d4f6402007-03-15 15:18:43 -0400603static inline u16 btrfs_dir_flags(struct btrfs_dir_item *d)
604{
605 return le16_to_cpu(d->flags);
606}
607
608static inline void btrfs_set_dir_flags(struct btrfs_dir_item *d, u16 val)
609{
610 d->flags = cpu_to_le16(val);
611}
612
613static inline u8 btrfs_dir_type(struct btrfs_dir_item *d)
614{
615 return d->type;
616}
617
618static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val)
619{
620 d->type = val;
621}
622
Chris Masona8a2ee02007-03-16 08:46:49 -0400623static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d)
Chris Mason1d4f6402007-03-15 15:18:43 -0400624{
Chris Masona8a2ee02007-03-16 08:46:49 -0400625 return le16_to_cpu(d->name_len);
626}
627
628static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val)
629{
630 d->name_len = cpu_to_le16(val);
Chris Mason1d4f6402007-03-15 15:18:43 -0400631}
632
Chris Masone2fa7222007-03-12 16:22:34 -0400633static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
634 struct btrfs_disk_key *disk)
635{
636 cpu->offset = le64_to_cpu(disk->offset);
637 cpu->flags = le32_to_cpu(disk->flags);
638 cpu->objectid = le64_to_cpu(disk->objectid);
639}
640
641static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
642 struct btrfs_key *cpu)
643{
644 disk->offset = cpu_to_le64(cpu->offset);
645 disk->flags = cpu_to_le32(cpu->flags);
646 disk->objectid = cpu_to_le64(cpu->objectid);
647}
648
Chris Mason62e27492007-03-15 12:56:47 -0400649static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400650{
651 return le64_to_cpu(disk->objectid);
652}
653
Chris Mason62e27492007-03-15 12:56:47 -0400654static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk,
655 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400656{
657 disk->objectid = cpu_to_le64(val);
658}
659
Chris Mason62e27492007-03-15 12:56:47 -0400660static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400661{
662 return le64_to_cpu(disk->offset);
663}
664
Chris Mason62e27492007-03-15 12:56:47 -0400665static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk,
666 u64 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400667{
668 disk->offset = cpu_to_le64(val);
669}
670
Chris Mason62e27492007-03-15 12:56:47 -0400671static inline u32 btrfs_disk_key_flags(struct btrfs_disk_key *disk)
Chris Masone2fa7222007-03-12 16:22:34 -0400672{
673 return le32_to_cpu(disk->flags);
674}
675
Chris Mason62e27492007-03-15 12:56:47 -0400676static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key *disk,
677 u32 val)
Chris Masone2fa7222007-03-12 16:22:34 -0400678{
679 disk->flags = cpu_to_le32(val);
680}
681
Chris Masona429e512007-04-18 16:15:28 -0400682static inline u32 btrfs_disk_key_type(struct btrfs_disk_key *key)
683{
684 return le32_to_cpu(key->flags) >> BTRFS_KEY_TYPE_SHIFT;
685}
686
687static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key,
688 u32 val)
689{
690 u32 flags = btrfs_disk_key_flags(key);
691 BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
692 val = val << BTRFS_KEY_TYPE_SHIFT;
693 flags = (flags & ~BTRFS_KEY_TYPE_MASK) | val;
694 btrfs_set_disk_key_flags(key, flags);
695}
696
697static inline u32 btrfs_key_type(struct btrfs_key *key)
698{
699 return key->flags >> BTRFS_KEY_TYPE_SHIFT;
700}
701
702static inline void btrfs_set_key_type(struct btrfs_key *key, u32 val)
703{
704 BUG_ON(val >= BTRFS_KEY_TYPE_MAX);
705 val = val << BTRFS_KEY_TYPE_SHIFT;
706 key->flags = (key->flags & ~(BTRFS_KEY_TYPE_MASK)) | val;
707}
708
Chris Masonbb492bb2007-03-12 12:29:44 -0400709static inline u64 btrfs_header_blocknr(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400710{
Chris Masonbb492bb2007-03-12 12:29:44 -0400711 return le64_to_cpu(h->blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400712}
713
Chris Masonbb492bb2007-03-12 12:29:44 -0400714static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr)
Chris Mason7518a232007-03-12 12:01:18 -0400715{
Chris Masonbb492bb2007-03-12 12:29:44 -0400716 h->blocknr = cpu_to_le64(blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400717}
718
Chris Mason7f5c1512007-03-23 15:56:19 -0400719static inline u64 btrfs_header_generation(struct btrfs_header *h)
720{
721 return le64_to_cpu(h->generation);
722}
723
724static inline void btrfs_set_header_generation(struct btrfs_header *h,
725 u64 val)
726{
727 h->generation = cpu_to_le64(val);
728}
729
Chris Mason4d775672007-04-20 20:23:12 -0400730static inline u64 btrfs_header_owner(struct btrfs_header *h)
731{
732 return le64_to_cpu(h->owner);
733}
734
735static inline void btrfs_set_header_owner(struct btrfs_header *h,
736 u64 val)
737{
738 h->owner = cpu_to_le64(val);
739}
740
Chris Masonbb492bb2007-03-12 12:29:44 -0400741static inline u16 btrfs_header_nritems(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400742{
Chris Masonbb492bb2007-03-12 12:29:44 -0400743 return le16_to_cpu(h->nritems);
Chris Mason7518a232007-03-12 12:01:18 -0400744}
745
Chris Masonbb492bb2007-03-12 12:29:44 -0400746static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400747{
Chris Masonbb492bb2007-03-12 12:29:44 -0400748 h->nritems = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400749}
750
Chris Masonbb492bb2007-03-12 12:29:44 -0400751static inline u16 btrfs_header_flags(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400752{
Chris Masonbb492bb2007-03-12 12:29:44 -0400753 return le16_to_cpu(h->flags);
Chris Mason7518a232007-03-12 12:01:18 -0400754}
755
Chris Masonbb492bb2007-03-12 12:29:44 -0400756static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val)
Chris Mason7518a232007-03-12 12:01:18 -0400757{
Chris Masonbb492bb2007-03-12 12:29:44 -0400758 h->flags = cpu_to_le16(val);
Chris Mason7518a232007-03-12 12:01:18 -0400759}
760
Chris Masonbb492bb2007-03-12 12:29:44 -0400761static inline int btrfs_header_level(struct btrfs_header *h)
Chris Mason7518a232007-03-12 12:01:18 -0400762{
Chris Mason9a6f11e2007-03-27 09:06:38 -0400763 return h->level;
Chris Mason7518a232007-03-12 12:01:18 -0400764}
765
Chris Masonbb492bb2007-03-12 12:29:44 -0400766static inline void btrfs_set_header_level(struct btrfs_header *h, int level)
Chris Mason7518a232007-03-12 12:01:18 -0400767{
Chris Mason234b63a2007-03-13 10:46:10 -0400768 BUG_ON(level > BTRFS_MAX_LEVEL);
Chris Mason9a6f11e2007-03-27 09:06:38 -0400769 h->level = level;
Chris Mason7518a232007-03-12 12:01:18 -0400770}
771
Chris Mason234b63a2007-03-13 10:46:10 -0400772static inline int btrfs_is_leaf(struct btrfs_node *n)
Chris Mason7518a232007-03-12 12:01:18 -0400773{
774 return (btrfs_header_level(&n->header) == 0);
775}
776
Chris Mason3768f362007-03-13 16:47:54 -0400777static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item)
778{
779 return le64_to_cpu(item->blocknr);
780}
781
782static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val)
783{
784 item->blocknr = cpu_to_le64(val);
785}
786
Chris Masond6e4a422007-04-06 15:37:36 -0400787static inline u64 btrfs_root_dirid(struct btrfs_root_item *item)
788{
789 return le64_to_cpu(item->root_dirid);
790}
791
792static inline void btrfs_set_root_dirid(struct btrfs_root_item *item, u64 val)
793{
794 item->root_dirid = cpu_to_le64(val);
795}
796
Chris Mason3768f362007-03-13 16:47:54 -0400797static inline u32 btrfs_root_refs(struct btrfs_root_item *item)
798{
799 return le32_to_cpu(item->refs);
800}
801
802static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val)
803{
804 item->refs = cpu_to_le32(val);
805}
806
Chris Mason5eda7b52007-06-22 14:16:25 -0400807static inline u32 btrfs_root_flags(struct btrfs_root_item *item)
808{
809 return le32_to_cpu(item->flags);
810}
811
812static inline void btrfs_set_root_flags(struct btrfs_root_item *item, u32 val)
813{
814 item->flags = cpu_to_le32(val);
815}
816
Chris Mason3768f362007-03-13 16:47:54 -0400817static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s)
818{
819 return le64_to_cpu(s->blocknr);
820}
821
822static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val)
823{
824 s->blocknr = cpu_to_le64(val);
825}
826
Chris Mason0f7d52f2007-04-09 10:42:37 -0400827static inline u64 btrfs_super_generation(struct btrfs_super_block *s)
828{
829 return le64_to_cpu(s->generation);
830}
831
832static inline void btrfs_set_super_generation(struct btrfs_super_block *s,
833 u64 val)
834{
835 s->generation = cpu_to_le64(val);
836}
837
Chris Mason3768f362007-03-13 16:47:54 -0400838static inline u64 btrfs_super_root(struct btrfs_super_block *s)
839{
840 return le64_to_cpu(s->root);
841}
842
843static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val)
844{
845 s->root = cpu_to_le64(val);
846}
847
848static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s)
849{
850 return le64_to_cpu(s->total_blocks);
851}
852
853static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s,
854 u64 val)
855{
856 s->total_blocks = cpu_to_le64(val);
857}
858
859static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s)
860{
861 return le64_to_cpu(s->blocks_used);
862}
863
864static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s,
865 u64 val)
866{
867 s->blocks_used = cpu_to_le64(val);
868}
869
Chris Mason123abc82007-03-14 14:14:43 -0400870static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s)
Chris Mason3768f362007-03-13 16:47:54 -0400871{
Chris Mason123abc82007-03-14 14:14:43 -0400872 return le32_to_cpu(s->blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400873}
874
875static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s,
Chris Mason123abc82007-03-14 14:14:43 -0400876 u32 val)
Chris Mason3768f362007-03-13 16:47:54 -0400877{
Chris Mason123abc82007-03-14 14:14:43 -0400878 s->blocksize = cpu_to_le32(val);
879}
880
Chris Mason2e635a22007-03-21 11:12:56 -0400881static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s)
882{
883 return le64_to_cpu(s->root_dir_objectid);
884}
885
886static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64
887 val)
888{
889 s->root_dir_objectid = cpu_to_le64(val);
890}
891
Chris Mason123abc82007-03-14 14:14:43 -0400892static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l)
893{
894 return (u8 *)l->items;
Chris Mason3768f362007-03-13 16:47:54 -0400895}
Chris Mason9f5fae22007-03-20 14:38:32 -0400896
Chris Mason236454df2007-04-19 13:37:44 -0400897static inline int btrfs_file_extent_type(struct btrfs_file_extent_item *e)
898{
899 return e->type;
900}
901static inline void btrfs_set_file_extent_type(struct btrfs_file_extent_item *e,
902 u8 val)
903{
904 e->type = val;
905}
906
907static inline char *btrfs_file_extent_inline_start(struct
908 btrfs_file_extent_item *e)
909{
910 return (char *)(&e->disk_blocknr);
911}
912
913static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
914{
915 return (unsigned long)(&((struct
916 btrfs_file_extent_item *)NULL)->disk_blocknr) + datasize;
917}
918
919static inline u32 btrfs_file_extent_inline_len(struct btrfs_item *e)
920{
921 struct btrfs_file_extent_item *fe = NULL;
922 return btrfs_item_size(e) - (unsigned long)(&fe->disk_blocknr);
923}
924
Chris Mason9f5fae22007-03-20 14:38:32 -0400925static inline u64 btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item
926 *e)
927{
928 return le64_to_cpu(e->disk_blocknr);
929}
930
931static inline void btrfs_set_file_extent_disk_blocknr(struct
932 btrfs_file_extent_item
933 *e, u64 val)
934{
935 e->disk_blocknr = cpu_to_le64(val);
936}
937
Chris Mason71951f32007-03-27 09:16:29 -0400938static inline u64 btrfs_file_extent_generation(struct btrfs_file_extent_item *e)
939{
940 return le64_to_cpu(e->generation);
941}
942
943static inline void btrfs_set_file_extent_generation(struct
944 btrfs_file_extent_item *e,
945 u64 val)
946{
947 e->generation = cpu_to_le64(val);
948}
949
Chris Mason9f5fae22007-03-20 14:38:32 -0400950static inline u64 btrfs_file_extent_disk_num_blocks(struct
951 btrfs_file_extent_item *e)
952{
953 return le64_to_cpu(e->disk_num_blocks);
954}
955
956static inline void btrfs_set_file_extent_disk_num_blocks(struct
957 btrfs_file_extent_item
958 *e, u64 val)
959{
960 e->disk_num_blocks = cpu_to_le64(val);
961}
962
963static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e)
964{
965 return le64_to_cpu(e->offset);
966}
967
968static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item
969 *e, u64 val)
970{
971 e->offset = cpu_to_le64(val);
972}
973
974static inline u64 btrfs_file_extent_num_blocks(struct btrfs_file_extent_item
975 *e)
976{
977 return le64_to_cpu(e->num_blocks);
978}
979
980static inline void btrfs_set_file_extent_num_blocks(struct
981 btrfs_file_extent_item *e,
982 u64 val)
983{
984 e->num_blocks = cpu_to_le64(val);
985}
986
Chris Masone20d96d2007-03-22 12:13:20 -0400987static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
988{
989 return sb->s_fs_info;
990}
991
Chris Masond6025572007-03-30 14:27:56 -0400992static inline void btrfs_check_bounds(void *vptr, size_t len,
993 void *vcontainer, size_t container_len)
994{
995 char *ptr = vptr;
996 char *container = vcontainer;
997 WARN_ON(ptr < container);
998 WARN_ON(ptr + len > container + container_len);
999}
1000
1001static inline void btrfs_memcpy(struct btrfs_root *root,
1002 void *dst_block,
1003 void *dst, const void *src, size_t nr)
1004{
1005 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
1006 memcpy(dst, src, nr);
1007}
1008
1009static inline void btrfs_memmove(struct btrfs_root *root,
1010 void *dst_block,
1011 void *dst, void *src, size_t nr)
1012{
1013 btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize);
1014 memmove(dst, src, nr);
1015}
1016
Chris Mason4beb1b82007-03-14 10:31:29 -04001017/* helper function to cast into the data area of the leaf. */
1018#define btrfs_item_ptr(leaf, slot, type) \
Chris Mason123abc82007-03-14 14:14:43 -04001019 ((type *)(btrfs_leaf_data(leaf) + \
1020 btrfs_item_offset((leaf)->items + (slot))))
Chris Mason4beb1b82007-03-14 10:31:29 -04001021
Chris Masonb18c6682007-04-17 13:26:50 -04001022/* extent-tree.c */
Chris Masone9d0b132007-08-10 14:06:19 -04001023int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1024 struct btrfs_root *root);
Chris Masonccd467d2007-06-28 15:57:36 -04001025int btrfs_copy_pinned(struct btrfs_root *root, struct radix_tree_root *copy);
Chris Mason5276aed2007-06-11 21:33:38 -04001026struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
1027 btrfs_fs_info *info,
1028 u64 blocknr);
Chris Mason31f3c992007-04-30 15:25:45 -04001029struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1030 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -04001031 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -04001032 int data, int owner);
Chris Masonc5739bb2007-04-10 09:27:04 -04001033int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
1034 struct btrfs_root *root);
Chris Masone20d96d2007-03-22 12:13:20 -04001035struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Mason6702ed42007-08-07 16:15:09 -04001036 struct btrfs_root *root, u64 hint,
1037 u64 empty_size);
Chris Mason4d775672007-04-20 20:23:12 -04001038int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1039 struct btrfs_root *root, u64 owner,
Chris Mason6702ed42007-08-07 16:15:09 -04001040 u64 num_blocks, u64 empty_size, u64 search_start,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001041 u64 search_end, struct btrfs_key *ins, int data);
Chris Masone089f052007-03-16 16:20:31 -04001042int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -04001043 struct buffer_head *buf);
Chris Masone089f052007-03-16 16:20:31 -04001044int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
1045 *root, u64 blocknr, u64 num_blocks, int pin);
Chris Masonccd467d2007-06-28 15:57:36 -04001046int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1047 struct btrfs_root *root,
1048 struct radix_tree_root *unpin_radix);
Chris Masonb18c6682007-04-17 13:26:50 -04001049int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1050 struct btrfs_root *root,
1051 u64 blocknr, u64 num_blocks);
Chris Mason9078a3e2007-04-26 16:46:15 -04001052int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1053 struct btrfs_root *root);
1054int btrfs_free_block_groups(struct btrfs_fs_info *info);
1055int btrfs_read_block_groups(struct btrfs_root *root);
Chris Masondee26a92007-03-26 16:00:06 -04001056/* ctree.c */
Chris Mason6702ed42007-08-07 16:15:09 -04001057int btrfs_cow_block(struct btrfs_trans_handle *trans, struct btrfs_root
1058 *root, struct buffer_head *buf, struct buffer_head
1059 *parent, int parent_slot, struct buffer_head
1060 **cow_ret);
Chris Mason6567e832007-04-16 09:22:45 -04001061int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1062 *root, struct btrfs_path *path, u32 data_size);
Chris Masonb18c6682007-04-17 13:26:50 -04001063int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1064 struct btrfs_root *root,
1065 struct btrfs_path *path,
1066 u32 new_size);
Chris Masone089f052007-03-16 16:20:31 -04001067int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1068 *root, struct btrfs_key *key, struct btrfs_path *p, int
1069 ins_len, int cow);
Chris Mason6702ed42007-08-07 16:15:09 -04001070int btrfs_realloc_node(struct btrfs_trans_handle *trans,
1071 struct btrfs_root *root, struct buffer_head *parent,
Chris Masone9d0b132007-08-10 14:06:19 -04001072 int cache_only, u64 *last_ret);
Chris Mason234b63a2007-03-13 10:46:10 -04001073void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
Chris Mason2c90e5d2007-04-02 10:50:19 -04001074struct btrfs_path *btrfs_alloc_path(void);
1075void btrfs_free_path(struct btrfs_path *p);
Chris Mason234b63a2007-03-13 10:46:10 -04001076void btrfs_init_path(struct btrfs_path *p);
Chris Masone089f052007-03-16 16:20:31 -04001077int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1078 struct btrfs_path *path);
1079int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1080 *root, struct btrfs_key *key, void *data, u32 data_size);
1081int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
1082 *root, struct btrfs_path *path, struct btrfs_key
1083 *cpu_key, u32 data_size);
Chris Mason234b63a2007-03-13 10:46:10 -04001084int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Mason123abc82007-03-14 14:14:43 -04001085int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf);
Chris Masone089f052007-03-16 16:20:31 -04001086int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04001087 *root);
Chris Masondee26a92007-03-26 16:00:06 -04001088/* root-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001089int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1090 struct btrfs_key *key);
1091int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1092 *root, struct btrfs_key *key, struct btrfs_root_item
1093 *item);
1094int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1095 *root, struct btrfs_key *key, struct btrfs_root_item
1096 *item);
1097int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1098 btrfs_root_item *item, struct btrfs_key *key);
Chris Mason5eda7b52007-06-22 14:16:25 -04001099int btrfs_find_dead_roots(struct btrfs_root *root);
Chris Masondee26a92007-03-26 16:00:06 -04001100/* dir-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001101int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001102 *root, const char *name, int name_len, u64 dir,
1103 struct btrfs_key *location, u8 type);
Chris Mason7e381802007-04-19 15:36:27 -04001104struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1105 struct btrfs_root *root,
1106 struct btrfs_path *path, u64 dir,
1107 const char *name, int name_len,
1108 int mod);
1109struct btrfs_dir_item *
1110btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1111 struct btrfs_root *root,
1112 struct btrfs_path *path, u64 dir,
1113 u64 objectid, const char *name, int name_len,
1114 int mod);
1115struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1116 struct btrfs_path *path,
Chris Mason7f5c1512007-03-23 15:56:19 -04001117 const char *name, int name_len);
Chris Mason7e381802007-04-19 15:36:27 -04001118int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1119 struct btrfs_root *root,
1120 struct btrfs_path *path,
1121 struct btrfs_dir_item *di);
Chris Masondee26a92007-03-26 16:00:06 -04001122/* inode-map.c */
Chris Mason9f5fae22007-03-20 14:38:32 -04001123int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1124 struct btrfs_root *fs_root,
1125 u64 dirid, u64 *objectid);
Chris Mason5be6f7f2007-04-05 13:35:25 -04001126int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1127
Chris Masondee26a92007-03-26 16:00:06 -04001128/* inode-item.c */
Chris Mason293ffd52007-03-20 15:57:25 -04001129int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1130 *root, u64 objectid, struct btrfs_inode_item
1131 *inode_item);
1132int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001133 *root, struct btrfs_path *path,
1134 struct btrfs_key *location, int mod);
Chris Masondee26a92007-03-26 16:00:06 -04001135
1136/* file-item.c */
Chris Masonb18c6682007-04-17 13:26:50 -04001137int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Chris Masondee26a92007-03-26 16:00:06 -04001138 struct btrfs_root *root,
Chris Masonb18c6682007-04-17 13:26:50 -04001139 u64 objectid, u64 pos, u64 offset,
Chris Mason3a686372007-05-24 13:35:57 -04001140 u64 disk_num_blocks,
Chris Masonb18c6682007-04-17 13:26:50 -04001141 u64 num_blocks);
Chris Masondee26a92007-03-26 16:00:06 -04001142int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
1143 struct btrfs_root *root,
1144 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -04001145 u64 blocknr, int mod);
Chris Masonf254e522007-03-29 15:15:27 -04001146int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
1147 struct btrfs_root *root,
1148 u64 objectid, u64 offset,
1149 char *data, size_t len);
Chris Masonb18c6682007-04-17 13:26:50 -04001150struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
1151 struct btrfs_root *root,
1152 struct btrfs_path *path,
1153 u64 objectid, u64 offset,
1154 int cow);
Chris Mason1de037a2007-05-29 15:17:08 -04001155int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
1156 struct btrfs_root *root, struct btrfs_path *path,
1157 u64 isize);
Chris Mason39279cc2007-06-12 06:35:45 -04001158/* inode.c */
Chris Mason9ebefb182007-06-15 13:50:00 -04001159int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page);
1160int btrfs_readpage(struct file *file, struct page *page);
Chris Mason39279cc2007-06-12 06:35:45 -04001161void btrfs_delete_inode(struct inode *inode);
1162void btrfs_read_locked_inode(struct inode *inode);
1163int btrfs_write_inode(struct inode *inode, int wait);
1164void btrfs_dirty_inode(struct inode *inode);
1165struct inode *btrfs_alloc_inode(struct super_block *sb);
1166void btrfs_destroy_inode(struct inode *inode);
1167int btrfs_init_cachep(void);
1168void btrfs_destroy_cachep(void);
1169int btrfs_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
1170 unsigned long arg);
1171long btrfs_compat_ioctl(struct file *file, unsigned int cmd,
1172 unsigned long arg);
1173struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1174 struct btrfs_root *root);
1175int btrfs_commit_write(struct file *file, struct page *page,
1176 unsigned from, unsigned to);
1177int btrfs_get_block(struct inode *inode, sector_t iblock,
1178 struct buffer_head *result, int create);
1179/* file.c */
1180extern struct file_operations btrfs_file_operations;
1181int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1182 struct btrfs_root *root, struct inode *inode,
1183 u64 start, u64 end, u64 *hint_block);
Chris Mason6702ed42007-08-07 16:15:09 -04001184/* tree-defrag.c */
1185int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
1186 struct btrfs_root *root, int cache_only);
Chris Masoneb60cea2007-02-02 09:18:22 -05001187#endif