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 | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 19 | #ifndef __BTRFS__ |
| 20 | #define __BTRFS__ |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 21 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 22 | #include <linux/fs.h> |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 23 | #include <linux/buffer_head.h> |
Chris Mason | 08607c1 | 2007-06-08 15:33:54 -0400 | [diff] [blame] | 24 | #include <linux/workqueue.h> |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 25 | #include <linux/completion.h> |
Chris Mason | 8ef9762 | 2007-03-26 10:15:30 -0400 | [diff] [blame] | 26 | #include "bit-radix.h" |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 27 | |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 28 | struct btrfs_trans_handle; |
Chris Mason | 79154b1 | 2007-03-22 15:59:16 -0400 | [diff] [blame] | 29 | struct btrfs_transaction; |
Chris Mason | 35b7e47 | 2007-05-02 15:53:43 -0400 | [diff] [blame] | 30 | extern struct kmem_cache *btrfs_trans_handle_cachep; |
| 31 | extern struct kmem_cache *btrfs_transaction_cachep; |
| 32 | extern struct kmem_cache *btrfs_bit_radix_cachep; |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 33 | extern struct kmem_cache *btrfs_path_cachep; |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 34 | |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 35 | #define BTRFS_MAGIC "_BtRfS_M" |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 36 | |
Chris Mason | 6407bf6 | 2007-03-27 06:33:00 -0400 | [diff] [blame] | 37 | #define BTRFS_ROOT_TREE_OBJECTID 1ULL |
Chris Mason | 0cf6c62 | 2007-06-09 09:22:25 -0400 | [diff] [blame] | 38 | #define BTRFS_EXTENT_TREE_OBJECTID 2ULL |
| 39 | #define BTRFS_FS_TREE_OBJECTID 3ULL |
| 40 | #define BTRFS_ROOT_TREE_DIR_OBJECTID 4ULL |
| 41 | #define BTRFS_FIRST_FREE_OBJECTID 5ULL |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 42 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 43 | /* |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 44 | * we can actually store much bigger names, but lets not confuse the rest |
| 45 | * of linux |
| 46 | */ |
| 47 | #define BTRFS_NAME_LEN 255 |
| 48 | |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 49 | /* 32 bytes in various csum fields */ |
| 50 | #define BTRFS_CSUM_SIZE 32 |
Chris Mason | 509659c | 2007-05-10 12:36:17 -0400 | [diff] [blame] | 51 | /* four bytes for CRC32 */ |
| 52 | #define BTRFS_CRC32_SIZE 4 |
Chris Mason | e06afa8 | 2007-05-23 15:44:28 -0400 | [diff] [blame] | 53 | #define BTRFS_EMPTY_DIR_SIZE 6 |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 54 | |
Chris Mason | fabb568 | 2007-06-07 22:13:21 -0400 | [diff] [blame] | 55 | #define BTRFS_FT_UNKNOWN 0 |
| 56 | #define BTRFS_FT_REG_FILE 1 |
| 57 | #define BTRFS_FT_DIR 2 |
| 58 | #define BTRFS_FT_CHRDEV 3 |
| 59 | #define BTRFS_FT_BLKDEV 4 |
| 60 | #define BTRFS_FT_FIFO 5 |
| 61 | #define BTRFS_FT_SOCK 6 |
| 62 | #define BTRFS_FT_SYMLINK 7 |
| 63 | #define BTRFS_FT_MAX 8 |
| 64 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 65 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 66 | * the key defines the order in the tree, and so it also defines (optimal) |
| 67 | * block layout. objectid corresonds to the inode number. The flags |
| 68 | * tells us things about the object, and is a kind of stream selector. |
| 69 | * so for a given inode, keys with flags of 1 might refer to the inode |
| 70 | * data, flags of 2 may point to file data in the btree and flags == 3 |
| 71 | * may point to extents. |
| 72 | * |
| 73 | * offset is the starting byte offset for this key in the stream. |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 74 | * |
| 75 | * btrfs_disk_key is in disk byte order. struct btrfs_key is always |
| 76 | * in cpu native order. Otherwise they are identical and their sizes |
| 77 | * should be the same (ie both packed) |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 78 | */ |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 79 | struct btrfs_disk_key { |
| 80 | __le64 objectid; |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 81 | __le32 flags; |
Chris Mason | 70b2bef | 2007-04-17 15:39:32 -0400 | [diff] [blame] | 82 | __le64 offset; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 83 | } __attribute__ ((__packed__)); |
| 84 | |
| 85 | struct btrfs_key { |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 86 | u64 objectid; |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 87 | u32 flags; |
Chris Mason | 70b2bef | 2007-04-17 15:39:32 -0400 | [diff] [blame] | 88 | u64 offset; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 89 | } __attribute__ ((__packed__)); |
| 90 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 91 | /* |
| 92 | * every tree block (leaf or node) starts with this header. |
| 93 | */ |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 94 | struct btrfs_header { |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 95 | u8 csum[BTRFS_CSUM_SIZE]; |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 96 | u8 fsid[16]; /* FS specific uuid */ |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 97 | __le64 blocknr; /* which block this node is supposed to live in */ |
Chris Mason | 7f5c151 | 2007-03-23 15:56:19 -0400 | [diff] [blame] | 98 | __le64 generation; |
Chris Mason | 4d77567 | 2007-04-20 20:23:12 -0400 | [diff] [blame] | 99 | __le64 owner; |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 100 | __le16 nritems; |
| 101 | __le16 flags; |
Chris Mason | 9a6f11e | 2007-03-27 09:06:38 -0400 | [diff] [blame] | 102 | u8 level; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 103 | } __attribute__ ((__packed__)); |
| 104 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 105 | #define BTRFS_MAX_LEVEL 8 |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 106 | #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->blocksize - \ |
| 107 | sizeof(struct btrfs_header)) / \ |
| 108 | (sizeof(struct btrfs_disk_key) + sizeof(u64))) |
| 109 | #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header)) |
| 110 | #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->blocksize)) |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 111 | #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \ |
| 112 | sizeof(struct btrfs_item) - \ |
| 113 | sizeof(struct btrfs_file_extent_item)) |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 114 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 115 | struct buffer_head; |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 116 | /* |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 117 | * the super block basically lists the main trees of the FS |
| 118 | * it currently lacks any block count etc etc |
| 119 | */ |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 120 | struct btrfs_super_block { |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 121 | u8 csum[BTRFS_CSUM_SIZE]; |
Chris Mason | 87cbda5 | 2007-03-28 19:44:27 -0400 | [diff] [blame] | 122 | /* the first 3 fields must match struct btrfs_header */ |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 123 | u8 fsid[16]; /* FS specific uuid */ |
| 124 | __le64 blocknr; /* this block number */ |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 125 | __le64 magic; |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 126 | __le64 generation; |
| 127 | __le64 root; |
| 128 | __le64 total_blocks; |
| 129 | __le64 blocks_used; |
Chris Mason | 2e635a2 | 2007-03-21 11:12:56 -0400 | [diff] [blame] | 130 | __le64 root_dir_objectid; |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 131 | __le32 blocksize; |
Chris Mason | cfaa729 | 2007-02-21 17:04:57 -0500 | [diff] [blame] | 132 | } __attribute__ ((__packed__)); |
| 133 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 134 | /* |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 135 | * 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] | 136 | * the item in the leaf (relative to the start of the data area) |
| 137 | */ |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 138 | struct btrfs_item { |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 139 | struct btrfs_disk_key key; |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 140 | __le32 offset; |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 141 | __le16 size; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 142 | } __attribute__ ((__packed__)); |
| 143 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 144 | /* |
| 145 | * leaves have an item area and a data area: |
| 146 | * [item0, item1....itemN] [free space] [dataN...data1, data0] |
| 147 | * |
| 148 | * The data is separate from the items to get the keys closer together |
| 149 | * during searches. |
| 150 | */ |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 151 | struct btrfs_leaf { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 152 | struct btrfs_header header; |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 153 | struct btrfs_item items[]; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 154 | } __attribute__ ((__packed__)); |
| 155 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 156 | /* |
| 157 | * all non-leaf blocks are nodes, they hold only keys and pointers to |
| 158 | * other blocks |
| 159 | */ |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 160 | struct btrfs_key_ptr { |
| 161 | struct btrfs_disk_key key; |
| 162 | __le64 blockptr; |
| 163 | } __attribute__ ((__packed__)); |
| 164 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 165 | struct btrfs_node { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 166 | struct btrfs_header header; |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 167 | struct btrfs_key_ptr ptrs[]; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 168 | } __attribute__ ((__packed__)); |
| 169 | |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 170 | /* |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 171 | * btrfs_paths remember the path taken from the root down to the leaf. |
| 172 | * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point |
Chris Mason | fec577f | 2007-02-26 10:40:21 -0500 | [diff] [blame] | 173 | * to any other levels that are present. |
| 174 | * |
| 175 | * The slots array records the index of the item or block pointer |
| 176 | * used while walking the tree. |
| 177 | */ |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 178 | struct btrfs_path { |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 179 | struct buffer_head *nodes[BTRFS_MAX_LEVEL]; |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 180 | int slots[BTRFS_MAX_LEVEL]; |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 181 | int reada; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 182 | int lowest_level; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 183 | }; |
Chris Mason | 5de08d7 | 2007-02-24 06:24:44 -0500 | [diff] [blame] | 184 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 185 | /* |
| 186 | * items in the extent btree are used to record the objectid of the |
| 187 | * owner of the block and the number of references |
| 188 | */ |
| 189 | struct btrfs_extent_item { |
| 190 | __le32 refs; |
Chris Mason | 4d77567 | 2007-04-20 20:23:12 -0400 | [diff] [blame] | 191 | __le64 owner; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 192 | } __attribute__ ((__packed__)); |
| 193 | |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 194 | struct btrfs_inode_timespec { |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 195 | __le64 sec; |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 196 | __le32 nsec; |
| 197 | } __attribute__ ((__packed__)); |
| 198 | |
| 199 | /* |
| 200 | * there is no padding here on purpose. If you want to extent the inode, |
| 201 | * make a new item type |
| 202 | */ |
| 203 | struct btrfs_inode_item { |
| 204 | __le64 generation; |
| 205 | __le64 size; |
| 206 | __le64 nblocks; |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 207 | __le64 block_group; |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 208 | __le32 nlink; |
| 209 | __le32 uid; |
| 210 | __le32 gid; |
| 211 | __le32 mode; |
| 212 | __le32 rdev; |
| 213 | __le16 flags; |
| 214 | __le16 compat_flags; |
| 215 | struct btrfs_inode_timespec atime; |
| 216 | struct btrfs_inode_timespec ctime; |
| 217 | struct btrfs_inode_timespec mtime; |
| 218 | struct btrfs_inode_timespec otime; |
| 219 | } __attribute__ ((__packed__)); |
| 220 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 221 | struct btrfs_dir_item { |
Chris Mason | d6e4a42 | 2007-04-06 15:37:36 -0400 | [diff] [blame] | 222 | struct btrfs_disk_key location; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 223 | __le16 flags; |
Chris Mason | a8a2ee0 | 2007-03-16 08:46:49 -0400 | [diff] [blame] | 224 | __le16 name_len; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 225 | u8 type; |
| 226 | } __attribute__ ((__packed__)); |
| 227 | |
| 228 | struct btrfs_root_item { |
Chris Mason | d6e4a42 | 2007-04-06 15:37:36 -0400 | [diff] [blame] | 229 | struct btrfs_inode_item inode; |
| 230 | __le64 root_dirid; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 231 | __le64 blocknr; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 232 | __le64 block_limit; |
| 233 | __le64 blocks_used; |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 234 | __le32 flags; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 235 | __le32 refs; |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 236 | struct btrfs_disk_key drop_progress; |
| 237 | u8 drop_level; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 238 | } __attribute__ ((__packed__)); |
| 239 | |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 240 | #define BTRFS_FILE_EXTENT_REG 0 |
| 241 | #define BTRFS_FILE_EXTENT_INLINE 1 |
| 242 | |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 243 | struct btrfs_file_extent_item { |
Chris Mason | 71951f3 | 2007-03-27 09:16:29 -0400 | [diff] [blame] | 244 | __le64 generation; |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 245 | u8 type; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 246 | /* |
| 247 | * disk space consumed by the extent, checksum blocks are included |
| 248 | * in these numbers |
| 249 | */ |
| 250 | __le64 disk_blocknr; |
| 251 | __le64 disk_num_blocks; |
| 252 | /* |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 253 | * the logical offset in file blocks (no csums) |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 254 | * this extent record is for. This allows a file extent to point |
| 255 | * into the middle of an existing extent on disk, sharing it |
| 256 | * between two snapshots (useful if some bytes in the middle of the |
| 257 | * extent have changed |
| 258 | */ |
| 259 | __le64 offset; |
| 260 | /* |
| 261 | * the logical number of file blocks (no csums included) |
| 262 | */ |
| 263 | __le64 num_blocks; |
| 264 | } __attribute__ ((__packed__)); |
| 265 | |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 266 | struct btrfs_csum_item { |
Chris Mason | 509659c | 2007-05-10 12:36:17 -0400 | [diff] [blame] | 267 | u8 csum; |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 268 | } __attribute__ ((__packed__)); |
| 269 | |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 270 | /* tag for the radix tree of block groups in ram */ |
| 271 | #define BTRFS_BLOCK_GROUP_DIRTY 0 |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 272 | #define BTRFS_BLOCK_GROUP_AVAIL 1 |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 273 | #define BTRFS_BLOCK_GROUP_SIZE (256 * 1024 * 1024) |
Chris Mason | 1e2677e | 2007-05-29 16:52:18 -0400 | [diff] [blame] | 274 | |
| 275 | |
| 276 | #define BTRFS_BLOCK_GROUP_DATA 1 |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 277 | struct btrfs_block_group_item { |
| 278 | __le64 used; |
Chris Mason | 1e2677e | 2007-05-29 16:52:18 -0400 | [diff] [blame] | 279 | u8 flags; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 280 | } __attribute__ ((__packed__)); |
| 281 | |
| 282 | struct btrfs_block_group_cache { |
| 283 | struct btrfs_key key; |
| 284 | struct btrfs_block_group_item item; |
Chris Mason | 3e1ad54 | 2007-05-07 20:03:49 -0400 | [diff] [blame] | 285 | struct radix_tree_root *radix; |
Chris Mason | cd1bc46 | 2007-04-27 10:08:34 -0400 | [diff] [blame] | 286 | u64 first_free; |
| 287 | u64 last_alloc; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 288 | u64 pinned; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 289 | u64 last_prealloc; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 290 | int data; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 291 | int cached; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 292 | }; |
| 293 | |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 294 | struct btrfs_fs_info { |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 295 | struct btrfs_root *extent_root; |
| 296 | struct btrfs_root *tree_root; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 297 | struct radix_tree_root fs_roots_radix; |
Chris Mason | 8ef9762 | 2007-03-26 10:15:30 -0400 | [diff] [blame] | 298 | struct radix_tree_root pending_del_radix; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 299 | struct radix_tree_root pinned_radix; |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 300 | struct radix_tree_root block_group_radix; |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 301 | struct radix_tree_root block_group_data_radix; |
Chris Mason | e37c9e6 | 2007-05-09 20:13:14 -0400 | [diff] [blame] | 302 | struct radix_tree_root extent_map_radix; |
Chris Mason | 26b8003 | 2007-08-08 20:17:12 -0400 | [diff] [blame] | 303 | struct radix_tree_root extent_ins_radix; |
Chris Mason | 293ffd5 | 2007-03-20 15:57:25 -0400 | [diff] [blame] | 304 | u64 generation; |
Josef Bacik | 15ee9bc | 2007-08-10 16:22:09 -0400 | [diff] [blame] | 305 | u64 last_trans_committed; |
Chris Mason | 79154b1 | 2007-03-22 15:59:16 -0400 | [diff] [blame] | 306 | struct btrfs_transaction *running_transaction; |
Chris Mason | 1261ec4 | 2007-03-20 20:35:03 -0400 | [diff] [blame] | 307 | struct btrfs_super_block *disk_super; |
Chris Mason | 4b52dff | 2007-06-26 10:06:50 -0400 | [diff] [blame] | 308 | struct btrfs_super_block super_copy; |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 309 | struct buffer_head *sb_buffer; |
| 310 | struct super_block *sb; |
Chris Mason | d98237b | 2007-03-28 13:57:48 -0400 | [diff] [blame] | 311 | struct inode *btree_inode; |
Chris Mason | 79154b1 | 2007-03-22 15:59:16 -0400 | [diff] [blame] | 312 | struct mutex trans_mutex; |
Chris Mason | d561c02 | 2007-03-23 19:47:49 -0400 | [diff] [blame] | 313 | struct mutex fs_mutex; |
Chris Mason | 8fd1779 | 2007-04-19 21:01:03 -0400 | [diff] [blame] | 314 | struct list_head trans_list; |
Chris Mason | facda1e | 2007-06-08 18:11:48 -0400 | [diff] [blame] | 315 | struct list_head dead_roots; |
Chris Mason | 08607c1 | 2007-06-08 15:33:54 -0400 | [diff] [blame] | 316 | struct delayed_work trans_work; |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 317 | struct kobject super_kobj; |
| 318 | struct completion kobj_unregister; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 319 | int do_barriers; |
Chris Mason | facda1e | 2007-06-08 18:11:48 -0400 | [diff] [blame] | 320 | int closing; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 321 | }; |
| 322 | |
| 323 | /* |
| 324 | * 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] | 325 | * and for the extent tree extent_root root. |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 326 | */ |
| 327 | struct btrfs_root { |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 328 | struct buffer_head *node; |
| 329 | struct buffer_head *commit_root; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 330 | struct btrfs_root_item root_item; |
| 331 | struct btrfs_key root_key; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 332 | struct btrfs_fs_info *fs_info; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 333 | struct inode *inode; |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 334 | struct kobject root_kobj; |
| 335 | struct completion kobj_unregister; |
Chris Mason | 011410b | 2007-09-10 19:58:36 -0400 | [diff] [blame] | 336 | struct rw_semaphore snap_sem; |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 337 | u64 objectid; |
| 338 | u64 last_trans; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 339 | u32 blocksize; |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 340 | u32 type; |
Chris Mason | 1b05da2 | 2007-04-10 12:13:09 -0400 | [diff] [blame] | 341 | u64 highest_inode; |
| 342 | u64 last_inode_alloc; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 343 | int ref_cows; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 344 | struct btrfs_key defrag_progress; |
| 345 | int defrag_running; |
| 346 | int defrag_level; |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 347 | char *name; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 348 | }; |
| 349 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 350 | /* the lower bits in the key flags defines the item type */ |
| 351 | #define BTRFS_KEY_TYPE_MAX 256 |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 352 | #define BTRFS_KEY_TYPE_SHIFT 24 |
| 353 | #define BTRFS_KEY_TYPE_MASK (((u32)BTRFS_KEY_TYPE_MAX - 1) << \ |
| 354 | BTRFS_KEY_TYPE_SHIFT) |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 355 | |
| 356 | /* |
| 357 | * inode items have the data typically returned from stat and store other |
| 358 | * info about object characteristics. There is one for every file and dir in |
| 359 | * the FS |
| 360 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 361 | #define BTRFS_INODE_ITEM_KEY 1 |
| 362 | |
| 363 | /* reserve 2-15 close to the inode for later flexibility */ |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 364 | |
| 365 | /* |
| 366 | * dir items are the name -> inode pointers in a directory. There is one |
| 367 | * for every name in a directory. |
| 368 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 369 | #define BTRFS_DIR_ITEM_KEY 16 |
| 370 | #define BTRFS_DIR_INDEX_KEY 17 |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 371 | /* |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 372 | * extent data is for file data |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 373 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 374 | #define BTRFS_EXTENT_DATA_KEY 18 |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 375 | /* |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 376 | * csum items have the checksums for data in the extents |
| 377 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 378 | #define BTRFS_CSUM_ITEM_KEY 19 |
| 379 | |
| 380 | /* reserve 20-31 for other file stuff */ |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 381 | |
| 382 | /* |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 383 | * root items point to tree roots. There are typically in the root |
| 384 | * tree used by the super block to find all the other trees |
| 385 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 386 | #define BTRFS_ROOT_ITEM_KEY 32 |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 387 | /* |
| 388 | * extent items are in the extent map tree. These record which blocks |
| 389 | * are used, and how many references there are to each block |
| 390 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 391 | #define BTRFS_EXTENT_ITEM_KEY 33 |
| 392 | |
| 393 | /* |
| 394 | * block groups give us hints into the extent allocation trees. Which |
| 395 | * blocks are free etc etc |
| 396 | */ |
| 397 | #define BTRFS_BLOCK_GROUP_ITEM_KEY 34 |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 398 | |
| 399 | /* |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 400 | * string items are for debugging. They just store a short string of |
| 401 | * data in the FS |
| 402 | */ |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 403 | #define BTRFS_STRING_ITEM_KEY 253 |
| 404 | |
| 405 | |
| 406 | static inline u64 btrfs_block_group_used(struct btrfs_block_group_item *bi) |
| 407 | { |
| 408 | return le64_to_cpu(bi->used); |
| 409 | } |
| 410 | |
| 411 | static inline void btrfs_set_block_group_used(struct |
| 412 | btrfs_block_group_item *bi, |
| 413 | u64 val) |
| 414 | { |
| 415 | bi->used = cpu_to_le64(val); |
| 416 | } |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 417 | |
| 418 | static inline u64 btrfs_inode_generation(struct btrfs_inode_item *i) |
| 419 | { |
| 420 | return le64_to_cpu(i->generation); |
| 421 | } |
| 422 | |
| 423 | static inline void btrfs_set_inode_generation(struct btrfs_inode_item *i, |
| 424 | u64 val) |
| 425 | { |
| 426 | i->generation = cpu_to_le64(val); |
| 427 | } |
| 428 | |
| 429 | static inline u64 btrfs_inode_size(struct btrfs_inode_item *i) |
| 430 | { |
| 431 | return le64_to_cpu(i->size); |
| 432 | } |
| 433 | |
| 434 | static inline void btrfs_set_inode_size(struct btrfs_inode_item *i, u64 val) |
| 435 | { |
| 436 | i->size = cpu_to_le64(val); |
| 437 | } |
| 438 | |
| 439 | static inline u64 btrfs_inode_nblocks(struct btrfs_inode_item *i) |
| 440 | { |
| 441 | return le64_to_cpu(i->nblocks); |
| 442 | } |
| 443 | |
| 444 | static inline void btrfs_set_inode_nblocks(struct btrfs_inode_item *i, u64 val) |
| 445 | { |
| 446 | i->nblocks = cpu_to_le64(val); |
| 447 | } |
| 448 | |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 449 | static inline u64 btrfs_inode_block_group(struct btrfs_inode_item *i) |
| 450 | { |
| 451 | return le64_to_cpu(i->block_group); |
| 452 | } |
| 453 | |
| 454 | static inline void btrfs_set_inode_block_group(struct btrfs_inode_item *i, |
| 455 | u64 val) |
| 456 | { |
| 457 | i->block_group = cpu_to_le64(val); |
| 458 | } |
| 459 | |
Chris Mason | 1e1d270 | 2007-03-15 19:03:33 -0400 | [diff] [blame] | 460 | static inline u32 btrfs_inode_nlink(struct btrfs_inode_item *i) |
| 461 | { |
| 462 | return le32_to_cpu(i->nlink); |
| 463 | } |
| 464 | |
| 465 | static inline void btrfs_set_inode_nlink(struct btrfs_inode_item *i, u32 val) |
| 466 | { |
| 467 | i->nlink = cpu_to_le32(val); |
| 468 | } |
| 469 | |
| 470 | static inline u32 btrfs_inode_uid(struct btrfs_inode_item *i) |
| 471 | { |
| 472 | return le32_to_cpu(i->uid); |
| 473 | } |
| 474 | |
| 475 | static inline void btrfs_set_inode_uid(struct btrfs_inode_item *i, u32 val) |
| 476 | { |
| 477 | i->uid = cpu_to_le32(val); |
| 478 | } |
| 479 | |
| 480 | static inline u32 btrfs_inode_gid(struct btrfs_inode_item *i) |
| 481 | { |
| 482 | return le32_to_cpu(i->gid); |
| 483 | } |
| 484 | |
| 485 | static inline void btrfs_set_inode_gid(struct btrfs_inode_item *i, u32 val) |
| 486 | { |
| 487 | i->gid = cpu_to_le32(val); |
| 488 | } |
| 489 | |
| 490 | static inline u32 btrfs_inode_mode(struct btrfs_inode_item *i) |
| 491 | { |
| 492 | return le32_to_cpu(i->mode); |
| 493 | } |
| 494 | |
| 495 | static inline void btrfs_set_inode_mode(struct btrfs_inode_item *i, u32 val) |
| 496 | { |
| 497 | i->mode = cpu_to_le32(val); |
| 498 | } |
| 499 | |
| 500 | static inline u32 btrfs_inode_rdev(struct btrfs_inode_item *i) |
| 501 | { |
| 502 | return le32_to_cpu(i->rdev); |
| 503 | } |
| 504 | |
| 505 | static inline void btrfs_set_inode_rdev(struct btrfs_inode_item *i, u32 val) |
| 506 | { |
| 507 | i->rdev = cpu_to_le32(val); |
| 508 | } |
| 509 | |
| 510 | static inline u16 btrfs_inode_flags(struct btrfs_inode_item *i) |
| 511 | { |
| 512 | return le16_to_cpu(i->flags); |
| 513 | } |
| 514 | |
| 515 | static inline void btrfs_set_inode_flags(struct btrfs_inode_item *i, u16 val) |
| 516 | { |
| 517 | i->flags = cpu_to_le16(val); |
| 518 | } |
| 519 | |
| 520 | static inline u16 btrfs_inode_compat_flags(struct btrfs_inode_item *i) |
| 521 | { |
| 522 | return le16_to_cpu(i->compat_flags); |
| 523 | } |
| 524 | |
| 525 | static inline void btrfs_set_inode_compat_flags(struct btrfs_inode_item *i, |
| 526 | u16 val) |
| 527 | { |
| 528 | i->compat_flags = cpu_to_le16(val); |
| 529 | } |
| 530 | |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 531 | static inline u64 btrfs_timespec_sec(struct btrfs_inode_timespec *ts) |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 532 | { |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 533 | return le64_to_cpu(ts->sec); |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | static inline void btrfs_set_timespec_sec(struct btrfs_inode_timespec *ts, |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 537 | u64 val) |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 538 | { |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 539 | ts->sec = cpu_to_le64(val); |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | static inline u32 btrfs_timespec_nsec(struct btrfs_inode_timespec *ts) |
| 543 | { |
| 544 | return le32_to_cpu(ts->nsec); |
| 545 | } |
| 546 | |
| 547 | static inline void btrfs_set_timespec_nsec(struct btrfs_inode_timespec *ts, |
| 548 | u32 val) |
| 549 | { |
| 550 | ts->nsec = cpu_to_le32(val); |
| 551 | } |
| 552 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 553 | static inline u32 btrfs_extent_refs(struct btrfs_extent_item *ei) |
Chris Mason | cf27e1e | 2007-03-13 09:49:06 -0400 | [diff] [blame] | 554 | { |
| 555 | return le32_to_cpu(ei->refs); |
| 556 | } |
| 557 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 558 | static inline void btrfs_set_extent_refs(struct btrfs_extent_item *ei, u32 val) |
Chris Mason | cf27e1e | 2007-03-13 09:49:06 -0400 | [diff] [blame] | 559 | { |
| 560 | ei->refs = cpu_to_le32(val); |
| 561 | } |
| 562 | |
Chris Mason | 4d77567 | 2007-04-20 20:23:12 -0400 | [diff] [blame] | 563 | static inline u64 btrfs_extent_owner(struct btrfs_extent_item *ei) |
| 564 | { |
| 565 | return le64_to_cpu(ei->owner); |
| 566 | } |
| 567 | |
| 568 | static inline void btrfs_set_extent_owner(struct btrfs_extent_item *ei, u64 val) |
| 569 | { |
| 570 | ei->owner = cpu_to_le64(val); |
| 571 | } |
| 572 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 573 | static inline u64 btrfs_node_blockptr(struct btrfs_node *n, int nr) |
Chris Mason | 1d4f8a0 | 2007-03-13 09:28:32 -0400 | [diff] [blame] | 574 | { |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 575 | return le64_to_cpu(n->ptrs[nr].blockptr); |
Chris Mason | 1d4f8a0 | 2007-03-13 09:28:32 -0400 | [diff] [blame] | 576 | } |
| 577 | |
Chris Mason | 4d77567 | 2007-04-20 20:23:12 -0400 | [diff] [blame] | 578 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 579 | static inline void btrfs_set_node_blockptr(struct btrfs_node *n, int nr, |
| 580 | u64 val) |
Chris Mason | 1d4f8a0 | 2007-03-13 09:28:32 -0400 | [diff] [blame] | 581 | { |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 582 | n->ptrs[nr].blockptr = cpu_to_le64(val); |
Chris Mason | 1d4f8a0 | 2007-03-13 09:28:32 -0400 | [diff] [blame] | 583 | } |
| 584 | |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 585 | static inline u32 btrfs_item_offset(struct btrfs_item *item) |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 586 | { |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 587 | return le32_to_cpu(item->offset); |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 588 | } |
| 589 | |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 590 | static inline void btrfs_set_item_offset(struct btrfs_item *item, u32 val) |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 591 | { |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 592 | item->offset = cpu_to_le32(val); |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 593 | } |
| 594 | |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 595 | static inline u32 btrfs_item_end(struct btrfs_item *item) |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 596 | { |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 597 | return le32_to_cpu(item->offset) + le16_to_cpu(item->size); |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | static inline u16 btrfs_item_size(struct btrfs_item *item) |
| 601 | { |
| 602 | return le16_to_cpu(item->size); |
| 603 | } |
| 604 | |
| 605 | static inline void btrfs_set_item_size(struct btrfs_item *item, u16 val) |
| 606 | { |
| 607 | item->size = cpu_to_le16(val); |
| 608 | } |
| 609 | |
Chris Mason | 1d4f640 | 2007-03-15 15:18:43 -0400 | [diff] [blame] | 610 | static inline u16 btrfs_dir_flags(struct btrfs_dir_item *d) |
| 611 | { |
| 612 | return le16_to_cpu(d->flags); |
| 613 | } |
| 614 | |
| 615 | static inline void btrfs_set_dir_flags(struct btrfs_dir_item *d, u16 val) |
| 616 | { |
| 617 | d->flags = cpu_to_le16(val); |
| 618 | } |
| 619 | |
| 620 | static inline u8 btrfs_dir_type(struct btrfs_dir_item *d) |
| 621 | { |
| 622 | return d->type; |
| 623 | } |
| 624 | |
| 625 | static inline void btrfs_set_dir_type(struct btrfs_dir_item *d, u8 val) |
| 626 | { |
| 627 | d->type = val; |
| 628 | } |
| 629 | |
Chris Mason | a8a2ee0 | 2007-03-16 08:46:49 -0400 | [diff] [blame] | 630 | static inline u16 btrfs_dir_name_len(struct btrfs_dir_item *d) |
Chris Mason | 1d4f640 | 2007-03-15 15:18:43 -0400 | [diff] [blame] | 631 | { |
Chris Mason | a8a2ee0 | 2007-03-16 08:46:49 -0400 | [diff] [blame] | 632 | return le16_to_cpu(d->name_len); |
| 633 | } |
| 634 | |
| 635 | static inline void btrfs_set_dir_name_len(struct btrfs_dir_item *d, u16 val) |
| 636 | { |
| 637 | d->name_len = cpu_to_le16(val); |
Chris Mason | 1d4f640 | 2007-03-15 15:18:43 -0400 | [diff] [blame] | 638 | } |
| 639 | |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 640 | static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu, |
| 641 | struct btrfs_disk_key *disk) |
| 642 | { |
| 643 | cpu->offset = le64_to_cpu(disk->offset); |
| 644 | cpu->flags = le32_to_cpu(disk->flags); |
| 645 | cpu->objectid = le64_to_cpu(disk->objectid); |
| 646 | } |
| 647 | |
| 648 | static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk, |
| 649 | struct btrfs_key *cpu) |
| 650 | { |
| 651 | disk->offset = cpu_to_le64(cpu->offset); |
| 652 | disk->flags = cpu_to_le32(cpu->flags); |
| 653 | disk->objectid = cpu_to_le64(cpu->objectid); |
| 654 | } |
| 655 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 656 | static inline u64 btrfs_disk_key_objectid(struct btrfs_disk_key *disk) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 657 | { |
| 658 | return le64_to_cpu(disk->objectid); |
| 659 | } |
| 660 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 661 | static inline void btrfs_set_disk_key_objectid(struct btrfs_disk_key *disk, |
| 662 | u64 val) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 663 | { |
| 664 | disk->objectid = cpu_to_le64(val); |
| 665 | } |
| 666 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 667 | static inline u64 btrfs_disk_key_offset(struct btrfs_disk_key *disk) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 668 | { |
| 669 | return le64_to_cpu(disk->offset); |
| 670 | } |
| 671 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 672 | static inline void btrfs_set_disk_key_offset(struct btrfs_disk_key *disk, |
| 673 | u64 val) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 674 | { |
| 675 | disk->offset = cpu_to_le64(val); |
| 676 | } |
| 677 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 678 | static inline u32 btrfs_disk_key_flags(struct btrfs_disk_key *disk) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 679 | { |
| 680 | return le32_to_cpu(disk->flags); |
| 681 | } |
| 682 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 683 | static inline void btrfs_set_disk_key_flags(struct btrfs_disk_key *disk, |
| 684 | u32 val) |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 685 | { |
| 686 | disk->flags = cpu_to_le32(val); |
| 687 | } |
| 688 | |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 689 | static inline u32 btrfs_disk_key_type(struct btrfs_disk_key *key) |
| 690 | { |
| 691 | return le32_to_cpu(key->flags) >> BTRFS_KEY_TYPE_SHIFT; |
| 692 | } |
| 693 | |
| 694 | static inline void btrfs_set_disk_key_type(struct btrfs_disk_key *key, |
| 695 | u32 val) |
| 696 | { |
| 697 | u32 flags = btrfs_disk_key_flags(key); |
| 698 | BUG_ON(val >= BTRFS_KEY_TYPE_MAX); |
| 699 | val = val << BTRFS_KEY_TYPE_SHIFT; |
| 700 | flags = (flags & ~BTRFS_KEY_TYPE_MASK) | val; |
| 701 | btrfs_set_disk_key_flags(key, flags); |
| 702 | } |
| 703 | |
| 704 | static inline u32 btrfs_key_type(struct btrfs_key *key) |
| 705 | { |
| 706 | return key->flags >> BTRFS_KEY_TYPE_SHIFT; |
| 707 | } |
| 708 | |
| 709 | static inline void btrfs_set_key_type(struct btrfs_key *key, u32 val) |
| 710 | { |
| 711 | BUG_ON(val >= BTRFS_KEY_TYPE_MAX); |
| 712 | val = val << BTRFS_KEY_TYPE_SHIFT; |
| 713 | key->flags = (key->flags & ~(BTRFS_KEY_TYPE_MASK)) | val; |
| 714 | } |
| 715 | |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 716 | static inline u64 btrfs_header_blocknr(struct btrfs_header *h) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 717 | { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 718 | return le64_to_cpu(h->blocknr); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 719 | } |
| 720 | |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 721 | static inline void btrfs_set_header_blocknr(struct btrfs_header *h, u64 blocknr) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 722 | { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 723 | h->blocknr = cpu_to_le64(blocknr); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 724 | } |
| 725 | |
Chris Mason | 7f5c151 | 2007-03-23 15:56:19 -0400 | [diff] [blame] | 726 | static inline u64 btrfs_header_generation(struct btrfs_header *h) |
| 727 | { |
| 728 | return le64_to_cpu(h->generation); |
| 729 | } |
| 730 | |
| 731 | static inline void btrfs_set_header_generation(struct btrfs_header *h, |
| 732 | u64 val) |
| 733 | { |
| 734 | h->generation = cpu_to_le64(val); |
| 735 | } |
| 736 | |
Chris Mason | 4d77567 | 2007-04-20 20:23:12 -0400 | [diff] [blame] | 737 | static inline u64 btrfs_header_owner(struct btrfs_header *h) |
| 738 | { |
| 739 | return le64_to_cpu(h->owner); |
| 740 | } |
| 741 | |
| 742 | static inline void btrfs_set_header_owner(struct btrfs_header *h, |
| 743 | u64 val) |
| 744 | { |
| 745 | h->owner = cpu_to_le64(val); |
| 746 | } |
| 747 | |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 748 | static inline u16 btrfs_header_nritems(struct btrfs_header *h) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 749 | { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 750 | return le16_to_cpu(h->nritems); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 751 | } |
| 752 | |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 753 | static inline void btrfs_set_header_nritems(struct btrfs_header *h, u16 val) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 754 | { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 755 | h->nritems = cpu_to_le16(val); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 756 | } |
| 757 | |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 758 | static inline u16 btrfs_header_flags(struct btrfs_header *h) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 759 | { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 760 | return le16_to_cpu(h->flags); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 761 | } |
| 762 | |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 763 | static inline void btrfs_set_header_flags(struct btrfs_header *h, u16 val) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 764 | { |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 765 | h->flags = cpu_to_le16(val); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 766 | } |
| 767 | |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 768 | static inline int btrfs_header_level(struct btrfs_header *h) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 769 | { |
Chris Mason | 9a6f11e | 2007-03-27 09:06:38 -0400 | [diff] [blame] | 770 | return h->level; |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 771 | } |
| 772 | |
Chris Mason | bb492bb | 2007-03-12 12:29:44 -0400 | [diff] [blame] | 773 | static inline void btrfs_set_header_level(struct btrfs_header *h, int level) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 774 | { |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 775 | BUG_ON(level > BTRFS_MAX_LEVEL); |
Chris Mason | 9a6f11e | 2007-03-27 09:06:38 -0400 | [diff] [blame] | 776 | h->level = level; |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 777 | } |
| 778 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 779 | static inline int btrfs_is_leaf(struct btrfs_node *n) |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 780 | { |
| 781 | return (btrfs_header_level(&n->header) == 0); |
| 782 | } |
| 783 | |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 784 | static inline u64 btrfs_root_blocknr(struct btrfs_root_item *item) |
| 785 | { |
| 786 | return le64_to_cpu(item->blocknr); |
| 787 | } |
| 788 | |
| 789 | static inline void btrfs_set_root_blocknr(struct btrfs_root_item *item, u64 val) |
| 790 | { |
| 791 | item->blocknr = cpu_to_le64(val); |
| 792 | } |
| 793 | |
Chris Mason | d6e4a42 | 2007-04-06 15:37:36 -0400 | [diff] [blame] | 794 | static inline u64 btrfs_root_dirid(struct btrfs_root_item *item) |
| 795 | { |
| 796 | return le64_to_cpu(item->root_dirid); |
| 797 | } |
| 798 | |
| 799 | static inline void btrfs_set_root_dirid(struct btrfs_root_item *item, u64 val) |
| 800 | { |
| 801 | item->root_dirid = cpu_to_le64(val); |
| 802 | } |
| 803 | |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 804 | static inline u32 btrfs_root_refs(struct btrfs_root_item *item) |
| 805 | { |
| 806 | return le32_to_cpu(item->refs); |
| 807 | } |
| 808 | |
| 809 | static inline void btrfs_set_root_refs(struct btrfs_root_item *item, u32 val) |
| 810 | { |
| 811 | item->refs = cpu_to_le32(val); |
| 812 | } |
| 813 | |
Chris Mason | 5eda7b5 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 814 | static inline u32 btrfs_root_flags(struct btrfs_root_item *item) |
| 815 | { |
| 816 | return le32_to_cpu(item->flags); |
| 817 | } |
| 818 | |
| 819 | static inline void btrfs_set_root_flags(struct btrfs_root_item *item, u32 val) |
| 820 | { |
| 821 | item->flags = cpu_to_le32(val); |
| 822 | } |
| 823 | |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 824 | static inline void btrfs_set_root_blocks_used(struct btrfs_root_item *item, |
| 825 | u64 val) |
| 826 | { |
| 827 | item->blocks_used = cpu_to_le64(val); |
| 828 | } |
| 829 | |
| 830 | static inline u64 btrfs_root_blocks_used(struct btrfs_root_item *item) |
| 831 | { |
| 832 | return le64_to_cpu(item->blocks_used); |
| 833 | } |
| 834 | |
| 835 | static inline void btrfs_set_root_block_limit(struct btrfs_root_item *item, |
| 836 | u64 val) |
| 837 | { |
| 838 | item->block_limit = cpu_to_le64(val); |
| 839 | } |
| 840 | |
| 841 | static inline u64 btrfs_root_block_limit(struct btrfs_root_item *item) |
| 842 | { |
| 843 | return le64_to_cpu(item->block_limit); |
| 844 | } |
| 845 | |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 846 | static inline u64 btrfs_super_blocknr(struct btrfs_super_block *s) |
| 847 | { |
| 848 | return le64_to_cpu(s->blocknr); |
| 849 | } |
| 850 | |
| 851 | static inline void btrfs_set_super_blocknr(struct btrfs_super_block *s, u64 val) |
| 852 | { |
| 853 | s->blocknr = cpu_to_le64(val); |
| 854 | } |
| 855 | |
Chris Mason | 0f7d52f | 2007-04-09 10:42:37 -0400 | [diff] [blame] | 856 | static inline u64 btrfs_super_generation(struct btrfs_super_block *s) |
| 857 | { |
| 858 | return le64_to_cpu(s->generation); |
| 859 | } |
| 860 | |
| 861 | static inline void btrfs_set_super_generation(struct btrfs_super_block *s, |
| 862 | u64 val) |
| 863 | { |
| 864 | s->generation = cpu_to_le64(val); |
| 865 | } |
| 866 | |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 867 | static inline u64 btrfs_super_root(struct btrfs_super_block *s) |
| 868 | { |
| 869 | return le64_to_cpu(s->root); |
| 870 | } |
| 871 | |
| 872 | static inline void btrfs_set_super_root(struct btrfs_super_block *s, u64 val) |
| 873 | { |
| 874 | s->root = cpu_to_le64(val); |
| 875 | } |
| 876 | |
| 877 | static inline u64 btrfs_super_total_blocks(struct btrfs_super_block *s) |
| 878 | { |
| 879 | return le64_to_cpu(s->total_blocks); |
| 880 | } |
| 881 | |
| 882 | static inline void btrfs_set_super_total_blocks(struct btrfs_super_block *s, |
| 883 | u64 val) |
| 884 | { |
| 885 | s->total_blocks = cpu_to_le64(val); |
| 886 | } |
| 887 | |
| 888 | static inline u64 btrfs_super_blocks_used(struct btrfs_super_block *s) |
| 889 | { |
| 890 | return le64_to_cpu(s->blocks_used); |
| 891 | } |
| 892 | |
| 893 | static inline void btrfs_set_super_blocks_used(struct btrfs_super_block *s, |
| 894 | u64 val) |
| 895 | { |
| 896 | s->blocks_used = cpu_to_le64(val); |
| 897 | } |
| 898 | |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 899 | static inline u32 btrfs_super_blocksize(struct btrfs_super_block *s) |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 900 | { |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 901 | return le32_to_cpu(s->blocksize); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 902 | } |
| 903 | |
| 904 | static inline void btrfs_set_super_blocksize(struct btrfs_super_block *s, |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 905 | u32 val) |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 906 | { |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 907 | s->blocksize = cpu_to_le32(val); |
| 908 | } |
| 909 | |
Chris Mason | 2e635a2 | 2007-03-21 11:12:56 -0400 | [diff] [blame] | 910 | static inline u64 btrfs_super_root_dir(struct btrfs_super_block *s) |
| 911 | { |
| 912 | return le64_to_cpu(s->root_dir_objectid); |
| 913 | } |
| 914 | |
| 915 | static inline void btrfs_set_super_root_dir(struct btrfs_super_block *s, u64 |
| 916 | val) |
| 917 | { |
| 918 | s->root_dir_objectid = cpu_to_le64(val); |
| 919 | } |
| 920 | |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 921 | static inline u8 *btrfs_leaf_data(struct btrfs_leaf *l) |
| 922 | { |
| 923 | return (u8 *)l->items; |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 924 | } |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 925 | |
Chris Mason | 236454d | 2007-04-19 13:37:44 -0400 | [diff] [blame] | 926 | static inline int btrfs_file_extent_type(struct btrfs_file_extent_item *e) |
| 927 | { |
| 928 | return e->type; |
| 929 | } |
| 930 | static inline void btrfs_set_file_extent_type(struct btrfs_file_extent_item *e, |
| 931 | u8 val) |
| 932 | { |
| 933 | e->type = val; |
| 934 | } |
| 935 | |
| 936 | static inline char *btrfs_file_extent_inline_start(struct |
| 937 | btrfs_file_extent_item *e) |
| 938 | { |
| 939 | return (char *)(&e->disk_blocknr); |
| 940 | } |
| 941 | |
| 942 | static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize) |
| 943 | { |
| 944 | return (unsigned long)(&((struct |
| 945 | btrfs_file_extent_item *)NULL)->disk_blocknr) + datasize; |
| 946 | } |
| 947 | |
| 948 | static inline u32 btrfs_file_extent_inline_len(struct btrfs_item *e) |
| 949 | { |
| 950 | struct btrfs_file_extent_item *fe = NULL; |
| 951 | return btrfs_item_size(e) - (unsigned long)(&fe->disk_blocknr); |
| 952 | } |
| 953 | |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 954 | static inline u64 btrfs_file_extent_disk_blocknr(struct btrfs_file_extent_item |
| 955 | *e) |
| 956 | { |
| 957 | return le64_to_cpu(e->disk_blocknr); |
| 958 | } |
| 959 | |
| 960 | static inline void btrfs_set_file_extent_disk_blocknr(struct |
| 961 | btrfs_file_extent_item |
| 962 | *e, u64 val) |
| 963 | { |
| 964 | e->disk_blocknr = cpu_to_le64(val); |
| 965 | } |
| 966 | |
Chris Mason | 71951f3 | 2007-03-27 09:16:29 -0400 | [diff] [blame] | 967 | static inline u64 btrfs_file_extent_generation(struct btrfs_file_extent_item *e) |
| 968 | { |
| 969 | return le64_to_cpu(e->generation); |
| 970 | } |
| 971 | |
| 972 | static inline void btrfs_set_file_extent_generation(struct |
| 973 | btrfs_file_extent_item *e, |
| 974 | u64 val) |
| 975 | { |
| 976 | e->generation = cpu_to_le64(val); |
| 977 | } |
| 978 | |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 979 | static inline u64 btrfs_file_extent_disk_num_blocks(struct |
| 980 | btrfs_file_extent_item *e) |
| 981 | { |
| 982 | return le64_to_cpu(e->disk_num_blocks); |
| 983 | } |
| 984 | |
| 985 | static inline void btrfs_set_file_extent_disk_num_blocks(struct |
| 986 | btrfs_file_extent_item |
| 987 | *e, u64 val) |
| 988 | { |
| 989 | e->disk_num_blocks = cpu_to_le64(val); |
| 990 | } |
| 991 | |
| 992 | static inline u64 btrfs_file_extent_offset(struct btrfs_file_extent_item *e) |
| 993 | { |
| 994 | return le64_to_cpu(e->offset); |
| 995 | } |
| 996 | |
| 997 | static inline void btrfs_set_file_extent_offset(struct btrfs_file_extent_item |
| 998 | *e, u64 val) |
| 999 | { |
| 1000 | e->offset = cpu_to_le64(val); |
| 1001 | } |
| 1002 | |
| 1003 | static inline u64 btrfs_file_extent_num_blocks(struct btrfs_file_extent_item |
| 1004 | *e) |
| 1005 | { |
| 1006 | return le64_to_cpu(e->num_blocks); |
| 1007 | } |
| 1008 | |
| 1009 | static inline void btrfs_set_file_extent_num_blocks(struct |
| 1010 | btrfs_file_extent_item *e, |
| 1011 | u64 val) |
| 1012 | { |
| 1013 | e->num_blocks = cpu_to_le64(val); |
| 1014 | } |
| 1015 | |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 1016 | static inline struct btrfs_root *btrfs_sb(struct super_block *sb) |
| 1017 | { |
| 1018 | return sb->s_fs_info; |
| 1019 | } |
| 1020 | |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 1021 | static inline void btrfs_check_bounds(void *vptr, size_t len, |
| 1022 | void *vcontainer, size_t container_len) |
| 1023 | { |
| 1024 | char *ptr = vptr; |
| 1025 | char *container = vcontainer; |
| 1026 | WARN_ON(ptr < container); |
| 1027 | WARN_ON(ptr + len > container + container_len); |
| 1028 | } |
| 1029 | |
| 1030 | static inline void btrfs_memcpy(struct btrfs_root *root, |
| 1031 | void *dst_block, |
| 1032 | void *dst, const void *src, size_t nr) |
| 1033 | { |
| 1034 | btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize); |
| 1035 | memcpy(dst, src, nr); |
| 1036 | } |
| 1037 | |
| 1038 | static inline void btrfs_memmove(struct btrfs_root *root, |
| 1039 | void *dst_block, |
| 1040 | void *dst, void *src, size_t nr) |
| 1041 | { |
| 1042 | btrfs_check_bounds(dst, nr, dst_block, root->fs_info->sb->s_blocksize); |
| 1043 | memmove(dst, src, nr); |
| 1044 | } |
| 1045 | |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 1046 | static inline int btrfs_set_root_name(struct btrfs_root *root, |
| 1047 | const char *name, int len) |
| 1048 | { |
| 1049 | /* if we already have a name just free it */ |
| 1050 | if (root->name) |
| 1051 | kfree(root->name); |
| 1052 | |
| 1053 | root->name = kmalloc(len+1, GFP_KERNEL); |
| 1054 | if (!root->name) |
| 1055 | return -ENOMEM; |
| 1056 | |
| 1057 | memcpy(root->name, name, len); |
| 1058 | root->name[len] ='\0'; |
| 1059 | |
| 1060 | return 0; |
| 1061 | } |
| 1062 | |
Chris Mason | 4beb1b8 | 2007-03-14 10:31:29 -0400 | [diff] [blame] | 1063 | /* helper function to cast into the data area of the leaf. */ |
| 1064 | #define btrfs_item_ptr(leaf, slot, type) \ |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 1065 | ((type *)(btrfs_leaf_data(leaf) + \ |
| 1066 | btrfs_item_offset((leaf)->items + (slot)))) |
Chris Mason | 4beb1b8 | 2007-03-14 10:31:29 -0400 | [diff] [blame] | 1067 | |
Chris Mason | 95e0528 | 2007-08-29 09:11:44 -0400 | [diff] [blame] | 1068 | /* mount option defines and helpers */ |
| 1069 | #define BTRFS_MOUNT_SUBVOL 0x000001 |
| 1070 | #define btrfs_clear_opt(o, opt) o &= ~BTRFS_MOUNT_##opt |
| 1071 | #define btrfs_set_opt(o, opt) o |= BTRFS_MOUNT_##opt |
| 1072 | #define btrfs_test_opt(sb, opt) (BTRFS_SB(sb)->s_mount_opt & \ |
| 1073 | BTRFS_MOUNT_##opt) |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1074 | /* extent-tree.c */ |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 1075 | int btrfs_extent_post_op(struct btrfs_trans_handle *trans, |
| 1076 | struct btrfs_root *root); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 1077 | int btrfs_copy_pinned(struct btrfs_root *root, struct radix_tree_root *copy); |
Chris Mason | 5276aed | 2007-06-11 21:33:38 -0400 | [diff] [blame] | 1078 | struct btrfs_block_group_cache *btrfs_lookup_block_group(struct |
| 1079 | btrfs_fs_info *info, |
| 1080 | u64 blocknr); |
Chris Mason | 31f3c99 | 2007-04-30 15:25:45 -0400 | [diff] [blame] | 1081 | struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root, |
| 1082 | struct btrfs_block_group_cache |
Chris Mason | be74417 | 2007-05-06 10:15:01 -0400 | [diff] [blame] | 1083 | *hint, u64 search_start, |
Chris Mason | de428b6 | 2007-05-18 13:28:27 -0400 | [diff] [blame] | 1084 | int data, int owner); |
Chris Mason | c5739bb | 2007-04-10 09:27:04 -0400 | [diff] [blame] | 1085 | int btrfs_inc_root_ref(struct btrfs_trans_handle *trans, |
| 1086 | struct btrfs_root *root); |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 1087 | struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans, |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1088 | struct btrfs_root *root, u64 hint, |
| 1089 | u64 empty_size); |
Chris Mason | 4d77567 | 2007-04-20 20:23:12 -0400 | [diff] [blame] | 1090 | int btrfs_alloc_extent(struct btrfs_trans_handle *trans, |
| 1091 | struct btrfs_root *root, u64 owner, |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1092 | u64 num_blocks, u64 empty_size, u64 search_start, |
Chris Mason | be08c1b | 2007-05-03 09:06:49 -0400 | [diff] [blame] | 1093 | u64 search_end, struct btrfs_key *ins, int data); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1094 | int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 1095 | struct buffer_head *buf); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1096 | int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1097 | *root, u64 blocknr, u64 num_blocks, int pin); |
Chris Mason | ccd467d | 2007-06-28 15:57:36 -0400 | [diff] [blame] | 1098 | int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, |
| 1099 | struct btrfs_root *root, |
| 1100 | struct radix_tree_root *unpin_radix); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1101 | int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans, |
| 1102 | struct btrfs_root *root, |
| 1103 | u64 blocknr, u64 num_blocks); |
Chris Mason | 9078a3e | 2007-04-26 16:46:15 -0400 | [diff] [blame] | 1104 | int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, |
| 1105 | struct btrfs_root *root); |
| 1106 | int btrfs_free_block_groups(struct btrfs_fs_info *info); |
| 1107 | int btrfs_read_block_groups(struct btrfs_root *root); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1108 | /* ctree.c */ |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1109 | int btrfs_cow_block(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1110 | *root, struct buffer_head *buf, struct buffer_head |
| 1111 | *parent, int parent_slot, struct buffer_head |
| 1112 | **cow_ret); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 1113 | int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1114 | *root, struct btrfs_path *path, u32 data_size); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1115 | int btrfs_truncate_item(struct btrfs_trans_handle *trans, |
| 1116 | struct btrfs_root *root, |
| 1117 | struct btrfs_path *path, |
| 1118 | u32 new_size); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1119 | int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1120 | *root, struct btrfs_key *key, struct btrfs_path *p, int |
| 1121 | ins_len, int cow); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1122 | int btrfs_realloc_node(struct btrfs_trans_handle *trans, |
| 1123 | struct btrfs_root *root, struct buffer_head *parent, |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 1124 | int cache_only, u64 *last_ret); |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1125 | void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p); |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 1126 | struct btrfs_path *btrfs_alloc_path(void); |
| 1127 | void btrfs_free_path(struct btrfs_path *p); |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1128 | void btrfs_init_path(struct btrfs_path *p); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1129 | int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 1130 | struct btrfs_path *path); |
| 1131 | int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1132 | *root, struct btrfs_key *key, void *data, u32 data_size); |
| 1133 | int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1134 | *root, struct btrfs_path *path, struct btrfs_key |
| 1135 | *cpu_key, u32 data_size); |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 1136 | int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path); |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 1137 | int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf); |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1138 | int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 1139 | *root); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1140 | /* root-item.c */ |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1141 | int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 1142 | struct btrfs_key *key); |
| 1143 | int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1144 | *root, struct btrfs_key *key, struct btrfs_root_item |
| 1145 | *item); |
| 1146 | int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1147 | *root, struct btrfs_key *key, struct btrfs_root_item |
| 1148 | *item); |
| 1149 | int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct |
| 1150 | btrfs_root_item *item, struct btrfs_key *key); |
Chris Mason | 5ce14bb | 2007-09-11 11:15:39 -0400 | [diff] [blame] | 1151 | int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid, |
| 1152 | struct btrfs_root *latest_root); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1153 | /* dir-item.c */ |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 1154 | 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] | 1155 | *root, const char *name, int name_len, u64 dir, |
| 1156 | struct btrfs_key *location, u8 type); |
Chris Mason | 7e38180 | 2007-04-19 15:36:27 -0400 | [diff] [blame] | 1157 | struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, |
| 1158 | struct btrfs_root *root, |
| 1159 | struct btrfs_path *path, u64 dir, |
| 1160 | const char *name, int name_len, |
| 1161 | int mod); |
| 1162 | struct btrfs_dir_item * |
| 1163 | btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans, |
| 1164 | struct btrfs_root *root, |
| 1165 | struct btrfs_path *path, u64 dir, |
| 1166 | u64 objectid, const char *name, int name_len, |
| 1167 | int mod); |
| 1168 | struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root, |
| 1169 | struct btrfs_path *path, |
Chris Mason | 7f5c151 | 2007-03-23 15:56:19 -0400 | [diff] [blame] | 1170 | const char *name, int name_len); |
Chris Mason | 7e38180 | 2007-04-19 15:36:27 -0400 | [diff] [blame] | 1171 | int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans, |
| 1172 | struct btrfs_root *root, |
| 1173 | struct btrfs_path *path, |
| 1174 | struct btrfs_dir_item *di); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1175 | /* inode-map.c */ |
Chris Mason | 9f5fae2 | 2007-03-20 14:38:32 -0400 | [diff] [blame] | 1176 | int btrfs_find_free_objectid(struct btrfs_trans_handle *trans, |
| 1177 | struct btrfs_root *fs_root, |
| 1178 | u64 dirid, u64 *objectid); |
Chris Mason | 5be6f7f | 2007-04-05 13:35:25 -0400 | [diff] [blame] | 1179 | int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid); |
| 1180 | |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1181 | /* inode-item.c */ |
Chris Mason | 293ffd5 | 2007-03-20 15:57:25 -0400 | [diff] [blame] | 1182 | int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root |
| 1183 | *root, u64 objectid, struct btrfs_inode_item |
| 1184 | *inode_item); |
| 1185 | int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root |
Chris Mason | d6e4a42 | 2007-04-06 15:37:36 -0400 | [diff] [blame] | 1186 | *root, struct btrfs_path *path, |
| 1187 | struct btrfs_key *location, int mod); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1188 | |
| 1189 | /* file-item.c */ |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1190 | int btrfs_insert_file_extent(struct btrfs_trans_handle *trans, |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1191 | struct btrfs_root *root, |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1192 | u64 objectid, u64 pos, u64 offset, |
Chris Mason | 3a68637 | 2007-05-24 13:35:57 -0400 | [diff] [blame] | 1193 | u64 disk_num_blocks, |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1194 | u64 num_blocks); |
Chris Mason | dee26a9 | 2007-03-26 16:00:06 -0400 | [diff] [blame] | 1195 | int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans, |
| 1196 | struct btrfs_root *root, |
| 1197 | struct btrfs_path *path, u64 objectid, |
Chris Mason | 9773a78 | 2007-03-27 11:26:26 -0400 | [diff] [blame] | 1198 | u64 blocknr, int mod); |
Chris Mason | f254e52 | 2007-03-29 15:15:27 -0400 | [diff] [blame] | 1199 | int btrfs_csum_file_block(struct btrfs_trans_handle *trans, |
| 1200 | struct btrfs_root *root, |
| 1201 | u64 objectid, u64 offset, |
| 1202 | char *data, size_t len); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 1203 | struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans, |
| 1204 | struct btrfs_root *root, |
| 1205 | struct btrfs_path *path, |
| 1206 | u64 objectid, u64 offset, |
| 1207 | int cow); |
Chris Mason | 1de037a | 2007-05-29 15:17:08 -0400 | [diff] [blame] | 1208 | int btrfs_csum_truncate(struct btrfs_trans_handle *trans, |
| 1209 | struct btrfs_root *root, struct btrfs_path *path, |
| 1210 | u64 isize); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1211 | /* inode.c */ |
Chris Mason | 9ebefb18 | 2007-06-15 13:50:00 -0400 | [diff] [blame] | 1212 | int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page); |
| 1213 | int btrfs_readpage(struct file *file, struct page *page); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1214 | void btrfs_delete_inode(struct inode *inode); |
| 1215 | void btrfs_read_locked_inode(struct inode *inode); |
| 1216 | int btrfs_write_inode(struct inode *inode, int wait); |
| 1217 | void btrfs_dirty_inode(struct inode *inode); |
| 1218 | struct inode *btrfs_alloc_inode(struct super_block *sb); |
| 1219 | void btrfs_destroy_inode(struct inode *inode); |
| 1220 | int btrfs_init_cachep(void); |
| 1221 | void btrfs_destroy_cachep(void); |
Christoph Hellwig | 34287aa | 2007-09-14 10:22:47 -0400 | [diff] [blame^] | 1222 | long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1223 | struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid, |
| 1224 | struct btrfs_root *root); |
| 1225 | int btrfs_commit_write(struct file *file, struct page *page, |
| 1226 | unsigned from, unsigned to); |
| 1227 | int btrfs_get_block(struct inode *inode, sector_t iblock, |
| 1228 | struct buffer_head *result, int create); |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 1229 | struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page, |
| 1230 | size_t page_offset, u64 start, u64 end, |
| 1231 | int create); |
| 1232 | int btrfs_update_inode(struct btrfs_trans_handle *trans, |
| 1233 | struct btrfs_root *root, |
| 1234 | struct inode *inode); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1235 | /* file.c */ |
Chris Mason | a52d9a8 | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 1236 | int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end); |
Chris Mason | 39279cc | 2007-06-12 06:35:45 -0400 | [diff] [blame] | 1237 | extern struct file_operations btrfs_file_operations; |
| 1238 | int btrfs_drop_extents(struct btrfs_trans_handle *trans, |
| 1239 | struct btrfs_root *root, struct inode *inode, |
| 1240 | u64 start, u64 end, u64 *hint_block); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1241 | /* tree-defrag.c */ |
| 1242 | int btrfs_defrag_leaves(struct btrfs_trans_handle *trans, |
| 1243 | struct btrfs_root *root, int cache_only); |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 1244 | |
| 1245 | /* sysfs.c */ |
| 1246 | int btrfs_init_sysfs(void); |
| 1247 | void btrfs_exit_sysfs(void); |
| 1248 | int btrfs_sysfs_add_super(struct btrfs_fs_info *fs); |
| 1249 | int btrfs_sysfs_add_root(struct btrfs_root *root); |
| 1250 | void btrfs_sysfs_del_root(struct btrfs_root *root); |
| 1251 | void btrfs_sysfs_del_super(struct btrfs_fs_info *root); |
| 1252 | |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 1253 | #endif |