blob: 3e62a1b0a1f715290c3c4f5c7ca322d6585cd309 [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 Masondc17ff82008-01-08 15:46:30 -050019#ifndef __BTRFS_CTREE__
20#define __BTRFS_CTREE__
Chris Masoneb60cea2007-02-02 09:18:22 -050021
Chris Mason6da6aba2007-12-18 16:15:09 -050022#include <linux/version.h>
Chris Mason810191f2007-10-15 16:18:55 -040023#include <linux/mm.h>
24#include <linux/highmem.h>
Chris Masone20d96d2007-03-22 12:13:20 -040025#include <linux/fs.h>
Josef Bacik58176a92007-08-29 15:47:34 -040026#include <linux/completion.h>
Chris Mason04160082008-03-26 10:28:07 -040027#include <linux/backing-dev.h>
Chris Masone6dcd2d2008-07-17 12:53:50 -040028#include <linux/wait.h>
Chris Mason479965d2007-10-15 16:14:27 -040029#include <asm/kmap_types.h>
Chris Mason8ef97622007-03-26 10:15:30 -040030#include "bit-radix.h"
Chris Masond1310b22008-01-24 16:13:08 -050031#include "extent_io.h"
Chris Mason5f39d392007-10-15 16:14:19 -040032#include "extent_map.h"
Chris Mason8b712842008-06-11 16:50:36 -040033#include "async-thread.h"
Chris Masone20d96d2007-03-22 12:13:20 -040034
Chris Masone089f052007-03-16 16:20:31 -040035struct btrfs_trans_handle;
Chris Mason79154b12007-03-22 15:59:16 -040036struct btrfs_transaction;
Chris Mason35b7e472007-05-02 15:53:43 -040037extern struct kmem_cache *btrfs_trans_handle_cachep;
38extern struct kmem_cache *btrfs_transaction_cachep;
39extern struct kmem_cache *btrfs_bit_radix_cachep;
Chris Mason2c90e5d2007-04-02 10:50:19 -040040extern struct kmem_cache *btrfs_path_cachep;
Chris Masone6dcd2d2008-07-17 12:53:50 -040041struct btrfs_ordered_sum;
Chris Masone089f052007-03-16 16:20:31 -040042
Zheng Yan31840ae2008-09-23 13:14:14 -040043#define BTRFS_MAGIC "_B9RfS_M"
Chris Masoneb60cea2007-02-02 09:18:22 -050044
Josef Bacik33268ea2008-07-24 12:16:36 -040045#define BTRFS_ACL_NOT_CACHED ((void *)-1)
46
Chris Mason6dddcbe2008-07-22 11:18:09 -040047#ifdef CONFIG_LOCKDEP
48# define BTRFS_MAX_LEVEL 7
49#else
50# define BTRFS_MAX_LEVEL 8
51#endif
Chris Mason0b86a832008-03-24 15:01:56 -040052
53/* holds pointers to all of the tree roots */
Chris Mason6407bf62007-03-27 06:33:00 -040054#define BTRFS_ROOT_TREE_OBJECTID 1ULL
Chris Mason0b86a832008-03-24 15:01:56 -040055
56/* stores information about which extents are in use, and reference counts */
Chris Mason0cf6c622007-06-09 09:22:25 -040057#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
Chris Mason0b86a832008-03-24 15:01:56 -040058
Chris Mason0b86a832008-03-24 15:01:56 -040059/*
60 * chunk tree stores translations from logical -> physical block numbering
61 * the super block points to the chunk tree
62 */
Chris Masone085def2008-03-24 15:02:07 -040063#define BTRFS_CHUNK_TREE_OBJECTID 3ULL
Chris Mason0b86a832008-03-24 15:01:56 -040064
65/*
66 * stores information about which areas of a given device are in use.
67 * one per device. The tree of tree roots points to the device tree
68 */
Chris Masone085def2008-03-24 15:02:07 -040069#define BTRFS_DEV_TREE_OBJECTID 4ULL
70
71/* one per subvolume, storing files and directories */
72#define BTRFS_FS_TREE_OBJECTID 5ULL
73
74/* directory objectid inside the root tree */
75#define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
Chris Mason0b86a832008-03-24 15:01:56 -040076
Josef Bacik7b128762008-07-24 12:17:14 -040077/* orhpan objectid for tracking unlinked/truncated files */
78#define BTRFS_ORPHAN_OBJECTID -5ULL
79
Chris Masone02119d2008-09-05 16:13:11 -040080/* does write ahead logging to speed up fsyncs */
81#define BTRFS_TREE_LOG_OBJECTID -6ULL
82#define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL
83
Zheng Yane4657682008-09-26 10:04:53 -040084/* for space balancing */
85#define BTRFS_TREE_RELOC_OBJECTID -8ULL
86#define BTRFS_DATA_RELOC_TREE_OBJECTID -9ULL
87
Zheng Yan31840ae2008-09-23 13:14:14 -040088/* dummy objectid represents multiple objectids */
89#define BTRFS_MULTIPLE_OBJECTIDS -255ULL
90
Chris Mason0b86a832008-03-24 15:01:56 -040091/*
Zheng Yan6527cdb2008-09-05 16:43:53 -040092 * All files have objectids in this range.
Chris Mason0b86a832008-03-24 15:01:56 -040093 */
Chris Masonf6dbff52007-12-13 11:13:32 -050094#define BTRFS_FIRST_FREE_OBJECTID 256ULL
Zheng Yan6527cdb2008-09-05 16:43:53 -040095#define BTRFS_LAST_FREE_OBJECTID -256ULL
Chris Masone17cade2008-04-15 15:41:47 -040096#define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
Chris Mason3768f362007-03-13 16:47:54 -040097
Chris Mason0b86a832008-03-24 15:01:56 -040098
99/*
100 * the device items go into the chunk tree. The key is in the form
101 * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
102 */
103#define BTRFS_DEV_ITEMS_OBJECTID 1ULL
104
Chris Masonfec577f2007-02-26 10:40:21 -0500105/*
Chris Masone20d96d2007-03-22 12:13:20 -0400106 * we can actually store much bigger names, but lets not confuse the rest
107 * of linux
108 */
109#define BTRFS_NAME_LEN 255
110
Chris Masonf254e522007-03-29 15:15:27 -0400111/* 32 bytes in various csum fields */
112#define BTRFS_CSUM_SIZE 32
Chris Mason509659c2007-05-10 12:36:17 -0400113/* four bytes for CRC32 */
114#define BTRFS_CRC32_SIZE 4
Chris Mason39544012007-12-12 14:38:19 -0500115#define BTRFS_EMPTY_DIR_SIZE 0
Chris Masonf254e522007-03-29 15:15:27 -0400116
Chris Masonfabb5682007-06-07 22:13:21 -0400117#define BTRFS_FT_UNKNOWN 0
118#define BTRFS_FT_REG_FILE 1
119#define BTRFS_FT_DIR 2
120#define BTRFS_FT_CHRDEV 3
121#define BTRFS_FT_BLKDEV 4
122#define BTRFS_FT_FIFO 5
123#define BTRFS_FT_SOCK 6
124#define BTRFS_FT_SYMLINK 7
Josef Bacik5103e942007-11-16 11:45:54 -0500125#define BTRFS_FT_XATTR 8
126#define BTRFS_FT_MAX 9
Chris Masonfabb5682007-06-07 22:13:21 -0400127
Chris Masone20d96d2007-03-22 12:13:20 -0400128/*
Chris Masonfec577f2007-02-26 10:40:21 -0500129 * the key defines the order in the tree, and so it also defines (optimal)
130 * block layout. objectid corresonds to the inode number. The flags
131 * tells us things about the object, and is a kind of stream selector.
132 * so for a given inode, keys with flags of 1 might refer to the inode
133 * data, flags of 2 may point to file data in the btree and flags == 3
134 * may point to extents.
135 *
136 * offset is the starting byte offset for this key in the stream.
Chris Masone2fa7222007-03-12 16:22:34 -0400137 *
138 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
139 * in cpu native order. Otherwise they are identical and their sizes
140 * should be the same (ie both packed)
Chris Masonfec577f2007-02-26 10:40:21 -0500141 */
Chris Masone2fa7222007-03-12 16:22:34 -0400142struct btrfs_disk_key {
143 __le64 objectid;
Chris Mason5f39d392007-10-15 16:14:19 -0400144 u8 type;
Chris Mason70b2bef2007-04-17 15:39:32 -0400145 __le64 offset;
Chris Masone2fa7222007-03-12 16:22:34 -0400146} __attribute__ ((__packed__));
147
148struct btrfs_key {
Chris Masoneb60cea2007-02-02 09:18:22 -0500149 u64 objectid;
Chris Mason5f39d392007-10-15 16:14:19 -0400150 u8 type;
Chris Mason70b2bef2007-04-17 15:39:32 -0400151 u64 offset;
Chris Masoneb60cea2007-02-02 09:18:22 -0500152} __attribute__ ((__packed__));
153
Chris Mason0b86a832008-03-24 15:01:56 -0400154struct btrfs_mapping_tree {
155 struct extent_map_tree map_tree;
156};
157
Chris Masone17cade2008-04-15 15:41:47 -0400158#define BTRFS_UUID_SIZE 16
Chris Mason0b86a832008-03-24 15:01:56 -0400159struct btrfs_dev_item {
160 /* the internal btrfs device id */
161 __le64 devid;
162
163 /* size of the device */
164 __le64 total_bytes;
165
166 /* bytes used */
167 __le64 bytes_used;
168
169 /* optimal io alignment for this device */
170 __le32 io_align;
171
172 /* optimal io width for this device */
173 __le32 io_width;
174
175 /* minimal io size for this device */
176 __le32 sector_size;
177
Chris Mason0b86a832008-03-24 15:01:56 -0400178 /* type and info about this device */
179 __le64 type;
180
Chris Masone17cade2008-04-15 15:41:47 -0400181 /* grouping information for allocation decisions */
182 __le32 dev_group;
183
184 /* seek speed 0-100 where 100 is fastest */
185 u8 seek_speed;
186
187 /* bandwidth 0-100 where 100 is fastest */
188 u8 bandwidth;
189
Chris Mason0d81ba52008-03-24 15:02:07 -0400190 /* btrfs generated uuid for this device */
Chris Masone17cade2008-04-15 15:41:47 -0400191 u8 uuid[BTRFS_UUID_SIZE];
Chris Mason0b86a832008-03-24 15:01:56 -0400192} __attribute__ ((__packed__));
193
194struct btrfs_stripe {
195 __le64 devid;
196 __le64 offset;
Chris Masone17cade2008-04-15 15:41:47 -0400197 u8 dev_uuid[BTRFS_UUID_SIZE];
Chris Mason0b86a832008-03-24 15:01:56 -0400198} __attribute__ ((__packed__));
199
200struct btrfs_chunk {
Chris Masone17cade2008-04-15 15:41:47 -0400201 /* size of this chunk in bytes */
202 __le64 length;
203
204 /* objectid of the root referencing this chunk */
Chris Mason0b86a832008-03-24 15:01:56 -0400205 __le64 owner;
Chris Masone17cade2008-04-15 15:41:47 -0400206
Chris Mason0b86a832008-03-24 15:01:56 -0400207 __le64 stripe_len;
208 __le64 type;
209
210 /* optimal io alignment for this chunk */
211 __le32 io_align;
212
213 /* optimal io width for this chunk */
214 __le32 io_width;
215
216 /* minimal io size for this chunk */
217 __le32 sector_size;
218
219 /* 2^16 stripes is quite a lot, a second limit is the size of a single
220 * item in the btree
221 */
222 __le16 num_stripes;
Chris Mason321aecc2008-04-16 10:49:51 -0400223
224 /* sub stripes only matter for raid10 */
225 __le16 sub_stripes;
Chris Mason0b86a832008-03-24 15:01:56 -0400226 struct btrfs_stripe stripe;
227 /* additional stripes go here */
228} __attribute__ ((__packed__));
229
230static inline unsigned long btrfs_chunk_item_size(int num_stripes)
231{
232 BUG_ON(num_stripes == 0);
233 return sizeof(struct btrfs_chunk) +
234 sizeof(struct btrfs_stripe) * (num_stripes - 1);
235}
236
Chris Mason5f39d392007-10-15 16:14:19 -0400237#define BTRFS_FSID_SIZE 16
Chris Mason63b10fc2008-04-01 11:21:32 -0400238#define BTRFS_HEADER_FLAG_WRITTEN (1 << 0)
239
Chris Masonfec577f2007-02-26 10:40:21 -0500240/*
241 * every tree block (leaf or node) starts with this header.
242 */
Chris Masonbb492bb2007-03-12 12:29:44 -0400243struct btrfs_header {
Chris Masone17cade2008-04-15 15:41:47 -0400244 /* these first four must match the super block */
Chris Masonf254e522007-03-29 15:15:27 -0400245 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason5f39d392007-10-15 16:14:19 -0400246 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
Chris Masondb945352007-10-15 16:15:53 -0400247 __le64 bytenr; /* which block this node is supposed to live in */
Chris Mason63b10fc2008-04-01 11:21:32 -0400248 __le64 flags;
Chris Masone17cade2008-04-15 15:41:47 -0400249
250 /* allowed to be different from the super from here on down */
251 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
Chris Mason7f5c1512007-03-23 15:56:19 -0400252 __le64 generation;
Chris Mason4d775672007-04-20 20:23:12 -0400253 __le64 owner;
Chris Mason5f39d392007-10-15 16:14:19 -0400254 __le32 nritems;
Chris Mason9a6f11e2007-03-27 09:06:38 -0400255 u8 level;
Chris Masoneb60cea2007-02-02 09:18:22 -0500256} __attribute__ ((__packed__));
257
Chris Mason5f39d392007-10-15 16:14:19 -0400258#define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
Chris Mason123abc82007-03-14 14:14:43 -0400259 sizeof(struct btrfs_header)) / \
Chris Mason74493f72007-12-11 09:25:06 -0500260 sizeof(struct btrfs_key_ptr))
Chris Mason123abc82007-03-14 14:14:43 -0400261#define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
Chris Mason5f39d392007-10-15 16:14:19 -0400262#define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
Chris Mason236454df2007-04-19 13:37:44 -0400263#define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
264 sizeof(struct btrfs_item) - \
265 sizeof(struct btrfs_file_extent_item))
Chris Masoneb60cea2007-02-02 09:18:22 -0500266
Chris Mason0b86a832008-03-24 15:01:56 -0400267
268/*
269 * this is a very generous portion of the super block, giving us
270 * room to translate 14 chunks with 3 stripes each.
271 */
272#define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
Chris Mason7ae9c092008-04-18 10:29:49 -0400273#define BTRFS_LABEL_SIZE 256
Chris Mason0b86a832008-03-24 15:01:56 -0400274
Chris Masonfec577f2007-02-26 10:40:21 -0500275/*
Chris Masonfec577f2007-02-26 10:40:21 -0500276 * the super block basically lists the main trees of the FS
277 * it currently lacks any block count etc etc
278 */
Chris Mason234b63a2007-03-13 10:46:10 -0400279struct btrfs_super_block {
Chris Masonf254e522007-03-29 15:15:27 -0400280 u8 csum[BTRFS_CSUM_SIZE];
Chris Mason63b10fc2008-04-01 11:21:32 -0400281 /* the first 4 fields must match struct btrfs_header */
Chris Mason3768f362007-03-13 16:47:54 -0400282 u8 fsid[16]; /* FS specific uuid */
Chris Masondb945352007-10-15 16:15:53 -0400283 __le64 bytenr; /* this block number */
Chris Mason63b10fc2008-04-01 11:21:32 -0400284 __le64 flags;
Chris Masone17cade2008-04-15 15:41:47 -0400285
286 /* allowed to be different from the btrfs_header from here own down */
Chris Mason3768f362007-03-13 16:47:54 -0400287 __le64 magic;
Chris Mason3768f362007-03-13 16:47:54 -0400288 __le64 generation;
289 __le64 root;
Chris Mason0b86a832008-03-24 15:01:56 -0400290 __le64 chunk_root;
Chris Masone02119d2008-09-05 16:13:11 -0400291 __le64 log_root;
Chris Masondb945352007-10-15 16:15:53 -0400292 __le64 total_bytes;
293 __le64 bytes_used;
Chris Mason2e635a22007-03-21 11:12:56 -0400294 __le64 root_dir_objectid;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400295 __le64 num_devices;
Chris Mason5f39d392007-10-15 16:14:19 -0400296 __le32 sectorsize;
297 __le32 nodesize;
298 __le32 leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500299 __le32 stripesize;
Chris Mason0b86a832008-03-24 15:01:56 -0400300 __le32 sys_chunk_array_size;
Chris Masondb945352007-10-15 16:15:53 -0400301 u8 root_level;
Chris Mason0b86a832008-03-24 15:01:56 -0400302 u8 chunk_root_level;
Chris Masone02119d2008-09-05 16:13:11 -0400303 u8 log_root_level;
Chris Mason0d81ba52008-03-24 15:02:07 -0400304 struct btrfs_dev_item dev_item;
Chris Mason7ae9c092008-04-18 10:29:49 -0400305 char label[BTRFS_LABEL_SIZE];
Chris Mason0b86a832008-03-24 15:01:56 -0400306 u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
Chris Masoncfaa7292007-02-21 17:04:57 -0500307} __attribute__ ((__packed__));
308
Chris Masonfec577f2007-02-26 10:40:21 -0500309/*
Chris Mason62e27492007-03-15 12:56:47 -0400310 * A leaf is full of items. offset and size tell us where to find
Chris Masonfec577f2007-02-26 10:40:21 -0500311 * the item in the leaf (relative to the start of the data area)
312 */
Chris Mason0783fcf2007-03-12 20:12:07 -0400313struct btrfs_item {
Chris Masone2fa7222007-03-12 16:22:34 -0400314 struct btrfs_disk_key key;
Chris Mason123abc82007-03-14 14:14:43 -0400315 __le32 offset;
Chris Mason5f39d392007-10-15 16:14:19 -0400316 __le32 size;
Chris Masoneb60cea2007-02-02 09:18:22 -0500317} __attribute__ ((__packed__));
318
Chris Masonfec577f2007-02-26 10:40:21 -0500319/*
320 * leaves have an item area and a data area:
321 * [item0, item1....itemN] [free space] [dataN...data1, data0]
322 *
323 * The data is separate from the items to get the keys closer together
324 * during searches.
325 */
Chris Mason234b63a2007-03-13 10:46:10 -0400326struct btrfs_leaf {
Chris Masonbb492bb2007-03-12 12:29:44 -0400327 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400328 struct btrfs_item items[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500329} __attribute__ ((__packed__));
330
Chris Masonfec577f2007-02-26 10:40:21 -0500331/*
332 * all non-leaf blocks are nodes, they hold only keys and pointers to
333 * other blocks
334 */
Chris Mason123abc82007-03-14 14:14:43 -0400335struct btrfs_key_ptr {
336 struct btrfs_disk_key key;
337 __le64 blockptr;
Chris Mason74493f72007-12-11 09:25:06 -0500338 __le64 generation;
Chris Mason123abc82007-03-14 14:14:43 -0400339} __attribute__ ((__packed__));
340
Chris Mason234b63a2007-03-13 10:46:10 -0400341struct btrfs_node {
Chris Masonbb492bb2007-03-12 12:29:44 -0400342 struct btrfs_header header;
Chris Mason123abc82007-03-14 14:14:43 -0400343 struct btrfs_key_ptr ptrs[];
Chris Masoneb60cea2007-02-02 09:18:22 -0500344} __attribute__ ((__packed__));
345
Chris Masonfec577f2007-02-26 10:40:21 -0500346/*
Chris Mason234b63a2007-03-13 10:46:10 -0400347 * btrfs_paths remember the path taken from the root down to the leaf.
348 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
Chris Masonfec577f2007-02-26 10:40:21 -0500349 * to any other levels that are present.
350 *
351 * The slots array records the index of the item or block pointer
352 * used while walking the tree.
353 */
Chris Mason234b63a2007-03-13 10:46:10 -0400354struct btrfs_path {
Chris Mason5f39d392007-10-15 16:14:19 -0400355 struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
Chris Mason234b63a2007-03-13 10:46:10 -0400356 int slots[BTRFS_MAX_LEVEL];
Chris Mason925baed2008-06-25 16:01:30 -0400357 /* if there is real range locking, this locks field will change */
358 int locks[BTRFS_MAX_LEVEL];
Chris Mason3c69fae2007-08-07 15:52:22 -0400359 int reada;
Chris Mason925baed2008-06-25 16:01:30 -0400360 /* keep some upper locks as we walk down */
361 int keep_locks;
Chris Mason5cd57b22008-06-25 16:01:30 -0400362 int skip_locking;
Chris Mason6702ed42007-08-07 16:15:09 -0400363 int lowest_level;
Chris Masoneb60cea2007-02-02 09:18:22 -0500364};
Chris Mason5de08d72007-02-24 06:24:44 -0500365
Chris Mason62e27492007-03-15 12:56:47 -0400366/*
367 * items in the extent btree are used to record the objectid of the
368 * owner of the block and the number of references
369 */
370struct btrfs_extent_item {
371 __le32 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500372} __attribute__ ((__packed__));
373
374struct btrfs_extent_ref {
375 __le64 root;
376 __le64 generation;
377 __le64 objectid;
378 __le64 offset;
Zheng Yan31840ae2008-09-23 13:14:14 -0400379 __le32 num_refs;
Chris Mason62e27492007-03-15 12:56:47 -0400380} __attribute__ ((__packed__));
381
Chris Mason0b86a832008-03-24 15:01:56 -0400382/* dev extents record free space on individual devices. The owner
383 * field points back to the chunk allocation mapping tree that allocated
Chris Masone17cade2008-04-15 15:41:47 -0400384 * the extent. The chunk tree uuid field is a way to double check the owner
Chris Mason0b86a832008-03-24 15:01:56 -0400385 */
386struct btrfs_dev_extent {
Chris Masone17cade2008-04-15 15:41:47 -0400387 __le64 chunk_tree;
388 __le64 chunk_objectid;
389 __le64 chunk_offset;
Chris Mason0b86a832008-03-24 15:01:56 -0400390 __le64 length;
Chris Masone17cade2008-04-15 15:41:47 -0400391 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
Chris Mason0b86a832008-03-24 15:01:56 -0400392} __attribute__ ((__packed__));
393
Chris Mason39544012007-12-12 14:38:19 -0500394struct btrfs_inode_ref {
Josef Bacikaec74772008-07-24 12:12:38 -0400395 __le64 index;
Chris Mason39544012007-12-12 14:38:19 -0500396 __le16 name_len;
397 /* name goes here */
398} __attribute__ ((__packed__));
399
Chris Mason0b86a832008-03-24 15:01:56 -0400400struct btrfs_timespec {
Chris Masonf254e522007-03-29 15:15:27 -0400401 __le64 sec;
Chris Mason1e1d2702007-03-15 19:03:33 -0400402 __le32 nsec;
403} __attribute__ ((__packed__));
404
405/*
406 * there is no padding here on purpose. If you want to extent the inode,
407 * make a new item type
408 */
409struct btrfs_inode_item {
Chris Masone02119d2008-09-05 16:13:11 -0400410 /* nfs style generation number */
Chris Mason1e1d2702007-03-15 19:03:33 -0400411 __le64 generation;
Chris Masone02119d2008-09-05 16:13:11 -0400412 /* transid that last touched this inode */
413 __le64 transid;
Chris Mason1e1d2702007-03-15 19:03:33 -0400414 __le64 size;
415 __le64 nblocks;
Chris Mason31f3c992007-04-30 15:25:45 -0400416 __le64 block_group;
Chris Mason1e1d2702007-03-15 19:03:33 -0400417 __le32 nlink;
418 __le32 uid;
419 __le32 gid;
420 __le32 mode;
Chris Mason0b86a832008-03-24 15:01:56 -0400421 __le64 rdev;
Chris Mason1e1d2702007-03-15 19:03:33 -0400422 __le16 flags;
423 __le16 compat_flags;
Chris Mason0b86a832008-03-24 15:01:56 -0400424 struct btrfs_timespec atime;
425 struct btrfs_timespec ctime;
426 struct btrfs_timespec mtime;
427 struct btrfs_timespec otime;
Chris Mason1e1d2702007-03-15 19:03:33 -0400428} __attribute__ ((__packed__));
429
Chris Masone02119d2008-09-05 16:13:11 -0400430struct btrfs_dir_log_item {
431 __le64 end;
432} __attribute__ ((__packed__));
433
Chris Mason62e27492007-03-15 12:56:47 -0400434struct btrfs_dir_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400435 struct btrfs_disk_key location;
Chris Masone02119d2008-09-05 16:13:11 -0400436 __le64 transid;
Josef Bacik5103e942007-11-16 11:45:54 -0500437 __le16 data_len;
Chris Masona8a2ee02007-03-16 08:46:49 -0400438 __le16 name_len;
Chris Mason62e27492007-03-15 12:56:47 -0400439 u8 type;
440} __attribute__ ((__packed__));
441
442struct btrfs_root_item {
Chris Masond6e4a422007-04-06 15:37:36 -0400443 struct btrfs_inode_item inode;
444 __le64 root_dirid;
Chris Masondb945352007-10-15 16:15:53 -0400445 __le64 bytenr;
446 __le64 byte_limit;
447 __le64 bytes_used;
Chris Mason5eda7b52007-06-22 14:16:25 -0400448 __le32 flags;
Chris Mason62e27492007-03-15 12:56:47 -0400449 __le32 refs;
Chris Mason5eda7b52007-06-22 14:16:25 -0400450 struct btrfs_disk_key drop_progress;
451 u8 drop_level;
Chris Masondb945352007-10-15 16:15:53 -0400452 u8 level;
Chris Mason9f5fae22007-03-20 14:38:32 -0400453} __attribute__ ((__packed__));
454
Chris Mason236454df2007-04-19 13:37:44 -0400455#define BTRFS_FILE_EXTENT_REG 0
456#define BTRFS_FILE_EXTENT_INLINE 1
457
Chris Mason9f5fae22007-03-20 14:38:32 -0400458struct btrfs_file_extent_item {
Chris Mason71951f32007-03-27 09:16:29 -0400459 __le64 generation;
Chris Mason236454df2007-04-19 13:37:44 -0400460 u8 type;
Chris Mason9f5fae22007-03-20 14:38:32 -0400461 /*
462 * disk space consumed by the extent, checksum blocks are included
463 * in these numbers
464 */
Chris Masondb945352007-10-15 16:15:53 -0400465 __le64 disk_bytenr;
466 __le64 disk_num_bytes;
Chris Mason9f5fae22007-03-20 14:38:32 -0400467 /*
Chris Masondee26a92007-03-26 16:00:06 -0400468 * the logical offset in file blocks (no csums)
Chris Mason9f5fae22007-03-20 14:38:32 -0400469 * this extent record is for. This allows a file extent to point
470 * into the middle of an existing extent on disk, sharing it
471 * between two snapshots (useful if some bytes in the middle of the
472 * extent have changed
473 */
474 __le64 offset;
475 /*
476 * the logical number of file blocks (no csums included)
477 */
Chris Masondb945352007-10-15 16:15:53 -0400478 __le64 num_bytes;
Chris Mason9f5fae22007-03-20 14:38:32 -0400479} __attribute__ ((__packed__));
480
Chris Masonf254e522007-03-29 15:15:27 -0400481struct btrfs_csum_item {
Chris Mason509659c2007-05-10 12:36:17 -0400482 u8 csum;
Chris Masonf254e522007-03-29 15:15:27 -0400483} __attribute__ ((__packed__));
484
Chris Mason0b86a832008-03-24 15:01:56 -0400485/* different types of block groups (and chunks) */
486#define BTRFS_BLOCK_GROUP_DATA (1 << 0)
487#define BTRFS_BLOCK_GROUP_SYSTEM (1 << 1)
488#define BTRFS_BLOCK_GROUP_METADATA (1 << 2)
Chris Mason593060d2008-03-25 16:50:33 -0400489#define BTRFS_BLOCK_GROUP_RAID0 (1 << 3)
Chris Mason8790d502008-04-03 16:29:03 -0400490#define BTRFS_BLOCK_GROUP_RAID1 (1 << 4)
Chris Mason611f0e02008-04-03 16:29:03 -0400491#define BTRFS_BLOCK_GROUP_DUP (1 << 5)
Chris Mason321aecc2008-04-16 10:49:51 -0400492#define BTRFS_BLOCK_GROUP_RAID10 (1 << 6)
Chris Mason1e2677e2007-05-29 16:52:18 -0400493
Chris Mason9078a3e2007-04-26 16:46:15 -0400494struct btrfs_block_group_item {
495 __le64 used;
Chris Mason0b86a832008-03-24 15:01:56 -0400496 __le64 chunk_objectid;
497 __le64 flags;
Chris Mason9078a3e2007-04-26 16:46:15 -0400498} __attribute__ ((__packed__));
499
Chris Mason6324fbf2008-03-24 15:01:59 -0400500struct btrfs_space_info {
501 u64 flags;
502 u64 total_bytes;
503 u64 bytes_used;
504 u64 bytes_pinned;
Zheng Yane8569812008-09-26 10:05:48 -0400505 u64 bytes_reserved;
Chris Mason6324fbf2008-03-24 15:01:59 -0400506 int full;
Chris Mason0ef3e662008-05-24 14:04:53 -0400507 int force_alloc;
Chris Mason6324fbf2008-03-24 15:01:59 -0400508 struct list_head list;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400509
510 /* for block groups in our same type */
511 struct list_head block_groups;
512 spinlock_t lock;
513};
514
515struct btrfs_free_space {
516 struct rb_node bytes_index;
517 struct rb_node offset_index;
518 u64 offset;
519 u64 bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -0400520};
521
Chris Mason9078a3e2007-04-26 16:46:15 -0400522struct btrfs_block_group_cache {
523 struct btrfs_key key;
524 struct btrfs_block_group_item item;
Chris Masonc286ac42008-07-22 23:06:41 -0400525 spinlock_t lock;
Yan324ae4d2007-11-16 14:57:08 -0500526 u64 pinned;
Zheng Yane8569812008-09-26 10:05:48 -0400527 u64 reserved;
Chris Mason0b86a832008-03-24 15:01:56 -0400528 u64 flags;
529 int cached;
Chris Mason8f18cf12008-04-25 16:53:30 -0400530 int ro;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400531 int dirty;
532
533 struct btrfs_space_info *space_info;
534
535 /* free space cache stuff */
536 struct rb_root free_space_bytes;
537 struct rb_root free_space_offset;
538
539 /* block group cache stuff */
540 struct rb_node cache_node;
541
542 /* for block groups in the same raid type */
543 struct list_head list;
Chris Mason9078a3e2007-04-26 16:46:15 -0400544};
Chris Mason0b86a832008-03-24 15:01:56 -0400545
Zheng Yane4657682008-09-26 10:04:53 -0400546struct btrfs_leaf_ref_tree {
547 struct rb_root root;
548 struct list_head list;
549 spinlock_t lock;
550};
551
Chris Mason0b86a832008-03-24 15:01:56 -0400552struct btrfs_device;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400553struct btrfs_fs_devices;
Chris Mason9f5fae22007-03-20 14:38:32 -0400554struct btrfs_fs_info {
Chris Mason5f39d392007-10-15 16:14:19 -0400555 u8 fsid[BTRFS_FSID_SIZE];
Chris Masone17cade2008-04-15 15:41:47 -0400556 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
Chris Mason9f5fae22007-03-20 14:38:32 -0400557 struct btrfs_root *extent_root;
558 struct btrfs_root *tree_root;
Chris Mason0b86a832008-03-24 15:01:56 -0400559 struct btrfs_root *chunk_root;
560 struct btrfs_root *dev_root;
Chris Masone02119d2008-09-05 16:13:11 -0400561
562 /* the log root tree is a directory of all the other log roots */
563 struct btrfs_root *log_root_tree;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400564 struct radix_tree_root fs_roots_radix;
Chris Mason1a5bc162007-10-15 16:15:26 -0400565
Josef Bacik0f9dd462008-09-23 13:14:11 -0400566 /* block group cache stuff */
567 spinlock_t block_group_cache_lock;
568 struct rb_root block_group_cache_tree;
569
Chris Masond1310b22008-01-24 16:13:08 -0500570 struct extent_io_tree pinned_extents;
571 struct extent_io_tree pending_del;
572 struct extent_io_tree extent_ins;
Chris Mason1a5bc162007-10-15 16:15:26 -0400573
Chris Mason0b86a832008-03-24 15:01:56 -0400574 /* logical->physical extent mapping */
575 struct btrfs_mapping_tree mapping_tree;
576
Chris Mason293ffd52007-03-20 15:57:25 -0400577 u64 generation;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400578 u64 last_trans_committed;
Chris Masone02119d2008-09-05 16:13:11 -0400579 u64 last_trans_new_blockgroup;
Sage Weil9ca9ee02008-08-04 10:41:27 -0400580 u64 open_ioctl_trans;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500581 unsigned long mount_opt;
Chris Masonc59f8952007-12-17 20:14:04 -0500582 u64 max_extent;
Chris Mason6f568d32008-01-29 16:03:38 -0500583 u64 max_inline;
Chris Mason8f662a72008-01-02 10:01:11 -0500584 u64 alloc_start;
Chris Mason79154b12007-03-22 15:59:16 -0400585 struct btrfs_transaction *running_transaction;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400586 wait_queue_head_t transaction_throttle;
Chris Masonf9295742008-07-17 12:54:14 -0400587 wait_queue_head_t transaction_wait;
Chris Mason4854ddd2008-08-15 15:34:17 -0400588 wait_queue_head_t async_submit_wait;
Chris Masone02119d2008-09-05 16:13:11 -0400589
590 wait_queue_head_t tree_log_wait;
591
Chris Mason4b52dff2007-06-26 10:06:50 -0400592 struct btrfs_super_block super_copy;
Chris Masona061fc82008-05-07 11:43:44 -0400593 struct btrfs_super_block super_for_commit;
Chris Mason0b86a832008-03-24 15:01:56 -0400594 struct block_device *__bdev;
Chris Masone20d96d2007-03-22 12:13:20 -0400595 struct super_block *sb;
Chris Masond98237b2007-03-28 13:57:48 -0400596 struct inode *btree_inode;
Chris Mason04160082008-03-26 10:28:07 -0400597 struct backing_dev_info bdi;
Chris Mason19c00dd2007-10-15 16:19:22 -0400598 spinlock_t hash_lock;
Chris Mason79154b12007-03-22 15:59:16 -0400599 struct mutex trans_mutex;
Chris Masone02119d2008-09-05 16:13:11 -0400600 struct mutex tree_log_mutex;
Chris Masona74a4b92008-06-25 16:01:31 -0400601 struct mutex transaction_kthread_mutex;
602 struct mutex cleaner_mutex;
Chris Mason925baed2008-06-25 16:01:30 -0400603 struct mutex alloc_mutex;
604 struct mutex chunk_mutex;
Chris Masona2135012008-06-25 16:01:30 -0400605 struct mutex drop_mutex;
Chris Mason7d9eb122008-07-08 14:19:17 -0400606 struct mutex volume_mutex;
Chris Mason8fd17792007-04-19 21:01:03 -0400607 struct list_head trans_list;
Chris Mason19c00dd2007-10-15 16:19:22 -0400608 struct list_head hashers;
Chris Masonfacda1e2007-06-08 18:11:48 -0400609 struct list_head dead_roots;
Chris Masone02119d2008-09-05 16:13:11 -0400610
Chris Masoncb03c742008-05-15 16:15:45 -0400611 atomic_t nr_async_submits;
Chris Mason0986fe9e2008-08-15 15:34:15 -0400612 atomic_t nr_async_bios;
Chris Masone02119d2008-09-05 16:13:11 -0400613 atomic_t tree_log_writers;
614 atomic_t tree_log_commit;
615 unsigned long tree_log_batch;
616 u64 tree_log_transid;
Chris Masonce9adaa2008-04-09 16:28:12 -0400617
Chris Mason8b712842008-06-11 16:50:36 -0400618 /*
Chris Mason3eaa2882008-07-24 11:57:52 -0400619 * this is used by the balancing code to wait for all the pending
620 * ordered extents
621 */
622 spinlock_t ordered_extent_lock;
623 struct list_head ordered_extents;
Chris Masonea8c2812008-08-04 23:17:27 -0400624 struct list_head delalloc_inodes;
Chris Mason3eaa2882008-07-24 11:57:52 -0400625
626 /*
Chris Mason8b712842008-06-11 16:50:36 -0400627 * there is a pool of worker threads for checksumming during writes
628 * and a pool for checksumming after reads. This is because readers
629 * can run with FS locks held, and the writers may be waiting for
630 * those locks. We don't want ordering in the pending list to cause
631 * deadlocks, and so the two are serviced separately.
Chris Mason1cc127b2008-06-12 14:46:17 -0400632 *
633 * A third pool does submit_bio to avoid deadlocking with the other
634 * two
Chris Mason8b712842008-06-11 16:50:36 -0400635 */
636 struct btrfs_workers workers;
637 struct btrfs_workers endio_workers;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400638 struct btrfs_workers endio_write_workers;
Chris Mason1cc127b2008-06-12 14:46:17 -0400639 struct btrfs_workers submit_workers;
Chris Mason247e7432008-07-17 12:53:51 -0400640 /*
641 * fixup workers take dirty pages that didn't properly go through
642 * the cow mechanism and make them safe to write. It happens
643 * for the sys_munmap function call path
644 */
645 struct btrfs_workers fixup_workers;
Chris Masona74a4b92008-06-25 16:01:31 -0400646 struct task_struct *transaction_kthread;
647 struct task_struct *cleaner_kthread;
Chris Mason4543df72008-06-11 21:47:56 -0400648 int thread_pool_size;
Chris Mason8b712842008-06-11 16:50:36 -0400649
Zheng Yane4657682008-09-26 10:04:53 -0400650 struct btrfs_leaf_ref_tree shared_ref_tree;
651
Josef Bacik58176a92007-08-29 15:47:34 -0400652 struct kobject super_kobj;
653 struct completion kobj_unregister;
Chris Masone66f7092007-04-20 13:16:02 -0400654 int do_barriers;
Chris Masonfacda1e2007-06-08 18:11:48 -0400655 int closing;
Chris Masone02119d2008-09-05 16:13:11 -0400656 int log_root_recovering;
Chris Masona2135012008-06-25 16:01:30 -0400657 atomic_t throttles;
Chris Masonab78c842008-07-29 16:15:18 -0400658 atomic_t throttle_gen;
Chris Mason62e27492007-03-15 12:56:47 -0400659
Yan324ae4d2007-11-16 14:57:08 -0500660 u64 total_pinned;
Chris Mason0b86a832008-03-24 15:01:56 -0400661 struct list_head dirty_cowonly_roots;
662
Chris Mason8a4b83c2008-03-24 15:02:07 -0400663 struct btrfs_fs_devices *fs_devices;
Chris Mason6324fbf2008-03-24 15:01:59 -0400664 struct list_head space_info;
Chris Mason1832a6d2007-12-21 16:27:21 -0500665 spinlock_t delalloc_lock;
Chris Masoncee36a02008-01-15 08:40:48 -0500666 spinlock_t new_trans_lock;
Chris Mason1832a6d2007-12-21 16:27:21 -0500667 u64 delalloc_bytes;
Chris Masone18e4802008-01-18 10:54:22 -0500668 u64 last_alloc;
Chris Mason4529ba42008-01-31 16:45:07 -0500669 u64 last_data_alloc;
Chris Masone02119d2008-09-05 16:13:11 -0400670 u64 last_log_alloc;
Chris Masond18a2c42008-04-04 15:40:00 -0400671
Yan Zheng31153d82008-07-28 15:32:19 -0400672 spinlock_t ref_cache_lock;
673 u64 total_ref_cache_size;
Yan Zheng31153d82008-07-28 15:32:19 -0400674
Chris Masond18a2c42008-04-04 15:40:00 -0400675 u64 avail_data_alloc_bits;
676 u64 avail_metadata_alloc_bits;
677 u64 avail_system_alloc_bits;
678 u64 data_alloc_profile;
679 u64 metadata_alloc_profile;
680 u64 system_alloc_profile;
Chris Mason788f20e2008-04-28 15:29:42 -0400681
682 void *bdev_holder;
Yan324ae4d2007-11-16 14:57:08 -0500683};
Chris Mason0b86a832008-03-24 15:01:56 -0400684
Chris Mason62e27492007-03-15 12:56:47 -0400685/*
686 * in ram representation of the tree. extent_root is used for all allocations
Chris Masonf2458e12007-04-25 15:52:25 -0400687 * and for the extent tree extent_root root.
Chris Mason62e27492007-03-15 12:56:47 -0400688 */
Yan Zhengf321e492008-07-30 09:26:11 -0400689struct btrfs_dirty_root;
Chris Mason62e27492007-03-15 12:56:47 -0400690struct btrfs_root {
Chris Mason5f39d392007-10-15 16:14:19 -0400691 struct extent_buffer *node;
Chris Mason925baed2008-06-25 16:01:30 -0400692
693 /* the node lock is held while changing the node pointer */
694 spinlock_t node_lock;
695
Chris Mason5f39d392007-10-15 16:14:19 -0400696 struct extent_buffer *commit_root;
Yan Zheng31153d82008-07-28 15:32:19 -0400697 struct btrfs_leaf_ref_tree *ref_tree;
Chris Mason017e5362008-07-28 15:32:51 -0400698 struct btrfs_leaf_ref_tree ref_tree_struct;
Yan Zhengf321e492008-07-30 09:26:11 -0400699 struct btrfs_dirty_root *dirty_root;
Chris Masone02119d2008-09-05 16:13:11 -0400700 struct btrfs_root *log_root;
Yan Zheng31153d82008-07-28 15:32:19 -0400701
Chris Mason62e27492007-03-15 12:56:47 -0400702 struct btrfs_root_item root_item;
703 struct btrfs_key root_key;
Chris Mason9f5fae22007-03-20 14:38:32 -0400704 struct btrfs_fs_info *fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400705 struct inode *inode;
Chris Masond0c803c2008-09-11 16:17:57 -0400706 struct extent_io_tree dirty_log_pages;
707
Josef Bacik58176a92007-08-29 15:47:34 -0400708 struct kobject root_kobj;
709 struct completion kobj_unregister;
Chris Masona2135012008-06-25 16:01:30 -0400710 struct mutex objectid_mutex;
Chris Masone02119d2008-09-05 16:13:11 -0400711 struct mutex log_mutex;
Chris Masonea8c2812008-08-04 23:17:27 -0400712
Chris Mason0f7d52f2007-04-09 10:42:37 -0400713 u64 objectid;
714 u64 last_trans;
Chris Mason5f39d392007-10-15 16:14:19 -0400715
716 /* data allocations are done in sectorsize units */
717 u32 sectorsize;
718
719 /* node allocations are done in nodesize units */
720 u32 nodesize;
721
722 /* leaf allocations are done in leafsize units */
723 u32 leafsize;
724
Chris Mason87ee04e2007-11-30 11:30:34 -0500725 u32 stripesize;
726
Chris Mason9f5fae22007-03-20 14:38:32 -0400727 u32 type;
Chris Mason1b05da22007-04-10 12:13:09 -0400728 u64 highest_inode;
729 u64 last_inode_alloc;
Chris Mason9f3a7422007-08-07 15:52:19 -0400730 int ref_cows;
Chris Mason0b86a832008-03-24 15:01:56 -0400731 int track_dirty;
Chris Mason3f157a22008-06-25 16:01:31 -0400732 u64 defrag_trans_start;
Chris Mason6702ed42007-08-07 16:15:09 -0400733 struct btrfs_key defrag_progress;
Chris Mason0ef3e662008-05-24 14:04:53 -0400734 struct btrfs_key defrag_max;
Chris Mason6702ed42007-08-07 16:15:09 -0400735 int defrag_running;
736 int defrag_level;
Josef Bacik58176a92007-08-29 15:47:34 -0400737 char *name;
Chris Mason4313b392008-01-03 09:08:48 -0500738 int in_sysfs;
Chris Mason0b86a832008-03-24 15:01:56 -0400739
740 /* the dirty list is only used by non-reference counted roots */
741 struct list_head dirty_list;
Josef Bacik7b128762008-07-24 12:17:14 -0400742
Yanbcc63ab2008-07-30 16:29:20 -0400743 spinlock_t list_lock;
744 struct list_head dead_list;
Josef Bacik7b128762008-07-24 12:17:14 -0400745 struct list_head orphan_list;
Chris Mason62e27492007-03-15 12:56:47 -0400746};
747
Chris Mason1e1d2702007-03-15 19:03:33 -0400748/*
Chris Mason0b86a832008-03-24 15:01:56 -0400749
Chris Mason1e1d2702007-03-15 19:03:33 -0400750 * inode items have the data typically returned from stat and store other
751 * info about object characteristics. There is one for every file and dir in
752 * the FS
753 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400754#define BTRFS_INODE_ITEM_KEY 1
Chris Mason39544012007-12-12 14:38:19 -0500755#define BTRFS_INODE_REF_KEY 2
756#define BTRFS_XATTR_ITEM_KEY 8
Josef Bacik7b128762008-07-24 12:17:14 -0400757#define BTRFS_ORPHAN_ITEM_KEY 9
Chris Mason9078a3e2007-04-26 16:46:15 -0400758/* reserve 2-15 close to the inode for later flexibility */
Chris Mason1e1d2702007-03-15 19:03:33 -0400759
760/*
761 * dir items are the name -> inode pointers in a directory. There is one
762 * for every name in a directory.
763 */
Chris Masone02119d2008-09-05 16:13:11 -0400764#define BTRFS_DIR_LOG_ITEM_KEY 14
765#define BTRFS_DIR_LOG_INDEX_KEY 15
Chris Mason9078a3e2007-04-26 16:46:15 -0400766#define BTRFS_DIR_ITEM_KEY 16
767#define BTRFS_DIR_INDEX_KEY 17
Chris Mason1e1d2702007-03-15 19:03:33 -0400768/*
Chris Mason9078a3e2007-04-26 16:46:15 -0400769 * extent data is for file data
Chris Mason1e1d2702007-03-15 19:03:33 -0400770 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400771#define BTRFS_EXTENT_DATA_KEY 18
Chris Mason1e1d2702007-03-15 19:03:33 -0400772/*
Chris Masonf254e522007-03-29 15:15:27 -0400773 * csum items have the checksums for data in the extents
774 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400775#define BTRFS_CSUM_ITEM_KEY 19
776
Chris Masone02119d2008-09-05 16:13:11 -0400777
778/* reserve 21-31 for other file/dir stuff */
Chris Masonf254e522007-03-29 15:15:27 -0400779
780/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400781 * root items point to tree roots. There are typically in the root
782 * tree used by the super block to find all the other trees
783 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400784#define BTRFS_ROOT_ITEM_KEY 32
Chris Mason1e1d2702007-03-15 19:03:33 -0400785/*
786 * extent items are in the extent map tree. These record which blocks
787 * are used, and how many references there are to each block
788 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400789#define BTRFS_EXTENT_ITEM_KEY 33
Chris Mason74493f72007-12-11 09:25:06 -0500790#define BTRFS_EXTENT_REF_KEY 34
Chris Mason9078a3e2007-04-26 16:46:15 -0400791
792/*
793 * block groups give us hints into the extent allocation trees. Which
794 * blocks are free etc etc
795 */
Chris Mason74493f72007-12-11 09:25:06 -0500796#define BTRFS_BLOCK_GROUP_ITEM_KEY 50
Chris Mason9f5fae22007-03-20 14:38:32 -0400797
Chris Mason0b86a832008-03-24 15:01:56 -0400798#define BTRFS_DEV_EXTENT_KEY 75
799#define BTRFS_DEV_ITEM_KEY 76
800#define BTRFS_CHUNK_ITEM_KEY 77
801
Chris Mason9f5fae22007-03-20 14:38:32 -0400802/*
Chris Mason1e1d2702007-03-15 19:03:33 -0400803 * string items are for debugging. They just store a short string of
804 * data in the FS
805 */
Chris Mason9078a3e2007-04-26 16:46:15 -0400806#define BTRFS_STRING_ITEM_KEY 253
807
Chris Mason21ad10c2008-01-09 09:23:21 -0500808#define BTRFS_MOUNT_NODATASUM (1 << 0)
809#define BTRFS_MOUNT_NODATACOW (1 << 1)
810#define BTRFS_MOUNT_NOBARRIER (1 << 2)
Chris Masone18e4802008-01-18 10:54:22 -0500811#define BTRFS_MOUNT_SSD (1 << 3)
Chris Masondfe25022008-05-13 13:46:40 -0400812#define BTRFS_MOUNT_DEGRADED (1 << 4)
Chris Masonb6cda9b2007-12-14 15:30:32 -0500813
814#define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt)
815#define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt)
816#define btrfs_test_opt(root, opt) ((root)->fs_info->mount_opt & \
817 BTRFS_MOUNT_##opt)
Yanb98b6762008-01-08 15:54:37 -0500818/*
819 * Inode flags
820 */
Yanfdebe2b2008-01-14 13:26:08 -0500821#define BTRFS_INODE_NODATASUM (1 << 0)
822#define BTRFS_INODE_NODATACOW (1 << 1)
823#define BTRFS_INODE_READONLY (1 << 2)
Yanb98b6762008-01-08 15:54:37 -0500824#define btrfs_clear_flag(inode, flag) (BTRFS_I(inode)->flags &= \
825 ~BTRFS_INODE_##flag)
826#define btrfs_set_flag(inode, flag) (BTRFS_I(inode)->flags |= \
827 BTRFS_INODE_##flag)
828#define btrfs_test_flag(inode, flag) (BTRFS_I(inode)->flags & \
829 BTRFS_INODE_##flag)
Chris Mason5f39d392007-10-15 16:14:19 -0400830/* some macros to generate set/get funcs for the struct fields. This
831 * assumes there is a lefoo_to_cpu for every type, so lets make a simple
832 * one for u8:
833 */
834#define le8_to_cpu(v) (v)
835#define cpu_to_le8(v) (v)
836#define __le8 u8
Chris Mason9078a3e2007-04-26 16:46:15 -0400837
Chris Mason5f39d392007-10-15 16:14:19 -0400838#define read_eb_member(eb, ptr, type, member, result) ( \
839 read_extent_buffer(eb, (char *)(result), \
840 ((unsigned long)(ptr)) + \
841 offsetof(type, member), \
842 sizeof(((type *)0)->member)))
843
844#define write_eb_member(eb, ptr, type, member, result) ( \
845 write_extent_buffer(eb, (char *)(result), \
846 ((unsigned long)(ptr)) + \
847 offsetof(type, member), \
848 sizeof(((type *)0)->member)))
849
Chris Mason0f827312007-10-15 16:18:56 -0400850#ifndef BTRFS_SETGET_FUNCS
Chris Mason5f39d392007-10-15 16:14:19 -0400851#define BTRFS_SETGET_FUNCS(name, type, member, bits) \
Chris Mason0f827312007-10-15 16:18:56 -0400852u##bits btrfs_##name(struct extent_buffer *eb, type *s); \
853void btrfs_set_##name(struct extent_buffer *eb, type *s, u##bits val);
854#endif
Chris Mason9078a3e2007-04-26 16:46:15 -0400855
Chris Mason5f39d392007-10-15 16:14:19 -0400856#define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
857static inline u##bits btrfs_##name(struct extent_buffer *eb) \
858{ \
David Millerdf68b8a2008-02-15 10:40:52 -0500859 type *p = kmap_atomic(eb->first_page, KM_USER0); \
860 u##bits res = le##bits##_to_cpu(p->member); \
861 kunmap_atomic(p, KM_USER0); \
Chris Mason810191f2007-10-15 16:18:55 -0400862 return res; \
Chris Mason5f39d392007-10-15 16:14:19 -0400863} \
864static inline void btrfs_set_##name(struct extent_buffer *eb, \
865 u##bits val) \
866{ \
David Millerdf68b8a2008-02-15 10:40:52 -0500867 type *p = kmap_atomic(eb->first_page, KM_USER0); \
868 p->member = cpu_to_le##bits(val); \
869 kunmap_atomic(p, KM_USER0); \
Chris Mason9078a3e2007-04-26 16:46:15 -0400870}
Chris Mason1e1d2702007-03-15 19:03:33 -0400871
Chris Mason5f39d392007-10-15 16:14:19 -0400872#define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
873static inline u##bits btrfs_##name(type *s) \
874{ \
875 return le##bits##_to_cpu(s->member); \
876} \
877static inline void btrfs_set_##name(type *s, u##bits val) \
878{ \
879 s->member = cpu_to_le##bits(val); \
Chris Mason1e1d2702007-03-15 19:03:33 -0400880}
881
Chris Mason0b86a832008-03-24 15:01:56 -0400882BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
883BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
884BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
885BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
886BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
887BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
888BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
Chris Masone17cade2008-04-15 15:41:47 -0400889BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
890BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
891BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
Chris Mason0b86a832008-03-24 15:01:56 -0400892
Chris Mason8a4b83c2008-03-24 15:02:07 -0400893BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
894BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
895 total_bytes, 64);
896BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
897 bytes_used, 64);
898BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
899 io_align, 32);
900BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
901 io_width, 32);
902BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
903 sector_size, 32);
904BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
Chris Masone17cade2008-04-15 15:41:47 -0400905BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
906 dev_group, 32);
907BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
908 seek_speed, 8);
909BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
910 bandwidth, 8);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400911
Chris Mason0b86a832008-03-24 15:01:56 -0400912static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
913{
914 return (char *)d + offsetof(struct btrfs_dev_item, uuid);
915}
916
Chris Masone17cade2008-04-15 15:41:47 -0400917BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
Chris Mason0b86a832008-03-24 15:01:56 -0400918BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
919BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
920BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
921BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
922BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
923BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
924BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
Chris Mason321aecc2008-04-16 10:49:51 -0400925BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
Chris Mason0b86a832008-03-24 15:01:56 -0400926BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
927BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
928
Chris Masone17cade2008-04-15 15:41:47 -0400929static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
930{
931 return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
932}
933
934BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
Chris Mason0b86a832008-03-24 15:01:56 -0400935BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
936BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
937 stripe_len, 64);
938BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
939 io_align, 32);
940BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
941 io_width, 32);
942BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
943 sector_size, 32);
944BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
945BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
946 num_stripes, 16);
Chris Mason321aecc2008-04-16 10:49:51 -0400947BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
948 sub_stripes, 16);
Chris Mason0b86a832008-03-24 15:01:56 -0400949BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
950BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
951
952static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
953 int nr)
954{
955 unsigned long offset = (unsigned long)c;
956 offset += offsetof(struct btrfs_chunk, stripe);
957 offset += nr * sizeof(struct btrfs_stripe);
958 return (struct btrfs_stripe *)offset;
959}
960
Chris Masona4437552008-04-18 10:29:38 -0400961static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
962{
963 return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
964}
965
Chris Mason0b86a832008-03-24 15:01:56 -0400966static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
967 struct btrfs_chunk *c, int nr)
968{
969 return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
970}
971
972static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
973 struct btrfs_chunk *c, int nr,
974 u64 val)
975{
976 btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
977}
978
979static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
980 struct btrfs_chunk *c, int nr)
981{
982 return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
983}
984
985static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
986 struct btrfs_chunk *c, int nr,
987 u64 val)
988{
989 btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
990}
991
Chris Mason5f39d392007-10-15 16:14:19 -0400992/* struct btrfs_block_group_item */
993BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
994 used, 64);
995BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
996 used, 64);
Chris Mason0b86a832008-03-24 15:01:56 -0400997BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
998 struct btrfs_block_group_item, chunk_objectid, 64);
Chris Masone17cade2008-04-15 15:41:47 -0400999
1000BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
Chris Mason0b86a832008-03-24 15:01:56 -04001001 struct btrfs_block_group_item, chunk_objectid, 64);
1002BTRFS_SETGET_FUNCS(disk_block_group_flags,
1003 struct btrfs_block_group_item, flags, 64);
1004BTRFS_SETGET_STACK_FUNCS(block_group_flags,
1005 struct btrfs_block_group_item, flags, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001006
Chris Mason39544012007-12-12 14:38:19 -05001007/* struct btrfs_inode_ref */
1008BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
Josef Bacikaec74772008-07-24 12:12:38 -04001009BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
Chris Mason39544012007-12-12 14:38:19 -05001010
Chris Mason5f39d392007-10-15 16:14:19 -04001011/* struct btrfs_inode_item */
1012BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
Chris Masone02119d2008-09-05 16:13:11 -04001013BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001014BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
1015BTRFS_SETGET_FUNCS(inode_nblocks, struct btrfs_inode_item, nblocks, 64);
1016BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
1017BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
1018BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
1019BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
1020BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
Chris Mason0b86a832008-03-24 15:01:56 -04001021BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001022BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 16);
1023BTRFS_SETGET_FUNCS(inode_compat_flags, struct btrfs_inode_item,
1024 compat_flags, 16);
1025
Chris Mason0b86a832008-03-24 15:01:56 -04001026static inline struct btrfs_timespec *
Chris Mason5f39d392007-10-15 16:14:19 -04001027btrfs_inode_atime(struct btrfs_inode_item *inode_item)
Chris Mason1e1d2702007-03-15 19:03:33 -04001028{
Chris Mason5f39d392007-10-15 16:14:19 -04001029 unsigned long ptr = (unsigned long)inode_item;
1030 ptr += offsetof(struct btrfs_inode_item, atime);
Chris Mason0b86a832008-03-24 15:01:56 -04001031 return (struct btrfs_timespec *)ptr;
Chris Mason1e1d2702007-03-15 19:03:33 -04001032}
1033
Chris Mason0b86a832008-03-24 15:01:56 -04001034static inline struct btrfs_timespec *
Chris Mason5f39d392007-10-15 16:14:19 -04001035btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
Chris Mason1e1d2702007-03-15 19:03:33 -04001036{
Chris Mason5f39d392007-10-15 16:14:19 -04001037 unsigned long ptr = (unsigned long)inode_item;
1038 ptr += offsetof(struct btrfs_inode_item, mtime);
Chris Mason0b86a832008-03-24 15:01:56 -04001039 return (struct btrfs_timespec *)ptr;
Chris Mason1e1d2702007-03-15 19:03:33 -04001040}
1041
Chris Mason0b86a832008-03-24 15:01:56 -04001042static inline struct btrfs_timespec *
Chris Mason5f39d392007-10-15 16:14:19 -04001043btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
Chris Mason1e1d2702007-03-15 19:03:33 -04001044{
Chris Mason5f39d392007-10-15 16:14:19 -04001045 unsigned long ptr = (unsigned long)inode_item;
1046 ptr += offsetof(struct btrfs_inode_item, ctime);
Chris Mason0b86a832008-03-24 15:01:56 -04001047 return (struct btrfs_timespec *)ptr;
Chris Mason1e1d2702007-03-15 19:03:33 -04001048}
1049
Chris Mason0b86a832008-03-24 15:01:56 -04001050static inline struct btrfs_timespec *
Chris Mason5f39d392007-10-15 16:14:19 -04001051btrfs_inode_otime(struct btrfs_inode_item *inode_item)
Chris Mason1e1d2702007-03-15 19:03:33 -04001052{
Chris Mason5f39d392007-10-15 16:14:19 -04001053 unsigned long ptr = (unsigned long)inode_item;
1054 ptr += offsetof(struct btrfs_inode_item, otime);
Chris Mason0b86a832008-03-24 15:01:56 -04001055 return (struct btrfs_timespec *)ptr;
Chris Mason1e1d2702007-03-15 19:03:33 -04001056}
1057
Chris Mason0b86a832008-03-24 15:01:56 -04001058BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
1059BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
Chris Mason5f39d392007-10-15 16:14:19 -04001060
Chris Mason0b86a832008-03-24 15:01:56 -04001061/* struct btrfs_dev_extent */
Chris Masone17cade2008-04-15 15:41:47 -04001062BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
1063 chunk_tree, 64);
1064BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
1065 chunk_objectid, 64);
1066BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
1067 chunk_offset, 64);
Chris Mason0b86a832008-03-24 15:01:56 -04001068BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
1069
Chris Masone17cade2008-04-15 15:41:47 -04001070static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
1071{
1072 unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
1073 return (u8 *)((unsigned long)dev + ptr);
1074}
1075
Chris Mason74493f72007-12-11 09:25:06 -05001076/* struct btrfs_extent_ref */
1077BTRFS_SETGET_FUNCS(ref_root, struct btrfs_extent_ref, root, 64);
1078BTRFS_SETGET_FUNCS(ref_generation, struct btrfs_extent_ref, generation, 64);
1079BTRFS_SETGET_FUNCS(ref_objectid, struct btrfs_extent_ref, objectid, 64);
1080BTRFS_SETGET_FUNCS(ref_offset, struct btrfs_extent_ref, offset, 64);
Zheng Yan31840ae2008-09-23 13:14:14 -04001081BTRFS_SETGET_FUNCS(ref_num_refs, struct btrfs_extent_ref, num_refs, 32);
Chris Mason74493f72007-12-11 09:25:06 -05001082
Chris Mason7bb86312007-12-11 09:25:06 -05001083BTRFS_SETGET_STACK_FUNCS(stack_ref_root, struct btrfs_extent_ref, root, 64);
1084BTRFS_SETGET_STACK_FUNCS(stack_ref_generation, struct btrfs_extent_ref,
Chris Mason74493f72007-12-11 09:25:06 -05001085 generation, 64);
Chris Mason7bb86312007-12-11 09:25:06 -05001086BTRFS_SETGET_STACK_FUNCS(stack_ref_objectid, struct btrfs_extent_ref,
1087 objectid, 64);
Zheng Yan31840ae2008-09-23 13:14:14 -04001088BTRFS_SETGET_STACK_FUNCS(stack_ref_offset, struct btrfs_extent_ref,
1089 offset, 64);
1090BTRFS_SETGET_STACK_FUNCS(stack_ref_num_refs, struct btrfs_extent_ref,
1091 num_refs, 32);
Chris Mason5f39d392007-10-15 16:14:19 -04001092
Zheng Yan31840ae2008-09-23 13:14:14 -04001093/* struct btrfs_extent_item */
1094BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 32);
Chris Mason5f39d392007-10-15 16:14:19 -04001095BTRFS_SETGET_STACK_FUNCS(stack_extent_refs, struct btrfs_extent_item,
1096 refs, 32);
Chris Mason5f39d392007-10-15 16:14:19 -04001097
1098/* struct btrfs_node */
1099BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
Chris Mason74493f72007-12-11 09:25:06 -05001100BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001101
1102static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
Chris Mason1e1d2702007-03-15 19:03:33 -04001103{
Chris Mason5f39d392007-10-15 16:14:19 -04001104 unsigned long ptr;
1105 ptr = offsetof(struct btrfs_node, ptrs) +
1106 sizeof(struct btrfs_key_ptr) * nr;
1107 return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
Chris Mason1e1d2702007-03-15 19:03:33 -04001108}
1109
Chris Mason5f39d392007-10-15 16:14:19 -04001110static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
1111 int nr, u64 val)
Chris Mason31f3c992007-04-30 15:25:45 -04001112{
Chris Mason5f39d392007-10-15 16:14:19 -04001113 unsigned long ptr;
1114 ptr = offsetof(struct btrfs_node, ptrs) +
1115 sizeof(struct btrfs_key_ptr) * nr;
1116 btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
Chris Mason31f3c992007-04-30 15:25:45 -04001117}
1118
Chris Mason74493f72007-12-11 09:25:06 -05001119static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
1120{
1121 unsigned long ptr;
1122 ptr = offsetof(struct btrfs_node, ptrs) +
1123 sizeof(struct btrfs_key_ptr) * nr;
1124 return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
1125}
1126
1127static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
1128 int nr, u64 val)
1129{
1130 unsigned long ptr;
1131 ptr = offsetof(struct btrfs_node, ptrs) +
1132 sizeof(struct btrfs_key_ptr) * nr;
1133 btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
1134}
1135
Chris Mason810191f2007-10-15 16:18:55 -04001136static inline unsigned long btrfs_node_key_ptr_offset(int nr)
Chris Mason31f3c992007-04-30 15:25:45 -04001137{
Chris Mason5f39d392007-10-15 16:14:19 -04001138 return offsetof(struct btrfs_node, ptrs) +
1139 sizeof(struct btrfs_key_ptr) * nr;
Chris Mason31f3c992007-04-30 15:25:45 -04001140}
1141
Chris Masone644d022007-11-06 15:09:29 -05001142void btrfs_node_key(struct extent_buffer *eb,
1143 struct btrfs_disk_key *disk_key, int nr);
1144
Chris Mason5f39d392007-10-15 16:14:19 -04001145static inline void btrfs_set_node_key(struct extent_buffer *eb,
1146 struct btrfs_disk_key *disk_key, int nr)
1147{
1148 unsigned long ptr;
1149 ptr = btrfs_node_key_ptr_offset(nr);
1150 write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1151 struct btrfs_key_ptr, key, disk_key);
Chris Mason1e1d2702007-03-15 19:03:33 -04001152}
1153
Chris Mason5f39d392007-10-15 16:14:19 -04001154/* struct btrfs_item */
1155BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
1156BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
1157
1158static inline unsigned long btrfs_item_nr_offset(int nr)
Chris Mason1e1d2702007-03-15 19:03:33 -04001159{
Chris Mason5f39d392007-10-15 16:14:19 -04001160 return offsetof(struct btrfs_leaf, items) +
1161 sizeof(struct btrfs_item) * nr;
Chris Mason1e1d2702007-03-15 19:03:33 -04001162}
1163
Chris Mason5f39d392007-10-15 16:14:19 -04001164static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
1165 int nr)
Chris Mason1e1d2702007-03-15 19:03:33 -04001166{
Chris Mason5f39d392007-10-15 16:14:19 -04001167 return (struct btrfs_item *)btrfs_item_nr_offset(nr);
Chris Mason1e1d2702007-03-15 19:03:33 -04001168}
1169
Chris Mason5f39d392007-10-15 16:14:19 -04001170static inline u32 btrfs_item_end(struct extent_buffer *eb,
1171 struct btrfs_item *item)
Chris Mason1e1d2702007-03-15 19:03:33 -04001172{
Chris Mason5f39d392007-10-15 16:14:19 -04001173 return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
Chris Mason1e1d2702007-03-15 19:03:33 -04001174}
1175
Chris Mason5f39d392007-10-15 16:14:19 -04001176static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
Chris Mason1e1d2702007-03-15 19:03:33 -04001177{
Chris Mason5f39d392007-10-15 16:14:19 -04001178 return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
Chris Mason1e1d2702007-03-15 19:03:33 -04001179}
1180
Chris Mason5f39d392007-10-15 16:14:19 -04001181static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
Chris Mason1e1d2702007-03-15 19:03:33 -04001182{
Chris Mason5f39d392007-10-15 16:14:19 -04001183 return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
Chris Mason1e1d2702007-03-15 19:03:33 -04001184}
1185
Chris Mason5f39d392007-10-15 16:14:19 -04001186static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
Chris Mason1e1d2702007-03-15 19:03:33 -04001187{
Chris Mason5f39d392007-10-15 16:14:19 -04001188 return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
Chris Mason1e1d2702007-03-15 19:03:33 -04001189}
1190
Chris Mason5f39d392007-10-15 16:14:19 -04001191static inline void btrfs_item_key(struct extent_buffer *eb,
1192 struct btrfs_disk_key *disk_key, int nr)
Chris Mason1e1d2702007-03-15 19:03:33 -04001193{
Chris Mason5f39d392007-10-15 16:14:19 -04001194 struct btrfs_item *item = btrfs_item_nr(eb, nr);
1195 read_eb_member(eb, item, struct btrfs_item, key, disk_key);
Chris Mason1e1d2702007-03-15 19:03:33 -04001196}
1197
Chris Mason5f39d392007-10-15 16:14:19 -04001198static inline void btrfs_set_item_key(struct extent_buffer *eb,
1199 struct btrfs_disk_key *disk_key, int nr)
Chris Mason1e1d2702007-03-15 19:03:33 -04001200{
Chris Mason5f39d392007-10-15 16:14:19 -04001201 struct btrfs_item *item = btrfs_item_nr(eb, nr);
1202 write_eb_member(eb, item, struct btrfs_item, key, disk_key);
Chris Mason1e1d2702007-03-15 19:03:33 -04001203}
1204
Chris Masone02119d2008-09-05 16:13:11 -04001205BTRFS_SETGET_FUNCS(dir_log_end, struct btrfs_dir_log_item, end, 64);
1206
Chris Mason5f39d392007-10-15 16:14:19 -04001207/* struct btrfs_dir_item */
Josef Bacik5103e942007-11-16 11:45:54 -05001208BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
Chris Mason5f39d392007-10-15 16:14:19 -04001209BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
1210BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
Chris Masone02119d2008-09-05 16:13:11 -04001211BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001212
1213static inline void btrfs_dir_item_key(struct extent_buffer *eb,
1214 struct btrfs_dir_item *item,
1215 struct btrfs_disk_key *key)
Chris Mason1e1d2702007-03-15 19:03:33 -04001216{
Chris Mason5f39d392007-10-15 16:14:19 -04001217 read_eb_member(eb, item, struct btrfs_dir_item, location, key);
Chris Mason1e1d2702007-03-15 19:03:33 -04001218}
1219
Chris Mason5f39d392007-10-15 16:14:19 -04001220static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
1221 struct btrfs_dir_item *item,
1222 struct btrfs_disk_key *key)
Chris Mason1e1d2702007-03-15 19:03:33 -04001223{
Chris Mason5f39d392007-10-15 16:14:19 -04001224 write_eb_member(eb, item, struct btrfs_dir_item, location, key);
Chris Mason1e1d2702007-03-15 19:03:33 -04001225}
1226
Chris Mason5f39d392007-10-15 16:14:19 -04001227/* struct btrfs_disk_key */
1228BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
1229 objectid, 64);
1230BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
1231BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
Chris Mason1d4f6402007-03-15 15:18:43 -04001232
Chris Masone2fa7222007-03-12 16:22:34 -04001233static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
1234 struct btrfs_disk_key *disk)
1235{
1236 cpu->offset = le64_to_cpu(disk->offset);
Chris Mason5f39d392007-10-15 16:14:19 -04001237 cpu->type = disk->type;
Chris Masone2fa7222007-03-12 16:22:34 -04001238 cpu->objectid = le64_to_cpu(disk->objectid);
1239}
1240
1241static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
1242 struct btrfs_key *cpu)
1243{
1244 disk->offset = cpu_to_le64(cpu->offset);
Chris Mason5f39d392007-10-15 16:14:19 -04001245 disk->type = cpu->type;
Chris Masone2fa7222007-03-12 16:22:34 -04001246 disk->objectid = cpu_to_le64(cpu->objectid);
1247}
1248
Chris Mason5f39d392007-10-15 16:14:19 -04001249static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
1250 struct btrfs_key *key, int nr)
Chris Masone2fa7222007-03-12 16:22:34 -04001251{
Chris Mason5f39d392007-10-15 16:14:19 -04001252 struct btrfs_disk_key disk_key;
1253 btrfs_node_key(eb, &disk_key, nr);
1254 btrfs_disk_key_to_cpu(key, &disk_key);
Chris Masone2fa7222007-03-12 16:22:34 -04001255}
1256
Chris Mason5f39d392007-10-15 16:14:19 -04001257static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
1258 struct btrfs_key *key, int nr)
Chris Masone2fa7222007-03-12 16:22:34 -04001259{
Chris Mason5f39d392007-10-15 16:14:19 -04001260 struct btrfs_disk_key disk_key;
1261 btrfs_item_key(eb, &disk_key, nr);
1262 btrfs_disk_key_to_cpu(key, &disk_key);
Chris Masone2fa7222007-03-12 16:22:34 -04001263}
1264
Chris Mason5f39d392007-10-15 16:14:19 -04001265static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
1266 struct btrfs_dir_item *item,
1267 struct btrfs_key *key)
Chris Masone2fa7222007-03-12 16:22:34 -04001268{
Chris Mason5f39d392007-10-15 16:14:19 -04001269 struct btrfs_disk_key disk_key;
1270 btrfs_dir_item_key(eb, item, &disk_key);
1271 btrfs_disk_key_to_cpu(key, &disk_key);
Chris Masone2fa7222007-03-12 16:22:34 -04001272}
1273
Chris Mason5f39d392007-10-15 16:14:19 -04001274
1275static inline u8 btrfs_key_type(struct btrfs_key *key)
Chris Masone2fa7222007-03-12 16:22:34 -04001276{
Chris Mason5f39d392007-10-15 16:14:19 -04001277 return key->type;
Chris Masone2fa7222007-03-12 16:22:34 -04001278}
1279
Chris Mason5f39d392007-10-15 16:14:19 -04001280static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
Chris Masone2fa7222007-03-12 16:22:34 -04001281{
Chris Mason5f39d392007-10-15 16:14:19 -04001282 key->type = val;
Chris Masone2fa7222007-03-12 16:22:34 -04001283}
1284
Chris Mason5f39d392007-10-15 16:14:19 -04001285/* struct btrfs_header */
Chris Masondb945352007-10-15 16:15:53 -04001286BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001287BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
1288 generation, 64);
1289BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
1290BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
Chris Mason63b10fc2008-04-01 11:21:32 -04001291BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001292BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
1293
Chris Mason63b10fc2008-04-01 11:21:32 -04001294static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
1295{
1296 return (btrfs_header_flags(eb) & flag) == flag;
1297}
1298
1299static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
1300{
1301 u64 flags = btrfs_header_flags(eb);
1302 btrfs_set_header_flags(eb, flags | flag);
1303 return (flags & flag) == flag;
1304}
1305
1306static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
1307{
1308 u64 flags = btrfs_header_flags(eb);
1309 btrfs_set_header_flags(eb, flags & ~flag);
1310 return (flags & flag) == flag;
1311}
1312
Chris Mason5f39d392007-10-15 16:14:19 -04001313static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
Chris Masone2fa7222007-03-12 16:22:34 -04001314{
Chris Mason5f39d392007-10-15 16:14:19 -04001315 unsigned long ptr = offsetof(struct btrfs_header, fsid);
1316 return (u8 *)ptr;
Chris Masone2fa7222007-03-12 16:22:34 -04001317}
1318
Chris Masone17cade2008-04-15 15:41:47 -04001319static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
1320{
1321 unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
1322 return (u8 *)ptr;
1323}
1324
Chris Mason5f39d392007-10-15 16:14:19 -04001325static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
Chris Masona429e512007-04-18 16:15:28 -04001326{
Chris Mason5f39d392007-10-15 16:14:19 -04001327 unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
1328 return (u8 *)ptr;
Chris Masona429e512007-04-18 16:15:28 -04001329}
1330
Chris Mason5f39d392007-10-15 16:14:19 -04001331static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
Chris Masona429e512007-04-18 16:15:28 -04001332{
Chris Mason5f39d392007-10-15 16:14:19 -04001333 unsigned long ptr = offsetof(struct btrfs_header, csum);
1334 return (u8 *)ptr;
Chris Masona429e512007-04-18 16:15:28 -04001335}
1336
Chris Mason5f39d392007-10-15 16:14:19 -04001337static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
Chris Masona429e512007-04-18 16:15:28 -04001338{
Chris Mason5f39d392007-10-15 16:14:19 -04001339 return NULL;
Chris Masona429e512007-04-18 16:15:28 -04001340}
1341
Chris Mason5f39d392007-10-15 16:14:19 -04001342static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
Chris Masona429e512007-04-18 16:15:28 -04001343{
Chris Mason5f39d392007-10-15 16:14:19 -04001344 return NULL;
Chris Masona429e512007-04-18 16:15:28 -04001345}
1346
Chris Mason5f39d392007-10-15 16:14:19 -04001347static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
Chris Mason7518a232007-03-12 12:01:18 -04001348{
Chris Mason5f39d392007-10-15 16:14:19 -04001349 return NULL;
Chris Mason7518a232007-03-12 12:01:18 -04001350}
1351
Chris Mason5f39d392007-10-15 16:14:19 -04001352static inline int btrfs_is_leaf(struct extent_buffer *eb)
Chris Mason7518a232007-03-12 12:01:18 -04001353{
Chris Mason5f39d392007-10-15 16:14:19 -04001354 return (btrfs_header_level(eb) == 0);
Chris Mason7518a232007-03-12 12:01:18 -04001355}
1356
Chris Mason5f39d392007-10-15 16:14:19 -04001357/* struct btrfs_root_item */
1358BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
Chris Masondb945352007-10-15 16:15:53 -04001359BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
1360BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
Chris Mason5f39d392007-10-15 16:14:19 -04001361
Chris Masondb945352007-10-15 16:15:53 -04001362BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
1363BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
Chris Mason5f39d392007-10-15 16:14:19 -04001364BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
1365BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
1366BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 32);
Chris Masondb945352007-10-15 16:15:53 -04001367BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
1368BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001369
1370/* struct btrfs_super_block */
Chris Masondb945352007-10-15 16:15:53 -04001371BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
Chris Masona061fc82008-05-07 11:43:44 -04001372BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001373BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
1374 generation, 64);
1375BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
Chris Mason0b86a832008-03-24 15:01:56 -04001376BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
1377 struct btrfs_super_block, sys_chunk_array_size, 32);
Chris Masondb945352007-10-15 16:15:53 -04001378BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
1379 root_level, 8);
Chris Mason0b86a832008-03-24 15:01:56 -04001380BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
1381 chunk_root, 64);
1382BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
Chris Masone02119d2008-09-05 16:13:11 -04001383 chunk_root_level, 8);
1384BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
1385 log_root, 64);
1386BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
1387 log_root_level, 8);
Chris Masondb945352007-10-15 16:15:53 -04001388BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
1389 total_bytes, 64);
1390BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
1391 bytes_used, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001392BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
1393 sectorsize, 32);
1394BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
1395 nodesize, 32);
1396BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
1397 leafsize, 32);
Chris Mason87ee04e2007-11-30 11:30:34 -05001398BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
1399 stripesize, 32);
Chris Mason5f39d392007-10-15 16:14:19 -04001400BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
1401 root_dir_objectid, 64);
Chris Mason8a4b83c2008-03-24 15:02:07 -04001402BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
1403 num_devices, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001404
1405static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
Chris Mason7f5c1512007-03-23 15:56:19 -04001406{
Chris Mason5f39d392007-10-15 16:14:19 -04001407 return offsetof(struct btrfs_leaf, items);
Chris Mason7f5c1512007-03-23 15:56:19 -04001408}
1409
Chris Mason5f39d392007-10-15 16:14:19 -04001410/* struct btrfs_file_extent_item */
1411BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
Chris Mason7f5c1512007-03-23 15:56:19 -04001412
Chris Mason5f39d392007-10-15 16:14:19 -04001413static inline unsigned long btrfs_file_extent_inline_start(struct
Chris Mason236454df2007-04-19 13:37:44 -04001414 btrfs_file_extent_item *e)
1415{
Chris Mason5f39d392007-10-15 16:14:19 -04001416 unsigned long offset = (unsigned long)e;
Chris Masondb945352007-10-15 16:15:53 -04001417 offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
Chris Mason5f39d392007-10-15 16:14:19 -04001418 return offset;
Chris Mason236454df2007-04-19 13:37:44 -04001419}
1420
1421static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
1422{
Chris Masondb945352007-10-15 16:15:53 -04001423 return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
Chris Mason236454df2007-04-19 13:37:44 -04001424}
1425
Chris Mason5f39d392007-10-15 16:14:19 -04001426static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
1427 struct btrfs_item *e)
Chris Mason236454df2007-04-19 13:37:44 -04001428{
Chris Mason5f39d392007-10-15 16:14:19 -04001429 unsigned long offset;
Chris Masondb945352007-10-15 16:15:53 -04001430 offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
Chris Mason5f39d392007-10-15 16:14:19 -04001431 return btrfs_item_size(eb, e) - offset;
Chris Mason236454df2007-04-19 13:37:44 -04001432}
1433
Chris Masondb945352007-10-15 16:15:53 -04001434BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
1435 disk_bytenr, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001436BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
1437 generation, 64);
Chris Masondb945352007-10-15 16:15:53 -04001438BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
1439 disk_num_bytes, 64);
Chris Mason5f39d392007-10-15 16:14:19 -04001440BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
1441 offset, 64);
Chris Masondb945352007-10-15 16:15:53 -04001442BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
1443 num_bytes, 64);
Chris Mason9f5fae22007-03-20 14:38:32 -04001444
Chris Masone20d96d2007-03-22 12:13:20 -04001445static inline struct btrfs_root *btrfs_sb(struct super_block *sb)
1446{
1447 return sb->s_fs_info;
1448}
1449
Josef Bacik58176a92007-08-29 15:47:34 -04001450static inline int btrfs_set_root_name(struct btrfs_root *root,
1451 const char *name, int len)
1452{
1453 /* if we already have a name just free it */
1454 if (root->name)
1455 kfree(root->name);
1456
1457 root->name = kmalloc(len+1, GFP_KERNEL);
1458 if (!root->name)
1459 return -ENOMEM;
1460
1461 memcpy(root->name, name, len);
1462 root->name[len] ='\0';
1463
1464 return 0;
1465}
1466
Chris Masondb945352007-10-15 16:15:53 -04001467static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
1468 if (level == 0)
1469 return root->leafsize;
1470 return root->nodesize;
1471}
1472
Chris Mason4beb1b82007-03-14 10:31:29 -04001473/* helper function to cast into the data area of the leaf. */
1474#define btrfs_item_ptr(leaf, slot, type) \
Chris Mason123abc82007-03-14 14:14:43 -04001475 ((type *)(btrfs_leaf_data(leaf) + \
Chris Mason5f39d392007-10-15 16:14:19 -04001476 btrfs_item_offset_nr(leaf, slot)))
1477
1478#define btrfs_item_ptr_offset(leaf, slot) \
1479 ((unsigned long)(btrfs_leaf_data(leaf) + \
1480 btrfs_item_offset_nr(leaf, slot)))
Chris Mason4beb1b82007-03-14 10:31:29 -04001481
Chris Mason2b1f55b2008-09-24 11:48:04 -04001482static inline struct dentry *fdentry(struct file *file)
1483{
Chris Mason6da6aba2007-12-18 16:15:09 -05001484 return file->f_path.dentry;
Chris Mason6da6aba2007-12-18 16:15:09 -05001485}
1486
Chris Masonb18c6682007-04-17 13:26:50 -04001487/* extent-tree.c */
Zheng Yan31840ae2008-09-23 13:14:14 -04001488int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001489int btrfs_lookup_extent_ref(struct btrfs_trans_handle *trans,
1490 struct btrfs_root *root, u64 bytenr,
1491 u64 num_bytes, u32 *refs);
Chris Masone02119d2008-09-05 16:13:11 -04001492int btrfs_update_pinned_extents(struct btrfs_root *root,
1493 u64 bytenr, u64 num, int pin);
1494int btrfs_drop_leaf_ref(struct btrfs_trans_handle *trans,
1495 struct btrfs_root *root, struct extent_buffer *leaf);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001496int btrfs_cross_ref_exists(struct btrfs_trans_handle *trans,
1497 struct btrfs_root *root,
Yan Zhengf321e492008-07-30 09:26:11 -04001498 struct btrfs_key *key, u64 bytenr);
Chris Masone9d0b132007-08-10 14:06:19 -04001499int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1500 struct btrfs_root *root);
Chris Masond1310b22008-01-24 16:13:08 -05001501int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
Chris Mason5276aed2007-06-11 21:33:38 -04001502struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
1503 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -04001504 u64 bytenr);
Chris Mason31f3c992007-04-30 15:25:45 -04001505struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1506 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -04001507 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -04001508 int data, int owner);
Chris Mason5f39d392007-10-15 16:14:19 -04001509struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001510 struct btrfs_root *root,
Zheng Yan31840ae2008-09-23 13:14:14 -04001511 u32 blocksize, u64 parent,
Chris Mason7bb86312007-12-11 09:25:06 -05001512 u64 root_objectid,
1513 u64 ref_generation,
Chris Mason7bb86312007-12-11 09:25:06 -05001514 int level,
1515 u64 hint,
1516 u64 empty_size);
Chris Mason65b51a02008-08-01 15:11:20 -04001517struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
1518 struct btrfs_root *root,
1519 u64 bytenr, u32 blocksize);
Chris Masonedbd8d42007-12-21 16:27:24 -05001520int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size);
Chris Mason7bb86312007-12-11 09:25:06 -05001521int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
1522 struct btrfs_root *root,
Zheng Yan31840ae2008-09-23 13:14:14 -04001523 struct btrfs_path *path,
1524 u64 bytenr, u64 parent,
Chris Mason7bb86312007-12-11 09:25:06 -05001525 u64 root_objectid, u64 ref_generation,
1526 u64 owner, u64 owner_offset);
Chris Mason4d775672007-04-20 20:23:12 -04001527int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001528 struct btrfs_root *root,
Zheng Yan31840ae2008-09-23 13:14:14 -04001529 u64 num_bytes, u64 parent, u64 min_bytes,
Chris Mason98d20f62008-04-14 09:46:10 -04001530 u64 root_objectid, u64 ref_generation,
Chris Mason7bb86312007-12-11 09:25:06 -05001531 u64 owner, u64 owner_offset,
1532 u64 empty_size, u64 hint_byte,
Chris Masonec44a352008-04-28 15:29:52 -04001533 u64 search_end, struct btrfs_key *ins, u64 data);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001534int btrfs_alloc_reserved_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04001535 struct btrfs_root *root, u64 parent,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001536 u64 root_objectid, u64 ref_generation,
1537 u64 owner, u64 owner_offset,
1538 struct btrfs_key *ins);
Chris Masone02119d2008-09-05 16:13:11 -04001539int btrfs_alloc_logged_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04001540 struct btrfs_root *root, u64 parent,
Chris Masone02119d2008-09-05 16:13:11 -04001541 u64 root_objectid, u64 ref_generation,
1542 u64 owner, u64 owner_offset,
1543 struct btrfs_key *ins);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001544int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
1545 struct btrfs_root *root,
1546 u64 num_bytes, u64 min_alloc_size,
1547 u64 empty_size, u64 hint_byte,
1548 u64 search_end, struct btrfs_key *ins,
1549 u64 data);
Chris Masone089f052007-03-16 16:20:31 -04001550int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Zheng Yan31840ae2008-09-23 13:14:14 -04001551 struct extent_buffer *orig_buf, struct extent_buffer *buf,
1552 u32 *nr_extents);
1553int btrfs_cache_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1554 struct extent_buffer *buf, u32 nr_extents);
1555int btrfs_update_ref(struct btrfs_trans_handle *trans,
1556 struct btrfs_root *root, struct extent_buffer *orig_buf,
1557 struct extent_buffer *buf, int start_slot, int nr);
1558int btrfs_free_extent(struct btrfs_trans_handle *trans,
1559 struct btrfs_root *root,
1560 u64 bytenr, u64 num_bytes, u64 parent,
Chris Mason7bb86312007-12-11 09:25:06 -05001561 u64 root_objectid, u64 ref_generation,
1562 u64 owner_objectid, u64 owner_offset, int pin);
Chris Mason65b51a02008-08-01 15:11:20 -04001563int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len);
Chris Masonccd467d2007-06-28 15:57:36 -04001564int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1565 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001566 struct extent_io_tree *unpin);
Chris Masonb18c6682007-04-17 13:26:50 -04001567int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04001568 struct btrfs_root *root,
1569 u64 bytenr, u64 num_bytes, u64 parent,
1570 u64 root_objectid, u64 ref_generation,
1571 u64 owner, u64 owner_offset);
1572int btrfs_update_extent_ref(struct btrfs_trans_handle *trans,
1573 struct btrfs_root *root, u64 bytenr,
1574 u64 orig_parent, u64 parent,
1575 u64 root_objectid, u64 ref_generation,
1576 u64 owner, u64 owner_offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04001577int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1578 struct btrfs_root *root);
1579int btrfs_free_block_groups(struct btrfs_fs_info *info);
1580int btrfs_read_block_groups(struct btrfs_root *root);
Chris Mason0b86a832008-03-24 15:01:56 -04001581int btrfs_make_block_group(struct btrfs_trans_handle *trans,
1582 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04001583 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason0b86a832008-03-24 15:01:56 -04001584 u64 size);
Chris Masondee26a92007-03-26 16:00:06 -04001585/* ctree.c */
Chris Mason0b86a832008-03-24 15:01:56 -04001586int btrfs_previous_item(struct btrfs_root *root,
1587 struct btrfs_path *path, u64 min_objectid,
1588 int type);
Zheng Yan31840ae2008-09-23 13:14:14 -04001589int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1590 struct btrfs_root *root, struct btrfs_path *path,
1591 struct btrfs_key *new_key);
Chris Mason925baed2008-06-25 16:01:30 -04001592struct extent_buffer *btrfs_root_node(struct btrfs_root *root);
1593struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root);
Chris Masone7a84562008-06-25 16:01:31 -04001594int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04001595 struct btrfs_key *key, int lowest_level,
1596 int cache_only, u64 min_trans);
1597int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04001598 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04001599 struct btrfs_path *path, int cache_only,
1600 u64 min_trans);
Chris Mason5f39d392007-10-15 16:14:19 -04001601int btrfs_cow_block(struct btrfs_trans_handle *trans,
1602 struct btrfs_root *root, struct extent_buffer *buf,
1603 struct extent_buffer *parent, int parent_slot,
Chris Mason65b51a02008-08-01 15:11:20 -04001604 struct extent_buffer **cow_ret, u64 prealloc_dest);
Chris Masonbe20aa92007-12-17 20:14:01 -05001605int btrfs_copy_root(struct btrfs_trans_handle *trans,
1606 struct btrfs_root *root,
1607 struct extent_buffer *buf,
1608 struct extent_buffer **cow_ret, u64 new_root_objectid);
Chris Mason6567e832007-04-16 09:22:45 -04001609int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1610 *root, struct btrfs_path *path, u32 data_size);
Chris Masonb18c6682007-04-17 13:26:50 -04001611int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1612 struct btrfs_root *root,
1613 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04001614 u32 new_size, int from_end);
Chris Masone089f052007-03-16 16:20:31 -04001615int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1616 *root, struct btrfs_key *key, struct btrfs_path *p, int
1617 ins_len, int cow);
Chris Mason6702ed42007-08-07 16:15:09 -04001618int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001619 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -04001620 int start_slot, int cache_only, u64 *last_ret,
1621 struct btrfs_key *progress);
Chris Mason234b63a2007-03-13 10:46:10 -04001622void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
Chris Mason2c90e5d2007-04-02 10:50:19 -04001623struct btrfs_path *btrfs_alloc_path(void);
1624void btrfs_free_path(struct btrfs_path *p);
Chris Mason234b63a2007-03-13 10:46:10 -04001625void btrfs_init_path(struct btrfs_path *p);
Chris Mason85e21ba2008-01-29 15:11:36 -05001626int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1627 struct btrfs_path *path, int slot, int nr);
1628
1629static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
1630 struct btrfs_root *root,
1631 struct btrfs_path *path)
1632{
1633 return btrfs_del_items(trans, root, path, path->slots[0], 1);
1634}
1635
Chris Masone089f052007-03-16 16:20:31 -04001636int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1637 *root, struct btrfs_key *key, void *data, u32 data_size);
Chris Mason9c583092008-01-29 15:15:18 -05001638int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
1639 struct btrfs_root *root,
1640 struct btrfs_path *path,
1641 struct btrfs_key *cpu_key, u32 *data_size, int nr);
1642
1643static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
1644 struct btrfs_root *root,
1645 struct btrfs_path *path,
1646 struct btrfs_key *key,
1647 u32 data_size)
1648{
1649 return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
1650}
1651
Chris Mason234b63a2007-03-13 10:46:10 -04001652int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Mason7bb86312007-12-11 09:25:06 -05001653int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Mason5f39d392007-10-15 16:14:19 -04001654int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
Chris Masone089f052007-03-16 16:20:31 -04001655int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04001656 *root);
Chris Masondee26a92007-03-26 16:00:06 -04001657/* root-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001658int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1659 struct btrfs_key *key);
1660int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1661 *root, struct btrfs_key *key, struct btrfs_root_item
1662 *item);
1663int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1664 *root, struct btrfs_key *key, struct btrfs_root_item
1665 *item);
1666int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1667 btrfs_root_item *item, struct btrfs_key *key);
Chris Masonbf4ef672008-05-08 13:26:18 -04001668int btrfs_search_root(struct btrfs_root *root, u64 search_start,
1669 u64 *found_objectid);
Chris Mason5ce14bb2007-09-11 11:15:39 -04001670int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
1671 struct btrfs_root *latest_root);
Chris Masondee26a92007-03-26 16:00:06 -04001672/* dir-item.c */
Chris Masone089f052007-03-16 16:20:31 -04001673int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001674 *root, const char *name, int name_len, u64 dir,
Josef Bacikaec74772008-07-24 12:12:38 -04001675 struct btrfs_key *location, u8 type, u64 index);
Chris Mason7e381802007-04-19 15:36:27 -04001676struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1677 struct btrfs_root *root,
1678 struct btrfs_path *path, u64 dir,
1679 const char *name, int name_len,
1680 int mod);
1681struct btrfs_dir_item *
1682btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1683 struct btrfs_root *root,
1684 struct btrfs_path *path, u64 dir,
1685 u64 objectid, const char *name, int name_len,
1686 int mod);
1687struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1688 struct btrfs_path *path,
Chris Mason7f5c1512007-03-23 15:56:19 -04001689 const char *name, int name_len);
Chris Mason7e381802007-04-19 15:36:27 -04001690int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1691 struct btrfs_root *root,
1692 struct btrfs_path *path,
1693 struct btrfs_dir_item *di);
Josef Bacik5103e942007-11-16 11:45:54 -05001694int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
1695 struct btrfs_root *root, const char *name,
1696 u16 name_len, const void *data, u16 data_len,
1697 u64 dir);
1698struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
1699 struct btrfs_root *root,
1700 struct btrfs_path *path, u64 dir,
1701 const char *name, u16 name_len,
1702 int mod);
Josef Bacik7b128762008-07-24 12:17:14 -04001703
1704/* orphan.c */
1705int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
1706 struct btrfs_root *root, u64 offset);
1707int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
1708 struct btrfs_root *root, u64 offset);
1709
Chris Masondee26a92007-03-26 16:00:06 -04001710/* inode-map.c */
Chris Mason9f5fae22007-03-20 14:38:32 -04001711int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1712 struct btrfs_root *fs_root,
1713 u64 dirid, u64 *objectid);
Chris Mason5be6f7f2007-04-05 13:35:25 -04001714int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1715
Chris Masondee26a92007-03-26 16:00:06 -04001716/* inode-item.c */
Chris Mason39544012007-12-12 14:38:19 -05001717int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
1718 struct btrfs_root *root,
1719 const char *name, int name_len,
Josef Bacikaec74772008-07-24 12:12:38 -04001720 u64 inode_objectid, u64 ref_objectid, u64 index);
Chris Mason39544012007-12-12 14:38:19 -05001721int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
1722 struct btrfs_root *root,
1723 const char *name, int name_len,
Josef Bacikaec74772008-07-24 12:12:38 -04001724 u64 inode_objectid, u64 ref_objectid, u64 *index);
Chris Mason5f39d392007-10-15 16:14:19 -04001725int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
1726 struct btrfs_root *root,
1727 struct btrfs_path *path, u64 objectid);
Chris Mason293ffd52007-03-20 15:57:25 -04001728int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -04001729 *root, struct btrfs_path *path,
1730 struct btrfs_key *location, int mod);
Chris Masondee26a92007-03-26 16:00:06 -04001731
1732/* file-item.c */
Chris Mason61b49442008-07-31 15:42:53 -04001733int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
1734 struct bio *bio);
Chris Masonb18c6682007-04-17 13:26:50 -04001735int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Chris Masondee26a92007-03-26 16:00:06 -04001736 struct btrfs_root *root,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001737 u64 objectid, u64 pos, u64 disk_offset,
Chris Masondb945352007-10-15 16:15:53 -04001738 u64 disk_num_bytes,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001739 u64 num_bytes, u64 offset);
Chris Masondee26a92007-03-26 16:00:06 -04001740int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
1741 struct btrfs_root *root,
1742 struct btrfs_path *path, u64 objectid,
Chris Masondb945352007-10-15 16:15:53 -04001743 u64 bytenr, int mod);
Chris Mason065631f2008-02-20 12:07:25 -05001744int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
1745 struct btrfs_root *root, struct inode *inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001746 struct btrfs_ordered_sum *sums);
Chris Mason3edf7d32008-07-18 06:17:13 -04001747int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
1748 struct bio *bio);
Chris Masonb18c6682007-04-17 13:26:50 -04001749struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
1750 struct btrfs_root *root,
1751 struct btrfs_path *path,
1752 u64 objectid, u64 offset,
1753 int cow);
Chris Mason1de037a2007-05-29 15:17:08 -04001754int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
1755 struct btrfs_root *root, struct btrfs_path *path,
1756 u64 isize);
Chris Mason39279cc2007-06-12 06:35:45 -04001757/* inode.c */
Chris Mason4881ee52008-07-24 09:51:08 -04001758
1759/* RHEL and EL kernels have a patch that renames PG_checked to FsMisc */
Eric Sandeen5036f532008-08-07 11:19:42 -04001760#if defined(ClearPageFsMisc) && !defined(ClearPageChecked)
Chris Mason4881ee52008-07-24 09:51:08 -04001761#define ClearPageChecked ClearPageFsMisc
1762#define SetPageChecked SetPageFsMisc
1763#define PageChecked PageFsMisc
1764#endif
1765
Chris Masone02119d2008-09-05 16:13:11 -04001766int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
1767 struct btrfs_root *root,
1768 struct inode *dir, struct inode *inode,
1769 const char *name, int name_len);
1770int btrfs_add_link(struct btrfs_trans_handle *trans,
1771 struct inode *parent_inode, struct inode *inode,
1772 const char *name, int name_len, int add_backref, u64 index);
1773int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
1774 struct btrfs_root *root,
1775 struct inode *inode, u64 new_size,
1776 u32 min_type);
1777
Chris Masonea8c2812008-08-04 23:17:27 -04001778int btrfs_start_delalloc_inodes(struct btrfs_root *root);
1779int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end);
Chris Masonf4219502008-07-22 11:18:09 -04001780int btrfs_writepages(struct address_space *mapping,
1781 struct writeback_control *wbc);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001782int btrfs_create_subvol_root(struct btrfs_root *new_root,
1783 struct btrfs_trans_handle *trans, u64 new_dirid,
1784 struct btrfs_block_group_cache *block_group);
1785
Sven Wegener3b963622008-06-09 21:57:42 -04001786void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
1787 int namelen);
1788
Chris Mason239b14b2008-03-24 15:02:07 -04001789int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
1790 size_t size, struct bio *bio);
1791
Chris Mason90692182008-02-08 13:49:28 -05001792static inline void dec_i_blocks(struct inode *inode, u64 dec)
1793{
1794 dec = dec >> 9;
1795 if (dec <= inode->i_blocks)
1796 inode->i_blocks -= dec;
1797 else
1798 inode->i_blocks = 0;
1799}
1800
Chris Masonedbd8d42007-12-21 16:27:24 -05001801unsigned long btrfs_force_ra(struct address_space *mapping,
1802 struct file_ra_state *ra, struct file *file,
1803 pgoff_t offset, pgoff_t last_index);
Chris Mason1832a6d2007-12-21 16:27:21 -05001804int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
1805 int for_del);
Chris Mason9ebefb182007-06-15 13:50:00 -04001806int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page);
1807int btrfs_readpage(struct file *file, struct page *page);
Chris Mason39279cc2007-06-12 06:35:45 -04001808void btrfs_delete_inode(struct inode *inode);
Chris Mason2da98f02008-01-16 11:44:43 -05001809void btrfs_put_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001810void btrfs_read_locked_inode(struct inode *inode);
1811int btrfs_write_inode(struct inode *inode, int wait);
1812void btrfs_dirty_inode(struct inode *inode);
1813struct inode *btrfs_alloc_inode(struct super_block *sb);
1814void btrfs_destroy_inode(struct inode *inode);
1815int btrfs_init_cachep(void);
1816void btrfs_destroy_cachep(void);
Sage Weil6bf13c02008-06-10 10:07:39 -04001817long btrfs_ioctl_trans_end(struct file *file);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001818struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1819 struct btrfs_root *root, int wait);
Chris Mason39279cc2007-06-12 06:35:45 -04001820struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1821 struct btrfs_root *root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05301822struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
1823 struct btrfs_root *root, int *is_new);
Chris Mason39279cc2007-06-12 06:35:45 -04001824int btrfs_commit_write(struct file *file, struct page *page,
1825 unsigned from, unsigned to);
Chris Masona52d9a82007-08-27 16:49:44 -04001826struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
1827 size_t page_offset, u64 start, u64 end,
1828 int create);
1829int btrfs_update_inode(struct btrfs_trans_handle *trans,
1830 struct btrfs_root *root,
1831 struct inode *inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001832int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode);
1833int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode);
1834void btrfs_orphan_cleanup(struct btrfs_root *root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001835
1836/* ioctl.c */
1837long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
1838
Chris Mason39279cc2007-06-12 06:35:45 -04001839/* file.c */
Chris Masone02119d2008-09-05 16:13:11 -04001840int btrfs_sync_file(struct file *file, struct dentry *dentry, int datasync);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001841int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
1842 int skip_pinned);
Chris Mason5f564062008-01-22 16:47:59 -05001843int btrfs_check_file(struct btrfs_root *root, struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001844extern struct file_operations btrfs_file_operations;
1845int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1846 struct btrfs_root *root, struct inode *inode,
Chris Mason00f5c792007-11-30 10:09:33 -05001847 u64 start, u64 end, u64 inline_limit, u64 *hint_block);
Sage Weil6bf13c02008-06-10 10:07:39 -04001848int btrfs_release_file(struct inode *inode, struct file *file);
1849
Chris Mason6702ed42007-08-07 16:15:09 -04001850/* tree-defrag.c */
1851int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
1852 struct btrfs_root *root, int cache_only);
Josef Bacik58176a92007-08-29 15:47:34 -04001853
1854/* sysfs.c */
1855int btrfs_init_sysfs(void);
1856void btrfs_exit_sysfs(void);
1857int btrfs_sysfs_add_super(struct btrfs_fs_info *fs);
1858int btrfs_sysfs_add_root(struct btrfs_root *root);
1859void btrfs_sysfs_del_root(struct btrfs_root *root);
1860void btrfs_sysfs_del_super(struct btrfs_fs_info *root);
1861
Josef Bacik5103e942007-11-16 11:45:54 -05001862/* xattr.c */
1863ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
Josef Bacik6099afe2008-07-24 12:16:03 -04001864
Chris Masonedbd8d42007-12-21 16:27:24 -05001865/* super.c */
1866u64 btrfs_parse_size(char *str);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -04001867int btrfs_parse_options(struct btrfs_root *root, char *options);
Sage Weil6bf13c02008-06-10 10:07:39 -04001868int btrfs_sync_fs(struct super_block *sb, int wait);
Josef Bacik33268ea2008-07-24 12:16:36 -04001869
1870/* acl.c */
1871int btrfs_check_acl(struct inode *inode, int mask);
1872int btrfs_init_acl(struct inode *inode, struct inode *dir);
1873int btrfs_acl_chmod(struct inode *inode);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001874
1875/* free-space-cache.c */
1876int btrfs_add_free_space(struct btrfs_block_group_cache *block_group,
1877 u64 bytenr, u64 size);
1878int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
1879 u64 bytenr, u64 size);
1880void btrfs_remove_free_space_cache(struct btrfs_block_group_cache
1881 *block_group);
1882struct btrfs_free_space *btrfs_find_free_space(struct btrfs_block_group_cache
1883 *block_group, u64 offset,
1884 u64 bytes);
1885void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
1886 u64 bytes);
1887u64 btrfs_block_group_free_space(struct btrfs_block_group_cache *block_group);
Chris Masoneb60cea2007-02-02 09:18:22 -05001888#endif