Don't empty the middle buffer in push_nodes_for_insert
[btrfs-progs-unstable/devel.git] / ctree.h
blobe5bdfe51af023b48b92f15136f33f0a7124cfdd0
1 /*
2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
19 #ifndef __BTRFS__
20 #define __BTRFS__
22 #include "list.h"
23 #include "kerncompat.h"
24 #include "radix-tree.h"
25 #include "extent-cache.h"
26 #include "extent_io.h"
28 struct btrfs_root;
29 struct btrfs_trans_handle;
30 #define BTRFS_MAGIC "_B5RfS_M"
32 #define BTRFS_MAX_LEVEL 8
34 /* holds pointers to all of the tree roots */
35 #define BTRFS_ROOT_TREE_OBJECTID 1ULL
37 /* stores information about which extents are in use, and reference counts */
38 #define BTRFS_EXTENT_TREE_OBJECTID 2ULL
41 * chunk tree stores translations from logical -> physical block numbering
42 * the super block points to the chunk tree
44 #define BTRFS_CHUNK_TREE_OBJECTID 3ULL
47 * stores information about which areas of a given device are in use.
48 * one per device. The tree of tree roots points to the device tree
50 #define BTRFS_DEV_TREE_OBJECTID 4ULL
52 /* one per subvolume, storing files and directories */
53 #define BTRFS_FS_TREE_OBJECTID 5ULL
55 /* directory objectid inside the root tree */
56 #define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
59 * All files have objectids higher than this.
61 #define BTRFS_FIRST_FREE_OBJECTID 256ULL
62 #define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
66 * the device items go into the chunk tree. The key is in the form
67 * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
69 #define BTRFS_DEV_ITEMS_OBJECTID 1ULL
72 * we can actually store much bigger names, but lets not confuse the rest
73 * of linux
75 #define BTRFS_NAME_LEN 255
77 /* 32 bytes in various csum fields */
78 #define BTRFS_CSUM_SIZE 32
79 /* four bytes for CRC32 */
80 #define BTRFS_CRC32_SIZE 4
81 #define BTRFS_EMPTY_DIR_SIZE 0
83 #define BTRFS_FT_UNKNOWN 0
84 #define BTRFS_FT_REG_FILE 1
85 #define BTRFS_FT_DIR 2
86 #define BTRFS_FT_CHRDEV 3
87 #define BTRFS_FT_BLKDEV 4
88 #define BTRFS_FT_FIFO 5
89 #define BTRFS_FT_SOCK 6
90 #define BTRFS_FT_SYMLINK 7
91 #define BTRFS_FT_XATTR 8
92 #define BTRFS_FT_MAX 9
95 * the key defines the order in the tree, and so it also defines (optimal)
96 * block layout. objectid corresonds to the inode number. The flags
97 * tells us things about the object, and is a kind of stream selector.
98 * so for a given inode, keys with flags of 1 might refer to the inode
99 * data, flags of 2 may point to file data in the btree and flags == 3
100 * may point to extents.
102 * offset is the starting byte offset for this key in the stream.
104 * btrfs_disk_key is in disk byte order. struct btrfs_key is always
105 * in cpu native order. Otherwise they are identical and their sizes
106 * should be the same (ie both packed)
108 struct btrfs_disk_key {
109 __le64 objectid;
110 u8 type;
111 __le64 offset;
112 } __attribute__ ((__packed__));
114 struct btrfs_key {
115 u64 objectid;
116 u8 type;
117 u64 offset;
118 } __attribute__ ((__packed__));
120 struct btrfs_mapping_tree {
121 struct cache_tree cache_tree;
124 #define BTRFS_UUID_SIZE 16
125 struct btrfs_dev_item {
126 /* the internal btrfs device id */
127 __le64 devid;
129 /* size of the device */
130 __le64 total_bytes;
132 /* bytes used */
133 __le64 bytes_used;
135 /* optimal io alignment for this device */
136 __le32 io_align;
138 /* optimal io width for this device */
139 __le32 io_width;
141 /* minimal io size for this device */
142 __le32 sector_size;
144 /* type and info about this device */
145 __le64 type;
147 /* grouping information for allocation decisions */
148 __le32 dev_group;
150 /* seek speed 0-100 where 100 is fastest */
151 u8 seek_speed;
153 /* bandwidth 0-100 where 100 is fastest */
154 u8 bandwidth;
156 /* btrfs generated uuid for this device */
157 u8 uuid[BTRFS_UUID_SIZE];
158 } __attribute__ ((__packed__));
160 struct btrfs_stripe {
161 __le64 devid;
162 __le64 offset;
163 u8 dev_uuid[BTRFS_UUID_SIZE];
164 } __attribute__ ((__packed__));
166 struct btrfs_chunk {
167 /* size of this chunk in bytes */
168 __le64 length;
170 /* objectid of the root referencing this chunk */
171 __le64 owner;
173 __le64 stripe_len;
174 __le64 type;
176 /* optimal io alignment for this chunk */
177 __le32 io_align;
179 /* optimal io width for this chunk */
180 __le32 io_width;
182 /* minimal io size for this chunk */
183 __le32 sector_size;
185 /* 2^16 stripes is quite a lot, a second limit is the size of a single
186 * item in the btree
188 __le16 num_stripes;
190 /* sub stripes only matter for raid10 */
191 __le16 sub_stripes;
192 struct btrfs_stripe stripe;
193 /* additional stripes go here */
194 } __attribute__ ((__packed__));
196 static inline unsigned long btrfs_chunk_item_size(int num_stripes)
198 BUG_ON(num_stripes == 0);
199 return sizeof(struct btrfs_chunk) +
200 sizeof(struct btrfs_stripe) * (num_stripes - 1);
203 #define BTRFS_FSID_SIZE 16
204 #define BTRFS_HEADER_FLAG_WRITTEN (1 << 0)
207 * every tree block (leaf or node) starts with this header.
209 struct btrfs_header {
210 /* these first four must match the super block */
211 u8 csum[BTRFS_CSUM_SIZE];
212 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
213 __le64 bytenr; /* which block this node is supposed to live in */
214 __le64 flags;
216 /* allowed to be different from the super from here on down */
217 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
218 __le64 generation;
219 __le64 owner;
220 __le32 nritems;
221 u8 level;
222 } __attribute__ ((__packed__));
224 #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
225 sizeof(struct btrfs_header)) / \
226 sizeof(struct btrfs_key_ptr))
227 #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
228 #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
229 #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
230 sizeof(struct btrfs_item) - \
231 sizeof(struct btrfs_file_extent_item))
234 * this is a very generous portion of the super block, giving us
235 * room to translate 14 chunks with 3 stripes each.
237 #define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
238 #define BTRFS_LABEL_SIZE 256
241 * the super block basically lists the main trees of the FS
242 * it currently lacks any block count etc etc
244 struct btrfs_super_block {
245 u8 csum[BTRFS_CSUM_SIZE];
246 /* the first 3 fields must match struct btrfs_header */
247 u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
248 __le64 bytenr; /* this block number */
249 __le64 flags;
251 /* allowed to be different from the btrfs_header from here own down */
252 __le64 magic;
253 __le64 generation;
254 __le64 root;
255 __le64 chunk_root;
256 __le64 total_bytes;
257 __le64 bytes_used;
258 __le64 root_dir_objectid;
259 __le64 num_devices;
260 __le32 sectorsize;
261 __le32 nodesize;
262 __le32 leafsize;
263 __le32 stripesize;
264 __le32 sys_chunk_array_size;
265 u8 root_level;
266 u8 chunk_root_level;
267 struct btrfs_dev_item dev_item;
268 char label[BTRFS_LABEL_SIZE];
269 u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
270 } __attribute__ ((__packed__));
273 * A leaf is full of items. offset and size tell us where to find
274 * the item in the leaf (relative to the start of the data area)
276 struct btrfs_item {
277 struct btrfs_disk_key key;
278 __le32 offset;
279 __le32 size;
280 } __attribute__ ((__packed__));
283 * leaves have an item area and a data area:
284 * [item0, item1....itemN] [free space] [dataN...data1, data0]
286 * The data is separate from the items to get the keys closer together
287 * during searches.
289 struct btrfs_leaf {
290 struct btrfs_header header;
291 struct btrfs_item items[];
292 } __attribute__ ((__packed__));
295 * all non-leaf blocks are nodes, they hold only keys and pointers to
296 * other blocks
298 struct btrfs_key_ptr {
299 struct btrfs_disk_key key;
300 __le64 blockptr;
301 __le64 generation;
302 } __attribute__ ((__packed__));
304 struct btrfs_node {
305 struct btrfs_header header;
306 struct btrfs_key_ptr ptrs[];
307 } __attribute__ ((__packed__));
310 * btrfs_paths remember the path taken from the root down to the leaf.
311 * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
312 * to any other levels that are present.
314 * The slots array records the index of the item or block pointer
315 * used while walking the tree.
317 struct btrfs_path {
318 struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
319 int slots[BTRFS_MAX_LEVEL];
320 int reada;
321 int lowest_level;
325 * items in the extent btree are used to record the objectid of the
326 * owner of the block and the number of references
328 struct btrfs_extent_item {
329 __le32 refs;
330 } __attribute__ ((__packed__));
332 struct btrfs_extent_ref {
333 __le64 root;
334 __le64 generation;
335 __le64 objectid;
336 __le64 offset;
337 } __attribute__ ((__packed__));
339 /* dev extents record free space on individual devices. The owner
340 * field points back to the chunk allocation mapping tree that allocated
341 * the extent. The chunk tree uuid field is a way to double check the owner
343 struct btrfs_dev_extent {
344 __le64 chunk_tree;
345 __le64 chunk_objectid;
346 __le64 chunk_offset;
347 __le64 length;
348 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
349 } __attribute__ ((__packed__));
351 struct btrfs_inode_ref {
352 __le16 name_len;
353 /* name goes here */
354 } __attribute__ ((__packed__));
356 struct btrfs_timespec {
357 __le64 sec;
358 __le32 nsec;
359 } __attribute__ ((__packed__));
362 * there is no padding here on purpose. If you want to extent the inode,
363 * make a new item type
365 struct btrfs_inode_item {
366 __le64 generation;
367 __le64 size;
368 __le64 nblocks;
369 __le64 block_group;
370 __le32 nlink;
371 __le32 uid;
372 __le32 gid;
373 __le32 mode;
374 __le64 rdev;
375 __le16 flags;
376 __le16 compat_flags;
377 struct btrfs_timespec atime;
378 struct btrfs_timespec ctime;
379 struct btrfs_timespec mtime;
380 struct btrfs_timespec otime;
381 } __attribute__ ((__packed__));
383 struct btrfs_dir_item {
384 struct btrfs_disk_key location;
385 __le16 data_len;
386 __le16 name_len;
387 u8 type;
388 } __attribute__ ((__packed__));
390 struct btrfs_root_item {
391 struct btrfs_inode_item inode;
392 __le64 root_dirid;
393 __le64 bytenr;
394 __le64 byte_limit;
395 __le64 bytes_used;
396 __le32 flags;
397 __le32 refs;
398 struct btrfs_disk_key drop_progress;
399 u8 drop_level;
400 u8 level;
401 } __attribute__ ((__packed__));
403 #define BTRFS_FILE_EXTENT_REG 0
404 #define BTRFS_FILE_EXTENT_INLINE 1
406 struct btrfs_file_extent_item {
407 __le64 generation;
408 u8 type;
410 * disk space consumed by the extent, checksum blocks are included
411 * in these numbers
413 __le64 disk_bytenr;
414 __le64 disk_num_bytes;
416 * the logical offset in file blocks (no csums)
417 * this extent record is for. This allows a file extent to point
418 * into the middle of an existing extent on disk, sharing it
419 * between two snapshots (useful if some bytes in the middle of the
420 * extent have changed
422 __le64 offset;
424 * the logical number of file blocks (no csums included)
426 __le64 num_bytes;
427 } __attribute__ ((__packed__));
429 struct btrfs_csum_item {
430 u8 csum;
431 } __attribute__ ((__packed__));
433 /* tag for the radix tree of block groups in ram */
434 #define BTRFS_BLOCK_GROUP_DATA (1 << 0)
435 #define BTRFS_BLOCK_GROUP_SYSTEM (1 << 1)
436 #define BTRFS_BLOCK_GROUP_METADATA (1 << 2)
437 #define BTRFS_BLOCK_GROUP_RAID0 (1 << 3)
438 #define BTRFS_BLOCK_GROUP_RAID1 (1 << 4)
439 #define BTRFS_BLOCK_GROUP_DUP (1 << 5)
440 #define BTRFS_BLOCK_GROUP_RAID10 (1 << 6)
442 struct btrfs_block_group_item {
443 __le64 used;
444 __le64 chunk_objectid;
445 __le64 flags;
446 } __attribute__ ((__packed__));
448 struct btrfs_space_info {
449 u64 flags;
450 u64 total_bytes;
451 u64 bytes_used;
452 u64 bytes_pinned;
453 int full;
454 struct list_head list;
457 struct btrfs_block_group_cache {
458 struct cache_extent cache;
459 struct btrfs_key key;
460 struct btrfs_block_group_item item;
461 struct btrfs_space_info *space_info;
462 u64 pinned;
463 u64 flags;
464 int cached;
467 struct btrfs_extent_ops {
468 int (*alloc_extent)(struct btrfs_root *root, u64 num_bytes,
469 u64 hint_byte, struct btrfs_key *ins);
470 int (*free_extent)(struct btrfs_root *root, u64 bytenr,
471 u64 num_bytes);
474 struct btrfs_device;
475 struct btrfs_fs_devices;
476 struct btrfs_fs_info {
477 u8 fsid[BTRFS_FSID_SIZE];
478 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
479 struct btrfs_root *fs_root;
480 struct btrfs_root *extent_root;
481 struct btrfs_root *tree_root;
482 struct btrfs_root *chunk_root;
483 struct btrfs_root *dev_root;
485 struct extent_io_tree extent_cache;
486 struct extent_io_tree free_space_cache;
487 struct extent_io_tree block_group_cache;
488 struct extent_io_tree pinned_extents;
489 struct extent_io_tree pending_del;
490 struct extent_io_tree extent_ins;
492 /* logical->physical extent mapping */
493 struct btrfs_mapping_tree mapping_tree;
495 u64 generation;
496 u64 last_trans_committed;
498 u64 avail_data_alloc_bits;
499 u64 avail_metadata_alloc_bits;
500 u64 avail_system_alloc_bits;
501 u64 data_alloc_profile;
502 u64 metadata_alloc_profile;
503 u64 system_alloc_profile;
505 struct btrfs_trans_handle *running_transaction;
506 struct btrfs_super_block super_copy;
507 struct extent_buffer *sb_buffer;
508 struct mutex fs_mutex;
509 u64 total_pinned;
511 struct btrfs_extent_ops *extent_ops;
512 struct list_head dirty_cowonly_roots;
514 struct btrfs_fs_devices *fs_devices;
515 struct list_head space_info;
516 int system_allocs;
517 void *priv_data;
521 * in ram representation of the tree. extent_root is used for all allocations
522 * and for the extent tree extent_root root.
524 struct btrfs_root {
525 struct extent_buffer *node;
526 struct extent_buffer *commit_root;
527 struct btrfs_root_item root_item;
528 struct btrfs_key root_key;
529 struct btrfs_fs_info *fs_info;
530 u64 objectid;
531 u64 last_trans;
533 /* data allocations are done in sectorsize units */
534 u32 sectorsize;
536 /* node allocations are done in nodesize units */
537 u32 nodesize;
539 /* leaf allocations are done in leafsize units */
540 u32 leafsize;
542 /* leaf allocations are done in leafsize units */
543 u32 stripesize;
545 int ref_cows;
546 int track_dirty;
549 u32 type;
550 u64 highest_inode;
551 u64 last_inode_alloc;
553 /* the dirty list is only used by non-reference counted roots */
554 struct list_head dirty_list;
558 * inode items have the data typically returned from stat and store other
559 * info about object characteristics. There is one for every file and dir in
560 * the FS
562 #define BTRFS_INODE_ITEM_KEY 1
563 #define BTRFS_INODE_REF_KEY 2
564 #define BTRFS_XATTR_ITEM_KEY 8
566 /* reserve 3-15 close to the inode for later flexibility */
569 * dir items are the name -> inode pointers in a directory. There is one
570 * for every name in a directory.
572 #define BTRFS_DIR_ITEM_KEY 16
573 #define BTRFS_DIR_INDEX_KEY 17
575 * extent data is for file data
577 #define BTRFS_EXTENT_DATA_KEY 18
579 * csum items have the checksums for data in the extents
581 #define BTRFS_CSUM_ITEM_KEY 19
583 /* reserve 20-31 for other file stuff */
586 * root items point to tree roots. There are typically in the root
587 * tree used by the super block to find all the other trees
589 #define BTRFS_ROOT_ITEM_KEY 32
591 * extent items are in the extent map tree. These record which blocks
592 * are used, and how many references there are to each block
594 #define BTRFS_EXTENT_ITEM_KEY 33
595 #define BTRFS_EXTENT_REF_KEY 34
598 * block groups give us hints into the extent allocation trees. Which
599 * blocks are free etc etc
601 #define BTRFS_BLOCK_GROUP_ITEM_KEY 50
603 #define BTRFS_DEV_EXTENT_KEY 75
604 #define BTRFS_DEV_ITEM_KEY 76
605 #define BTRFS_CHUNK_ITEM_KEY 77
608 * string items are for debugging. They just store a short string of
609 * data in the FS
611 #define BTRFS_STRING_ITEM_KEY 253
613 * Inode flags
615 #define BTRFS_INODE_NODATASUM (1 << 0)
616 #define BTRFS_INODE_NODATACOW (1 << 1)
617 #define BTRFS_INODE_READONLY (1 << 2)
619 #define read_eb_member(eb, ptr, type, member, result) ( \
620 read_extent_buffer(eb, (char *)(result), \
621 ((unsigned long)(ptr)) + \
622 offsetof(type, member), \
623 sizeof(((type *)0)->member)))
625 #define write_eb_member(eb, ptr, type, member, result) ( \
626 write_extent_buffer(eb, (char *)(result), \
627 ((unsigned long)(ptr)) + \
628 offsetof(type, member), \
629 sizeof(((type *)0)->member)))
631 #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits) \
632 static inline u##bits btrfs_##name(struct extent_buffer *eb) \
634 struct btrfs_header *h = (struct btrfs_header *)eb->data; \
635 return le##bits##_to_cpu(h->member); \
637 static inline void btrfs_set_##name(struct extent_buffer *eb, \
638 u##bits val) \
640 struct btrfs_header *h = (struct btrfs_header *)eb->data; \
641 h->member = cpu_to_le##bits(val); \
644 #define BTRFS_SETGET_FUNCS(name, type, member, bits) \
645 static inline u##bits btrfs_##name(struct extent_buffer *eb, \
646 type *s) \
648 unsigned long offset = (unsigned long)s; \
649 type *p = (type *) (eb->data + offset); \
650 return le##bits##_to_cpu(p->member); \
652 static inline void btrfs_set_##name(struct extent_buffer *eb, \
653 type *s, u##bits val) \
655 unsigned long offset = (unsigned long)s; \
656 type *p = (type *) (eb->data + offset); \
657 p->member = cpu_to_le##bits(val); \
660 #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits) \
661 static inline u##bits btrfs_##name(type *s) \
663 return le##bits##_to_cpu(s->member); \
665 static inline void btrfs_set_##name(type *s, u##bits val) \
667 s->member = cpu_to_le##bits(val); \
670 BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
671 BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
672 BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
673 BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
674 BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
675 BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
676 BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
677 BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
678 BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
679 BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
681 BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
682 BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
683 total_bytes, 64);
684 BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
685 bytes_used, 64);
686 BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
687 io_align, 32);
688 BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
689 io_width, 32);
690 BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
691 sector_size, 32);
692 BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
693 BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
694 dev_group, 32);
695 BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
696 seek_speed, 8);
697 BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
698 bandwidth, 8);
700 static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
702 return (char *)d + offsetof(struct btrfs_dev_item, uuid);
705 BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
706 BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
707 BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
708 BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
709 BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
710 BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
711 BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
712 BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
713 BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
714 BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
715 BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
717 static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
719 return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
722 BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
723 BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
724 BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
725 stripe_len, 64);
726 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
727 io_align, 32);
728 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
729 io_width, 32);
730 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
731 sector_size, 32);
732 BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
733 BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
734 num_stripes, 16);
735 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
736 sub_stripes, 16);
737 BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
738 BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
740 static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
741 int nr)
743 unsigned long offset = (unsigned long)c;
744 offset += offsetof(struct btrfs_chunk, stripe);
745 offset += nr * sizeof(struct btrfs_stripe);
746 return (struct btrfs_stripe *)offset;
749 static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
751 return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
754 static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
755 struct btrfs_chunk *c, int nr)
757 return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
760 static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
761 struct btrfs_chunk *c, int nr,
762 u64 val)
764 btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
767 static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
768 struct btrfs_chunk *c, int nr)
770 return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
773 static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
774 struct btrfs_chunk *c, int nr,
775 u64 val)
777 btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
780 /* struct btrfs_block_group_item */
781 BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
782 used, 64);
783 BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
784 used, 64);
785 BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
786 struct btrfs_block_group_item, chunk_objectid, 64);
788 BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
789 struct btrfs_block_group_item, chunk_objectid, 64);
790 BTRFS_SETGET_FUNCS(disk_block_group_flags,
791 struct btrfs_block_group_item, flags, 64);
792 BTRFS_SETGET_STACK_FUNCS(block_group_flags,
793 struct btrfs_block_group_item, flags, 64);
795 /* struct btrfs_inode_ref */
796 BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
798 /* struct btrfs_inode_item */
799 BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
800 BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
801 BTRFS_SETGET_FUNCS(inode_nblocks, struct btrfs_inode_item, nblocks, 64);
802 BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
803 BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
804 BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
805 BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
806 BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
807 BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
808 BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 16);
809 BTRFS_SETGET_FUNCS(inode_compat_flags, struct btrfs_inode_item,
810 compat_flags, 16);
812 BTRFS_SETGET_STACK_FUNCS(stack_inode_generation,
813 struct btrfs_inode_item, generation, 64);
814 BTRFS_SETGET_STACK_FUNCS(stack_inode_size,
815 struct btrfs_inode_item, size, 64);
816 BTRFS_SETGET_STACK_FUNCS(stack_inode_nblocks,
817 struct btrfs_inode_item, nblocks, 64);
818 BTRFS_SETGET_STACK_FUNCS(stack_inode_block_group,
819 struct btrfs_inode_item, block_group, 64);
820 BTRFS_SETGET_STACK_FUNCS(stack_inode_nlink,
821 struct btrfs_inode_item, nlink, 32);
822 BTRFS_SETGET_STACK_FUNCS(stack_inode_uid,
823 struct btrfs_inode_item, uid, 32);
824 BTRFS_SETGET_STACK_FUNCS(stack_inode_gid,
825 struct btrfs_inode_item, gid, 32);
826 BTRFS_SETGET_STACK_FUNCS(stack_inode_mode,
827 struct btrfs_inode_item, mode, 32);
828 BTRFS_SETGET_STACK_FUNCS(stack_inode_rdev,
829 struct btrfs_inode_item, rdev, 64);
830 BTRFS_SETGET_STACK_FUNCS(stack_inode_flags,
831 struct btrfs_inode_item, flags, 16);
832 BTRFS_SETGET_STACK_FUNCS(stack_inode_compat_flags,
833 struct btrfs_inode_item, compat_flags, 16);
835 static inline struct btrfs_timespec *
836 btrfs_inode_atime(struct btrfs_inode_item *inode_item)
838 unsigned long ptr = (unsigned long)inode_item;
839 ptr += offsetof(struct btrfs_inode_item, atime);
840 return (struct btrfs_timespec *)ptr;
843 static inline struct btrfs_timespec *
844 btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
846 unsigned long ptr = (unsigned long)inode_item;
847 ptr += offsetof(struct btrfs_inode_item, mtime);
848 return (struct btrfs_timespec *)ptr;
851 static inline struct btrfs_timespec *
852 btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
854 unsigned long ptr = (unsigned long)inode_item;
855 ptr += offsetof(struct btrfs_inode_item, ctime);
856 return (struct btrfs_timespec *)ptr;
859 static inline struct btrfs_timespec *
860 btrfs_inode_otime(struct btrfs_inode_item *inode_item)
862 unsigned long ptr = (unsigned long)inode_item;
863 ptr += offsetof(struct btrfs_inode_item, otime);
864 return (struct btrfs_timespec *)ptr;
867 BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
868 BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
869 BTRFS_SETGET_STACK_FUNCS(stack_timespec_sec, struct btrfs_timespec,
870 sec, 64);
871 BTRFS_SETGET_STACK_FUNCS(stack_timespec_nsec, struct btrfs_timespec,
872 nsec, 32);
874 /* struct btrfs_dev_extent */
875 BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
876 chunk_tree, 64);
877 BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
878 chunk_objectid, 64);
879 BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
880 chunk_offset, 64);
881 BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
883 static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
885 unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
886 return (u8 *)((unsigned long)dev + ptr);
889 /* struct btrfs_extent_item */
890 BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 32);
892 /* struct btrfs_extent_ref */
893 BTRFS_SETGET_FUNCS(ref_root, struct btrfs_extent_ref, root, 64);
894 BTRFS_SETGET_FUNCS(ref_generation, struct btrfs_extent_ref, generation, 64);
895 BTRFS_SETGET_FUNCS(ref_objectid, struct btrfs_extent_ref, objectid, 64);
896 BTRFS_SETGET_FUNCS(ref_offset, struct btrfs_extent_ref, offset, 64);
898 BTRFS_SETGET_STACK_FUNCS(stack_ref_root, struct btrfs_extent_ref, root, 64);
899 BTRFS_SETGET_STACK_FUNCS(stack_ref_generation, struct btrfs_extent_ref,
900 generation, 64);
901 BTRFS_SETGET_STACK_FUNCS(stack_ref_objectid, struct btrfs_extent_ref,
902 objectid, 64);
903 BTRFS_SETGET_STACK_FUNCS(stack_ref_offset, struct btrfs_extent_ref, offset, 64);
905 BTRFS_SETGET_STACK_FUNCS(stack_extent_refs, struct btrfs_extent_item,
906 refs, 32);
908 /* struct btrfs_node */
909 BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
910 BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
912 static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
914 unsigned long ptr;
915 ptr = offsetof(struct btrfs_node, ptrs) +
916 sizeof(struct btrfs_key_ptr) * nr;
917 return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
920 static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
921 int nr, u64 val)
923 unsigned long ptr;
924 ptr = offsetof(struct btrfs_node, ptrs) +
925 sizeof(struct btrfs_key_ptr) * nr;
926 btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
929 static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
931 unsigned long ptr;
932 ptr = offsetof(struct btrfs_node, ptrs) +
933 sizeof(struct btrfs_key_ptr) * nr;
934 return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
937 static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
938 int nr, u64 val)
940 unsigned long ptr;
941 ptr = offsetof(struct btrfs_node, ptrs) +
942 sizeof(struct btrfs_key_ptr) * nr;
943 btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
946 static inline unsigned long btrfs_node_key_ptr_offset(int nr)
948 return offsetof(struct btrfs_node, ptrs) +
949 sizeof(struct btrfs_key_ptr) * nr;
952 static inline void btrfs_node_key(struct extent_buffer *eb,
953 struct btrfs_disk_key *disk_key, int nr)
955 unsigned long ptr;
956 ptr = btrfs_node_key_ptr_offset(nr);
957 read_eb_member(eb, (struct btrfs_key_ptr *)ptr,
958 struct btrfs_key_ptr, key, disk_key);
961 static inline void btrfs_set_node_key(struct extent_buffer *eb,
962 struct btrfs_disk_key *disk_key, int nr)
964 unsigned long ptr;
965 ptr = btrfs_node_key_ptr_offset(nr);
966 write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
967 struct btrfs_key_ptr, key, disk_key);
970 /* struct btrfs_item */
971 BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
972 BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
974 static inline unsigned long btrfs_item_nr_offset(int nr)
976 return offsetof(struct btrfs_leaf, items) +
977 sizeof(struct btrfs_item) * nr;
980 static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
981 int nr)
983 return (struct btrfs_item *)btrfs_item_nr_offset(nr);
986 static inline u32 btrfs_item_end(struct extent_buffer *eb,
987 struct btrfs_item *item)
989 return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
992 static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
994 return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
997 static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
999 return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
1002 static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
1004 return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
1007 static inline void btrfs_item_key(struct extent_buffer *eb,
1008 struct btrfs_disk_key *disk_key, int nr)
1010 struct btrfs_item *item = btrfs_item_nr(eb, nr);
1011 read_eb_member(eb, item, struct btrfs_item, key, disk_key);
1014 static inline void btrfs_set_item_key(struct extent_buffer *eb,
1015 struct btrfs_disk_key *disk_key, int nr)
1017 struct btrfs_item *item = btrfs_item_nr(eb, nr);
1018 write_eb_member(eb, item, struct btrfs_item, key, disk_key);
1021 /* struct btrfs_dir_item */
1022 BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
1023 BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
1024 BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
1026 static inline void btrfs_dir_item_key(struct extent_buffer *eb,
1027 struct btrfs_dir_item *item,
1028 struct btrfs_disk_key *key)
1030 read_eb_member(eb, item, struct btrfs_dir_item, location, key);
1033 static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
1034 struct btrfs_dir_item *item,
1035 struct btrfs_disk_key *key)
1037 write_eb_member(eb, item, struct btrfs_dir_item, location, key);
1040 /* struct btrfs_disk_key */
1041 BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
1042 objectid, 64);
1043 BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
1044 BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
1046 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
1047 struct btrfs_disk_key *disk)
1049 cpu->offset = le64_to_cpu(disk->offset);
1050 cpu->type = disk->type;
1051 cpu->objectid = le64_to_cpu(disk->objectid);
1054 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
1055 struct btrfs_key *cpu)
1057 disk->offset = cpu_to_le64(cpu->offset);
1058 disk->type = cpu->type;
1059 disk->objectid = cpu_to_le64(cpu->objectid);
1062 static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
1063 struct btrfs_key *key, int nr)
1065 struct btrfs_disk_key disk_key;
1066 btrfs_node_key(eb, &disk_key, nr);
1067 btrfs_disk_key_to_cpu(key, &disk_key);
1070 static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
1071 struct btrfs_key *key, int nr)
1073 struct btrfs_disk_key disk_key;
1074 btrfs_item_key(eb, &disk_key, nr);
1075 btrfs_disk_key_to_cpu(key, &disk_key);
1078 static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
1079 struct btrfs_dir_item *item,
1080 struct btrfs_key *key)
1082 struct btrfs_disk_key disk_key;
1083 btrfs_dir_item_key(eb, item, &disk_key);
1084 btrfs_disk_key_to_cpu(key, &disk_key);
1088 static inline u8 btrfs_key_type(struct btrfs_key *key)
1090 return key->type;
1093 static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
1095 key->type = val;
1098 /* struct btrfs_header */
1099 BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
1100 BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
1101 generation, 64);
1102 BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
1103 BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
1104 BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
1105 BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
1107 static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
1109 return (btrfs_header_flags(eb) & flag) == flag;
1112 static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
1114 u64 flags = btrfs_header_flags(eb);
1115 btrfs_set_header_flags(eb, flags | flag);
1116 return (flags & flag) == flag;
1119 static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
1121 u64 flags = btrfs_header_flags(eb);
1122 btrfs_set_header_flags(eb, flags & ~flag);
1123 return (flags & flag) == flag;
1126 static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
1128 unsigned long ptr = offsetof(struct btrfs_header, fsid);
1129 return (u8 *)ptr;
1132 static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
1134 unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
1135 return (u8 *)ptr;
1138 static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
1140 unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
1141 return (u8 *)ptr;
1144 static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
1146 unsigned long ptr = offsetof(struct btrfs_header, csum);
1147 return (u8 *)ptr;
1150 static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
1152 return NULL;
1155 static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
1157 return NULL;
1160 static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
1162 return NULL;
1165 static inline int btrfs_is_leaf(struct extent_buffer *eb)
1167 return (btrfs_header_level(eb) == 0);
1170 /* struct btrfs_root_item */
1171 BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
1172 BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
1173 BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
1175 BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
1176 BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
1177 BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
1178 BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
1179 BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 32);
1180 BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
1181 BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
1183 /* struct btrfs_super_block */
1184 BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
1185 BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
1186 generation, 64);
1187 BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
1188 BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
1189 struct btrfs_super_block, sys_chunk_array_size, 32);
1190 BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
1191 root_level, 8);
1192 BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
1193 chunk_root, 64);
1194 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
1195 chunk_root_level, 64);
1196 BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
1197 total_bytes, 64);
1198 BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
1199 bytes_used, 64);
1200 BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
1201 sectorsize, 32);
1202 BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
1203 nodesize, 32);
1204 BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
1205 leafsize, 32);
1206 BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
1207 stripesize, 32);
1208 BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
1209 root_dir_objectid, 64);
1210 BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
1211 num_devices, 64);
1213 static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
1215 return offsetof(struct btrfs_leaf, items);
1218 /* struct btrfs_file_extent_item */
1219 BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
1221 static inline unsigned long btrfs_file_extent_inline_start(struct
1222 btrfs_file_extent_item *e)
1224 unsigned long offset = (unsigned long)e;
1225 offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
1226 return offset;
1229 static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
1231 return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
1234 static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
1235 struct btrfs_item *e)
1237 unsigned long offset;
1238 offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
1239 return btrfs_item_size(eb, e) - offset;
1242 BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
1243 disk_bytenr, 64);
1244 BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
1245 generation, 64);
1246 BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
1247 disk_num_bytes, 64);
1248 BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
1249 offset, 64);
1250 BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
1251 num_bytes, 64);
1253 static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
1254 if (level == 0)
1255 return root->leafsize;
1256 return root->nodesize;
1259 /* helper function to cast into the data area of the leaf. */
1260 #define btrfs_item_ptr(leaf, slot, type) \
1261 ((type *)(btrfs_leaf_data(leaf) + \
1262 btrfs_item_offset_nr(leaf, slot)))
1264 #define btrfs_item_ptr_offset(leaf, slot) \
1265 ((unsigned long)(btrfs_leaf_data(leaf) + \
1266 btrfs_item_offset_nr(leaf, slot)))
1268 /* extent-tree.c */
1269 u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
1270 struct btrfs_path *count_path,
1271 u64 first_extent);
1272 int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1273 struct btrfs_root *root);
1274 int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
1275 struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
1276 btrfs_fs_info *info,
1277 u64 bytenr);
1278 struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1279 struct btrfs_block_group_cache
1280 *hint, u64 search_start,
1281 int data, int owner);
1282 int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
1283 struct btrfs_root *root, u64 owner_objectid);
1284 struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1285 struct btrfs_root *root, u32 size,
1286 u64 root_objectid,
1287 u64 hint, u64 empty_size);
1288 struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1289 struct btrfs_root *root,
1290 u32 blocksize,
1291 u64 root_objectid,
1292 u64 ref_generation,
1293 u64 first_objectid,
1294 int level,
1295 u64 hint,
1296 u64 empty_size);
1297 int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
1298 struct btrfs_root *root, u64 new_size);
1299 int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size);
1300 int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
1301 struct btrfs_root *root,
1302 struct btrfs_path *path, u64 bytenr,
1303 u64 root_objectid, u64 ref_generation,
1304 u64 owner, u64 owner_offset);
1305 int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1306 struct btrfs_root *root,
1307 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1308 u64 owner, u64 owner_offset,
1309 u64 empty_size, u64 hint_byte,
1310 u64 search_end, struct btrfs_key *ins, int data);
1311 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1312 struct extent_buffer *buf);
1313 int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
1314 *root, u64 bytenr, u64 num_bytes,
1315 u64 root_objectid, u64 ref_generation,
1316 u64 owner_objectid, u64 owner_offset, int pin);
1317 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1318 struct btrfs_root *root,
1319 struct extent_io_tree *unpin);
1320 int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1321 struct btrfs_root *root,
1322 u64 bytenr, u64 num_bytes,
1323 u64 root_objectid, u64 ref_generation,
1324 u64 owner, u64 owner_offset);
1325 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1326 struct btrfs_root *root);
1327 int btrfs_free_block_groups(struct btrfs_fs_info *info);
1328 int btrfs_read_block_groups(struct btrfs_root *root);
1329 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
1330 struct btrfs_root *root, u64 bytes_used,
1331 u64 type, u64 chunk_objectid, u64 chunk_offset,
1332 u64 size);
1333 int btrfs_make_block_groups(struct btrfs_trans_handle *trans,
1334 struct btrfs_root *root);
1335 u64 btrfs_hash_extent_ref(u64 root_objectid, u64 ref_generation,
1336 u64 owner, u64 owner_offset);
1337 int btrfs_update_block_group(struct btrfs_trans_handle *trans,
1338 struct btrfs_root *root, u64 bytenr, u64 num,
1339 int alloc, int mark_free);
1340 /* ctree.c */
1341 int btrfs_previous_item(struct btrfs_root *root,
1342 struct btrfs_path *path, u64 min_objectid,
1343 int type);
1344 int btrfs_comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2);
1345 int btrfs_cow_block(struct btrfs_trans_handle *trans,
1346 struct btrfs_root *root, struct extent_buffer *buf,
1347 struct extent_buffer *parent, int parent_slot,
1348 struct extent_buffer **cow_ret);
1349 int __btrfs_cow_block(struct btrfs_trans_handle *trans,
1350 struct btrfs_root *root,
1351 struct extent_buffer *buf,
1352 struct extent_buffer *parent, int parent_slot,
1353 struct extent_buffer **cow_ret,
1354 u64 search_start, u64 empty_size);
1355 int btrfs_copy_root(struct btrfs_trans_handle *trans,
1356 struct btrfs_root *root,
1357 struct extent_buffer *buf,
1358 struct extent_buffer **cow_ret, u64 new_root_objectid);
1359 int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1360 *root, struct btrfs_path *path, u32 data_size);
1361 int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1362 struct btrfs_root *root,
1363 struct btrfs_path *path,
1364 u32 new_size, int from_end);
1365 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1366 *root, struct btrfs_key *key, struct btrfs_path *p, int
1367 ins_len, int cow);
1368 int btrfs_realloc_node(struct btrfs_trans_handle *trans,
1369 struct btrfs_root *root, struct extent_buffer *parent,
1370 int start_slot, int cache_only, u64 *last_ret,
1371 struct btrfs_key *progress);
1372 void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
1373 struct btrfs_path *btrfs_alloc_path(void);
1374 void btrfs_free_path(struct btrfs_path *p);
1375 void btrfs_init_path(struct btrfs_path *p);
1376 int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1377 struct btrfs_path *path, int slot, int nr);
1379 static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
1380 struct btrfs_root *root,
1381 struct btrfs_path *path)
1383 return btrfs_del_items(trans, root, path, path->slots[0], 1);
1386 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1387 *root, struct btrfs_key *key, void *data, u32 data_size);
1388 int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
1389 struct btrfs_root *root,
1390 struct btrfs_path *path,
1391 struct btrfs_key *cpu_key, u32 *data_size, int nr);
1393 static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
1394 struct btrfs_root *root,
1395 struct btrfs_path *path,
1396 struct btrfs_key *key,
1397 u32 data_size)
1399 return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
1402 int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
1403 int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
1404 int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
1405 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
1406 *root);
1409 /* root-item.c */
1410 int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1411 struct btrfs_key *key);
1412 int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1413 *root, struct btrfs_key *key, struct btrfs_root_item
1414 *item);
1415 int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1416 *root, struct btrfs_key *key, struct btrfs_root_item
1417 *item);
1418 int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1419 btrfs_root_item *item, struct btrfs_key *key);
1420 int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
1421 struct btrfs_root *latest_root);
1422 /* dir-item.c */
1423 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
1424 *root, const char *name, int name_len, u64 dir,
1425 struct btrfs_key *location, u8 type);
1426 struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1427 struct btrfs_root *root,
1428 struct btrfs_path *path, u64 dir,
1429 const char *name, int name_len,
1430 int mod);
1431 struct btrfs_dir_item *
1432 btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1433 struct btrfs_root *root,
1434 struct btrfs_path *path, u64 dir,
1435 u64 objectid, const char *name, int name_len,
1436 int mod);
1437 struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1438 struct btrfs_path *path,
1439 const char *name, int name_len);
1440 int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1441 struct btrfs_root *root,
1442 struct btrfs_path *path,
1443 struct btrfs_dir_item *di);
1444 int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
1445 struct btrfs_root *root, const char *name,
1446 u16 name_len, const void *data, u16 data_len,
1447 u64 dir);
1448 struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
1449 struct btrfs_root *root,
1450 struct btrfs_path *path, u64 dir,
1451 const char *name, u16 name_len,
1452 int mod);
1453 /* inode-map.c */
1454 int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1455 struct btrfs_root *fs_root,
1456 u64 dirid, u64 *objectid);
1457 int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1459 /* inode-item.c */
1460 int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
1461 struct btrfs_root *root,
1462 const char *name, int name_len,
1463 u64 inode_objectid, u64 ref_objectid);
1464 int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
1465 struct btrfs_root *root,
1466 const char *name, int name_len,
1467 u64 inode_objectid, u64 ref_objectid);
1468 int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
1469 struct btrfs_root *root,
1470 struct btrfs_path *path, u64 objectid);
1471 int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1472 *root, u64 objectid, struct btrfs_inode_item
1473 *inode_item);
1474 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1475 *root, struct btrfs_path *path,
1476 struct btrfs_key *location, int mod);
1478 /* file-item.c */
1479 int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
1480 struct btrfs_root *root,
1481 u64 objectid, u64 pos, u64 offset,
1482 u64 disk_num_bytes,
1483 u64 num_bytes);
1484 int btrfs_insert_inline_extent(struct btrfs_trans_handle *trans,
1485 struct btrfs_root *root, u64 objectid,
1486 u64 offset, char *buffer, size_t size);
1487 int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
1488 struct btrfs_root *root,
1489 struct btrfs_path *path, u64 objectid,
1490 u64 bytenr, int mod);
1491 int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
1492 struct btrfs_root *root,
1493 struct btrfs_inode_item *inode,
1494 u64 objectid, u64 offset,
1495 char *data, size_t len);
1496 struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
1497 struct btrfs_root *root,
1498 struct btrfs_path *path,
1499 u64 objectid, u64 offset,
1500 int cow);
1501 int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
1502 struct btrfs_root *root, struct btrfs_path *path,
1503 u64 isize);
1504 #endif