Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _RAID10_H |
| 2 | #define _RAID10_H |
| 3 | |
| 4 | #include <linux/raid/md.h> |
| 5 | |
| 6 | typedef struct mirror_info mirror_info_t; |
| 7 | |
| 8 | struct mirror_info { |
| 9 | mdk_rdev_t *rdev; |
| 10 | sector_t head_position; |
| 11 | }; |
| 12 | |
| 13 | typedef struct r10bio_s r10bio_t; |
| 14 | |
| 15 | struct r10_private_data_s { |
| 16 | mddev_t *mddev; |
| 17 | mirror_info_t *mirrors; |
| 18 | int raid_disks; |
| 19 | int working_disks; |
| 20 | spinlock_t device_lock; |
| 21 | |
| 22 | /* geometry */ |
| 23 | int near_copies; /* number of copies layed out raid0 style */ |
| 24 | int far_copies; /* number of copies layed out |
| 25 | * at large strides across drives |
| 26 | */ |
| 27 | int copies; /* near_copies * far_copies. |
| 28 | * must be <= raid_disks |
| 29 | */ |
| 30 | sector_t stride; /* distance between far copies. |
| 31 | * This is size / far_copies |
| 32 | */ |
| 33 | |
| 34 | int chunk_shift; /* shift from chunks to sectors */ |
| 35 | sector_t chunk_mask; |
| 36 | |
| 37 | struct list_head retry_list; |
NeilBrown | 6cce3b2 | 2006-01-06 00:20:16 -0800 | [diff] [blame] | 38 | /* queue pending writes and submit them on unplug */ |
| 39 | struct bio_list pending_bio_list; |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | spinlock_t resync_lock; |
| 43 | int nr_pending; |
NeilBrown | 0a27ec9 | 2006-01-06 00:20:13 -0800 | [diff] [blame] | 44 | int nr_waiting; |
NeilBrown | 4443ae1 | 2006-01-06 00:20:28 -0800 | [diff] [blame^] | 45 | int nr_queued; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | int barrier; |
| 47 | sector_t next_resync; |
NeilBrown | 6cce3b2 | 2006-01-06 00:20:16 -0800 | [diff] [blame] | 48 | int fullsync; /* set to 1 if a full sync is needed, |
| 49 | * (fresh device added). |
| 50 | * Cleared when a sync completes. |
| 51 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
NeilBrown | 0a27ec9 | 2006-01-06 00:20:13 -0800 | [diff] [blame] | 53 | wait_queue_head_t wait_barrier; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | mempool_t *r10bio_pool; |
| 56 | mempool_t *r10buf_pool; |
NeilBrown | 4443ae1 | 2006-01-06 00:20:28 -0800 | [diff] [blame^] | 57 | struct page *tmppage; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | }; |
| 59 | |
| 60 | typedef struct r10_private_data_s conf_t; |
| 61 | |
| 62 | /* |
| 63 | * this is the only point in the RAID code where we violate |
| 64 | * C type safety. mddev->private is an 'opaque' pointer. |
| 65 | */ |
| 66 | #define mddev_to_conf(mddev) ((conf_t *) mddev->private) |
| 67 | |
| 68 | /* |
| 69 | * this is our 'private' RAID10 bio. |
| 70 | * |
| 71 | * it contains information about what kind of IO operations were started |
| 72 | * for this RAID10 operation, and about their status: |
| 73 | */ |
| 74 | |
| 75 | struct r10bio_s { |
| 76 | atomic_t remaining; /* 'have we finished' count, |
| 77 | * used from IRQ handlers |
| 78 | */ |
| 79 | sector_t sector; /* virtual sector number */ |
| 80 | int sectors; |
| 81 | unsigned long state; |
| 82 | mddev_t *mddev; |
| 83 | /* |
| 84 | * original bio going to /dev/mdx |
| 85 | */ |
| 86 | struct bio *master_bio; |
| 87 | /* |
| 88 | * if the IO is in READ direction, then this is where we read |
| 89 | */ |
| 90 | int read_slot; |
| 91 | |
| 92 | struct list_head retry_list; |
| 93 | /* |
| 94 | * if the IO is in WRITE direction, then multiple bios are used, |
| 95 | * one for each copy. |
| 96 | * When resyncing we also use one for each copy. |
| 97 | * When reconstructing, we use 2 bios, one for read, one for write. |
| 98 | * We choose the number when they are allocated. |
| 99 | */ |
| 100 | struct { |
| 101 | struct bio *bio; |
| 102 | sector_t addr; |
| 103 | int devnum; |
| 104 | } devs[0]; |
| 105 | }; |
| 106 | |
| 107 | /* bits for r10bio.state */ |
| 108 | #define R10BIO_Uptodate 0 |
| 109 | #define R10BIO_IsSync 1 |
| 110 | #define R10BIO_IsRecover 2 |
NeilBrown | 6cce3b2 | 2006-01-06 00:20:16 -0800 | [diff] [blame] | 111 | #define R10BIO_Degraded 3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | #endif |