linear.h 301 B

12345678910111213141516171819202122
  1. #ifndef _LINEAR_H
  2. #define _LINEAR_H
  3. struct dev_info {
  4. mdk_rdev_t *rdev;
  5. sector_t end_sector;
  6. };
  7. typedef struct dev_info dev_info_t;
  8. struct linear_private_data
  9. {
  10. struct rcu_head rcu;
  11. sector_t array_sectors;
  12. dev_info_t disks[0];
  13. };
  14. typedef struct linear_private_data linear_conf_t;
  15. #endif