1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2012 Fusion-io All rights reserved.
4 * Copyright (C) 2012 Intel Corp. All rights reserved.
10 static inline int nr_parity_stripes(struct map_lookup
*map
)
12 if (map
->type
& BTRFS_BLOCK_GROUP_RAID5
)
14 else if (map
->type
& BTRFS_BLOCK_GROUP_RAID6
)
20 static inline int nr_data_stripes(struct map_lookup
*map
)
22 return map
->num_stripes
- nr_parity_stripes(map
);
24 #define RAID5_P_STRIPE ((u64)-2)
25 #define RAID6_Q_STRIPE ((u64)-1)
27 #define is_parity_stripe(x) (((x) == RAID5_P_STRIPE) || \
28 ((x) == RAID6_Q_STRIPE))
30 struct btrfs_raid_bio
;
33 int raid56_parity_recover(struct btrfs_fs_info
*fs_info
, struct bio
*bio
,
34 struct btrfs_bio
*bbio
, u64 stripe_len
,
35 int mirror_num
, int generic_io
);
36 int raid56_parity_write(struct btrfs_fs_info
*fs_info
, struct bio
*bio
,
37 struct btrfs_bio
*bbio
, u64 stripe_len
);
39 void raid56_add_scrub_pages(struct btrfs_raid_bio
*rbio
, struct page
*page
,
42 struct btrfs_raid_bio
*
43 raid56_parity_alloc_scrub_rbio(struct btrfs_fs_info
*fs_info
, struct bio
*bio
,
44 struct btrfs_bio
*bbio
, u64 stripe_len
,
45 struct btrfs_device
*scrub_dev
,
46 unsigned long *dbitmap
, int stripe_nsectors
);
47 void raid56_parity_submit_scrub_rbio(struct btrfs_raid_bio
*rbio
);
49 struct btrfs_raid_bio
*
50 raid56_alloc_missing_rbio(struct btrfs_fs_info
*fs_info
, struct bio
*bio
,
51 struct btrfs_bio
*bbio
, u64 length
);
52 void raid56_submit_missing_rbio(struct btrfs_raid_bio
*rbio
);
54 int btrfs_alloc_stripe_hash_table(struct btrfs_fs_info
*info
);
55 void btrfs_free_stripe_hash_table(struct btrfs_fs_info
*info
);