diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-09 16:01:38 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-09 16:01:38 -0500 |
commit | 73d59314e6ed268d6f322ae1bdd723b23fa5a4ed (patch) | |
tree | ec7159b13dfd57739ed840e88a436d8d6f4eee5f /fs/btrfs/extent_map.h | |
parent | 6ddaab20c32af03d68de00e7c97ae8d9820e4dab (diff) | |
parent | e293e97e363e419d8a3628a927321e3f75206a0b (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
* git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable: (864 commits)
Btrfs: explicitly mark the tree log root for writeback
Btrfs: Drop the hardware crc32c asm code
Btrfs: Add Documentation/filesystem/btrfs.txt, remove old COPYING
Btrfs: kmap_atomic(KM_USER0) is safe for btrfs_readpage_end_io_hook
Btrfs: Don't use kmap_atomic(..., KM_IRQ0) during checksum verifies
Btrfs: tree logging checksum fixes
Btrfs: don't change file extent's ram_bytes in btrfs_drop_extents
Btrfs: Use btrfs_join_transaction to avoid deadlocks during snapshot creation
Btrfs: drop remaining LINUX_KERNEL_VERSION checks and compat code
Btrfs: drop EXPORT symbols from extent_io.c
Btrfs: Fix checkpatch.pl warnings
Btrfs: Fix free block discard calls down to the block layer
Btrfs: avoid orphan inode caused by log replay
Btrfs: avoid potential super block corruption
Btrfs: do not call kfree if kmalloc failed in btrfs_sysfs_add_super
Btrfs: fix a memory leak in btrfs_get_sb
Btrfs: Fix typo in clear_state_cb
Btrfs: Fix memset length in btrfs_file_write
Btrfs: update directory's size when creating subvol/snapshot
Btrfs: add permission checks to the ioctls
...
Diffstat (limited to 'fs/btrfs/extent_map.h')
-rw-r--r-- | fs/btrfs/extent_map.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/fs/btrfs/extent_map.h b/fs/btrfs/extent_map.h new file mode 100644 index 000000000000..fb6eeef06bb0 --- /dev/null +++ b/fs/btrfs/extent_map.h | |||
@@ -0,0 +1,62 @@ | |||
1 | #ifndef __EXTENTMAP__ | ||
2 | #define __EXTENTMAP__ | ||
3 | |||
4 | #include <linux/rbtree.h> | ||
5 | |||
6 | #define EXTENT_MAP_LAST_BYTE (u64)-4 | ||
7 | #define EXTENT_MAP_HOLE (u64)-3 | ||
8 | #define EXTENT_MAP_INLINE (u64)-2 | ||
9 | #define EXTENT_MAP_DELALLOC (u64)-1 | ||
10 | |||
11 | /* bits for the flags field */ | ||
12 | #define EXTENT_FLAG_PINNED 0 /* this entry not yet on disk, don't free it */ | ||
13 | #define EXTENT_FLAG_COMPRESSED 1 | ||
14 | #define EXTENT_FLAG_VACANCY 2 /* no file extent item found */ | ||
15 | #define EXTENT_FLAG_PREALLOC 3 /* pre-allocated extent */ | ||
16 | |||
17 | struct extent_map { | ||
18 | struct rb_node rb_node; | ||
19 | |||
20 | /* all of these are in bytes */ | ||
21 | u64 start; | ||
22 | u64 len; | ||
23 | u64 orig_start; | ||
24 | u64 block_start; | ||
25 | u64 block_len; | ||
26 | unsigned long flags; | ||
27 | struct block_device *bdev; | ||
28 | atomic_t refs; | ||
29 | int in_tree; | ||
30 | }; | ||
31 | |||
32 | struct extent_map_tree { | ||
33 | struct rb_root map; | ||
34 | spinlock_t lock; | ||
35 | }; | ||
36 | |||
37 | static inline u64 extent_map_end(struct extent_map *em) | ||
38 | { | ||
39 | if (em->start + em->len < em->start) | ||
40 | return (u64)-1; | ||
41 | return em->start + em->len; | ||
42 | } | ||
43 | |||
44 | static inline u64 extent_map_block_end(struct extent_map *em) | ||
45 | { | ||
46 | if (em->block_start + em->block_len < em->block_start) | ||
47 | return (u64)-1; | ||
48 | return em->block_start + em->block_len; | ||
49 | } | ||
50 | |||
51 | void extent_map_tree_init(struct extent_map_tree *tree, gfp_t mask); | ||
52 | struct extent_map *lookup_extent_mapping(struct extent_map_tree *tree, | ||
53 | u64 start, u64 len); | ||
54 | int add_extent_mapping(struct extent_map_tree *tree, | ||
55 | struct extent_map *em); | ||
56 | int remove_extent_mapping(struct extent_map_tree *tree, struct extent_map *em); | ||
57 | |||
58 | struct extent_map *alloc_extent_map(gfp_t mask); | ||
59 | void free_extent_map(struct extent_map *em); | ||
60 | int __init extent_map_init(void); | ||
61 | void extent_map_exit(void); | ||
62 | #endif | ||