raid56.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright (C) 2012 Fusion-io All rights reserved.
  3. * Copyright (C) 2012 Intel Corp. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public
  7. * License v2 as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public
  15. * License along with this program; if not, write to the
  16. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17. * Boston, MA 021110-1307, USA.
  18. */
  19. #ifndef __BTRFS_RAID56__
  20. #define __BTRFS_RAID56__
  21. static inline int nr_parity_stripes(struct map_lookup *map)
  22. {
  23. if (map->type & BTRFS_BLOCK_GROUP_RAID5)
  24. return 1;
  25. else if (map->type & BTRFS_BLOCK_GROUP_RAID6)
  26. return 2;
  27. else
  28. return 0;
  29. }
  30. static inline int nr_data_stripes(struct map_lookup *map)
  31. {
  32. return map->num_stripes - nr_parity_stripes(map);
  33. }
  34. #define RAID5_P_STRIPE ((u64)-2)
  35. #define RAID6_Q_STRIPE ((u64)-1)
  36. #define is_parity_stripe(x) (((x) == RAID5_P_STRIPE) || \
  37. ((x) == RAID6_Q_STRIPE))
  38. struct btrfs_raid_bio;
  39. struct btrfs_device;
  40. int raid56_parity_recover(struct btrfs_root *root, struct bio *bio,
  41. struct btrfs_bio *bbio, u64 stripe_len,
  42. int mirror_num, int generic_io);
  43. int raid56_parity_write(struct btrfs_root *root, struct bio *bio,
  44. struct btrfs_bio *bbio, u64 stripe_len);
  45. void raid56_add_scrub_pages(struct btrfs_raid_bio *rbio, struct page *page,
  46. u64 logical);
  47. struct btrfs_raid_bio *
  48. raid56_parity_alloc_scrub_rbio(struct btrfs_root *root, struct bio *bio,
  49. struct btrfs_bio *bbio, u64 stripe_len,
  50. struct btrfs_device *scrub_dev,
  51. unsigned long *dbitmap, int stripe_nsectors);
  52. void raid56_parity_submit_scrub_rbio(struct btrfs_raid_bio *rbio);
  53. struct btrfs_raid_bio *
  54. raid56_alloc_missing_rbio(struct btrfs_root *root, struct bio *bio,
  55. struct btrfs_bio *bbio, u64 length);
  56. void raid56_submit_missing_rbio(struct btrfs_raid_bio *rbio);
  57. int btrfs_alloc_stripe_hash_table(struct btrfs_fs_info *info);
  58. void btrfs_free_stripe_hash_table(struct btrfs_fs_info *info);
  59. #endif