raid0.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _RAID0_H
  2. #define _RAID0_H
  3. #include <linux/raid/md.h>
  4. struct strip_zone
  5. {
  6. unsigned long zone_offset; /* Zone offset in md_dev */
  7. unsigned long dev_offset; /* Zone offset in real dev */
  8. unsigned long size; /* Zone size */
  9. int nb_dev; /* # of devices attached to the zone */
  10. mdk_rdev_t *dev[MD_SB_DISKS]; /* Devices attached to the zone */
  11. };
  12. struct raid0_hash
  13. {
  14. struct strip_zone *zone0, *zone1;
  15. };
  16. struct raid0_private_data
  17. {
  18. struct raid0_hash *hash_table; /* Dynamically allocated */
  19. struct strip_zone *strip_zone; /* This one too */
  20. int nr_strip_zones;
  21. struct strip_zone *smallest;
  22. int nr_zones;
  23. };
  24. typedef struct raid0_private_data raid0_conf_t;
  25. #define mddev_to_conf(mddev) ((raid0_conf_t *) mddev->private)
  26. #endif