Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 1 | /* |
| 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 Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 19 | #ifndef __BTRFS_CTREE__ |
| 20 | #define __BTRFS_CTREE__ |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 21 | |
Chris Mason | 6da6aba | 2007-12-18 16:15:09 -0500 | [diff] [blame] | 22 | #include <linux/version.h> |
Chris Mason | 810191f | 2007-10-15 16:18:55 -0400 | [diff] [blame] | 23 | #include <linux/mm.h> |
| 24 | #include <linux/highmem.h> |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 25 | #include <linux/fs.h> |
Chris Mason | 08607c1 | 2007-06-08 15:33:54 -0400 | [diff] [blame] | 26 | #include <linux/workqueue.h> |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 27 | #include <linux/completion.h> |
Chris Mason | 479965d | 2007-10-15 16:14:27 -0400 | [diff] [blame] | 28 | #include <asm/kmap_types.h> |
Chris Mason | 8ef9762 | 2007-03-26 10:15:30 -0400 | [diff] [blame] | 29 | #include "bit-radix.h" |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 30 | #include "extent_map.h" |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 31 | |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 32 | struct btrfs_trans_handle; |
Chris Mason | 79154b1 | 2007-03-22 15:59:16 -0400 | [diff] [blame] | 33 | struct btrfs_transaction; |
Chris Mason | 35b7e47 | 2007-05-02 15:53:43 -0400 | [diff] [blame] | 34 | extern struct kmem_cache *btrfs_trans_handle_cachep; |
| 35 | extern struct kmem_cache *btrfs_transaction_cachep; |
| 36 | extern struct kmem_cache *btrfs_bit_radix_cachep; |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 37 | extern struct kmem_cache *btrfs_path_cachep; |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 38 | |
Chris Mason | 69a32ac | 2008-01-14 14:33:35 -0500 | [diff] [blame] | 39 | #define BTRFS_MAGIC "_B3RfS_M" |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 40 | |
Chris Mason | f6dbff5 | 2007-12-13 11:13:32 -0500 | [diff] [blame] | 41 | #define BTRFS_MAX_LEVEL 8 |
Chris Mason | 6407bf6 | 2007-03-27 06:33:00 -0400 | [diff] [blame] | 42 | #define BTRFS_ROOT_TREE_OBJECTID 1ULL |
Chris Mason | 0cf6c62 | 2007-06-09 09:22:25 -0400 | [diff] [blame] | 43 | #define BTRFS_EXTENT_TREE_OBJECTID 2ULL |
| 44 | #define BTRFS_FS_TREE_OBJECTID 3ULL |
| 45 | #define BTRFS_ROOT_TREE_DIR_OBJECTID 4ULL |
Chris Mason | f6dbff5 | 2007-12-13 11:13:32 -0500 | [diff] [blame] | 46 | #define BTRFS_FIRST_FREE_OBJECTID 256ULL |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 47 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 48 | /* |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 49 | * we can actually store much bigger names, but lets not confuse the rest |
| 50 | * of linux |
| 51 | */ |
| 52 | #define BTRFS_NAME_LEN 255 |
| 53 | |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 54 | /* 32 bytes in various csum fields */ |
| 55 | #define BTRFS_CSUM_SIZE 32 |
Chris Mason | 509659c | 2007-05-10 12:36:17 -0400 | [diff] [blame] | 56 | /* four bytes for CRC32 */ |
| 57 | #define BTRFS_CRC32_SIZE 4 |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 58 | #define BTRFS_EMPTY_DIR_SIZE 0 |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 59 | |
Chris Mason | fabb568 | 2007-06-07 22:13:21 -0400 | [diff] [blame] | 60 | #define BTRFS_FT_UNKNOWN 0 |
| 61 | #define BTRFS_FT_REG_FILE 1 |
| 62 | #define BTRFS_FT_DIR 2 |
| 63 | #define BTRFS_FT_CHRDEV 3 |
| 64 | #define BTRFS_FT_BLKDEV 4 |
| 65 | #define BTRFS_FT_FIFO 5 |
| 66 | #define BTRFS_FT_SOCK 6 |
| 67 | #define BTRFS_FT_SYMLINK 7 |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 68 | #define BTRFS_FT_XATTR 8 |
| 69 | #define BTRFS_FT_MAX 9 |
Chris Mason | fabb568 | 2007-06-07 22:13:21 -0400 | [diff] [blame] | 70 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 71 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 72 | * the key defines the order in the tree, and so it also defines (optimal) |
| 73 | * block layout. objectid corresonds to the inode number. The flags |
| 74 | * tells us things about the object, and is a kind of stream selector. |
| 75 | * so for a given inode, keys with flags of 1 might refer to the inode |
| 76 | * data, flags of 2 may point to file data in the btree and flags == 3 |
| 77 | * may point to extents. |
| 78 | * |
| 79 | * offset is the starting byte offset for this key in the stream. |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 80 | * |
| 81 | * btrfs_disk_key is in disk byte order. struct btrfs_key is always |
| 82 | * in cpu native order. Otherwise they are identical and their sizes |
| 83 | * should be the same (ie both packed) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 84 | */ |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 85 | struct btrfs_disk_key { |
| 86 | __le64 objectid; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 87 | u8 type; |
Chris Mason | 70b2bef | 2007-04-17 15:39:32 -0400 | [diff] [blame] | 88 | __le64 offset; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 89 | } __attribute__ ((__packed__)); |
| 90 | |
| 91 | struct btrfs_key { |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 92 | u64 objectid; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 93 | u8 type; |
Chris Mason | 70b2bef | 2007-04-17 15:39:32 -0400 | [diff] [blame] | 94 | u64 offset; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 95 | } __attribute__ ((__packed__)); |
| 96 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 97 | #define BTRFS_FSID_SIZE 16 |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 98 | /* |
| 99 | * every tree block (leaf or node) starts with this header. |
| 100 | */ |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 101 | struct btrfs_header { |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 102 | u8 csum[BTRFS_CSUM_SIZE]; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 103 | u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */ |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 104 | __le64 bytenr; /* which block this node is supposed to live in */ |
Chris Mason | 7f5c151 | 2007-03-23 15:56:19 -0400 | [diff] [blame] | 105 | __le64 generation; |
Chris Mason | 4d77567 | 2007-04-20 20:23:12 -0400 | [diff] [blame] | 106 | __le64 owner; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 107 | __le32 nritems; |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 108 | __le16 flags; |
Chris Mason | 9a6f11e | 2007-03-27 09:06:38 -0400 | [diff] [blame] | 109 | u8 level; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 110 | } __attribute__ ((__packed__)); |
| 111 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 112 | #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \ |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 113 | sizeof(struct btrfs_header)) / \ |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 114 | sizeof(struct btrfs_key_ptr)) |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 115 | #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header)) |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 116 | #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize)) |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 117 | #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \ |
| 118 | sizeof(struct btrfs_item) - \ |
| 119 | sizeof(struct btrfs_file_extent_item)) |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 120 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 121 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 122 | * the super block basically lists the main trees of the FS |
| 123 | * it currently lacks any block count etc etc |
| 124 | */ |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 125 | struct btrfs_super_block { |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 126 | u8 csum[BTRFS_CSUM_SIZE]; |
Chris Mason | 87cbda5 | 2007-03-28 19:44:27 -0400 | [diff] [blame] | 127 | /* the first 3 fields must match struct btrfs_header */ |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 128 | u8 fsid[16]; /* FS specific uuid */ |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 129 | __le64 bytenr; /* this block number */ |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 130 | __le64 magic; |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 131 | __le64 generation; |
| 132 | __le64 root; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 133 | __le64 total_bytes; |
| 134 | __le64 bytes_used; |
Chris Mason | 2e635a2 | 2007-03-21 11:12:56 -0400 | [diff] [blame] | 135 | __le64 root_dir_objectid; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 136 | __le32 sectorsize; |
| 137 | __le32 nodesize; |
| 138 | __le32 leafsize; |
Chris Mason | 87ee04e | 2007-11-30 11:30:34 -0500 | [diff] [blame] | 139 | __le32 stripesize; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 140 | u8 root_level; |
Chris Mason | cfaa729 | 2007-02-21 17:04:57 -0500 | [diff] [blame] | 141 | } __attribute__ ((__packed__)); |
| 142 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 143 | /* |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 144 | * A leaf is full of items. offset and size tell us where to find |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 145 | * the item in the leaf (relative to the start of the data area) |
| 146 | */ |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 147 | struct btrfs_item { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 148 | struct btrfs_disk_key key; |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 149 | __le32 offset; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 150 | __le32 size; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 151 | } __attribute__ ((__packed__)); |
| 152 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 153 | /* |
| 154 | * leaves have an item area and a data area: |
| 155 | * [item0, item1....itemN] [free space] [dataN...data1, data0] |
| 156 | * |
| 157 | * The data is separate from the items to get the keys closer together |
| 158 | * during searches. |
| 159 | */ |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 160 | struct btrfs_leaf { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 161 | struct btrfs_header header; |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 162 | struct btrfs_item items[]; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 163 | } __attribute__ ((__packed__)); |
| 164 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 165 | /* |
| 166 | * all non-leaf blocks are nodes, they hold only keys and pointers to |
| 167 | * other blocks |
| 168 | */ |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 169 | struct btrfs_key_ptr { |
| 170 | struct btrfs_disk_key key; |
| 171 | __le64 blockptr; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 172 | __le64 generation; |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 173 | } __attribute__ ((__packed__)); |
| 174 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 175 | struct btrfs_node { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 176 | struct btrfs_header header; |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 177 | struct btrfs_key_ptr ptrs[]; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 178 | } __attribute__ ((__packed__)); |
| 179 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 180 | /* |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 181 | * btrfs_paths remember the path taken from the root down to the leaf. |
| 182 | * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 183 | * to any other levels that are present. |
| 184 | * |
| 185 | * The slots array records the index of the item or block pointer |
| 186 | * used while walking the tree. |
| 187 | */ |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 188 | struct btrfs_path { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 189 | struct extent_buffer *nodes[BTRFS_MAX_LEVEL]; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 190 | int slots[BTRFS_MAX_LEVEL]; |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 191 | int reada; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 192 | int lowest_level; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 193 | }; |
Chris Mason | 5de08d7 | 2007-02-24 06:24:44 -0500 | [diff] [blame] | 194 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 195 | /* |
| 196 | * items in the extent btree are used to record the objectid of the |
| 197 | * owner of the block and the number of references |
| 198 | */ |
| 199 | struct btrfs_extent_item { |
| 200 | __le32 refs; |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 201 | } __attribute__ ((__packed__)); |
| 202 | |
| 203 | struct btrfs_extent_ref { |
| 204 | __le64 root; |
| 205 | __le64 generation; |
| 206 | __le64 objectid; |
| 207 | __le64 offset; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 208 | } __attribute__ ((__packed__)); |
| 209 | |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 210 | struct btrfs_inode_ref { |
| 211 | __le16 name_len; |
| 212 | /* name goes here */ |
| 213 | } __attribute__ ((__packed__)); |
| 214 | |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 215 | struct btrfs_inode_timespec { |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 216 | __le64 sec; |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 217 | __le32 nsec; |
| 218 | } __attribute__ ((__packed__)); |
| 219 | |
| 220 | /* |
| 221 | * there is no padding here on purpose. If you want to extent the inode, |
| 222 | * make a new item type |
| 223 | */ |
| 224 | struct btrfs_inode_item { |
| 225 | __le64 generation; |
| 226 | __le64 size; |
| 227 | __le64 nblocks; |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 228 | __le64 block_group; |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 229 | __le32 nlink; |
| 230 | __le32 uid; |
| 231 | __le32 gid; |
| 232 | __le32 mode; |
| 233 | __le32 rdev; |
| 234 | __le16 flags; |
| 235 | __le16 compat_flags; |
| 236 | struct btrfs_inode_timespec atime; |
| 237 | struct btrfs_inode_timespec ctime; |
| 238 | struct btrfs_inode_timespec mtime; |
| 239 | struct btrfs_inode_timespec otime; |
| 240 | } __attribute__ ((__packed__)); |
| 241 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 242 | struct btrfs_dir_item { |
Chris Mason | d6e4a42 | 2007-04-06 15:37:36 -0400 | [diff] [blame] | 243 | struct btrfs_disk_key location; |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 244 | __le16 data_len; |
Chris Mason | a8a2ee0 | 2007-03-16 08:46:49 -0400 | [diff] [blame] | 245 | __le16 name_len; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 246 | u8 type; |
| 247 | } __attribute__ ((__packed__)); |
| 248 | |
| 249 | struct btrfs_root_item { |
Chris Mason | d6e4a42 | 2007-04-06 15:37:36 -0400 | [diff] [blame] | 250 | struct btrfs_inode_item inode; |
| 251 | __le64 root_dirid; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 252 | __le64 bytenr; |
| 253 | __le64 byte_limit; |
| 254 | __le64 bytes_used; |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 255 | __le32 flags; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 256 | __le32 refs; |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 257 | struct btrfs_disk_key drop_progress; |
| 258 | u8 drop_level; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 259 | u8 level; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 260 | } __attribute__ ((__packed__)); |
| 261 | |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 262 | #define BTRFS_FILE_EXTENT_REG 0 |
| 263 | #define BTRFS_FILE_EXTENT_INLINE 1 |
| 264 | |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 265 | struct btrfs_file_extent_item { |
Chris Mason | 71951f3 | 2007-03-27 09:16:29 -0400 | [diff] [blame] | 266 | __le64 generation; |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 267 | u8 type; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 268 | /* |
| 269 | * disk space consumed by the extent, checksum blocks are included |
| 270 | * in these numbers |
| 271 | */ |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 272 | __le64 disk_bytenr; |
| 273 | __le64 disk_num_bytes; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 274 | /* |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 275 | * the logical offset in file blocks (no csums) |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 276 | * this extent record is for. This allows a file extent to point |
| 277 | * into the middle of an existing extent on disk, sharing it |
| 278 | * between two snapshots (useful if some bytes in the middle of the |
| 279 | * extent have changed |
| 280 | */ |
| 281 | __le64 offset; |
| 282 | /* |
| 283 | * the logical number of file blocks (no csums included) |
| 284 | */ |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 285 | __le64 num_bytes; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 286 | } __attribute__ ((__packed__)); |
| 287 | |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 288 | struct btrfs_csum_item { |
Chris Mason | 509659c | 2007-05-10 12:36:17 -0400 | [diff] [blame] | 289 | u8 csum; |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 290 | } __attribute__ ((__packed__)); |
| 291 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 292 | /* tag for the radix tree of block groups in ram */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 293 | #define BTRFS_BLOCK_GROUP_SIZE (256 * 1024 * 1024) |
Chris Mason | 1e2677e | 2007-05-29 16:52:18 -0400 | [diff] [blame] | 294 | |
| 295 | |
| 296 | #define BTRFS_BLOCK_GROUP_DATA 1 |
Chris Mason | f84a8b3 | 2007-11-06 10:26:29 -0500 | [diff] [blame] | 297 | #define BTRFS_BLOCK_GROUP_MIXED 2 |
| 298 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 299 | struct btrfs_block_group_item { |
| 300 | __le64 used; |
Chris Mason | 1e2677e | 2007-05-29 16:52:18 -0400 | [diff] [blame] | 301 | u8 flags; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 302 | } __attribute__ ((__packed__)); |
| 303 | |
| 304 | struct btrfs_block_group_cache { |
| 305 | struct btrfs_key key; |
| 306 | struct btrfs_block_group_item item; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 307 | int data; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 308 | int cached; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 309 | u64 pinned; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 310 | }; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 311 | struct btrfs_fs_info { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 312 | u8 fsid[BTRFS_FSID_SIZE]; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 313 | struct btrfs_root *extent_root; |
| 314 | struct btrfs_root *tree_root; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 315 | struct radix_tree_root fs_roots_radix; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 316 | |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 317 | struct extent_map_tree free_space_cache; |
Chris Mason | 96b5179 | 2007-10-15 16:15:19 -0400 | [diff] [blame] | 318 | struct extent_map_tree block_group_cache; |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 319 | struct extent_map_tree pinned_extents; |
| 320 | struct extent_map_tree pending_del; |
| 321 | struct extent_map_tree extent_ins; |
| 322 | |
Chris Mason | 293ffd5 | 2007-03-20 15:57:25 -0400 | [diff] [blame] | 323 | u64 generation; |
Josef Bacik | 15ee9bc | 2007-08-10 16:22:09 -0400 | [diff] [blame] | 324 | u64 last_trans_committed; |
Chris Mason | b6cda9b | 2007-12-14 15:30:32 -0500 | [diff] [blame] | 325 | unsigned long mount_opt; |
Chris Mason | c59f895 | 2007-12-17 20:14:04 -0500 | [diff] [blame] | 326 | u64 max_extent; |
Chris Mason | 8f662a7 | 2008-01-02 10:01:11 -0500 | [diff] [blame] | 327 | u64 alloc_start; |
Chris Mason | 79154b1 | 2007-03-22 15:59:16 -0400 | [diff] [blame] | 328 | struct btrfs_transaction *running_transaction; |
Chris Mason | 4b52dff | 2007-06-26 10:06:50 -0400 | [diff] [blame] | 329 | struct btrfs_super_block super_copy; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 330 | struct extent_buffer *sb_buffer; |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 331 | struct super_block *sb; |
Chris Mason | d98237b | 2007-03-28 13:57:48 -0400 | [diff] [blame] | 332 | struct inode *btree_inode; |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 333 | spinlock_t hash_lock; |
Chris Mason | 79154b1 | 2007-03-22 15:59:16 -0400 | [diff] [blame] | 334 | struct mutex trans_mutex; |
Chris Mason | d561c02 | 2007-03-23 19:47:49 -0400 | [diff] [blame] | 335 | struct mutex fs_mutex; |
Chris Mason | 8fd1779 | 2007-04-19 21:01:03 -0400 | [diff] [blame] | 336 | struct list_head trans_list; |
Chris Mason | 19c00dd | 2007-10-15 16:19:22 -0400 | [diff] [blame] | 337 | struct list_head hashers; |
Chris Mason | facda1e | 2007-06-08 18:11:48 -0400 | [diff] [blame] | 338 | struct list_head dead_roots; |
Chris Mason | 6da6aba | 2007-12-18 16:15:09 -0500 | [diff] [blame] | 339 | #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18) |
| 340 | struct work_struct trans_work; |
| 341 | #else |
Chris Mason | 08607c1 | 2007-06-08 15:33:54 -0400 | [diff] [blame] | 342 | struct delayed_work trans_work; |
Chris Mason | 6da6aba | 2007-12-18 16:15:09 -0500 | [diff] [blame] | 343 | #endif |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 344 | struct kobject super_kobj; |
| 345 | struct completion kobj_unregister; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 346 | int do_barriers; |
Chris Mason | facda1e | 2007-06-08 18:11:48 -0400 | [diff] [blame] | 347 | int closing; |
Chris Mason | e2008b6 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 348 | unsigned long throttles; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 349 | |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 350 | u64 total_pinned; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 351 | spinlock_t delalloc_lock; |
Chris Mason | cee36a0 | 2008-01-15 08:40:48 -0500 | [diff] [blame] | 352 | spinlock_t new_trans_lock; |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 353 | u64 delalloc_bytes; |
Yan | 324ae4d | 2007-11-16 14:57:08 -0500 | [diff] [blame] | 354 | }; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 355 | /* |
| 356 | * in ram representation of the tree. extent_root is used for all allocations |
Chris Mason | f2458e1 | 2007-04-25 15:52:25 -0400 | [diff] [blame] | 357 | * and for the extent tree extent_root root. |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 358 | */ |
| 359 | struct btrfs_root { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 360 | struct extent_buffer *node; |
| 361 | struct extent_buffer *commit_root; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 362 | struct btrfs_root_item root_item; |
| 363 | struct btrfs_key root_key; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 364 | struct btrfs_fs_info *fs_info; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 365 | struct inode *inode; |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 366 | struct kobject root_kobj; |
| 367 | struct completion kobj_unregister; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 368 | u64 objectid; |
| 369 | u64 last_trans; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 370 | |
| 371 | /* data allocations are done in sectorsize units */ |
| 372 | u32 sectorsize; |
| 373 | |
| 374 | /* node allocations are done in nodesize units */ |
| 375 | u32 nodesize; |
| 376 | |
| 377 | /* leaf allocations are done in leafsize units */ |
| 378 | u32 leafsize; |
| 379 | |
Chris Mason | 87ee04e | 2007-11-30 11:30:34 -0500 | [diff] [blame] | 380 | u32 stripesize; |
| 381 | |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 382 | u32 type; |
Chris Mason | 1b05da2 | 2007-04-10 12:13:09 -0400 | [diff] [blame] | 383 | u64 highest_inode; |
| 384 | u64 last_inode_alloc; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 385 | int ref_cows; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 386 | struct btrfs_key defrag_progress; |
| 387 | int defrag_running; |
| 388 | int defrag_level; |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 389 | char *name; |
Chris Mason | 4313b39 | 2008-01-03 09:08:48 -0500 | [diff] [blame] | 390 | int in_sysfs; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 391 | }; |
| 392 | |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 393 | /* |
| 394 | * inode items have the data typically returned from stat and store other |
| 395 | * info about object characteristics. There is one for every file and dir in |
| 396 | * the FS |
| 397 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 398 | #define BTRFS_INODE_ITEM_KEY 1 |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 399 | #define BTRFS_INODE_REF_KEY 2 |
| 400 | #define BTRFS_XATTR_ITEM_KEY 8 |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 401 | /* reserve 2-15 close to the inode for later flexibility */ |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 402 | |
| 403 | /* |
| 404 | * dir items are the name -> inode pointers in a directory. There is one |
| 405 | * for every name in a directory. |
| 406 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 407 | #define BTRFS_DIR_ITEM_KEY 16 |
| 408 | #define BTRFS_DIR_INDEX_KEY 17 |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 409 | /* |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 410 | * extent data is for file data |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 411 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 412 | #define BTRFS_EXTENT_DATA_KEY 18 |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 413 | /* |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 414 | * csum items have the checksums for data in the extents |
| 415 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 416 | #define BTRFS_CSUM_ITEM_KEY 19 |
| 417 | |
| 418 | /* reserve 20-31 for other file stuff */ |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 419 | |
| 420 | /* |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 421 | * root items point to tree roots. There are typically in the root |
| 422 | * tree used by the super block to find all the other trees |
| 423 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 424 | #define BTRFS_ROOT_ITEM_KEY 32 |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 425 | /* |
| 426 | * extent items are in the extent map tree. These record which blocks |
| 427 | * are used, and how many references there are to each block |
| 428 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 429 | #define BTRFS_EXTENT_ITEM_KEY 33 |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 430 | #define BTRFS_EXTENT_REF_KEY 34 |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 431 | |
| 432 | /* |
| 433 | * block groups give us hints into the extent allocation trees. Which |
| 434 | * blocks are free etc etc |
| 435 | */ |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 436 | #define BTRFS_BLOCK_GROUP_ITEM_KEY 50 |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 437 | |
| 438 | /* |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 439 | * string items are for debugging. They just store a short string of |
| 440 | * data in the FS |
| 441 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 442 | #define BTRFS_STRING_ITEM_KEY 253 |
| 443 | |
Chris Mason | 21ad10c | 2008-01-09 09:23:21 -0500 | [diff] [blame] | 444 | #define BTRFS_MOUNT_NODATASUM (1 << 0) |
| 445 | #define BTRFS_MOUNT_NODATACOW (1 << 1) |
| 446 | #define BTRFS_MOUNT_NOBARRIER (1 << 2) |
Chris Mason | b6cda9b | 2007-12-14 15:30:32 -0500 | [diff] [blame] | 447 | |
| 448 | #define btrfs_clear_opt(o, opt) ((o) &= ~BTRFS_MOUNT_##opt) |
| 449 | #define btrfs_set_opt(o, opt) ((o) |= BTRFS_MOUNT_##opt) |
| 450 | #define btrfs_test_opt(root, opt) ((root)->fs_info->mount_opt & \ |
| 451 | BTRFS_MOUNT_##opt) |
Yan | b98b676 | 2008-01-08 15:54:37 -0500 | [diff] [blame] | 452 | /* |
| 453 | * Inode flags |
| 454 | */ |
Yan | fdebe2b | 2008-01-14 13:26:08 -0500 | [diff] [blame] | 455 | #define BTRFS_INODE_NODATASUM (1 << 0) |
| 456 | #define BTRFS_INODE_NODATACOW (1 << 1) |
| 457 | #define BTRFS_INODE_READONLY (1 << 2) |
Yan | b98b676 | 2008-01-08 15:54:37 -0500 | [diff] [blame] | 458 | #define btrfs_clear_flag(inode, flag) (BTRFS_I(inode)->flags &= \ |
| 459 | ~BTRFS_INODE_##flag) |
| 460 | #define btrfs_set_flag(inode, flag) (BTRFS_I(inode)->flags |= \ |
| 461 | BTRFS_INODE_##flag) |
| 462 | #define btrfs_test_flag(inode, flag) (BTRFS_I(inode)->flags & \ |
| 463 | BTRFS_INODE_##flag) |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 464 | /* some macros to generate set/get funcs for the struct fields. This |
| 465 | * assumes there is a lefoo_to_cpu for every type, so lets make a simple |
| 466 | * one for u8: |
| 467 | */ |
| 468 | #define le8_to_cpu(v) (v) |
| 469 | #define cpu_to_le8(v) (v) |
| 470 | #define __le8 u8 |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 471 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 472 | #define read_eb_member(eb, ptr, type, member, result) ( \ |
| 473 | read_extent_buffer(eb, (char *)(result), \ |
| 474 | ((unsigned long)(ptr)) + \ |
| 475 | offsetof(type, member), \ |
| 476 | sizeof(((type *)0)->member))) |
| 477 | |
| 478 | #define write_eb_member(eb, ptr, type, member, result) ( \ |
| 479 | write_extent_buffer(eb, (char *)(result), \ |
| 480 | ((unsigned long)(ptr)) + \ |
| 481 | offsetof(type, member), \ |
| 482 | sizeof(((type *)0)->member))) |
| 483 | |
Chris Mason | 0f82731 | 2007-10-15 16:18:56 -0400 | [diff] [blame] | 484 | #ifndef BTRFS_SETGET_FUNCS |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 485 | #define BTRFS_SETGET_FUNCS(name, type, member, bits) \ |
Chris Mason | 0f82731 | 2007-10-15 16:18:56 -0400 | [diff] [blame] | 486 | u##bits btrfs_##name(struct extent_buffer *eb, type *s); \ |
| 487 | void btrfs_set_##name(struct extent_buffer *eb, type *s, u##bits val); |
| 488 | #endif |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 489 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 490 | #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \ |
| 491 | static inline u##bits btrfs_##name(struct extent_buffer *eb) \ |
| 492 | { \ |
Chris Mason | 810191f | 2007-10-15 16:18:55 -0400 | [diff] [blame] | 493 | char *kaddr = kmap_atomic(eb->first_page, KM_USER0); \ |
Chris Mason | 6d36dcd | 2007-10-15 16:14:37 -0400 | [diff] [blame] | 494 | unsigned long offset = offsetof(type, member); \ |
Chris Mason | 810191f | 2007-10-15 16:18:55 -0400 | [diff] [blame] | 495 | u##bits res; \ |
| 496 | __le##bits *tmp = (__le##bits *)(kaddr + offset); \ |
| 497 | res = le##bits##_to_cpu(*tmp); \ |
| 498 | kunmap_atomic(kaddr, KM_USER0); \ |
| 499 | return res; \ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 500 | } \ |
| 501 | static inline void btrfs_set_##name(struct extent_buffer *eb, \ |
| 502 | u##bits val) \ |
| 503 | { \ |
Chris Mason | 810191f | 2007-10-15 16:18:55 -0400 | [diff] [blame] | 504 | char *kaddr = kmap_atomic(eb->first_page, KM_USER0); \ |
Chris Mason | 6d36dcd | 2007-10-15 16:14:37 -0400 | [diff] [blame] | 505 | unsigned long offset = offsetof(type, member); \ |
Chris Mason | 810191f | 2007-10-15 16:18:55 -0400 | [diff] [blame] | 506 | __le##bits *tmp = (__le##bits *)(kaddr + offset); \ |
| 507 | *tmp = cpu_to_le##bits(val); \ |
| 508 | kunmap_atomic(kaddr, KM_USER0); \ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 509 | } |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 510 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 511 | #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \ |
| 512 | static inline u##bits btrfs_##name(type *s) \ |
| 513 | { \ |
| 514 | return le##bits##_to_cpu(s->member); \ |
| 515 | } \ |
| 516 | static inline void btrfs_set_##name(type *s, u##bits val) \ |
| 517 | { \ |
| 518 | s->member = cpu_to_le##bits(val); \ |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 519 | } |
| 520 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 521 | /* struct btrfs_block_group_item */ |
| 522 | BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item, |
| 523 | used, 64); |
| 524 | BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item, |
| 525 | used, 64); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 526 | BTRFS_SETGET_FUNCS(disk_block_group_flags, struct btrfs_block_group_item, |
| 527 | flags, 8); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 528 | |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 529 | /* struct btrfs_inode_ref */ |
| 530 | BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16); |
| 531 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 532 | /* struct btrfs_inode_item */ |
| 533 | BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64); |
| 534 | BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64); |
| 535 | BTRFS_SETGET_FUNCS(inode_nblocks, struct btrfs_inode_item, nblocks, 64); |
| 536 | BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64); |
| 537 | BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32); |
| 538 | BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32); |
| 539 | BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32); |
| 540 | BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32); |
| 541 | BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 32); |
| 542 | BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 16); |
| 543 | BTRFS_SETGET_FUNCS(inode_compat_flags, struct btrfs_inode_item, |
| 544 | compat_flags, 16); |
| 545 | |
| 546 | static inline struct btrfs_inode_timespec * |
| 547 | btrfs_inode_atime(struct btrfs_inode_item *inode_item) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 548 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 549 | unsigned long ptr = (unsigned long)inode_item; |
| 550 | ptr += offsetof(struct btrfs_inode_item, atime); |
| 551 | return (struct btrfs_inode_timespec *)ptr; |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 552 | } |
| 553 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 554 | static inline struct btrfs_inode_timespec * |
| 555 | btrfs_inode_mtime(struct btrfs_inode_item *inode_item) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 556 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 557 | unsigned long ptr = (unsigned long)inode_item; |
| 558 | ptr += offsetof(struct btrfs_inode_item, mtime); |
| 559 | return (struct btrfs_inode_timespec *)ptr; |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 560 | } |
| 561 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 562 | static inline struct btrfs_inode_timespec * |
| 563 | btrfs_inode_ctime(struct btrfs_inode_item *inode_item) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 564 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 565 | unsigned long ptr = (unsigned long)inode_item; |
| 566 | ptr += offsetof(struct btrfs_inode_item, ctime); |
| 567 | return (struct btrfs_inode_timespec *)ptr; |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 568 | } |
| 569 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 570 | static inline struct btrfs_inode_timespec * |
| 571 | btrfs_inode_otime(struct btrfs_inode_item *inode_item) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 572 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 573 | unsigned long ptr = (unsigned long)inode_item; |
| 574 | ptr += offsetof(struct btrfs_inode_item, otime); |
| 575 | return (struct btrfs_inode_timespec *)ptr; |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 576 | } |
| 577 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 578 | BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_inode_timespec, sec, 64); |
| 579 | BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_inode_timespec, nsec, 32); |
| 580 | |
| 581 | /* struct btrfs_extent_item */ |
| 582 | BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 32); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 583 | |
| 584 | /* struct btrfs_extent_ref */ |
| 585 | BTRFS_SETGET_FUNCS(ref_root, struct btrfs_extent_ref, root, 64); |
| 586 | BTRFS_SETGET_FUNCS(ref_generation, struct btrfs_extent_ref, generation, 64); |
| 587 | BTRFS_SETGET_FUNCS(ref_objectid, struct btrfs_extent_ref, objectid, 64); |
| 588 | BTRFS_SETGET_FUNCS(ref_offset, struct btrfs_extent_ref, offset, 64); |
| 589 | |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 590 | BTRFS_SETGET_STACK_FUNCS(stack_ref_root, struct btrfs_extent_ref, root, 64); |
| 591 | BTRFS_SETGET_STACK_FUNCS(stack_ref_generation, struct btrfs_extent_ref, |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 592 | generation, 64); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 593 | BTRFS_SETGET_STACK_FUNCS(stack_ref_objectid, struct btrfs_extent_ref, |
| 594 | objectid, 64); |
| 595 | BTRFS_SETGET_STACK_FUNCS(stack_ref_offset, struct btrfs_extent_ref, offset, 64); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 596 | |
| 597 | BTRFS_SETGET_STACK_FUNCS(stack_extent_refs, struct btrfs_extent_item, |
| 598 | refs, 32); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 599 | |
| 600 | /* struct btrfs_node */ |
| 601 | BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 602 | BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 603 | |
| 604 | static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 605 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 606 | unsigned long ptr; |
| 607 | ptr = offsetof(struct btrfs_node, ptrs) + |
| 608 | sizeof(struct btrfs_key_ptr) * nr; |
| 609 | return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 610 | } |
| 611 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 612 | static inline void btrfs_set_node_blockptr(struct extent_buffer *eb, |
| 613 | int nr, u64 val) |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 614 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 615 | unsigned long ptr; |
| 616 | ptr = offsetof(struct btrfs_node, ptrs) + |
| 617 | sizeof(struct btrfs_key_ptr) * nr; |
| 618 | btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val); |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 619 | } |
| 620 | |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 621 | static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr) |
| 622 | { |
| 623 | unsigned long ptr; |
| 624 | ptr = offsetof(struct btrfs_node, ptrs) + |
| 625 | sizeof(struct btrfs_key_ptr) * nr; |
| 626 | return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr); |
| 627 | } |
| 628 | |
| 629 | static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb, |
| 630 | int nr, u64 val) |
| 631 | { |
| 632 | unsigned long ptr; |
| 633 | ptr = offsetof(struct btrfs_node, ptrs) + |
| 634 | sizeof(struct btrfs_key_ptr) * nr; |
| 635 | btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val); |
| 636 | } |
| 637 | |
Chris Mason | 810191f | 2007-10-15 16:18:55 -0400 | [diff] [blame] | 638 | static inline unsigned long btrfs_node_key_ptr_offset(int nr) |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 639 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 640 | return offsetof(struct btrfs_node, ptrs) + |
| 641 | sizeof(struct btrfs_key_ptr) * nr; |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 642 | } |
| 643 | |
Chris Mason | e644d02 | 2007-11-06 15:09:29 -0500 | [diff] [blame] | 644 | void btrfs_node_key(struct extent_buffer *eb, |
| 645 | struct btrfs_disk_key *disk_key, int nr); |
| 646 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 647 | static inline void btrfs_set_node_key(struct extent_buffer *eb, |
| 648 | struct btrfs_disk_key *disk_key, int nr) |
| 649 | { |
| 650 | unsigned long ptr; |
| 651 | ptr = btrfs_node_key_ptr_offset(nr); |
| 652 | write_eb_member(eb, (struct btrfs_key_ptr *)ptr, |
| 653 | struct btrfs_key_ptr, key, disk_key); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 654 | } |
| 655 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 656 | /* struct btrfs_item */ |
| 657 | BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32); |
| 658 | BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32); |
| 659 | |
| 660 | static inline unsigned long btrfs_item_nr_offset(int nr) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 661 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 662 | return offsetof(struct btrfs_leaf, items) + |
| 663 | sizeof(struct btrfs_item) * nr; |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 664 | } |
| 665 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 666 | static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb, |
| 667 | int nr) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 668 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 669 | return (struct btrfs_item *)btrfs_item_nr_offset(nr); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 670 | } |
| 671 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 672 | static inline u32 btrfs_item_end(struct extent_buffer *eb, |
| 673 | struct btrfs_item *item) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 674 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 675 | return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 676 | } |
| 677 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 678 | static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 679 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 680 | return btrfs_item_end(eb, btrfs_item_nr(eb, nr)); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 681 | } |
| 682 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 683 | static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 684 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 685 | return btrfs_item_offset(eb, btrfs_item_nr(eb, nr)); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 686 | } |
| 687 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 688 | static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 689 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 690 | return btrfs_item_size(eb, btrfs_item_nr(eb, nr)); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 691 | } |
| 692 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 693 | static inline void btrfs_item_key(struct extent_buffer *eb, |
| 694 | struct btrfs_disk_key *disk_key, int nr) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 695 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 696 | struct btrfs_item *item = btrfs_item_nr(eb, nr); |
| 697 | read_eb_member(eb, item, struct btrfs_item, key, disk_key); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 698 | } |
| 699 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 700 | static inline void btrfs_set_item_key(struct extent_buffer *eb, |
| 701 | struct btrfs_disk_key *disk_key, int nr) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 702 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 703 | struct btrfs_item *item = btrfs_item_nr(eb, nr); |
| 704 | write_eb_member(eb, item, struct btrfs_item, key, disk_key); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 705 | } |
| 706 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 707 | /* struct btrfs_dir_item */ |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 708 | BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 709 | BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8); |
| 710 | BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16); |
| 711 | |
| 712 | static inline void btrfs_dir_item_key(struct extent_buffer *eb, |
| 713 | struct btrfs_dir_item *item, |
| 714 | struct btrfs_disk_key *key) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 715 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 716 | read_eb_member(eb, item, struct btrfs_dir_item, location, key); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 717 | } |
| 718 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 719 | static inline void btrfs_set_dir_item_key(struct extent_buffer *eb, |
| 720 | struct btrfs_dir_item *item, |
| 721 | struct btrfs_disk_key *key) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 722 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 723 | write_eb_member(eb, item, struct btrfs_dir_item, location, key); |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 724 | } |
| 725 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 726 | /* struct btrfs_disk_key */ |
| 727 | BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key, |
| 728 | objectid, 64); |
| 729 | BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64); |
| 730 | BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8); |
Chris Mason | 1d4f640 | 2007-03-15 15:18:43 -0400 | [diff] [blame] | 731 | |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 732 | static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu, |
| 733 | struct btrfs_disk_key *disk) |
| 734 | { |
| 735 | cpu->offset = le64_to_cpu(disk->offset); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 736 | cpu->type = disk->type; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 737 | cpu->objectid = le64_to_cpu(disk->objectid); |
| 738 | } |
| 739 | |
| 740 | static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk, |
| 741 | struct btrfs_key *cpu) |
| 742 | { |
| 743 | disk->offset = cpu_to_le64(cpu->offset); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 744 | disk->type = cpu->type; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 745 | disk->objectid = cpu_to_le64(cpu->objectid); |
| 746 | } |
| 747 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 748 | static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb, |
| 749 | struct btrfs_key *key, int nr) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 750 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 751 | struct btrfs_disk_key disk_key; |
| 752 | btrfs_node_key(eb, &disk_key, nr); |
| 753 | btrfs_disk_key_to_cpu(key, &disk_key); |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 754 | } |
| 755 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 756 | static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb, |
| 757 | struct btrfs_key *key, int nr) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 758 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 759 | struct btrfs_disk_key disk_key; |
| 760 | btrfs_item_key(eb, &disk_key, nr); |
| 761 | btrfs_disk_key_to_cpu(key, &disk_key); |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 762 | } |
| 763 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 764 | static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb, |
| 765 | struct btrfs_dir_item *item, |
| 766 | struct btrfs_key *key) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 767 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 768 | struct btrfs_disk_key disk_key; |
| 769 | btrfs_dir_item_key(eb, item, &disk_key); |
| 770 | btrfs_disk_key_to_cpu(key, &disk_key); |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 771 | } |
| 772 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 773 | |
| 774 | static inline u8 btrfs_key_type(struct btrfs_key *key) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 775 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 776 | return key->type; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 777 | } |
| 778 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 779 | static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 780 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 781 | key->type = val; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 782 | } |
| 783 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 784 | /* struct btrfs_header */ |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 785 | BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 786 | BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header, |
| 787 | generation, 64); |
| 788 | BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64); |
| 789 | BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32); |
| 790 | BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 16); |
| 791 | BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8); |
| 792 | |
| 793 | static inline u8 *btrfs_header_fsid(struct extent_buffer *eb) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 794 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 795 | unsigned long ptr = offsetof(struct btrfs_header, fsid); |
| 796 | return (u8 *)ptr; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 797 | } |
| 798 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 799 | static inline u8 *btrfs_super_fsid(struct extent_buffer *eb) |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 800 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 801 | unsigned long ptr = offsetof(struct btrfs_super_block, fsid); |
| 802 | return (u8 *)ptr; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 803 | } |
| 804 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 805 | static inline u8 *btrfs_header_csum(struct extent_buffer *eb) |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 806 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 807 | unsigned long ptr = offsetof(struct btrfs_header, csum); |
| 808 | return (u8 *)ptr; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 809 | } |
| 810 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 811 | static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb) |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 812 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 813 | return NULL; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 814 | } |
| 815 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 816 | static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb) |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 817 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 818 | return NULL; |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 819 | } |
| 820 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 821 | static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 822 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 823 | return NULL; |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 824 | } |
| 825 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 826 | static inline int btrfs_is_leaf(struct extent_buffer *eb) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 827 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 828 | return (btrfs_header_level(eb) == 0); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 829 | } |
| 830 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 831 | /* struct btrfs_root_item */ |
| 832 | BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 833 | BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64); |
| 834 | BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 835 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 836 | BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64); |
| 837 | BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 838 | BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64); |
| 839 | BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32); |
| 840 | BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 32); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 841 | BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64); |
| 842 | BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 843 | |
| 844 | /* struct btrfs_super_block */ |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 845 | BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 846 | BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block, |
| 847 | generation, 64); |
| 848 | BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 849 | BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block, |
| 850 | root_level, 8); |
| 851 | BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block, |
| 852 | total_bytes, 64); |
| 853 | BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block, |
| 854 | bytes_used, 64); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 855 | BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block, |
| 856 | sectorsize, 32); |
| 857 | BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block, |
| 858 | nodesize, 32); |
| 859 | BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block, |
| 860 | leafsize, 32); |
Chris Mason | 87ee04e | 2007-11-30 11:30:34 -0500 | [diff] [blame] | 861 | BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block, |
| 862 | stripesize, 32); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 863 | BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block, |
| 864 | root_dir_objectid, 64); |
| 865 | |
| 866 | static inline unsigned long btrfs_leaf_data(struct extent_buffer *l) |
Chris Mason | 7f5c151 | 2007-03-23 15:56:19 -0400 | [diff] [blame] | 867 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 868 | return offsetof(struct btrfs_leaf, items); |
Chris Mason | 7f5c151 | 2007-03-23 15:56:19 -0400 | [diff] [blame] | 869 | } |
| 870 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 871 | /* struct btrfs_file_extent_item */ |
| 872 | BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8); |
Chris Mason | 7f5c151 | 2007-03-23 15:56:19 -0400 | [diff] [blame] | 873 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 874 | static inline unsigned long btrfs_file_extent_inline_start(struct |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 875 | btrfs_file_extent_item *e) |
| 876 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 877 | unsigned long offset = (unsigned long)e; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 878 | offset += offsetof(struct btrfs_file_extent_item, disk_bytenr); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 879 | return offset; |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 880 | } |
| 881 | |
| 882 | static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize) |
| 883 | { |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 884 | return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize; |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 885 | } |
| 886 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 887 | static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb, |
| 888 | struct btrfs_item *e) |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 889 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 890 | unsigned long offset; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 891 | offset = offsetof(struct btrfs_file_extent_item, disk_bytenr); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 892 | return btrfs_item_size(eb, e) - offset; |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 893 | } |
| 894 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 895 | BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item, |
| 896 | disk_bytenr, 64); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 897 | BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item, |
| 898 | generation, 64); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 899 | BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item, |
| 900 | disk_num_bytes, 64); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 901 | BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item, |
| 902 | offset, 64); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 903 | BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item, |
| 904 | num_bytes, 64); |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 905 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 906 | static inline struct btrfs_root *btrfs_sb(struct super_block *sb) |
| 907 | { |
| 908 | return sb->s_fs_info; |
| 909 | } |
| 910 | |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 911 | static inline int btrfs_set_root_name(struct btrfs_root *root, |
| 912 | const char *name, int len) |
| 913 | { |
| 914 | /* if we already have a name just free it */ |
| 915 | if (root->name) |
| 916 | kfree(root->name); |
| 917 | |
| 918 | root->name = kmalloc(len+1, GFP_KERNEL); |
| 919 | if (!root->name) |
| 920 | return -ENOMEM; |
| 921 | |
| 922 | memcpy(root->name, name, len); |
| 923 | root->name[len] ='\0'; |
| 924 | |
| 925 | return 0; |
| 926 | } |
| 927 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 928 | static inline u32 btrfs_level_size(struct btrfs_root *root, int level) { |
| 929 | if (level == 0) |
| 930 | return root->leafsize; |
| 931 | return root->nodesize; |
| 932 | } |
| 933 | |
Chris Mason | 4beb1b8 | 2007-03-14 10:31:29 -0400 | [diff] [blame] | 934 | /* helper function to cast into the data area of the leaf. */ |
| 935 | #define btrfs_item_ptr(leaf, slot, type) \ |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 936 | ((type *)(btrfs_leaf_data(leaf) + \ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 937 | btrfs_item_offset_nr(leaf, slot))) |
| 938 | |
| 939 | #define btrfs_item_ptr_offset(leaf, slot) \ |
| 940 | ((unsigned long)(btrfs_leaf_data(leaf) + \ |
| 941 | btrfs_item_offset_nr(leaf, slot))) |
Chris Mason | 4beb1b8 | 2007-03-14 10:31:29 -0400 | [diff] [blame] | 942 | |
Chris Mason | 6da6aba | 2007-12-18 16:15:09 -0500 | [diff] [blame] | 943 | static inline struct dentry *fdentry(struct file *file) { |
| 944 | #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18) |
| 945 | return file->f_dentry; |
| 946 | #else |
| 947 | return file->f_path.dentry; |
| 948 | #endif |
| 949 | } |
| 950 | |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 951 | /* extent-tree.c */ |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 952 | u32 btrfs_count_snapshots_in_path(struct btrfs_root *root, |
| 953 | struct btrfs_path *count_path, |
| 954 | u64 first_extent); |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 955 | int btrfs_extent_post_op(struct btrfs_trans_handle *trans, |
| 956 | struct btrfs_root *root); |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 957 | int btrfs_copy_pinned(struct btrfs_root *root, struct extent_map_tree *copy); |
Chris Mason | 5276aed | 2007-06-11 21:33:38 -0400 | [diff] [blame] | 958 | struct btrfs_block_group_cache *btrfs_lookup_block_group(struct |
| 959 | btrfs_fs_info *info, |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 960 | u64 bytenr); |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 961 | struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root, |
| 962 | struct btrfs_block_group_cache |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 963 | *hint, u64 search_start, |
Chris Mason | de428b6 | 2007-05-18 13:28:27 -0400 | [diff] [blame] | 964 | int data, int owner); |
Chris Mason | c5739bb | 2007-04-10 09:27:04 -0400 | [diff] [blame] | 965 | int btrfs_inc_root_ref(struct btrfs_trans_handle *trans, |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 966 | struct btrfs_root *root, u64 owner_objectid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 967 | struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans, |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 968 | struct btrfs_root *root, u32 size, |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 969 | u64 root_objectid, |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 970 | u64 hint, u64 empty_size); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 971 | struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans, |
| 972 | struct btrfs_root *root, |
| 973 | u32 blocksize, |
| 974 | u64 root_objectid, |
| 975 | u64 ref_generation, |
| 976 | u64 first_objectid, |
| 977 | int level, |
| 978 | u64 hint, |
| 979 | u64 empty_size); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 980 | int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans, |
| 981 | struct btrfs_root *root, u64 new_size); |
| 982 | int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 983 | int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans, |
| 984 | struct btrfs_root *root, |
| 985 | struct btrfs_path *path, u64 bytenr, |
| 986 | u64 root_objectid, u64 ref_generation, |
| 987 | u64 owner, u64 owner_offset); |
Chris Mason | 4d77567 | 2007-04-20 20:23:12 -0400 | [diff] [blame] | 988 | int btrfs_alloc_extent(struct btrfs_trans_handle *trans, |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 989 | struct btrfs_root *root, |
| 990 | u64 num_bytes, u64 root_objectid, u64 ref_generation, |
| 991 | u64 owner, u64 owner_offset, |
| 992 | u64 empty_size, u64 hint_byte, |
Chris Mason | be08c1b | 2007-05-03 09:06:49 -0400 | [diff] [blame] | 993 | u64 search_end, struct btrfs_key *ins, int data); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 994 | int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 995 | struct extent_buffer *buf); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 996 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 997 | *root, u64 bytenr, u64 num_bytes, |
| 998 | u64 root_objectid, u64 ref_generation, |
| 999 | u64 owner_objectid, u64 owner_offset, int pin); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 1000 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
| 1001 | struct btrfs_root *root, |
Chris Mason | 1a5bc16 | 2007-10-15 16:15:26 -0400 | [diff] [blame] | 1002 | struct extent_map_tree *unpin); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1003 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 1004 | struct btrfs_root *root, |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1005 | u64 bytenr, u64 num_bytes, |
| 1006 | u64 root_objectid, u64 ref_generation, |
| 1007 | u64 owner, u64 owner_offset); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 1008 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 1009 | struct btrfs_root *root); |
| 1010 | int btrfs_free_block_groups(struct btrfs_fs_info *info); |
| 1011 | int btrfs_read_block_groups(struct btrfs_root *root); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1012 | /* ctree.c */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1013 | int btrfs_cow_block(struct btrfs_trans_handle *trans, |
| 1014 | struct btrfs_root *root, struct extent_buffer *buf, |
| 1015 | struct extent_buffer *parent, int parent_slot, |
| 1016 | struct extent_buffer **cow_ret); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 1017 | int btrfs_copy_root(struct btrfs_trans_handle *trans, |
| 1018 | struct btrfs_root *root, |
| 1019 | struct extent_buffer *buf, |
| 1020 | struct extent_buffer **cow_ret, u64 new_root_objectid); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 1021 | int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1022 | *root, struct btrfs_path *path, u32 data_size); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1023 | int btrfs_truncate_item(struct btrfs_trans_handle *trans, |
| 1024 | struct btrfs_root *root, |
| 1025 | struct btrfs_path *path, |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 1026 | u32 new_size, int from_end); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1027 | int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1028 | *root, struct btrfs_key *key, struct btrfs_path *p, int |
| 1029 | ins_len, int cow); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1030 | int btrfs_realloc_node(struct btrfs_trans_handle *trans, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1031 | struct btrfs_root *root, struct extent_buffer *parent, |
Chris Mason | a6b6e75 | 2007-10-15 16:22:39 -0400 | [diff] [blame] | 1032 | int start_slot, int cache_only, u64 *last_ret, |
| 1033 | struct btrfs_key *progress); |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1034 | void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p); |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 1035 | struct btrfs_path *btrfs_alloc_path(void); |
| 1036 | void btrfs_free_path(struct btrfs_path *p); |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1037 | void btrfs_init_path(struct btrfs_path *p); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1038 | int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 1039 | struct btrfs_path *path); |
| 1040 | int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1041 | *root, struct btrfs_key *key, void *data, u32 data_size); |
| 1042 | int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1043 | *root, struct btrfs_path *path, struct btrfs_key |
| 1044 | *cpu_key, u32 data_size); |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1045 | int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1046 | int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1047 | int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1048 | int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 1049 | *root); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1050 | /* root-item.c */ |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1051 | int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 1052 | struct btrfs_key *key); |
| 1053 | int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1054 | *root, struct btrfs_key *key, struct btrfs_root_item |
| 1055 | *item); |
| 1056 | int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1057 | *root, struct btrfs_key *key, struct btrfs_root_item |
| 1058 | *item); |
| 1059 | int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct |
| 1060 | btrfs_root_item *item, struct btrfs_key *key); |
Chris Mason | 5ce14bb | 2007-09-11 11:15:39 -0400 | [diff] [blame] | 1061 | int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid, |
| 1062 | struct btrfs_root *latest_root); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1063 | /* dir-item.c */ |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1064 | int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root |
Chris Mason | d6e4a42 | 2007-04-06 15:37:36 -0400 | [diff] [blame] | 1065 | *root, const char *name, int name_len, u64 dir, |
| 1066 | struct btrfs_key *location, u8 type); |
Chris Mason | 7e38180 | 2007-04-19 15:36:27 -0400 | [diff] [blame] | 1067 | struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, |
| 1068 | struct btrfs_root *root, |
| 1069 | struct btrfs_path *path, u64 dir, |
| 1070 | const char *name, int name_len, |
| 1071 | int mod); |
| 1072 | struct btrfs_dir_item * |
| 1073 | btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans, |
| 1074 | struct btrfs_root *root, |
| 1075 | struct btrfs_path *path, u64 dir, |
| 1076 | u64 objectid, const char *name, int name_len, |
| 1077 | int mod); |
| 1078 | struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root, |
| 1079 | struct btrfs_path *path, |
Chris Mason | 7f5c151 | 2007-03-23 15:56:19 -0400 | [diff] [blame] | 1080 | const char *name, int name_len); |
Chris Mason | 7e38180 | 2007-04-19 15:36:27 -0400 | [diff] [blame] | 1081 | int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans, |
| 1082 | struct btrfs_root *root, |
| 1083 | struct btrfs_path *path, |
| 1084 | struct btrfs_dir_item *di); |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 1085 | int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans, |
| 1086 | struct btrfs_root *root, const char *name, |
| 1087 | u16 name_len, const void *data, u16 data_len, |
| 1088 | u64 dir); |
| 1089 | struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans, |
| 1090 | struct btrfs_root *root, |
| 1091 | struct btrfs_path *path, u64 dir, |
| 1092 | const char *name, u16 name_len, |
| 1093 | int mod); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1094 | /* inode-map.c */ |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 1095 | int btrfs_find_free_objectid(struct btrfs_trans_handle *trans, |
| 1096 | struct btrfs_root *fs_root, |
| 1097 | u64 dirid, u64 *objectid); |
Chris Mason | 5be6f7f | 2007-04-05 13:35:25 -0400 | [diff] [blame] | 1098 | int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid); |
| 1099 | |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1100 | /* inode-item.c */ |
Chris Mason | 3954401 | 2007-12-12 14:38:19 -0500 | [diff] [blame] | 1101 | int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans, |
| 1102 | struct btrfs_root *root, |
| 1103 | const char *name, int name_len, |
| 1104 | u64 inode_objectid, u64 ref_objectid); |
| 1105 | int btrfs_del_inode_ref(struct btrfs_trans_handle *trans, |
| 1106 | struct btrfs_root *root, |
| 1107 | const char *name, int name_len, |
| 1108 | u64 inode_objectid, u64 ref_objectid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1109 | int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans, |
| 1110 | struct btrfs_root *root, |
| 1111 | struct btrfs_path *path, u64 objectid); |
Chris Mason | 293ffd5 | 2007-03-20 15:57:25 -0400 | [diff] [blame] | 1112 | int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root |
Chris Mason | d6e4a42 | 2007-04-06 15:37:36 -0400 | [diff] [blame] | 1113 | *root, struct btrfs_path *path, |
| 1114 | struct btrfs_key *location, int mod); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1115 | |
| 1116 | /* file-item.c */ |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1117 | int btrfs_insert_file_extent(struct btrfs_trans_handle *trans, |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1118 | struct btrfs_root *root, |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1119 | u64 objectid, u64 pos, u64 offset, |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 1120 | u64 disk_num_bytes, |
| 1121 | u64 num_bytes); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1122 | int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans, |
| 1123 | struct btrfs_root *root, |
| 1124 | struct btrfs_path *path, u64 objectid, |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 1125 | u64 bytenr, int mod); |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 1126 | int btrfs_csum_file_block(struct btrfs_trans_handle *trans, |
| 1127 | struct btrfs_root *root, |
Chris Mason | f578d4b | 2007-10-25 15:42:56 -0400 | [diff] [blame] | 1128 | struct inode *inode, |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 1129 | u64 objectid, u64 offset, |
| 1130 | char *data, size_t len); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1131 | struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans, |
| 1132 | struct btrfs_root *root, |
| 1133 | struct btrfs_path *path, |
| 1134 | u64 objectid, u64 offset, |
| 1135 | int cow); |
Chris Mason | 1de037a | 2007-05-29 15:17:08 -0400 | [diff] [blame] | 1136 | int btrfs_csum_truncate(struct btrfs_trans_handle *trans, |
| 1137 | struct btrfs_root *root, struct btrfs_path *path, |
| 1138 | u64 isize); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1139 | /* inode.c */ |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 1140 | unsigned long btrfs_force_ra(struct address_space *mapping, |
| 1141 | struct file_ra_state *ra, struct file *file, |
| 1142 | pgoff_t offset, pgoff_t last_index); |
Chris Mason | 1832a6d | 2007-12-21 16:27:21 -0500 | [diff] [blame] | 1143 | int btrfs_check_free_space(struct btrfs_root *root, u64 num_required, |
| 1144 | int for_del); |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 1145 | int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page); |
| 1146 | int btrfs_readpage(struct file *file, struct page *page); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1147 | void btrfs_delete_inode(struct inode *inode); |
Chris Mason | 2da98f0 | 2008-01-16 11:44:43 -0500 | [diff] [blame^] | 1148 | void btrfs_put_inode(struct inode *inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1149 | void btrfs_read_locked_inode(struct inode *inode); |
| 1150 | int btrfs_write_inode(struct inode *inode, int wait); |
| 1151 | void btrfs_dirty_inode(struct inode *inode); |
| 1152 | struct inode *btrfs_alloc_inode(struct super_block *sb); |
| 1153 | void btrfs_destroy_inode(struct inode *inode); |
| 1154 | int btrfs_init_cachep(void); |
| 1155 | void btrfs_destroy_cachep(void); |
Christoph Hellwig | 34287aa | 2007-09-14 10:22:47 -0400 | [diff] [blame] | 1156 | long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1157 | struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid, |
| 1158 | struct btrfs_root *root); |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 1159 | struct inode *btrfs_ilookup(struct super_block *s, u64 objectid, |
| 1160 | u64 root_objectid); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1161 | int btrfs_commit_write(struct file *file, struct page *page, |
| 1162 | unsigned from, unsigned to); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 1163 | struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page, |
| 1164 | size_t page_offset, u64 start, u64 end, |
| 1165 | int create); |
| 1166 | int btrfs_update_inode(struct btrfs_trans_handle *trans, |
| 1167 | struct btrfs_root *root, |
| 1168 | struct inode *inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1169 | /* file.c */ |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 1170 | int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1171 | extern struct file_operations btrfs_file_operations; |
| 1172 | int btrfs_drop_extents(struct btrfs_trans_handle *trans, |
| 1173 | struct btrfs_root *root, struct inode *inode, |
Chris Mason | 00f5c79 | 2007-11-30 10:09:33 -0500 | [diff] [blame] | 1174 | u64 start, u64 end, u64 inline_limit, u64 *hint_block); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1175 | /* tree-defrag.c */ |
| 1176 | int btrfs_defrag_leaves(struct btrfs_trans_handle *trans, |
| 1177 | struct btrfs_root *root, int cache_only); |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 1178 | |
| 1179 | /* sysfs.c */ |
| 1180 | int btrfs_init_sysfs(void); |
| 1181 | void btrfs_exit_sysfs(void); |
| 1182 | int btrfs_sysfs_add_super(struct btrfs_fs_info *fs); |
| 1183 | int btrfs_sysfs_add_root(struct btrfs_root *root); |
| 1184 | void btrfs_sysfs_del_root(struct btrfs_root *root); |
| 1185 | void btrfs_sysfs_del_super(struct btrfs_fs_info *root); |
| 1186 | |
Josef Bacik | 5103e94 | 2007-11-16 11:45:54 -0500 | [diff] [blame] | 1187 | /* xattr.c */ |
| 1188 | ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size); |
| 1189 | int btrfs_delete_xattrs(struct btrfs_trans_handle *trans, |
| 1190 | struct btrfs_root *root, struct inode *inode); |
Chris Mason | edbd8d4 | 2007-12-21 16:27:24 -0500 | [diff] [blame] | 1191 | /* super.c */ |
| 1192 | u64 btrfs_parse_size(char *str); |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 1193 | #endif |