Btrfs image tool
[platform/upstream/btrfs-progs.git] / ctree.h
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
19 #ifndef __BTRFS__
20 #define __BTRFS__
21
22 #include "list.h"
23 #include "kerncompat.h"
24 #include "radix-tree.h"
25 #include "extent-cache.h"
26 #include "extent_io.h"
27
28 struct btrfs_root;
29 struct btrfs_trans_handle;
30 #define BTRFS_MAGIC "_BFRfS_M"
31
32 #define BTRFS_MAX_LEVEL 8
33
34 /* holds pointers to all of the tree roots */
35 #define BTRFS_ROOT_TREE_OBJECTID 1ULL
36
37 /* stores information about which extents are in use, and reference counts */
38 #define BTRFS_EXTENT_TREE_OBJECTID 2ULL
39
40 /*
41  * chunk tree stores translations from logical -> physical block numbering
42  * the super block points to the chunk tree
43  */
44 #define BTRFS_CHUNK_TREE_OBJECTID 3ULL
45
46 /*
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
49  */
50 #define BTRFS_DEV_TREE_OBJECTID 4ULL
51
52 /* one per subvolume, storing files and directories */
53 #define BTRFS_FS_TREE_OBJECTID 5ULL
54
55 /* directory objectid inside the root tree */
56 #define BTRFS_ROOT_TREE_DIR_OBJECTID 6ULL
57
58 /* oprhan objectid for tracking unlinked/truncated files */
59 #define BTRFS_ORPHAN_OBJECTID -5ULL
60
61 /* does write ahead logging to speed up fsyncs */
62 #define BTRFS_TREE_LOG_OBJECTID -6ULL
63 #define BTRFS_TREE_LOG_FIXUP_OBJECTID -7ULL
64
65 /* space balancing */
66 #define BTRFS_TREE_RELOC_OBJECTID -8ULL
67 #define BTRFS_DATA_RELOC_TREE_OBJECTID -9ULL
68
69 /* dummy objectid represents multiple objectids */
70 #define BTRFS_MULTIPLE_OBJECTIDS -255ULL
71
72 /*
73  * All files have objectids in this range.
74  */
75 #define BTRFS_FIRST_FREE_OBJECTID 256ULL
76 #define BTRFS_LAST_FREE_OBJECTID -256ULL
77 #define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
78
79
80
81 /*
82  * the device items go into the chunk tree.  The key is in the form
83  * [ 1 BTRFS_DEV_ITEM_KEY device_id ]
84  */
85 #define BTRFS_DEV_ITEMS_OBJECTID 1ULL
86
87 /*
88  * we can actually store much bigger names, but lets not confuse the rest
89  * of linux
90  */
91 #define BTRFS_NAME_LEN 255
92
93 /* 32 bytes in various csum fields */
94 #define BTRFS_CSUM_SIZE 32
95 /* four bytes for CRC32 */
96 #define BTRFS_CRC32_SIZE 4
97 #define BTRFS_EMPTY_DIR_SIZE 0
98
99 #define BTRFS_FT_UNKNOWN        0
100 #define BTRFS_FT_REG_FILE       1
101 #define BTRFS_FT_DIR            2
102 #define BTRFS_FT_CHRDEV         3
103 #define BTRFS_FT_BLKDEV         4
104 #define BTRFS_FT_FIFO           5
105 #define BTRFS_FT_SOCK           6
106 #define BTRFS_FT_SYMLINK        7
107 #define BTRFS_FT_XATTR          8
108 #define BTRFS_FT_MAX            9
109
110 /*
111  * the key defines the order in the tree, and so it also defines (optimal)
112  * block layout.  objectid corresonds to the inode number.  The flags
113  * tells us things about the object, and is a kind of stream selector.
114  * so for a given inode, keys with flags of 1 might refer to the inode
115  * data, flags of 2 may point to file data in the btree and flags == 3
116  * may point to extents.
117  *
118  * offset is the starting byte offset for this key in the stream.
119  *
120  * btrfs_disk_key is in disk byte order.  struct btrfs_key is always
121  * in cpu native order.  Otherwise they are identical and their sizes
122  * should be the same (ie both packed)
123  */
124 struct btrfs_disk_key {
125         __le64 objectid;
126         u8 type;
127         __le64 offset;
128 } __attribute__ ((__packed__));
129
130 struct btrfs_key {
131         u64 objectid;
132         u8 type;
133         u64 offset;
134 } __attribute__ ((__packed__));
135
136 struct btrfs_mapping_tree {
137         struct cache_tree cache_tree;
138 };
139
140 #define BTRFS_UUID_SIZE 16
141 struct btrfs_dev_item {
142         /* the internal btrfs device id */
143         __le64 devid;
144
145         /* size of the device */
146         __le64 total_bytes;
147
148         /* bytes used */
149         __le64 bytes_used;
150
151         /* optimal io alignment for this device */
152         __le32 io_align;
153
154         /* optimal io width for this device */
155         __le32 io_width;
156
157         /* minimal io size for this device */
158         __le32 sector_size;
159
160         /* type and info about this device */
161         __le64 type;
162
163         /* expected generation for this device */
164         __le64 generation;
165
166         /* grouping information for allocation decisions */
167         __le32 dev_group;
168
169         /* seek speed 0-100 where 100 is fastest */
170         u8 seek_speed;
171
172         /* bandwidth 0-100 where 100 is fastest */
173         u8 bandwidth;
174
175         /* btrfs generated uuid for this device */
176         u8 uuid[BTRFS_UUID_SIZE];
177
178         /* uuid of FS who owns this device */
179         u8 fsid[BTRFS_UUID_SIZE];
180 } __attribute__ ((__packed__));
181
182 struct btrfs_stripe {
183         __le64 devid;
184         __le64 offset;
185         u8 dev_uuid[BTRFS_UUID_SIZE];
186 } __attribute__ ((__packed__));
187
188 struct btrfs_chunk {
189         /* size of this chunk in bytes */
190         __le64 length;
191
192         /* objectid of the root referencing this chunk */
193         __le64 owner;
194
195         __le64 stripe_len;
196         __le64 type;
197
198         /* optimal io alignment for this chunk */
199         __le32 io_align;
200
201         /* optimal io width for this chunk */
202         __le32 io_width;
203
204         /* minimal io size for this chunk */
205         __le32 sector_size;
206
207         /* 2^16 stripes is quite a lot, a second limit is the size of a single
208          * item in the btree
209          */
210         __le16 num_stripes;
211
212         /* sub stripes only matter for raid10 */
213         __le16 sub_stripes;
214         struct btrfs_stripe stripe;
215         /* additional stripes go here */
216 } __attribute__ ((__packed__));
217
218 static inline unsigned long btrfs_chunk_item_size(int num_stripes)
219 {
220         BUG_ON(num_stripes == 0);
221         return sizeof(struct btrfs_chunk) +
222                 sizeof(struct btrfs_stripe) * (num_stripes - 1);
223 }
224
225 #define BTRFS_FSID_SIZE 16
226 #define BTRFS_HEADER_FLAG_WRITTEN (1 << 0)
227
228 /*
229  * every tree block (leaf or node) starts with this header.
230  */
231 struct btrfs_header {
232         /* these first four must match the super block */
233         u8 csum[BTRFS_CSUM_SIZE];
234         u8 fsid[BTRFS_FSID_SIZE]; /* FS specific uuid */
235         __le64 bytenr; /* which block this node is supposed to live in */
236         __le64 flags;
237
238         /* allowed to be different from the super from here on down */
239         u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
240         __le64 generation;
241         __le64 owner;
242         __le32 nritems;
243         u8 level;
244 } __attribute__ ((__packed__));
245
246 #define BTRFS_NODEPTRS_PER_BLOCK(r) (((r)->nodesize - \
247                                 sizeof(struct btrfs_header)) / \
248                                 sizeof(struct btrfs_key_ptr))
249 #define __BTRFS_LEAF_DATA_SIZE(bs) ((bs) - sizeof(struct btrfs_header))
250 #define BTRFS_LEAF_DATA_SIZE(r) (__BTRFS_LEAF_DATA_SIZE(r->leafsize))
251 #define BTRFS_MAX_INLINE_DATA_SIZE(r) (BTRFS_LEAF_DATA_SIZE(r) - \
252                                         sizeof(struct btrfs_item) - \
253                                         sizeof(struct btrfs_file_extent_item))
254
255 #define BTRFS_SUPER_FLAG_SEEDING        (1ULL << 32)
256 #define BTRFS_SUPER_FLAG_METADUMP       (1ULL << 33)
257
258 /*
259  * this is a very generous portion of the super block, giving us
260  * room to translate 14 chunks with 3 stripes each.
261  */
262 #define BTRFS_SYSTEM_CHUNK_ARRAY_SIZE 2048
263 #define BTRFS_LABEL_SIZE 256
264
265 /*
266  * the super block basically lists the main trees of the FS
267  * it currently lacks any block count etc etc
268  */
269 struct btrfs_super_block {
270         u8 csum[BTRFS_CSUM_SIZE];
271         /* the first 3 fields must match struct btrfs_header */
272         u8 fsid[BTRFS_FSID_SIZE];    /* FS specific uuid */
273         __le64 bytenr; /* this block number */
274         __le64 flags;
275
276         /* allowed to be different from the btrfs_header from here own down */
277         __le64 magic;
278         __le64 generation;
279         __le64 root;
280         __le64 chunk_root;
281         __le64 log_root;
282         __le64 total_bytes;
283         __le64 bytes_used;
284         __le64 root_dir_objectid;
285         __le64 num_devices;
286         __le32 sectorsize;
287         __le32 nodesize;
288         __le32 leafsize;
289         __le32 stripesize;
290         __le32 sys_chunk_array_size;
291         __le64 chunk_root_generation;
292         u8 root_level;
293         u8 chunk_root_level;
294         u8 log_root_level;
295         struct btrfs_dev_item dev_item;
296         char label[BTRFS_LABEL_SIZE];
297         u8 sys_chunk_array[BTRFS_SYSTEM_CHUNK_ARRAY_SIZE];
298 } __attribute__ ((__packed__));
299
300 /*
301  * A leaf is full of items. offset and size tell us where to find
302  * the item in the leaf (relative to the start of the data area)
303  */
304 struct btrfs_item {
305         struct btrfs_disk_key key;
306         __le32 offset;
307         __le32 size;
308 } __attribute__ ((__packed__));
309
310 /*
311  * leaves have an item area and a data area:
312  * [item0, item1....itemN] [free space] [dataN...data1, data0]
313  *
314  * The data is separate from the items to get the keys closer together
315  * during searches.
316  */
317 struct btrfs_leaf {
318         struct btrfs_header header;
319         struct btrfs_item items[];
320 } __attribute__ ((__packed__));
321
322 /*
323  * all non-leaf blocks are nodes, they hold only keys and pointers to
324  * other blocks
325  */
326 struct btrfs_key_ptr {
327         struct btrfs_disk_key key;
328         __le64 blockptr;
329         __le64 generation;
330 } __attribute__ ((__packed__));
331
332 struct btrfs_node {
333         struct btrfs_header header;
334         struct btrfs_key_ptr ptrs[];
335 } __attribute__ ((__packed__));
336
337 /*
338  * btrfs_paths remember the path taken from the root down to the leaf.
339  * level 0 is always the leaf, and nodes[1...BTRFS_MAX_LEVEL] will point
340  * to any other levels that are present.
341  *
342  * The slots array records the index of the item or block pointer
343  * used while walking the tree.
344  */
345 struct btrfs_path {
346         struct extent_buffer *nodes[BTRFS_MAX_LEVEL];
347         int slots[BTRFS_MAX_LEVEL];
348         int reada;
349         int lowest_level;
350 };
351
352 /*
353  * items in the extent btree are used to record the objectid of the
354  * owner of the block and the number of references
355  */
356 struct btrfs_extent_item {
357         __le32 refs;
358 } __attribute__ ((__packed__));
359
360 struct btrfs_extent_ref {
361         __le64 root;
362         __le64 generation;
363         __le64 objectid;
364         __le32 num_refs;
365 } __attribute__ ((__packed__));
366
367 /* dev extents record free space on individual devices.  The owner
368  * field points back to the chunk allocation mapping tree that allocated
369  * the extent.  The chunk tree uuid field is a way to double check the owner
370  */
371 struct btrfs_dev_extent {
372         __le64 chunk_tree;
373         __le64 chunk_objectid;
374         __le64 chunk_offset;
375         __le64 length;
376         u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
377 } __attribute__ ((__packed__));
378
379 struct btrfs_inode_ref {
380         __le64 index;
381         __le16 name_len;
382         /* name goes here */
383 } __attribute__ ((__packed__));
384
385 struct btrfs_timespec {
386         __le64 sec;
387         __le32 nsec;
388 } __attribute__ ((__packed__));
389
390 typedef enum {
391         BTRFS_COMPRESS_NONE = 0,
392         BTRFS_COMPRESS_ZLIB = 1,
393         BTRFS_COMPRESS_LAST = 2,
394 } btrfs_compression_type;
395
396 /* we don't understand any encryption methods right now */
397 typedef enum {
398         BTRFS_ENCRYPTION_NONE = 0,
399         BTRFS_ENCRYPTION_LAST = 1,
400 } btrfs_encryption_type;
401
402 struct btrfs_inode_item {
403         /* nfs style generation number */
404         __le64 generation;
405         /* transid that last touched this inode */
406         __le64 transid;
407         __le64 size;
408         __le64 nbytes;
409         __le64 block_group;
410         __le32 nlink;
411         __le32 uid;
412         __le32 gid;
413         __le32 mode;
414         __le64 rdev;
415         __le16 flags;
416         __le16 compat_flags;
417
418         struct btrfs_timespec atime;
419         struct btrfs_timespec ctime;
420         struct btrfs_timespec mtime;
421         struct btrfs_timespec otime;
422 } __attribute__ ((__packed__));
423
424 struct btrfs_dir_item {
425         struct btrfs_disk_key location;
426         __le64 transid;
427         __le16 data_len;
428         __le16 name_len;
429         u8 type;
430 } __attribute__ ((__packed__));
431
432 struct btrfs_root_item {
433         struct btrfs_inode_item inode;
434         __le64 generation;
435         __le64 root_dirid;
436         __le64 bytenr;
437         __le64 byte_limit;
438         __le64 bytes_used;
439         __le64 last_snapshot;
440         __le32 flags;
441         __le32 refs;
442         struct btrfs_disk_key drop_progress;
443         u8 drop_level;
444         u8 level;
445 } __attribute__ ((__packed__));
446
447 /*
448  * this is used for both forward and backward root refs
449  */
450 struct btrfs_root_ref {
451         __le64 dirid;
452         __le64 sequence;
453         __le16 name_len;
454 } __attribute__ ((__packed__));
455
456 #define BTRFS_FILE_EXTENT_INLINE 0
457 #define BTRFS_FILE_EXTENT_REG 1
458 #define BTRFS_FILE_EXTENT_PREALLOC 2
459
460 struct btrfs_file_extent_item {
461         /*
462          * transaction id that created this extent
463          */
464         __le64 generation;
465         /*
466          * max number of bytes to hold this extent in ram
467          * when we split a compressed extent we can't know how big
468          * each of the resulting pieces will be.  So, this is
469          * an upper limit on the size of the extent in ram instead of
470          * an exact limit.
471          */
472         __le64 ram_bytes;
473
474         /*
475          * 32 bits for the various ways we might encode the data,
476          * including compression and encryption.  If any of these
477          * are set to something a given disk format doesn't understand
478          * it is treated like an incompat flag for reading and writing,
479          * but not for stat.
480          */
481         u8 compression;
482         u8 encryption;
483         __le16 other_encoding; /* spare for later use */
484
485         /* are we inline data or a real extent? */
486         u8 type;
487
488         /*
489          * disk space consumed by the extent, checksum blocks are included
490          * in these numbers
491          */
492         __le64 disk_bytenr;
493         __le64 disk_num_bytes;
494         /*
495          * the logical offset in file blocks (no csums)
496          * this extent record is for.  This allows a file extent to point
497          * into the middle of an existing extent on disk, sharing it
498          * between two snapshots (useful if some bytes in the middle of the
499          * extent have changed
500          */
501         __le64 offset;
502         /*
503          * the logical number of file blocks (no csums included)
504          */
505         __le64 num_bytes;
506
507 } __attribute__ ((__packed__));
508
509 struct btrfs_csum_item {
510         u8 csum;
511 } __attribute__ ((__packed__));
512
513 /* tag for the radix tree of block groups in ram */
514 #define BTRFS_BLOCK_GROUP_DATA     (1 << 0)
515 #define BTRFS_BLOCK_GROUP_SYSTEM   (1 << 1)
516 #define BTRFS_BLOCK_GROUP_METADATA (1 << 2)
517 #define BTRFS_BLOCK_GROUP_RAID0    (1 << 3)
518 #define BTRFS_BLOCK_GROUP_RAID1    (1 << 4)
519 #define BTRFS_BLOCK_GROUP_DUP      (1 << 5)
520 #define BTRFS_BLOCK_GROUP_RAID10   (1 << 6)
521
522 struct btrfs_block_group_item {
523         __le64 used;
524         __le64 chunk_objectid;
525         __le64 flags;
526 } __attribute__ ((__packed__));
527
528 struct btrfs_space_info {
529         u64 flags;
530         u64 total_bytes;
531         u64 bytes_used;
532         u64 bytes_pinned;
533         int full;
534         struct list_head list;
535 };
536
537 struct btrfs_block_group_cache {
538         struct cache_extent cache;
539         struct btrfs_key key;
540         struct btrfs_block_group_item item;
541         struct btrfs_space_info *space_info;
542         u64 pinned;
543         u64 flags;
544         int cached;
545         int ro;
546 };
547
548 struct btrfs_extent_ops {
549        int (*alloc_extent)(struct btrfs_root *root, u64 num_bytes,
550                            u64 hint_byte, struct btrfs_key *ins);
551        int (*free_extent)(struct btrfs_root *root, u64 bytenr,
552                           u64 num_bytes);
553 };
554
555 struct btrfs_device;
556 struct btrfs_fs_devices;
557 struct btrfs_fs_info {
558         u8 fsid[BTRFS_FSID_SIZE];
559         u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
560         struct btrfs_root *fs_root;
561         struct btrfs_root *extent_root;
562         struct btrfs_root *tree_root;
563         struct btrfs_root *chunk_root;
564         struct btrfs_root *dev_root;
565
566         /* the log root tree is a directory of all the other log roots */
567         struct btrfs_root *log_root_tree;
568
569         struct extent_io_tree extent_cache;
570         struct extent_io_tree free_space_cache;
571         struct extent_io_tree block_group_cache;
572         struct extent_io_tree pinned_extents;
573         struct extent_io_tree pending_del;
574         struct extent_io_tree extent_ins;
575
576         /* logical->physical extent mapping */
577         struct btrfs_mapping_tree mapping_tree;
578
579         u64 generation;
580         u64 last_trans_committed;
581
582         u64 avail_data_alloc_bits;
583         u64 avail_metadata_alloc_bits;
584         u64 avail_system_alloc_bits;
585         u64 data_alloc_profile;
586         u64 metadata_alloc_profile;
587         u64 system_alloc_profile;
588         u64 alloc_start;
589
590         struct btrfs_trans_handle *running_transaction;
591         struct btrfs_super_block super_copy;
592         struct extent_buffer *sb_buffer;
593         struct mutex fs_mutex;
594         u64 total_pinned;
595
596         struct btrfs_extent_ops *extent_ops;
597         struct list_head dirty_cowonly_roots;
598
599         struct btrfs_fs_devices *fs_devices;
600         struct list_head space_info;
601         int system_allocs;
602         int readonly;
603 };
604
605 /*
606  * in ram representation of the tree.  extent_root is used for all allocations
607  * and for the extent tree extent_root root.
608  */
609 struct btrfs_root {
610         struct extent_buffer *node;
611         struct extent_buffer *commit_root;
612         struct btrfs_root_item root_item;
613         struct btrfs_key root_key;
614         struct btrfs_fs_info *fs_info;
615         u64 objectid;
616         u64 last_trans;
617
618         /* data allocations are done in sectorsize units */
619         u32 sectorsize;
620
621         /* node allocations are done in nodesize units */
622         u32 nodesize;
623
624         /* leaf allocations are done in leafsize units */
625         u32 leafsize;
626
627         /* leaf allocations are done in leafsize units */
628         u32 stripesize;
629
630         int ref_cows;
631         int track_dirty;
632
633
634         u32 type;
635         u64 highest_inode;
636         u64 last_inode_alloc;
637
638         /* the dirty list is only used by non-reference counted roots */
639         struct list_head dirty_list;
640 };
641
642 /*
643  * inode items have the data typically returned from stat and store other
644  * info about object characteristics.  There is one for every file and dir in
645  * the FS
646  */
647 #define BTRFS_INODE_ITEM_KEY            1
648 #define BTRFS_INODE_REF_KEY             12
649 #define BTRFS_XATTR_ITEM_KEY            24
650 #define BTRFS_ORPHAN_ITEM_KEY           48
651
652 #define BTRFS_DIR_LOG_ITEM_KEY  60
653 #define BTRFS_DIR_LOG_INDEX_KEY 72
654 /*
655  * dir items are the name -> inode pointers in a directory.  There is one
656  * for every name in a directory.
657  */
658 #define BTRFS_DIR_ITEM_KEY      84
659 #define BTRFS_DIR_INDEX_KEY     96
660
661 /*
662  * extent data is for file data
663  */
664 #define BTRFS_EXTENT_DATA_KEY   108
665
666 /*
667  * csum items have the checksums for data in the extents
668  */
669 #define BTRFS_CSUM_ITEM_KEY     120
670
671 /*
672  * root items point to tree roots.  There are typically in the root
673  * tree used by the super block to find all the other trees
674  */
675 #define BTRFS_ROOT_ITEM_KEY     132
676
677 /*
678  * root backrefs tie subvols and snapshots to the directory entries that
679  * reference them
680  */
681 #define BTRFS_ROOT_BACKREF_KEY  144
682
683 /*
684  * root refs make a fast index for listing all of the snapshots and
685  * subvolumes referenced by a given root.  They point directly to the
686  * directory item in the root that references the subvol
687  */
688 #define BTRFS_ROOT_REF_KEY      156
689
690 /*
691  * extent items are in the extent map tree.  These record which blocks
692  * are used, and how many references there are to each block
693  */
694 #define BTRFS_EXTENT_ITEM_KEY   168
695 #define BTRFS_EXTENT_REF_KEY    180
696
697 /*
698  * block groups give us hints into the extent allocation trees.  Which
699  * blocks are free etc etc
700  */
701 #define BTRFS_BLOCK_GROUP_ITEM_KEY 192
702
703 #define BTRFS_DEV_EXTENT_KEY    204
704 #define BTRFS_DEV_ITEM_KEY      216
705 #define BTRFS_CHUNK_ITEM_KEY    228
706
707 /*
708  * string items are for debugging.  They just store a short string of
709  * data in the FS
710  */
711 #define BTRFS_STRING_ITEM_KEY   253
712 /*
713  * Inode flags
714  */
715 #define BTRFS_INODE_NODATASUM           (1 << 0)
716 #define BTRFS_INODE_NODATACOW           (1 << 1)
717 #define BTRFS_INODE_READONLY            (1 << 2)
718
719 #define read_eb_member(eb, ptr, type, member, result) (                 \
720         read_extent_buffer(eb, (char *)(result),                        \
721                            ((unsigned long)(ptr)) +                     \
722                             offsetof(type, member),                     \
723                            sizeof(((type *)0)->member)))
724
725 #define write_eb_member(eb, ptr, type, member, result) (                \
726         write_extent_buffer(eb, (char *)(result),                       \
727                            ((unsigned long)(ptr)) +                     \
728                             offsetof(type, member),                     \
729                            sizeof(((type *)0)->member)))
730
731 #define BTRFS_SETGET_HEADER_FUNCS(name, type, member, bits)             \
732 static inline u##bits btrfs_##name(struct extent_buffer *eb)            \
733 {                                                                       \
734         struct btrfs_header *h = (struct btrfs_header *)eb->data;       \
735         return le##bits##_to_cpu(h->member);                            \
736 }                                                                       \
737 static inline void btrfs_set_##name(struct extent_buffer *eb,           \
738                                     u##bits val)                        \
739 {                                                                       \
740         struct btrfs_header *h = (struct btrfs_header *)eb->data;       \
741         h->member = cpu_to_le##bits(val);                               \
742 }
743
744 #define BTRFS_SETGET_FUNCS(name, type, member, bits)                    \
745 static inline u##bits btrfs_##name(struct extent_buffer *eb,            \
746                                    type *s)                             \
747 {                                                                       \
748         unsigned long offset = (unsigned long)s;                        \
749         type *p = (type *) (eb->data + offset);                         \
750         return le##bits##_to_cpu(p->member);                            \
751 }                                                                       \
752 static inline void btrfs_set_##name(struct extent_buffer *eb,           \
753                                     type *s, u##bits val)               \
754 {                                                                       \
755         unsigned long offset = (unsigned long)s;                        \
756         type *p = (type *) (eb->data + offset);                         \
757         p->member = cpu_to_le##bits(val);                               \
758 }
759
760 #define BTRFS_SETGET_STACK_FUNCS(name, type, member, bits)              \
761 static inline u##bits btrfs_##name(type *s)                             \
762 {                                                                       \
763         return le##bits##_to_cpu(s->member);                            \
764 }                                                                       \
765 static inline void btrfs_set_##name(type *s, u##bits val)               \
766 {                                                                       \
767         s->member = cpu_to_le##bits(val);                               \
768 }
769
770 BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
771 BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
772 BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
773 BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
774 BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
775 BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
776 BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
777 BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
778 BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
779 BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
780 BTRFS_SETGET_FUNCS(device_generation, struct btrfs_dev_item, generation, 64);
781
782 BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
783 BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
784                          total_bytes, 64);
785 BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
786                          bytes_used, 64);
787 BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
788                          io_align, 32);
789 BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
790                          io_width, 32);
791 BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
792                          sector_size, 32);
793 BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
794 BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
795                          dev_group, 32);
796 BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
797                          seek_speed, 8);
798 BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
799                          bandwidth, 8);
800 BTRFS_SETGET_STACK_FUNCS(stack_device_generation, struct btrfs_dev_item,
801                          generation, 64);
802
803 static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
804 {
805         return (char *)d + offsetof(struct btrfs_dev_item, uuid);
806 }
807
808 static inline char *btrfs_device_fsid(struct btrfs_dev_item *d)
809 {
810         return (char *)d + offsetof(struct btrfs_dev_item, fsid);
811 }
812
813 BTRFS_SETGET_FUNCS(chunk_length, struct btrfs_chunk, length, 64);
814 BTRFS_SETGET_FUNCS(chunk_owner, struct btrfs_chunk, owner, 64);
815 BTRFS_SETGET_FUNCS(chunk_stripe_len, struct btrfs_chunk, stripe_len, 64);
816 BTRFS_SETGET_FUNCS(chunk_io_align, struct btrfs_chunk, io_align, 32);
817 BTRFS_SETGET_FUNCS(chunk_io_width, struct btrfs_chunk, io_width, 32);
818 BTRFS_SETGET_FUNCS(chunk_sector_size, struct btrfs_chunk, sector_size, 32);
819 BTRFS_SETGET_FUNCS(chunk_type, struct btrfs_chunk, type, 64);
820 BTRFS_SETGET_FUNCS(chunk_num_stripes, struct btrfs_chunk, num_stripes, 16);
821 BTRFS_SETGET_FUNCS(chunk_sub_stripes, struct btrfs_chunk, sub_stripes, 16);
822 BTRFS_SETGET_FUNCS(stripe_devid, struct btrfs_stripe, devid, 64);
823 BTRFS_SETGET_FUNCS(stripe_offset, struct btrfs_stripe, offset, 64);
824
825 static inline char *btrfs_stripe_dev_uuid(struct btrfs_stripe *s)
826 {
827         return (char *)s + offsetof(struct btrfs_stripe, dev_uuid);
828 }
829
830 BTRFS_SETGET_STACK_FUNCS(stack_chunk_length, struct btrfs_chunk, length, 64);
831 BTRFS_SETGET_STACK_FUNCS(stack_chunk_owner, struct btrfs_chunk, owner, 64);
832 BTRFS_SETGET_STACK_FUNCS(stack_chunk_stripe_len, struct btrfs_chunk,
833                          stripe_len, 64);
834 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_align, struct btrfs_chunk,
835                          io_align, 32);
836 BTRFS_SETGET_STACK_FUNCS(stack_chunk_io_width, struct btrfs_chunk,
837                          io_width, 32);
838 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sector_size, struct btrfs_chunk,
839                          sector_size, 32);
840 BTRFS_SETGET_STACK_FUNCS(stack_chunk_type, struct btrfs_chunk, type, 64);
841 BTRFS_SETGET_STACK_FUNCS(stack_chunk_num_stripes, struct btrfs_chunk,
842                          num_stripes, 16);
843 BTRFS_SETGET_STACK_FUNCS(stack_chunk_sub_stripes, struct btrfs_chunk,
844                          sub_stripes, 16);
845 BTRFS_SETGET_STACK_FUNCS(stack_stripe_devid, struct btrfs_stripe, devid, 64);
846 BTRFS_SETGET_STACK_FUNCS(stack_stripe_offset, struct btrfs_stripe, offset, 64);
847
848 static inline struct btrfs_stripe *btrfs_stripe_nr(struct btrfs_chunk *c,
849                                                    int nr)
850 {
851         unsigned long offset = (unsigned long)c;
852         offset += offsetof(struct btrfs_chunk, stripe);
853         offset += nr * sizeof(struct btrfs_stripe);
854         return (struct btrfs_stripe *)offset;
855 }
856
857 static inline char *btrfs_stripe_dev_uuid_nr(struct btrfs_chunk *c, int nr)
858 {
859         return btrfs_stripe_dev_uuid(btrfs_stripe_nr(c, nr));
860 }
861
862 static inline u64 btrfs_stripe_offset_nr(struct extent_buffer *eb,
863                                          struct btrfs_chunk *c, int nr)
864 {
865         return btrfs_stripe_offset(eb, btrfs_stripe_nr(c, nr));
866 }
867
868 static inline void btrfs_set_stripe_offset_nr(struct extent_buffer *eb,
869                                              struct btrfs_chunk *c, int nr,
870                                              u64 val)
871 {
872         btrfs_set_stripe_offset(eb, btrfs_stripe_nr(c, nr), val);
873 }
874
875 static inline u64 btrfs_stripe_devid_nr(struct extent_buffer *eb,
876                                          struct btrfs_chunk *c, int nr)
877 {
878         return btrfs_stripe_devid(eb, btrfs_stripe_nr(c, nr));
879 }
880
881 static inline void btrfs_set_stripe_devid_nr(struct extent_buffer *eb,
882                                              struct btrfs_chunk *c, int nr,
883                                              u64 val)
884 {
885         btrfs_set_stripe_devid(eb, btrfs_stripe_nr(c, nr), val);
886 }
887
888 /* struct btrfs_block_group_item */
889 BTRFS_SETGET_STACK_FUNCS(block_group_used, struct btrfs_block_group_item,
890                          used, 64);
891 BTRFS_SETGET_FUNCS(disk_block_group_used, struct btrfs_block_group_item,
892                          used, 64);
893 BTRFS_SETGET_STACK_FUNCS(block_group_chunk_objectid,
894                         struct btrfs_block_group_item, chunk_objectid, 64);
895
896 BTRFS_SETGET_FUNCS(disk_block_group_chunk_objectid,
897                    struct btrfs_block_group_item, chunk_objectid, 64);
898 BTRFS_SETGET_FUNCS(disk_block_group_flags,
899                    struct btrfs_block_group_item, flags, 64);
900 BTRFS_SETGET_STACK_FUNCS(block_group_flags,
901                         struct btrfs_block_group_item, flags, 64);
902
903 /* struct btrfs_inode_ref */
904 BTRFS_SETGET_FUNCS(inode_ref_name_len, struct btrfs_inode_ref, name_len, 16);
905 BTRFS_SETGET_FUNCS(inode_ref_index, struct btrfs_inode_ref, index, 64);
906
907 /* struct btrfs_inode_item */
908 BTRFS_SETGET_FUNCS(inode_generation, struct btrfs_inode_item, generation, 64);
909 BTRFS_SETGET_FUNCS(inode_transid, struct btrfs_inode_item, transid, 64);
910 BTRFS_SETGET_FUNCS(inode_size, struct btrfs_inode_item, size, 64);
911 BTRFS_SETGET_FUNCS(inode_nbytes, struct btrfs_inode_item, nbytes, 64);
912 BTRFS_SETGET_FUNCS(inode_block_group, struct btrfs_inode_item, block_group, 64);
913 BTRFS_SETGET_FUNCS(inode_nlink, struct btrfs_inode_item, nlink, 32);
914 BTRFS_SETGET_FUNCS(inode_uid, struct btrfs_inode_item, uid, 32);
915 BTRFS_SETGET_FUNCS(inode_gid, struct btrfs_inode_item, gid, 32);
916 BTRFS_SETGET_FUNCS(inode_mode, struct btrfs_inode_item, mode, 32);
917 BTRFS_SETGET_FUNCS(inode_rdev, struct btrfs_inode_item, rdev, 64);
918 BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 16);
919 BTRFS_SETGET_FUNCS(inode_compat_flags, struct btrfs_inode_item,
920                    compat_flags, 16);
921
922 BTRFS_SETGET_STACK_FUNCS(stack_inode_generation,
923                          struct btrfs_inode_item, generation, 64);
924 BTRFS_SETGET_STACK_FUNCS(stack_inode_size,
925                          struct btrfs_inode_item, size, 64);
926 BTRFS_SETGET_STACK_FUNCS(stack_inode_nbytes,
927                          struct btrfs_inode_item, nbytes, 64);
928 BTRFS_SETGET_STACK_FUNCS(stack_inode_block_group,
929                          struct btrfs_inode_item, block_group, 64);
930 BTRFS_SETGET_STACK_FUNCS(stack_inode_nlink,
931                          struct btrfs_inode_item, nlink, 32);
932 BTRFS_SETGET_STACK_FUNCS(stack_inode_uid,
933                          struct btrfs_inode_item, uid, 32);
934 BTRFS_SETGET_STACK_FUNCS(stack_inode_gid,
935                          struct btrfs_inode_item, gid, 32);
936 BTRFS_SETGET_STACK_FUNCS(stack_inode_mode,
937                          struct btrfs_inode_item, mode, 32);
938 BTRFS_SETGET_STACK_FUNCS(stack_inode_rdev,
939                          struct btrfs_inode_item, rdev, 64);
940 BTRFS_SETGET_STACK_FUNCS(stack_inode_flags,
941                          struct btrfs_inode_item, flags, 16);
942 BTRFS_SETGET_STACK_FUNCS(stack_inode_compat_flags,
943                          struct btrfs_inode_item, compat_flags, 16);
944
945 static inline struct btrfs_timespec *
946 btrfs_inode_atime(struct btrfs_inode_item *inode_item)
947 {
948         unsigned long ptr = (unsigned long)inode_item;
949         ptr += offsetof(struct btrfs_inode_item, atime);
950         return (struct btrfs_timespec *)ptr;
951 }
952
953 static inline struct btrfs_timespec *
954 btrfs_inode_mtime(struct btrfs_inode_item *inode_item)
955 {
956         unsigned long ptr = (unsigned long)inode_item;
957         ptr += offsetof(struct btrfs_inode_item, mtime);
958         return (struct btrfs_timespec *)ptr;
959 }
960
961 static inline struct btrfs_timespec *
962 btrfs_inode_ctime(struct btrfs_inode_item *inode_item)
963 {
964         unsigned long ptr = (unsigned long)inode_item;
965         ptr += offsetof(struct btrfs_inode_item, ctime);
966         return (struct btrfs_timespec *)ptr;
967 }
968
969 static inline struct btrfs_timespec *
970 btrfs_inode_otime(struct btrfs_inode_item *inode_item)
971 {
972         unsigned long ptr = (unsigned long)inode_item;
973         ptr += offsetof(struct btrfs_inode_item, otime);
974         return (struct btrfs_timespec *)ptr;
975 }
976
977 BTRFS_SETGET_FUNCS(timespec_sec, struct btrfs_timespec, sec, 64);
978 BTRFS_SETGET_FUNCS(timespec_nsec, struct btrfs_timespec, nsec, 32);
979 BTRFS_SETGET_STACK_FUNCS(stack_timespec_sec, struct btrfs_timespec,
980                          sec, 64);
981 BTRFS_SETGET_STACK_FUNCS(stack_timespec_nsec, struct btrfs_timespec,
982                          nsec, 32);
983
984 /* struct btrfs_dev_extent */
985 BTRFS_SETGET_FUNCS(dev_extent_chunk_tree, struct btrfs_dev_extent,
986                    chunk_tree, 64);
987 BTRFS_SETGET_FUNCS(dev_extent_chunk_objectid, struct btrfs_dev_extent,
988                    chunk_objectid, 64);
989 BTRFS_SETGET_FUNCS(dev_extent_chunk_offset, struct btrfs_dev_extent,
990                    chunk_offset, 64);
991 BTRFS_SETGET_FUNCS(dev_extent_length, struct btrfs_dev_extent, length, 64);
992
993 static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
994 {
995         unsigned long ptr = offsetof(struct btrfs_dev_extent, chunk_tree_uuid);
996         return (u8 *)((unsigned long)dev + ptr);
997 }
998
999 /* struct btrfs_extent_ref */
1000 BTRFS_SETGET_FUNCS(ref_root, struct btrfs_extent_ref, root, 64);
1001 BTRFS_SETGET_FUNCS(ref_generation, struct btrfs_extent_ref, generation, 64);
1002 BTRFS_SETGET_FUNCS(ref_objectid, struct btrfs_extent_ref, objectid, 64);
1003 BTRFS_SETGET_FUNCS(ref_num_refs, struct btrfs_extent_ref, num_refs, 32);
1004
1005 BTRFS_SETGET_STACK_FUNCS(stack_ref_root, struct btrfs_extent_ref, root, 64);
1006 BTRFS_SETGET_STACK_FUNCS(stack_ref_generation, struct btrfs_extent_ref,
1007                          generation, 64);
1008 BTRFS_SETGET_STACK_FUNCS(stack_ref_objectid, struct btrfs_extent_ref,
1009                          objectid, 64);
1010 BTRFS_SETGET_STACK_FUNCS(stack_ref_num_refs, struct btrfs_extent_ref,
1011                          num_refs, 32);
1012
1013 /* struct btrfs_extent_item */
1014 BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 32);
1015 BTRFS_SETGET_STACK_FUNCS(stack_extent_refs, struct btrfs_extent_item,
1016                          refs, 32);
1017
1018 /* struct btrfs_node */
1019 BTRFS_SETGET_FUNCS(key_blockptr, struct btrfs_key_ptr, blockptr, 64);
1020 BTRFS_SETGET_FUNCS(key_generation, struct btrfs_key_ptr, generation, 64);
1021
1022 static inline u64 btrfs_node_blockptr(struct extent_buffer *eb, int nr)
1023 {
1024         unsigned long ptr;
1025         ptr = offsetof(struct btrfs_node, ptrs) +
1026                 sizeof(struct btrfs_key_ptr) * nr;
1027         return btrfs_key_blockptr(eb, (struct btrfs_key_ptr *)ptr);
1028 }
1029
1030 static inline void btrfs_set_node_blockptr(struct extent_buffer *eb,
1031                                            int nr, u64 val)
1032 {
1033         unsigned long ptr;
1034         ptr = offsetof(struct btrfs_node, ptrs) +
1035                 sizeof(struct btrfs_key_ptr) * nr;
1036         btrfs_set_key_blockptr(eb, (struct btrfs_key_ptr *)ptr, val);
1037 }
1038
1039 static inline u64 btrfs_node_ptr_generation(struct extent_buffer *eb, int nr)
1040 {
1041         unsigned long ptr;
1042         ptr = offsetof(struct btrfs_node, ptrs) +
1043                 sizeof(struct btrfs_key_ptr) * nr;
1044         return btrfs_key_generation(eb, (struct btrfs_key_ptr *)ptr);
1045 }
1046
1047 static inline void btrfs_set_node_ptr_generation(struct extent_buffer *eb,
1048                                                  int nr, u64 val)
1049 {
1050         unsigned long ptr;
1051         ptr = offsetof(struct btrfs_node, ptrs) +
1052                 sizeof(struct btrfs_key_ptr) * nr;
1053         btrfs_set_key_generation(eb, (struct btrfs_key_ptr *)ptr, val);
1054 }
1055
1056 static inline unsigned long btrfs_node_key_ptr_offset(int nr)
1057 {
1058         return offsetof(struct btrfs_node, ptrs) +
1059                 sizeof(struct btrfs_key_ptr) * nr;
1060 }
1061
1062 static inline void btrfs_node_key(struct extent_buffer *eb,
1063                                   struct btrfs_disk_key *disk_key, int nr)
1064 {
1065         unsigned long ptr;
1066         ptr = btrfs_node_key_ptr_offset(nr);
1067         read_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1068                        struct btrfs_key_ptr, key, disk_key);
1069 }
1070
1071 static inline void btrfs_set_node_key(struct extent_buffer *eb,
1072                                       struct btrfs_disk_key *disk_key, int nr)
1073 {
1074         unsigned long ptr;
1075         ptr = btrfs_node_key_ptr_offset(nr);
1076         write_eb_member(eb, (struct btrfs_key_ptr *)ptr,
1077                        struct btrfs_key_ptr, key, disk_key);
1078 }
1079
1080 /* struct btrfs_item */
1081 BTRFS_SETGET_FUNCS(item_offset, struct btrfs_item, offset, 32);
1082 BTRFS_SETGET_FUNCS(item_size, struct btrfs_item, size, 32);
1083
1084 static inline unsigned long btrfs_item_nr_offset(int nr)
1085 {
1086         return offsetof(struct btrfs_leaf, items) +
1087                 sizeof(struct btrfs_item) * nr;
1088 }
1089
1090 static inline struct btrfs_item *btrfs_item_nr(struct extent_buffer *eb,
1091                                                int nr)
1092 {
1093         return (struct btrfs_item *)btrfs_item_nr_offset(nr);
1094 }
1095
1096 static inline u32 btrfs_item_end(struct extent_buffer *eb,
1097                                  struct btrfs_item *item)
1098 {
1099         return btrfs_item_offset(eb, item) + btrfs_item_size(eb, item);
1100 }
1101
1102 static inline u32 btrfs_item_end_nr(struct extent_buffer *eb, int nr)
1103 {
1104         return btrfs_item_end(eb, btrfs_item_nr(eb, nr));
1105 }
1106
1107 static inline u32 btrfs_item_offset_nr(struct extent_buffer *eb, int nr)
1108 {
1109         return btrfs_item_offset(eb, btrfs_item_nr(eb, nr));
1110 }
1111
1112 static inline u32 btrfs_item_size_nr(struct extent_buffer *eb, int nr)
1113 {
1114         return btrfs_item_size(eb, btrfs_item_nr(eb, nr));
1115 }
1116
1117 static inline void btrfs_item_key(struct extent_buffer *eb,
1118                            struct btrfs_disk_key *disk_key, int nr)
1119 {
1120         struct btrfs_item *item = btrfs_item_nr(eb, nr);
1121         read_eb_member(eb, item, struct btrfs_item, key, disk_key);
1122 }
1123
1124 static inline void btrfs_set_item_key(struct extent_buffer *eb,
1125                                struct btrfs_disk_key *disk_key, int nr)
1126 {
1127         struct btrfs_item *item = btrfs_item_nr(eb, nr);
1128         write_eb_member(eb, item, struct btrfs_item, key, disk_key);
1129 }
1130
1131 /*
1132  * struct btrfs_root_ref
1133  */
1134 BTRFS_SETGET_FUNCS(root_ref_dirid, struct btrfs_root_ref, dirid, 64);
1135 BTRFS_SETGET_FUNCS(root_ref_sequence, struct btrfs_root_ref, sequence, 64);
1136 BTRFS_SETGET_FUNCS(root_ref_name_len, struct btrfs_root_ref, name_len, 16);
1137
1138 /* struct btrfs_dir_item */
1139 BTRFS_SETGET_FUNCS(dir_data_len, struct btrfs_dir_item, data_len, 16);
1140 BTRFS_SETGET_FUNCS(dir_type, struct btrfs_dir_item, type, 8);
1141 BTRFS_SETGET_FUNCS(dir_name_len, struct btrfs_dir_item, name_len, 16);
1142 BTRFS_SETGET_FUNCS(dir_transid, struct btrfs_dir_item, transid, 64);
1143
1144 static inline void btrfs_dir_item_key(struct extent_buffer *eb,
1145                                       struct btrfs_dir_item *item,
1146                                       struct btrfs_disk_key *key)
1147 {
1148         read_eb_member(eb, item, struct btrfs_dir_item, location, key);
1149 }
1150
1151 static inline void btrfs_set_dir_item_key(struct extent_buffer *eb,
1152                                           struct btrfs_dir_item *item,
1153                                           struct btrfs_disk_key *key)
1154 {
1155         write_eb_member(eb, item, struct btrfs_dir_item, location, key);
1156 }
1157
1158 /* struct btrfs_disk_key */
1159 BTRFS_SETGET_STACK_FUNCS(disk_key_objectid, struct btrfs_disk_key,
1160                          objectid, 64);
1161 BTRFS_SETGET_STACK_FUNCS(disk_key_offset, struct btrfs_disk_key, offset, 64);
1162 BTRFS_SETGET_STACK_FUNCS(disk_key_type, struct btrfs_disk_key, type, 8);
1163
1164 static inline void btrfs_disk_key_to_cpu(struct btrfs_key *cpu,
1165                                          struct btrfs_disk_key *disk)
1166 {
1167         cpu->offset = le64_to_cpu(disk->offset);
1168         cpu->type = disk->type;
1169         cpu->objectid = le64_to_cpu(disk->objectid);
1170 }
1171
1172 static inline void btrfs_cpu_key_to_disk(struct btrfs_disk_key *disk,
1173                                          struct btrfs_key *cpu)
1174 {
1175         disk->offset = cpu_to_le64(cpu->offset);
1176         disk->type = cpu->type;
1177         disk->objectid = cpu_to_le64(cpu->objectid);
1178 }
1179
1180 static inline void btrfs_node_key_to_cpu(struct extent_buffer *eb,
1181                                   struct btrfs_key *key, int nr)
1182 {
1183         struct btrfs_disk_key disk_key;
1184         btrfs_node_key(eb, &disk_key, nr);
1185         btrfs_disk_key_to_cpu(key, &disk_key);
1186 }
1187
1188 static inline void btrfs_item_key_to_cpu(struct extent_buffer *eb,
1189                                   struct btrfs_key *key, int nr)
1190 {
1191         struct btrfs_disk_key disk_key;
1192         btrfs_item_key(eb, &disk_key, nr);
1193         btrfs_disk_key_to_cpu(key, &disk_key);
1194 }
1195
1196 static inline void btrfs_dir_item_key_to_cpu(struct extent_buffer *eb,
1197                                       struct btrfs_dir_item *item,
1198                                       struct btrfs_key *key)
1199 {
1200         struct btrfs_disk_key disk_key;
1201         btrfs_dir_item_key(eb, item, &disk_key);
1202         btrfs_disk_key_to_cpu(key, &disk_key);
1203 }
1204
1205
1206 static inline u8 btrfs_key_type(struct btrfs_key *key)
1207 {
1208         return key->type;
1209 }
1210
1211 static inline void btrfs_set_key_type(struct btrfs_key *key, u8 val)
1212 {
1213         key->type = val;
1214 }
1215
1216 /* struct btrfs_header */
1217 BTRFS_SETGET_HEADER_FUNCS(header_bytenr, struct btrfs_header, bytenr, 64);
1218 BTRFS_SETGET_HEADER_FUNCS(header_generation, struct btrfs_header,
1219                           generation, 64);
1220 BTRFS_SETGET_HEADER_FUNCS(header_owner, struct btrfs_header, owner, 64);
1221 BTRFS_SETGET_HEADER_FUNCS(header_nritems, struct btrfs_header, nritems, 32);
1222 BTRFS_SETGET_HEADER_FUNCS(header_flags, struct btrfs_header, flags, 64);
1223 BTRFS_SETGET_HEADER_FUNCS(header_level, struct btrfs_header, level, 8);
1224
1225 static inline int btrfs_header_flag(struct extent_buffer *eb, u64 flag)
1226 {
1227         return (btrfs_header_flags(eb) & flag) == flag;
1228 }
1229
1230 static inline int btrfs_set_header_flag(struct extent_buffer *eb, u64 flag)
1231 {
1232         u64 flags = btrfs_header_flags(eb);
1233         btrfs_set_header_flags(eb, flags | flag);
1234         return (flags & flag) == flag;
1235 }
1236
1237 static inline int btrfs_clear_header_flag(struct extent_buffer *eb, u64 flag)
1238 {
1239         u64 flags = btrfs_header_flags(eb);
1240         btrfs_set_header_flags(eb, flags & ~flag);
1241         return (flags & flag) == flag;
1242 }
1243
1244 static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
1245 {
1246         unsigned long ptr = offsetof(struct btrfs_header, fsid);
1247         return (u8 *)ptr;
1248 }
1249
1250 static inline u8 *btrfs_header_chunk_tree_uuid(struct extent_buffer *eb)
1251 {
1252         unsigned long ptr = offsetof(struct btrfs_header, chunk_tree_uuid);
1253         return (u8 *)ptr;
1254 }
1255
1256 static inline u8 *btrfs_super_fsid(struct extent_buffer *eb)
1257 {
1258         unsigned long ptr = offsetof(struct btrfs_super_block, fsid);
1259         return (u8 *)ptr;
1260 }
1261
1262 static inline u8 *btrfs_header_csum(struct extent_buffer *eb)
1263 {
1264         unsigned long ptr = offsetof(struct btrfs_header, csum);
1265         return (u8 *)ptr;
1266 }
1267
1268 static inline struct btrfs_node *btrfs_buffer_node(struct extent_buffer *eb)
1269 {
1270         return NULL;
1271 }
1272
1273 static inline struct btrfs_leaf *btrfs_buffer_leaf(struct extent_buffer *eb)
1274 {
1275         return NULL;
1276 }
1277
1278 static inline struct btrfs_header *btrfs_buffer_header(struct extent_buffer *eb)
1279 {
1280         return NULL;
1281 }
1282
1283 static inline int btrfs_is_leaf(struct extent_buffer *eb)
1284 {
1285         return (btrfs_header_level(eb) == 0);
1286 }
1287
1288 /* struct btrfs_root_item */
1289 BTRFS_SETGET_FUNCS(disk_root_generation, struct btrfs_root_item,
1290                    generation, 64);
1291 BTRFS_SETGET_FUNCS(disk_root_refs, struct btrfs_root_item, refs, 32);
1292 BTRFS_SETGET_FUNCS(disk_root_bytenr, struct btrfs_root_item, bytenr, 64);
1293 BTRFS_SETGET_FUNCS(disk_root_level, struct btrfs_root_item, level, 8);
1294
1295 BTRFS_SETGET_STACK_FUNCS(root_generation, struct btrfs_root_item,
1296                          generation, 64);
1297 BTRFS_SETGET_STACK_FUNCS(root_bytenr, struct btrfs_root_item, bytenr, 64);
1298 BTRFS_SETGET_STACK_FUNCS(root_level, struct btrfs_root_item, level, 8);
1299 BTRFS_SETGET_STACK_FUNCS(root_dirid, struct btrfs_root_item, root_dirid, 64);
1300 BTRFS_SETGET_STACK_FUNCS(root_refs, struct btrfs_root_item, refs, 32);
1301 BTRFS_SETGET_STACK_FUNCS(root_flags, struct btrfs_root_item, flags, 32);
1302 BTRFS_SETGET_STACK_FUNCS(root_used, struct btrfs_root_item, bytes_used, 64);
1303 BTRFS_SETGET_STACK_FUNCS(root_limit, struct btrfs_root_item, byte_limit, 64);
1304 BTRFS_SETGET_STACK_FUNCS(root_last_snapshot, struct btrfs_root_item,
1305                          last_snapshot, 64);
1306
1307
1308 /* struct btrfs_super_block */
1309 BTRFS_SETGET_STACK_FUNCS(super_bytenr, struct btrfs_super_block, bytenr, 64);
1310 BTRFS_SETGET_STACK_FUNCS(super_flags, struct btrfs_super_block, flags, 64);
1311 BTRFS_SETGET_STACK_FUNCS(super_generation, struct btrfs_super_block,
1312                          generation, 64);
1313 BTRFS_SETGET_STACK_FUNCS(super_root, struct btrfs_super_block, root, 64);
1314 BTRFS_SETGET_STACK_FUNCS(super_sys_array_size,
1315                          struct btrfs_super_block, sys_chunk_array_size, 32);
1316 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_generation,
1317                          struct btrfs_super_block, chunk_root_generation, 64);
1318 BTRFS_SETGET_STACK_FUNCS(super_root_level, struct btrfs_super_block,
1319                          root_level, 8);
1320 BTRFS_SETGET_STACK_FUNCS(super_chunk_root, struct btrfs_super_block,
1321                          chunk_root, 64);
1322 BTRFS_SETGET_STACK_FUNCS(super_chunk_root_level, struct btrfs_super_block,
1323                          chunk_root_level, 8);
1324 BTRFS_SETGET_STACK_FUNCS(super_log_root, struct btrfs_super_block,
1325                          log_root, 64);
1326 BTRFS_SETGET_STACK_FUNCS(super_log_root_level, struct btrfs_super_block,
1327                          log_root_level, 8);
1328 BTRFS_SETGET_STACK_FUNCS(super_total_bytes, struct btrfs_super_block,
1329                          total_bytes, 64);
1330 BTRFS_SETGET_STACK_FUNCS(super_bytes_used, struct btrfs_super_block,
1331                          bytes_used, 64);
1332 BTRFS_SETGET_STACK_FUNCS(super_sectorsize, struct btrfs_super_block,
1333                          sectorsize, 32);
1334 BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
1335                          nodesize, 32);
1336 BTRFS_SETGET_STACK_FUNCS(super_leafsize, struct btrfs_super_block,
1337                          leafsize, 32);
1338 BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
1339                          stripesize, 32);
1340 BTRFS_SETGET_STACK_FUNCS(super_root_dir, struct btrfs_super_block,
1341                          root_dir_objectid, 64);
1342 BTRFS_SETGET_STACK_FUNCS(super_num_devices, struct btrfs_super_block,
1343                          num_devices, 64);
1344
1345 static inline unsigned long btrfs_leaf_data(struct extent_buffer *l)
1346 {
1347         return offsetof(struct btrfs_leaf, items);
1348 }
1349
1350 /* struct btrfs_file_extent_item */
1351 BTRFS_SETGET_FUNCS(file_extent_type, struct btrfs_file_extent_item, type, 8);
1352
1353 static inline unsigned long btrfs_file_extent_inline_start(struct
1354                                                    btrfs_file_extent_item *e)
1355 {
1356         unsigned long offset = (unsigned long)e;
1357         offset += offsetof(struct btrfs_file_extent_item, disk_bytenr);
1358         return offset;
1359 }
1360
1361 static inline u32 btrfs_file_extent_calc_inline_size(u32 datasize)
1362 {
1363         return offsetof(struct btrfs_file_extent_item, disk_bytenr) + datasize;
1364 }
1365
1366 BTRFS_SETGET_FUNCS(file_extent_disk_bytenr, struct btrfs_file_extent_item,
1367                    disk_bytenr, 64);
1368 BTRFS_SETGET_FUNCS(file_extent_generation, struct btrfs_file_extent_item,
1369                    generation, 64);
1370 BTRFS_SETGET_FUNCS(file_extent_disk_num_bytes, struct btrfs_file_extent_item,
1371                    disk_num_bytes, 64);
1372 BTRFS_SETGET_FUNCS(file_extent_offset, struct btrfs_file_extent_item,
1373                   offset, 64);
1374 BTRFS_SETGET_FUNCS(file_extent_num_bytes, struct btrfs_file_extent_item,
1375                    num_bytes, 64);
1376 BTRFS_SETGET_FUNCS(file_extent_ram_bytes, struct btrfs_file_extent_item,
1377                    ram_bytes, 64);
1378 BTRFS_SETGET_FUNCS(file_extent_compression, struct btrfs_file_extent_item,
1379                    compression, 8);
1380 BTRFS_SETGET_FUNCS(file_extent_encryption, struct btrfs_file_extent_item,
1381                    encryption, 8);
1382 BTRFS_SETGET_FUNCS(file_extent_other_encoding, struct btrfs_file_extent_item,
1383                    other_encoding, 16);
1384
1385 /* this returns the number of file bytes represented by the inline item.
1386  * If an item is compressed, this is the uncompressed size
1387  */
1388 static inline u32 btrfs_file_extent_inline_len(struct extent_buffer *eb,
1389                                         struct btrfs_file_extent_item *e)
1390 {
1391        return btrfs_file_extent_ram_bytes(eb, e);
1392 }
1393
1394 /*
1395  * this returns the number of bytes used by the item on disk, minus the
1396  * size of any extent headers.  If a file is compressed on disk, this is
1397  * the compressed size
1398  */
1399 static inline u32 btrfs_file_extent_inline_item_len(struct extent_buffer *eb,
1400                                                     struct btrfs_item *e)
1401 {
1402        unsigned long offset;
1403        offset = offsetof(struct btrfs_file_extent_item, disk_bytenr);
1404        return btrfs_item_size(eb, e) - offset;
1405 }
1406
1407 static inline u32 btrfs_level_size(struct btrfs_root *root, int level) {
1408         if (level == 0)
1409                 return root->leafsize;
1410         return root->nodesize;
1411 }
1412
1413 /* helper function to cast into the data area of the leaf. */
1414 #define btrfs_item_ptr(leaf, slot, type) \
1415         ((type *)(btrfs_leaf_data(leaf) + \
1416         btrfs_item_offset_nr(leaf, slot)))
1417
1418 #define btrfs_item_ptr_offset(leaf, slot) \
1419         ((unsigned long)(btrfs_leaf_data(leaf) + \
1420         btrfs_item_offset_nr(leaf, slot)))
1421
1422 /* extent-tree.c */
1423 int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
1424                          struct btrfs_root *root);
1425 int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy);
1426 struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
1427                                                          btrfs_fs_info *info,
1428                                                          u64 bytenr);
1429 struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
1430                                                  struct btrfs_block_group_cache
1431                                                  *hint, u64 search_start,
1432                                                  int data, int owner);
1433 struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1434                                              struct btrfs_root *root,
1435                                              u32 blocksize, u64 parent,
1436                                              u64 root_objectid,
1437                                              u64 ref_generation,
1438                                              int level,
1439                                              u64 hint,
1440                                              u64 empty_size);
1441 int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
1442                        struct btrfs_root *root,
1443                        u64 num_bytes, u64 parent,
1444                        u64 root_objectid, u64 ref_generation,
1445                        u64 owner, u64 empty_size, u64 hint_byte,
1446                        u64 search_end, struct btrfs_key *ins, int data);
1447 int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1448                   struct extent_buffer *orig_buf, struct extent_buffer *buf,
1449                   u32 *nr_extents);
1450 int btrfs_update_ref(struct btrfs_trans_handle *trans,
1451                      struct btrfs_root *root, struct extent_buffer *orig_buf,
1452                      struct extent_buffer *buf, int start_slot, int nr);
1453 int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
1454                       *root, u64 bytenr, u64 num_bytes, u64 parent,
1455                       u64 root_objectid, u64 ref_generation,
1456                       u64 owner_objectid, int pin);
1457 int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1458                                struct btrfs_root *root,
1459                                struct extent_io_tree *unpin);
1460 int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1461                                 struct btrfs_root *root,
1462                                 u64 bytenr, u64 num_bytes, u64 parent,
1463                                 u64 root_objectid, u64 ref_generation,
1464                                 u64 owner_objectid);
1465 int btrfs_update_extent_ref(struct btrfs_trans_handle *trans,
1466                             struct btrfs_root *root, u64 bytenr,
1467                             u64 orig_parent, u64 parent,
1468                             u64 root_objectid, u64 ref_generation,
1469                             u64 owner_objectid);
1470 int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
1471                                     struct btrfs_root *root);
1472 int btrfs_free_block_groups(struct btrfs_fs_info *info);
1473 int btrfs_read_block_groups(struct btrfs_root *root);
1474 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
1475                            struct btrfs_root *root, u64 bytes_used,
1476                            u64 type, u64 chunk_objectid, u64 chunk_offset,
1477                            u64 size);
1478 int btrfs_make_block_groups(struct btrfs_trans_handle *trans,
1479                             struct btrfs_root *root);
1480 int btrfs_update_block_group(struct btrfs_trans_handle *trans,
1481                              struct btrfs_root *root, u64 bytenr, u64 num,
1482                              int alloc, int mark_free);
1483 /* ctree.c */
1484 int btrfs_previous_item(struct btrfs_root *root,
1485                         struct btrfs_path *path, u64 min_objectid,
1486                         int type);
1487 int btrfs_comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2);
1488 int btrfs_cow_block(struct btrfs_trans_handle *trans,
1489                     struct btrfs_root *root, struct extent_buffer *buf,
1490                     struct extent_buffer *parent, int parent_slot,
1491                     struct extent_buffer **cow_ret);
1492 int __btrfs_cow_block(struct btrfs_trans_handle *trans,
1493                              struct btrfs_root *root,
1494                              struct extent_buffer *buf,
1495                              struct extent_buffer *parent, int parent_slot,
1496                              struct extent_buffer **cow_ret,
1497                              u64 search_start, u64 empty_size);
1498 int btrfs_copy_root(struct btrfs_trans_handle *trans,
1499                       struct btrfs_root *root,
1500                       struct extent_buffer *buf,
1501                       struct extent_buffer **cow_ret, u64 new_root_objectid);
1502 int btrfs_extend_item(struct btrfs_trans_handle *trans, struct btrfs_root
1503                       *root, struct btrfs_path *path, u32 data_size);
1504 int btrfs_truncate_item(struct btrfs_trans_handle *trans,
1505                         struct btrfs_root *root,
1506                         struct btrfs_path *path,
1507                         u32 new_size, int from_end);
1508 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1509                       *root, struct btrfs_key *key, struct btrfs_path *p, int
1510                       ins_len, int cow);
1511 int btrfs_realloc_node(struct btrfs_trans_handle *trans,
1512                        struct btrfs_root *root, struct extent_buffer *parent,
1513                        int start_slot, int cache_only, u64 *last_ret,
1514                        struct btrfs_key *progress);
1515 void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p);
1516 struct btrfs_path *btrfs_alloc_path(void);
1517 void btrfs_free_path(struct btrfs_path *p);
1518 void btrfs_init_path(struct btrfs_path *p);
1519 int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1520                    struct btrfs_path *path, int slot, int nr);
1521
1522 static inline int btrfs_del_item(struct btrfs_trans_handle *trans,
1523                                  struct btrfs_root *root,
1524                                  struct btrfs_path *path)
1525 {
1526         return btrfs_del_items(trans, root, path, path->slots[0], 1);
1527 }
1528
1529 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1530                       *root, struct btrfs_key *key, void *data, u32 data_size);
1531 int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
1532                              struct btrfs_root *root,
1533                              struct btrfs_path *path,
1534                              struct btrfs_key *cpu_key, u32 *data_size, int nr);
1535
1536 static inline int btrfs_insert_empty_item(struct btrfs_trans_handle *trans,
1537                                           struct btrfs_root *root,
1538                                           struct btrfs_path *path,
1539                                           struct btrfs_key *key,
1540                                           u32 data_size)
1541 {
1542         return btrfs_insert_empty_items(trans, root, path, key, &data_size, 1);
1543 }
1544
1545 int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path);
1546 int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
1547 int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf);
1548 int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
1549                         *root);
1550 int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1551                             struct btrfs_root *root, struct btrfs_path *path,
1552                             struct btrfs_key *new_key);
1553
1554 /* root-item.c */
1555 int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1556                    struct btrfs_key *key);
1557 int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
1558                       *root, struct btrfs_key *key, struct btrfs_root_item
1559                       *item);
1560 int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
1561                       *root, struct btrfs_key *key, struct btrfs_root_item
1562                       *item);
1563 int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
1564                          btrfs_root_item *item, struct btrfs_key *key);
1565 int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid,
1566                           struct btrfs_root *latest_root);
1567 /* dir-item.c */
1568 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
1569                           *root, const char *name, int name_len, u64 dir,
1570                           struct btrfs_key *location, u8 type);
1571 struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
1572                                              struct btrfs_root *root,
1573                                              struct btrfs_path *path, u64 dir,
1574                                              const char *name, int name_len,
1575                                              int mod);
1576 struct btrfs_dir_item *
1577 btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
1578                             struct btrfs_root *root,
1579                             struct btrfs_path *path, u64 dir,
1580                             u64 objectid, const char *name, int name_len,
1581                             int mod);
1582 struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
1583                               struct btrfs_path *path,
1584                               const char *name, int name_len);
1585 int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
1586                               struct btrfs_root *root,
1587                               struct btrfs_path *path,
1588                               struct btrfs_dir_item *di);
1589 int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
1590                             struct btrfs_root *root, const char *name,
1591                             u16 name_len, const void *data, u16 data_len,
1592                             u64 dir);
1593 struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
1594                                           struct btrfs_root *root,
1595                                           struct btrfs_path *path, u64 dir,
1596                                           const char *name, u16 name_len,
1597                                           int mod);
1598 /* inode-map.c */
1599 int btrfs_find_free_objectid(struct btrfs_trans_handle *trans,
1600                              struct btrfs_root *fs_root,
1601                              u64 dirid, u64 *objectid);
1602 int btrfs_find_highest_inode(struct btrfs_root *fs_root, u64 *objectid);
1603
1604 /* inode-item.c */
1605 int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
1606                            struct btrfs_root *root,
1607                            const char *name, int name_len,
1608                            u64 inode_objectid, u64 ref_objectid, u64 index);
1609 int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
1610                            struct btrfs_root *root,
1611                            const char *name, int name_len,
1612                            u64 inode_objectid, u64 ref_objectid);
1613 int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
1614                              struct btrfs_root *root,
1615                              struct btrfs_path *path, u64 objectid);
1616 int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1617                        *root, u64 objectid, struct btrfs_inode_item
1618                        *inode_item);
1619 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
1620                        *root, struct btrfs_path *path,
1621                        struct btrfs_key *location, int mod);
1622
1623 /* file-item.c */
1624 int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
1625                              struct btrfs_root *root,
1626                              u64 objectid, u64 pos, u64 offset,
1627                              u64 disk_num_bytes,
1628                              u64 num_bytes);
1629 int btrfs_insert_inline_extent(struct btrfs_trans_handle *trans,
1630                                 struct btrfs_root *root, u64 objectid,
1631                                 u64 offset, char *buffer, size_t size);
1632 int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
1633                              struct btrfs_root *root,
1634                              struct btrfs_path *path, u64 objectid,
1635                              u64 bytenr, int mod);
1636 int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
1637                           struct btrfs_root *root,
1638                           struct btrfs_inode_item *inode,
1639                           u64 objectid, u64 offset,
1640                           char *data, size_t len);
1641 struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
1642                                           struct btrfs_root *root,
1643                                           struct btrfs_path *path,
1644                                           u64 objectid, u64 offset,
1645                                           int cow);
1646 int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
1647                         struct btrfs_root *root, struct btrfs_path *path,
1648                         u64 isize);
1649 #endif