@@ -2614,6 +2614,21 @@ static int find_live_mirror(struct map_lookup *map, int first, int num,
return optimal;
}
+int btrfs_map_stripe_count(struct extent_map *em)
+{
+ return ((struct map_lookup *)em->bdev)->num_stripes;
+}
+
+struct block_device *btrfs_map_stripe_bdev(struct extent_map *em, int stripe)
+{
+ return ((struct map_lookup *)em->bdev)->stripes[stripe].dev->bdev;
+}
+
+u64 btrfs_map_stripe_physical(struct extent_map *em, int stripe)
+{
+ return ((struct map_lookup *)em->bdev)->stripes[stripe].physical;
+}
+
void btrfs_map_to_stripe(struct extent_map *em, int rw, int mirror_num,
u64 logical, u64 *length,
struct btrfs_stripe_info *stripe_info)
@@ -192,4 +192,7 @@ int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset);
int find_free_dev_extent(struct btrfs_trans_handle *trans,
struct btrfs_device *device, u64 num_bytes,
u64 *start, u64 *max_avail);
+int btrfs_map_stripe_count(struct extent_map *em);
+struct block_device *btrfs_map_stripe_bdev(struct extent_map *em, int stripe);
+u64 btrfs_map_stripe_physical(struct extent_map *em, int stripe);
#endif