blob: 3770b4a2766257fbe6d35f90ffed302b963c2eb9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _RAID1_H
2#define _RAID1_H
3
Jonathan Brassow0eaf8222012-07-31 10:03:52 +10004struct raid1_info {
NeilBrown3cb03002011-10-11 16:45:26 +11005 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 sector_t head_position;
Shaohua Libe4d3282012-07-31 10:03:53 +10007
8 /* When choose the best device for a read (read_balance())
9 * we try to keep sequential reads one the same device
10 */
11 sector_t next_seq_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012};
13
14/*
15 * memory pools need a pointer to the mddev, so they can force an unplug
16 * when memory is tight, and a count of the number of drives that the
17 * pool was allocated for, so they know how much to allocate and free.
18 * mddev->raid_disks cannot be used, as it can change while a pool is active
19 * These two datums are stored in a kmalloced struct.
NeilBrown8f19ccb2011-12-23 10:17:56 +110020 * The 'raid_disks' here is twice the raid_disks in r1conf.
21 * This allows space for each 'real' device can have a replacement in the
22 * second half of the array.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
25struct pool_info {
NeilBrownfd01b882011-10-11 16:47:53 +110026 struct mddev *mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 int raid_disks;
28};
29
NeilBrowne8096362011-10-11 16:49:05 +110030struct r1conf {
NeilBrownfd01b882011-10-11 16:47:53 +110031 struct mddev *mddev;
Jonathan Brassow0eaf8222012-07-31 10:03:52 +100032 struct raid1_info *mirrors; /* twice 'raid_disks' to
NeilBrown8f19ccb2011-12-23 10:17:56 +110033 * allow for replacements.
34 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 int raid_disks;
NeilBrownce550c22011-10-07 14:22:33 +110036
NeilBrownce550c22011-10-07 14:22:33 +110037 /* During resync, read_balancing is only allowed on the part
38 * of the array that has been resynced. 'next_resync' tells us
39 * where that is.
40 */
41 sector_t next_resync;
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 spinlock_t device_lock;
44
NeilBrown9f2c9d12011-10-11 16:48:43 +110045 /* list of 'struct r1bio' that need to be processed by raid1d,
46 * whether to retry a read, writeout a resync or recovery
47 * block, or anything else.
NeilBrownce550c22011-10-07 14:22:33 +110048 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct list_head retry_list;
NeilBrownce550c22011-10-07 14:22:33 +110050
51 /* queue pending writes to be submitted on unplug */
NeilBrown191ea9b2005-06-21 17:17:23 -070052 struct bio_list pending_bio_list;
NeilBrown34db0cd2011-10-11 16:50:01 +110053 int pending_count;
NeilBrown191ea9b2005-06-21 17:17:23 -070054
NeilBrownce550c22011-10-07 14:22:33 +110055 /* for use when syncing mirrors:
56 * We don't allow both normal IO and resync/recovery IO at
57 * the same time - resync/recovery can only happen when there
58 * is no other IO. So when either is active, the other has to wait.
59 * See more details description in raid1.c near raise_barrier().
60 */
61 wait_queue_head_t wait_barrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 spinlock_t resync_lock;
NeilBrown191ea9b2005-06-21 17:17:23 -070063 int nr_pending;
NeilBrown17999be2006-01-06 00:20:12 -080064 int nr_waiting;
NeilBrownddaf22a2006-01-06 00:20:19 -080065 int nr_queued;
NeilBrown191ea9b2005-06-21 17:17:23 -070066 int barrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
NeilBrownce550c22011-10-07 14:22:33 +110068 /* Set to 1 if a full sync is needed, (fresh device added).
69 * Cleared when a sync completes.
70 */
71 int fullsync;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
NeilBrownce550c22011-10-07 14:22:33 +110073 /* When the same as mddev->recovery_disabled we don't allow
74 * recovery to be attempted as we expect a read error.
75 */
76 int recovery_disabled;
77
78
79 /* poolinfo contains information about the content of the
80 * mempools - it changes when the array grows or shrinks
81 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 struct pool_info *poolinfo;
NeilBrown9f2c9d12011-10-11 16:48:43 +110083 mempool_t *r1bio_pool;
84 mempool_t *r1buf_pool;
NeilBrown709ae482009-12-14 12:49:51 +110085
NeilBrownce550c22011-10-07 14:22:33 +110086 /* temporary buffer to synchronous IO when attempting to repair
87 * a read error.
88 */
89 struct page *tmppage;
90
91
NeilBrown709ae482009-12-14 12:49:51 +110092 /* When taking over an array from a different personality, we store
93 * the new thread here until we fully activate the array.
94 */
NeilBrown2b8bf342011-10-11 16:48:23 +110095 struct md_thread *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * this is our 'private' RAID1 bio.
100 *
101 * it contains information about what kind of IO operations were started
102 * for this RAID1 operation, and about their status:
103 */
104
NeilBrown9f2c9d12011-10-11 16:48:43 +1100105struct r1bio {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 atomic_t remaining; /* 'have we finished' count,
107 * used from IRQ handlers
108 */
NeilBrown4b6d2872005-09-09 16:23:47 -0700109 atomic_t behind_remaining; /* number of write-behind ios remaining
110 * in this BehindIO request
111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 sector_t sector;
113 int sectors;
114 unsigned long state;
NeilBrownfd01b882011-10-11 16:47:53 +1100115 struct mddev *mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /*
117 * original bio going to /dev/mdx
118 */
119 struct bio *master_bio;
120 /*
121 * if the IO is in READ direction, then this is where we read
122 */
123 int read_disk;
124
125 struct list_head retry_list;
NeilBrownaf6d7b72011-05-11 14:51:19 +1000126 /* Next two are only valid when R1BIO_BehindIO is set */
NeilBrown2ca68f52011-07-28 11:32:10 +1000127 struct bio_vec *behind_bvecs;
NeilBrownaf6d7b72011-05-11 14:51:19 +1000128 int behind_page_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /*
130 * if the IO is in WRITE direction, then multiple bios are used.
131 * We choose the number when they are allocated.
132 */
133 struct bio *bios[0];
NeilBrown191ea9b2005-06-21 17:17:23 -0700134 /* DO NOT PUT ANY NEW FIELDS HERE - bios array is contiguously alloced*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
137/* bits for r1bio.state */
138#define R1BIO_Uptodate 0
139#define R1BIO_IsSync 1
NeilBrown191ea9b2005-06-21 17:17:23 -0700140#define R1BIO_Degraded 2
NeilBrowna9701a32005-11-08 21:39:34 -0800141#define R1BIO_BehindIO 3
NeilBrownd2eb35a2011-07-28 11:31:48 +1000142/* Set ReadError on bios that experience a readerror so that
143 * raid1d knows what to do with them.
144 */
145#define R1BIO_ReadError 4
NeilBrown4b6d2872005-09-09 16:23:47 -0700146/* For write-behind requests, we call bi_end_io when
147 * the last non-write-behind device completes, providing
148 * any write was successful. Otherwise we call when
149 * any write-behind write succeeds, otherwise we call
150 * with failure when last write completes (and all failed).
151 * Record that bi_end_io was called with this flag...
152 */
NeilBrown9e71f9c2006-03-23 02:59:22 -0800153#define R1BIO_Returned 6
NeilBrown4367af52011-07-28 11:31:49 +1000154/* If a write for this request means we can clear some
155 * known-bad-block records, we set this flag
156 */
NeilBrowncd5ff9a12011-07-28 11:32:41 +1000157#define R1BIO_MadeGood 7
158#define R1BIO_WriteError 8
NeilBrown4b6d2872005-09-09 16:23:47 -0700159
NeilBrownfd01b882011-10-11 16:47:53 +1100160extern int md_raid1_congested(struct mddev *mddev, int bits);
Jonathan Brassow1ed72422011-06-07 17:50:35 -0500161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#endif