ore_raid.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright (C) from 2011
  3. * Boaz Harrosh <ooo@electrozaur.com>
  4. *
  5. * This file is part of the objects raid engine (ore).
  6. *
  7. * It is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as published
  9. * by the Free Software Foundation.
  10. *
  11. * You should have received a copy of the GNU General Public License
  12. * along with "ore". If not, write to the Free Software Foundation, Inc:
  13. * "Free Software Foundation <info@fsf.org>"
  14. */
  15. #include <scsi/osd_ore.h>
  16. #define ORE_ERR(fmt, a...) printk(KERN_ERR "ore: " fmt, ##a)
  17. #ifdef CONFIG_EXOFS_DEBUG
  18. #define ORE_DBGMSG(fmt, a...) \
  19. printk(KERN_NOTICE "ore @%s:%d: " fmt, __func__, __LINE__, ##a)
  20. #else
  21. #define ORE_DBGMSG(fmt, a...) \
  22. do { if (0) printk(fmt, ##a); } while (0)
  23. #endif
  24. /* u64 has problems with printk this will cast it to unsigned long long */
  25. #define _LLU(x) (unsigned long long)(x)
  26. #define ORE_DBGMSG2(M...) do {} while (0)
  27. /* #define ORE_DBGMSG2 ORE_DBGMSG */
  28. /* ios_raid.c stuff needed by ios.c */
  29. int _ore_post_alloc_raid_stuff(struct ore_io_state *ios);
  30. void _ore_free_raid_stuff(struct ore_io_state *ios);
  31. void _ore_add_sg_seg(struct ore_per_dev_state *per_dev, unsigned cur_len,
  32. bool not_last);
  33. int _ore_add_parity_unit(struct ore_io_state *ios, struct ore_striping_info *si,
  34. struct ore_per_dev_state *per_dev, unsigned cur_len,
  35. bool do_xor);
  36. void _ore_add_stripe_page(struct __stripe_pages_2d *sp2d,
  37. struct ore_striping_info *si, struct page *page);
  38. static inline void _add_stripe_page(struct __stripe_pages_2d *sp2d,
  39. struct ore_striping_info *si, struct page *page)
  40. {
  41. if (!sp2d) /* Inline the fast path */
  42. return; /* Hay no raid stuff */
  43. _ore_add_stripe_page(sp2d, si, page);
  44. }
  45. /* ios.c stuff needed by ios_raid.c */
  46. int _ore_get_io_state(struct ore_layout *layout,
  47. struct ore_components *oc, unsigned numdevs,
  48. unsigned sgs_per_dev, unsigned num_par_pages,
  49. struct ore_io_state **pios);
  50. int _ore_add_stripe_unit(struct ore_io_state *ios, unsigned *cur_pg,
  51. unsigned pgbase, struct page **pages,
  52. struct ore_per_dev_state *per_dev, int cur_len);
  53. int _ore_read_mirror(struct ore_io_state *ios, unsigned cur_comp);
  54. int ore_io_execute(struct ore_io_state *ios);