raid1.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _RAID1_H
  2. #define _RAID1_H
  3. #include <linux/raid/md.h>
  4. typedef struct mirror_info mirror_info_t;
  5. struct mirror_info {
  6. mdk_rdev_t *rdev;
  7. sector_t head_position;
  8. };
  9. /*
  10.  * memory pools need a pointer to the mddev, so they can force an unplug
  11.  * when memory is tight, and a count of the number of drives that the
  12.  * pool was allocated for, so they know how much to allocate and free.
  13.  * mddev->raid_disks cannot be used, as it can change while a pool is active
  14.  * These two datums are stored in a kmalloced struct.
  15.  */
  16. struct pool_info {
  17. mddev_t *mddev;
  18. int raid_disks;
  19. };
  20. typedef struct r1bio_s r1bio_t;
  21. struct r1_private_data_s {
  22. mddev_t *mddev;
  23. mirror_info_t *mirrors;
  24. int raid_disks;
  25. int working_disks;
  26. int last_used;
  27. sector_t next_seq_sect;
  28. spinlock_t device_lock;
  29. struct list_head retry_list;
  30. /* queue pending writes and submit them on unplug */
  31. struct bio_list pending_bio_list;
  32. /* queue of writes that have been unplugged */
  33. struct bio_list flushing_bio_list;
  34. /* for use when syncing mirrors: */
  35. spinlock_t resync_lock;
  36. int nr_pending;
  37. int barrier;
  38. sector_t next_resync;
  39. int fullsync;  /* set to 1 if a full sync is needed,
  40.     * (fresh device added).
  41.     * Cleared when a sync completes.
  42.     */
  43. wait_queue_head_t wait_idle;
  44. wait_queue_head_t wait_resume;
  45. struct pool_info *poolinfo;
  46. mempool_t *r1bio_pool;
  47. mempool_t *r1buf_pool;
  48. };
  49. typedef struct r1_private_data_s conf_t;
  50. /*
  51.  * this is the only point in the RAID code where we violate
  52.  * C type safety. mddev->private is an 'opaque' pointer.
  53.  */
  54. #define mddev_to_conf(mddev) ((conf_t *) mddev->private)
  55. /*
  56.  * this is our 'private' RAID1 bio.
  57.  *
  58.  * it contains information about what kind of IO operations were started
  59.  * for this RAID1 operation, and about their status:
  60.  */
  61. struct r1bio_s {
  62. atomic_t remaining; /* 'have we finished' count,
  63.     * used from IRQ handlers
  64.     */
  65. atomic_t behind_remaining; /* number of write-behind ios remaining
  66.  * in this BehindIO request
  67.  */
  68. sector_t sector;
  69. int sectors;
  70. unsigned long state;
  71. mddev_t *mddev;
  72. /*
  73.  * original bio going to /dev/mdx
  74.  */
  75. struct bio *master_bio;
  76. /*
  77.  * if the IO is in READ direction, then this is where we read
  78.  */
  79. int read_disk;
  80. struct list_head retry_list;
  81. struct bitmap_update *bitmap_update;
  82. /*
  83.  * if the IO is in WRITE direction, then multiple bios are used.
  84.  * We choose the number when they are allocated.
  85.  */
  86. struct bio *bios[0];
  87. /* DO NOT PUT ANY NEW FIELDS HERE - bios array is contiguously alloced*/
  88. };
  89. /* bits for r1bio.state */
  90. #define R1BIO_Uptodate 0
  91. #define R1BIO_IsSync 1
  92. #define R1BIO_Degraded 2
  93. #define R1BIO_BehindIO   3
  94. /* For write-behind requests, we call bi_end_io when
  95.  * the last non-write-behind device completes, providing
  96.  * any write was successful.  Otherwise we call when
  97.  * any write-behind write succeeds, otherwise we call
  98.  * with failure when last write completes (and all failed).
  99.  * Record that bi_end_io was called with this flag...
  100.  */
  101. #define R1BIO_Returned 4
  102. #endif