diff options
Diffstat (limited to 'fs/btrfs/extent_map.h')
-rw-r--r-- | fs/btrfs/extent_map.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/btrfs/extent_map.h b/fs/btrfs/extent_map.h index 75dc600dc0f9..4ef8bdd68348 100644 --- a/fs/btrfs/extent_map.h +++ b/fs/btrfs/extent_map.h | |||
@@ -70,7 +70,12 @@ struct extent_buffer { | |||
70 | struct list_head list; | 70 | struct list_head list; |
71 | struct list_head leak_list; | 71 | struct list_head leak_list; |
72 | struct page *first_page; | 72 | struct page *first_page; |
73 | struct page *last_page; | ||
73 | unsigned long alloc_addr; | 74 | unsigned long alloc_addr; |
75 | char *map_token; | ||
76 | char *kaddr; | ||
77 | unsigned long map_start; | ||
78 | unsigned long map_len; | ||
74 | }; | 79 | }; |
75 | 80 | ||
76 | typedef struct extent_map *(get_extent_t)(struct inode *inode, | 81 | typedef struct extent_map *(get_extent_t)(struct inode *inode, |
@@ -147,11 +152,6 @@ static inline void extent_buffer_get(struct extent_buffer *eb) | |||
147 | atomic_inc(&eb->refs); | 152 | atomic_inc(&eb->refs); |
148 | } | 153 | } |
149 | 154 | ||
150 | static inline u64 extent_buffer_blocknr(struct extent_buffer *eb) | ||
151 | { | ||
152 | return eb->start / 4096; | ||
153 | } | ||
154 | |||
155 | int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv, | 155 | int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv, |
156 | unsigned long start, | 156 | unsigned long start, |
157 | unsigned long len); | 157 | unsigned long len); |