blob: 54f3cb312b425011fc098c8ad5c0d3221a68febb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * raid5.c : Multiple Devices driver for Linux
3 * Copyright (C) 1996, 1997 Ingo Molnar, Miguel de Icaza, Gadi Oxman
4 * Copyright (C) 1999, 2000 Ingo Molnar
NeilBrown16a53ec2006-06-26 00:27:38 -07005 * Copyright (C) 2002, 2003 H. Peter Anvin
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
NeilBrown16a53ec2006-06-26 00:27:38 -07007 * RAID-4/5/6 management functions.
8 * Thanks to Penguin Computing for making the RAID-6 development possible
9 * by donating a test server!
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * You should have received a copy of the GNU General Public License
17 * (for example /usr/src/linux/COPYING); if not, write to the Free
18 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
NeilBrownae3c20c2006-07-10 04:44:17 -070021/*
22 * BITMAP UNPLUGGING:
23 *
24 * The sequencing for updating the bitmap reliably is a little
25 * subtle (and I got it wrong the first time) so it deserves some
26 * explanation.
27 *
28 * We group bitmap updates into batches. Each batch has a number.
29 * We may write out several batches at once, but that isn't very important.
NeilBrown7c13edc2011-04-18 18:25:43 +100030 * conf->seq_write is the number of the last batch successfully written.
31 * conf->seq_flush is the number of the last batch that was closed to
NeilBrownae3c20c2006-07-10 04:44:17 -070032 * new additions.
33 * When we discover that we will need to write to any block in a stripe
34 * (in add_stripe_bio) we update the in-memory bitmap and record in sh->bm_seq
NeilBrown7c13edc2011-04-18 18:25:43 +100035 * the number of the batch it will be in. This is seq_flush+1.
NeilBrownae3c20c2006-07-10 04:44:17 -070036 * When we are ready to do a write, if that batch hasn't been written yet,
37 * we plug the array and queue the stripe for later.
38 * When an unplug happens, we increment bm_flush, thus closing the current
39 * batch.
40 * When we notice that bm_flush > bm_write, we write out all pending updates
41 * to the bitmap, and advance bm_write to where bm_flush was.
42 * This may occasionally write a bit out twice, but is sure never to
43 * miss any bits.
44 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
NeilBrownbff61972009-03-31 14:33:13 +110046#include <linux/blkdev.h>
NeilBrownf6705572006-03-27 01:18:11 -080047#include <linux/kthread.h>
Dan Williamsf701d582009-03-31 15:09:39 +110048#include <linux/raid/pq.h>
Dan Williams91c00922007-01-02 13:52:30 -070049#include <linux/async_tx.h>
Paul Gortmaker056075c2011-07-03 13:58:33 -040050#include <linux/module.h>
Dan Williams07a3b412009-08-29 19:13:13 -070051#include <linux/async.h>
NeilBrownbff61972009-03-31 14:33:13 +110052#include <linux/seq_file.h>
Dan Williams36d1c642009-07-14 11:48:22 -070053#include <linux/cpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090054#include <linux/slab.h>
Christian Dietrich8bda4702011-07-27 11:00:36 +100055#include <linux/ratelimit.h>
Shaohua Li851c30c2013-08-28 14:30:16 +080056#include <linux/nodemask.h>
shli@kernel.org46d5b782014-12-15 12:57:02 +110057#include <linux/flex_array.h>
NeilBrowna9add5d2012-10-31 11:59:09 +110058#include <trace/events/block.h>
59
NeilBrown43b2e5d2009-03-31 14:33:13 +110060#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110061#include "raid5.h"
Trela Maciej54071b32010-03-08 16:02:42 +110062#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110063#include "bitmap.h"
NeilBrown72626682005-09-09 16:23:54 -070064
Shaohua Li851c30c2013-08-28 14:30:16 +080065#define cpu_to_group(cpu) cpu_to_node(cpu)
66#define ANY_GROUP NUMA_NO_NODE
67
NeilBrown8e0e99b2014-10-02 13:45:00 +100068static bool devices_handle_discard_safely = false;
69module_param(devices_handle_discard_safely, bool, 0644);
70MODULE_PARM_DESC(devices_handle_discard_safely,
71 "Set to Y if all devices in each array reliably return zeroes on reads from discarded regions");
Shaohua Li851c30c2013-08-28 14:30:16 +080072static struct workqueue_struct *raid5_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/*
74 * Stripe cache
75 */
76
77#define NR_STRIPES 256
78#define STRIPE_SIZE PAGE_SIZE
79#define STRIPE_SHIFT (PAGE_SHIFT - 9)
80#define STRIPE_SECTORS (STRIPE_SIZE>>9)
81#define IO_THRESHOLD 1
Dan Williams8b3e6cd2008-04-28 02:15:53 -070082#define BYPASS_THRESHOLD 1
NeilBrownfccddba2006-01-06 00:20:33 -080083#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define HASH_MASK (NR_HASH - 1)
Shaohua Libfc90cb2013-08-29 15:40:32 +080085#define MAX_STRIPE_BATCH 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
NeilBrownd1688a62011-10-11 16:49:52 +110087static inline struct hlist_head *stripe_hash(struct r5conf *conf, sector_t sect)
NeilBrowndb298e12011-10-07 14:23:00 +110088{
89 int hash = (sect >> STRIPE_SHIFT) & HASH_MASK;
90 return &conf->stripe_hashtbl[hash];
91}
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Shaohua Li566c09c2013-11-14 15:16:17 +110093static inline int stripe_hash_locks_hash(sector_t sect)
94{
95 return (sect >> STRIPE_SHIFT) & STRIPE_HASH_LOCKS_MASK;
96}
97
98static inline void lock_device_hash_lock(struct r5conf *conf, int hash)
99{
100 spin_lock_irq(conf->hash_locks + hash);
101 spin_lock(&conf->device_lock);
102}
103
104static inline void unlock_device_hash_lock(struct r5conf *conf, int hash)
105{
106 spin_unlock(&conf->device_lock);
107 spin_unlock_irq(conf->hash_locks + hash);
108}
109
110static inline void lock_all_device_hash_locks_irq(struct r5conf *conf)
111{
112 int i;
113 local_irq_disable();
114 spin_lock(conf->hash_locks);
115 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
116 spin_lock_nest_lock(conf->hash_locks + i, conf->hash_locks);
117 spin_lock(&conf->device_lock);
118}
119
120static inline void unlock_all_device_hash_locks_irq(struct r5conf *conf)
121{
122 int i;
123 spin_unlock(&conf->device_lock);
124 for (i = NR_STRIPE_HASH_LOCKS; i; i--)
125 spin_unlock(conf->hash_locks + i - 1);
126 local_irq_enable();
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/* bio's attached to a stripe+device for I/O are linked together in bi_sector
130 * order without overlap. There may be several bio's per stripe+device, and
131 * a bio could span several devices.
132 * When walking this list for a particular stripe+device, we must never proceed
133 * beyond a bio that extends past this device, as the next bio might no longer
134 * be valid.
NeilBrowndb298e12011-10-07 14:23:00 +1100135 * This function is used to determine the 'next' bio in the list, given the sector
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * of the current stripe+device
137 */
NeilBrowndb298e12011-10-07 14:23:00 +1100138static inline struct bio *r5_next_bio(struct bio *bio, sector_t sector)
139{
Kent Overstreetaa8b57a2013-02-05 15:19:29 -0800140 int sectors = bio_sectors(bio);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700141 if (bio->bi_iter.bi_sector + sectors < sector + STRIPE_SECTORS)
NeilBrowndb298e12011-10-07 14:23:00 +1100142 return bio->bi_next;
143 else
144 return NULL;
145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Jens Axboe960e7392008-08-15 10:41:18 +0200147/*
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200148 * We maintain a biased count of active stripes in the bottom 16 bits of
149 * bi_phys_segments, and a count of processed stripes in the upper 16 bits
Jens Axboe960e7392008-08-15 10:41:18 +0200150 */
Shaohua Lie7836bd62012-07-19 16:01:31 +1000151static inline int raid5_bi_processed_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200152{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000153 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
154 return (atomic_read(segments) >> 16) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200155}
156
Shaohua Lie7836bd62012-07-19 16:01:31 +1000157static inline int raid5_dec_bi_active_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200158{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000159 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
160 return atomic_sub_return(1, segments) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200161}
162
Shaohua Lie7836bd62012-07-19 16:01:31 +1000163static inline void raid5_inc_bi_active_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200164{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000165 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
166 atomic_inc(segments);
Jens Axboe960e7392008-08-15 10:41:18 +0200167}
168
Shaohua Lie7836bd62012-07-19 16:01:31 +1000169static inline void raid5_set_bi_processed_stripes(struct bio *bio,
170 unsigned int cnt)
Jens Axboe960e7392008-08-15 10:41:18 +0200171{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000172 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
173 int old, new;
Jens Axboe960e7392008-08-15 10:41:18 +0200174
Shaohua Lie7836bd62012-07-19 16:01:31 +1000175 do {
176 old = atomic_read(segments);
177 new = (old & 0xffff) | (cnt << 16);
178 } while (atomic_cmpxchg(segments, old, new) != old);
Jens Axboe960e7392008-08-15 10:41:18 +0200179}
180
Shaohua Lie7836bd62012-07-19 16:01:31 +1000181static inline void raid5_set_bi_stripes(struct bio *bio, unsigned int cnt)
Jens Axboe960e7392008-08-15 10:41:18 +0200182{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000183 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
184 atomic_set(segments, cnt);
Jens Axboe960e7392008-08-15 10:41:18 +0200185}
186
NeilBrownd0dabf72009-03-31 14:39:38 +1100187/* Find first data disk in a raid6 stripe */
188static inline int raid6_d0(struct stripe_head *sh)
189{
NeilBrown67cc2b82009-03-31 14:39:38 +1100190 if (sh->ddf_layout)
191 /* ddf always start from first device */
192 return 0;
193 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100194 if (sh->qd_idx == sh->disks - 1)
195 return 0;
196 else
197 return sh->qd_idx + 1;
198}
NeilBrown16a53ec2006-06-26 00:27:38 -0700199static inline int raid6_next_disk(int disk, int raid_disks)
200{
201 disk++;
202 return (disk < raid_disks) ? disk : 0;
203}
Dan Williamsa4456852007-07-09 11:56:43 -0700204
NeilBrownd0dabf72009-03-31 14:39:38 +1100205/* When walking through the disks in a raid5, starting at raid6_d0,
206 * We need to map each disk to a 'slot', where the data disks are slot
207 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
208 * is raid_disks-1. This help does that mapping.
209 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100210static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
211 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100212{
Dan Williams66295422009-10-19 18:09:32 -0700213 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100214
NeilBrowne4424fe2009-10-16 16:27:34 +1100215 if (sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700216 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100217 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100218 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100219 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100220 return syndrome_disks + 1;
NeilBrowne4424fe2009-10-16 16:27:34 +1100221 if (!sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700222 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100223 return slot;
224}
225
Dan Williamsa4456852007-07-09 11:56:43 -0700226static void return_io(struct bio *return_bi)
227{
228 struct bio *bi = return_bi;
229 while (bi) {
Dan Williamsa4456852007-07-09 11:56:43 -0700230
231 return_bi = bi->bi_next;
232 bi->bi_next = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700233 bi->bi_iter.bi_size = 0;
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700234 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
235 bi, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +1000236 bio_endio(bi, 0);
Dan Williamsa4456852007-07-09 11:56:43 -0700237 bi = return_bi;
238 }
239}
240
NeilBrownd1688a62011-10-11 16:49:52 +1100241static void print_raid5_conf (struct r5conf *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Dan Williams600aa102008-06-28 08:32:05 +1000243static int stripe_operations_active(struct stripe_head *sh)
244{
245 return sh->check_state || sh->reconstruct_state ||
246 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
247 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
248}
249
Shaohua Li851c30c2013-08-28 14:30:16 +0800250static void raid5_wakeup_stripe_thread(struct stripe_head *sh)
251{
252 struct r5conf *conf = sh->raid_conf;
253 struct r5worker_group *group;
Shaohua Libfc90cb2013-08-29 15:40:32 +0800254 int thread_cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +0800255 int i, cpu = sh->cpu;
256
257 if (!cpu_online(cpu)) {
258 cpu = cpumask_any(cpu_online_mask);
259 sh->cpu = cpu;
260 }
261
262 if (list_empty(&sh->lru)) {
263 struct r5worker_group *group;
264 group = conf->worker_groups + cpu_to_group(cpu);
265 list_add_tail(&sh->lru, &group->handle_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800266 group->stripes_cnt++;
267 sh->group = group;
Shaohua Li851c30c2013-08-28 14:30:16 +0800268 }
269
270 if (conf->worker_cnt_per_group == 0) {
271 md_wakeup_thread(conf->mddev->thread);
272 return;
273 }
274
275 group = conf->worker_groups + cpu_to_group(sh->cpu);
276
Shaohua Libfc90cb2013-08-29 15:40:32 +0800277 group->workers[0].working = true;
278 /* at least one worker should run to avoid race */
279 queue_work_on(sh->cpu, raid5_wq, &group->workers[0].work);
280
281 thread_cnt = group->stripes_cnt / MAX_STRIPE_BATCH - 1;
282 /* wakeup more workers */
283 for (i = 1; i < conf->worker_cnt_per_group && thread_cnt > 0; i++) {
284 if (group->workers[i].working == false) {
285 group->workers[i].working = true;
286 queue_work_on(sh->cpu, raid5_wq,
287 &group->workers[i].work);
288 thread_cnt--;
289 }
290 }
Shaohua Li851c30c2013-08-28 14:30:16 +0800291}
292
Shaohua Li566c09c2013-11-14 15:16:17 +1100293static void do_release_stripe(struct r5conf *conf, struct stripe_head *sh,
294 struct list_head *temp_inactive_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Shaohua Li4eb788d2012-07-19 16:01:31 +1000296 BUG_ON(!list_empty(&sh->lru));
297 BUG_ON(atomic_read(&conf->active_stripes)==0);
298 if (test_bit(STRIPE_HANDLE, &sh->state)) {
299 if (test_bit(STRIPE_DELAYED, &sh->state) &&
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500300 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
Shaohua Li4eb788d2012-07-19 16:01:31 +1000301 list_add_tail(&sh->lru, &conf->delayed_list);
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500302 else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
Shaohua Li4eb788d2012-07-19 16:01:31 +1000303 sh->bm_seq - conf->seq_write > 0)
304 list_add_tail(&sh->lru, &conf->bitmap_list);
305 else {
306 clear_bit(STRIPE_DELAYED, &sh->state);
307 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Shaohua Li851c30c2013-08-28 14:30:16 +0800308 if (conf->worker_cnt_per_group == 0) {
309 list_add_tail(&sh->lru, &conf->handle_list);
310 } else {
311 raid5_wakeup_stripe_thread(sh);
312 return;
313 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000314 }
315 md_wakeup_thread(conf->mddev->thread);
316 } else {
317 BUG_ON(stripe_operations_active(sh));
318 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
319 if (atomic_dec_return(&conf->preread_active_stripes)
320 < IO_THRESHOLD)
321 md_wakeup_thread(conf->mddev->thread);
322 atomic_dec(&conf->active_stripes);
Shaohua Li566c09c2013-11-14 15:16:17 +1100323 if (!test_bit(STRIPE_EXPANDING, &sh->state))
324 list_add_tail(&sh->lru, temp_inactive_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326}
NeilBrownd0dabf72009-03-31 14:39:38 +1100327
Shaohua Li566c09c2013-11-14 15:16:17 +1100328static void __release_stripe(struct r5conf *conf, struct stripe_head *sh,
329 struct list_head *temp_inactive_list)
Shaohua Li4eb788d2012-07-19 16:01:31 +1000330{
331 if (atomic_dec_and_test(&sh->count))
Shaohua Li566c09c2013-11-14 15:16:17 +1100332 do_release_stripe(conf, sh, temp_inactive_list);
333}
334
335/*
336 * @hash could be NR_STRIPE_HASH_LOCKS, then we have a list of inactive_list
337 *
338 * Be careful: Only one task can add/delete stripes from temp_inactive_list at
339 * given time. Adding stripes only takes device lock, while deleting stripes
340 * only takes hash lock.
341 */
342static void release_inactive_stripe_list(struct r5conf *conf,
343 struct list_head *temp_inactive_list,
344 int hash)
345{
346 int size;
347 bool do_wakeup = false;
348 unsigned long flags;
349
350 if (hash == NR_STRIPE_HASH_LOCKS) {
351 size = NR_STRIPE_HASH_LOCKS;
352 hash = NR_STRIPE_HASH_LOCKS - 1;
353 } else
354 size = 1;
355 while (size) {
356 struct list_head *list = &temp_inactive_list[size - 1];
357
358 /*
359 * We don't hold any lock here yet, get_active_stripe() might
360 * remove stripes from the list
361 */
362 if (!list_empty_careful(list)) {
363 spin_lock_irqsave(conf->hash_locks + hash, flags);
Shaohua Li4bda5562013-11-14 15:16:17 +1100364 if (list_empty(conf->inactive_list + hash) &&
365 !list_empty(list))
366 atomic_dec(&conf->empty_inactive_list_nr);
Shaohua Li566c09c2013-11-14 15:16:17 +1100367 list_splice_tail_init(list, conf->inactive_list + hash);
368 do_wakeup = true;
369 spin_unlock_irqrestore(conf->hash_locks + hash, flags);
370 }
371 size--;
372 hash--;
373 }
374
375 if (do_wakeup) {
376 wake_up(&conf->wait_for_stripe);
377 if (conf->retry_read_aligned)
378 md_wakeup_thread(conf->mddev->thread);
379 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000380}
381
Shaohua Li773ca822013-08-27 17:50:39 +0800382/* should hold conf->device_lock already */
Shaohua Li566c09c2013-11-14 15:16:17 +1100383static int release_stripe_list(struct r5conf *conf,
384 struct list_head *temp_inactive_list)
Shaohua Li773ca822013-08-27 17:50:39 +0800385{
386 struct stripe_head *sh;
387 int count = 0;
388 struct llist_node *head;
389
390 head = llist_del_all(&conf->released_stripes);
Shaohua Lid265d9d2013-08-28 14:29:05 +0800391 head = llist_reverse_order(head);
Shaohua Li773ca822013-08-27 17:50:39 +0800392 while (head) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100393 int hash;
394
Shaohua Li773ca822013-08-27 17:50:39 +0800395 sh = llist_entry(head, struct stripe_head, release_list);
396 head = llist_next(head);
397 /* sh could be readded after STRIPE_ON_RELEASE_LIST is cleard */
398 smp_mb();
399 clear_bit(STRIPE_ON_RELEASE_LIST, &sh->state);
400 /*
401 * Don't worry the bit is set here, because if the bit is set
402 * again, the count is always > 1. This is true for
403 * STRIPE_ON_UNPLUG_LIST bit too.
404 */
Shaohua Li566c09c2013-11-14 15:16:17 +1100405 hash = sh->hash_lock_index;
406 __release_stripe(conf, sh, &temp_inactive_list[hash]);
Shaohua Li773ca822013-08-27 17:50:39 +0800407 count++;
408 }
409
410 return count;
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413static void release_stripe(struct stripe_head *sh)
414{
NeilBrownd1688a62011-10-11 16:49:52 +1100415 struct r5conf *conf = sh->raid_conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 unsigned long flags;
Shaohua Li566c09c2013-11-14 15:16:17 +1100417 struct list_head list;
418 int hash;
Shaohua Li773ca822013-08-27 17:50:39 +0800419 bool wakeup;
NeilBrown16a53ec2006-06-26 00:27:38 -0700420
Eivind Sartocf170f32014-05-28 13:39:23 +1000421 /* Avoid release_list until the last reference.
422 */
423 if (atomic_add_unless(&sh->count, -1, 1))
424 return;
425
majianpengad4068d2013-11-14 15:16:15 +1100426 if (unlikely(!conf->mddev->thread) ||
427 test_and_set_bit(STRIPE_ON_RELEASE_LIST, &sh->state))
Shaohua Li773ca822013-08-27 17:50:39 +0800428 goto slow_path;
429 wakeup = llist_add(&sh->release_list, &conf->released_stripes);
430 if (wakeup)
431 md_wakeup_thread(conf->mddev->thread);
432 return;
433slow_path:
Shaohua Li4eb788d2012-07-19 16:01:31 +1000434 local_irq_save(flags);
Shaohua Li773ca822013-08-27 17:50:39 +0800435 /* we are ok here if STRIPE_ON_RELEASE_LIST is set or not */
Shaohua Li4eb788d2012-07-19 16:01:31 +1000436 if (atomic_dec_and_lock(&sh->count, &conf->device_lock)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100437 INIT_LIST_HEAD(&list);
438 hash = sh->hash_lock_index;
439 do_release_stripe(conf, sh, &list);
Shaohua Li4eb788d2012-07-19 16:01:31 +1000440 spin_unlock(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +1100441 release_inactive_stripe_list(conf, &list, hash);
Shaohua Li4eb788d2012-07-19 16:01:31 +1000442 }
443 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
NeilBrownfccddba2006-01-06 00:20:33 -0800446static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Dan Williams45b42332007-07-09 11:56:43 -0700448 pr_debug("remove_hash(), stripe %llu\n",
449 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
NeilBrownfccddba2006-01-06 00:20:33 -0800451 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
NeilBrownd1688a62011-10-11 16:49:52 +1100454static inline void insert_hash(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
NeilBrownfccddba2006-01-06 00:20:33 -0800456 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Dan Williams45b42332007-07-09 11:56:43 -0700458 pr_debug("insert_hash(), stripe %llu\n",
459 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
NeilBrownfccddba2006-01-06 00:20:33 -0800461 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/* find an idle stripe, make sure it is unhashed, and return it. */
Shaohua Li566c09c2013-11-14 15:16:17 +1100465static struct stripe_head *get_free_stripe(struct r5conf *conf, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 struct stripe_head *sh = NULL;
468 struct list_head *first;
469
Shaohua Li566c09c2013-11-14 15:16:17 +1100470 if (list_empty(conf->inactive_list + hash))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 goto out;
Shaohua Li566c09c2013-11-14 15:16:17 +1100472 first = (conf->inactive_list + hash)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 sh = list_entry(first, struct stripe_head, lru);
474 list_del_init(first);
475 remove_hash(sh);
476 atomic_inc(&conf->active_stripes);
Shaohua Li566c09c2013-11-14 15:16:17 +1100477 BUG_ON(hash != sh->hash_lock_index);
Shaohua Li4bda5562013-11-14 15:16:17 +1100478 if (list_empty(conf->inactive_list + hash))
479 atomic_inc(&conf->empty_inactive_list_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480out:
481 return sh;
482}
483
NeilBrowne4e11e32010-06-16 16:45:16 +1000484static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 struct page *p;
487 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000488 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
NeilBrowne4e11e32010-06-16 16:45:16 +1000490 for (i = 0; i < num ; i++) {
Shaohua Lid592a992014-05-21 17:57:44 +0800491 WARN_ON(sh->dev[i].page != sh->dev[i].orig_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 p = sh->dev[i].page;
493 if (!p)
494 continue;
495 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800496 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498}
499
NeilBrowne4e11e32010-06-16 16:45:16 +1000500static int grow_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000503 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
NeilBrowne4e11e32010-06-16 16:45:16 +1000505 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct page *page;
507
508 if (!(page = alloc_page(GFP_KERNEL))) {
509 return 1;
510 }
511 sh->dev[i].page = page;
Shaohua Lid592a992014-05-21 17:57:44 +0800512 sh->dev[i].orig_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 return 0;
515}
516
NeilBrown784052e2009-03-31 15:19:07 +1100517static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrownd1688a62011-10-11 16:49:52 +1100518static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +1100519 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
NeilBrownb5663ba2009-03-31 14:39:38 +1100521static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
NeilBrownd1688a62011-10-11 16:49:52 +1100523 struct r5conf *conf = sh->raid_conf;
Shaohua Li566c09c2013-11-14 15:16:17 +1100524 int i, seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200526 BUG_ON(atomic_read(&sh->count) != 0);
527 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000528 BUG_ON(stripe_operations_active(sh));
shli@kernel.org59fc6302014-12-15 12:57:03 +1100529 BUG_ON(sh->batch_head);
Dan Williamsd84e0f12007-01-02 13:52:30 -0700530
Dan Williams45b42332007-07-09 11:56:43 -0700531 pr_debug("init_stripe called, stripe %llu\n",
Markus Stockhausenb8e6a152014-08-23 20:19:27 +1000532 (unsigned long long)sector);
Shaohua Li566c09c2013-11-14 15:16:17 +1100533retry:
534 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrown86b42c72009-03-31 15:19:03 +1100535 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100536 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100538 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 sh->state = 0;
540
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800541 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 struct r5dev *dev = &sh->dev[i];
543
Dan Williamsd84e0f12007-01-02 13:52:30 -0700544 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 test_bit(R5_LOCKED, &dev->flags)) {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700546 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700548 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 test_bit(R5_LOCKED, &dev->flags));
NeilBrown8cfa7b02011-07-27 11:00:36 +1000550 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100553 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Shaohua Li566c09c2013-11-14 15:16:17 +1100555 if (read_seqcount_retry(&conf->gen_lock, seq))
556 goto retry;
shli@kernel.org7a87f432014-12-15 12:57:03 +1100557 sh->overwrite_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 insert_hash(conf, sh);
Shaohua Li851c30c2013-08-28 14:30:16 +0800559 sh->cpu = smp_processor_id();
shli@kernel.orgda41ba62014-12-15 12:57:03 +1100560 set_bit(STRIPE_BATCH_READY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
NeilBrownd1688a62011-10-11 16:49:52 +1100563static struct stripe_head *__find_stripe(struct r5conf *conf, sector_t sector,
NeilBrown86b42c72009-03-31 15:19:03 +1100564 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 struct stripe_head *sh;
567
Dan Williams45b42332007-07-09 11:56:43 -0700568 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800569 hlist_for_each_entry(sh, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100570 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700572 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return NULL;
574}
575
NeilBrown674806d2010-06-16 17:17:53 +1000576/*
577 * Need to check if array has failed when deciding whether to:
578 * - start an array
579 * - remove non-faulty devices
580 * - add a spare
581 * - allow a reshape
582 * This determination is simple when no reshape is happening.
583 * However if there is a reshape, we need to carefully check
584 * both the before and after sections.
585 * This is because some failed devices may only affect one
586 * of the two sections, and some non-in_sync devices may
587 * be insync in the section most affected by failed devices.
588 */
NeilBrown908f4fb2011-12-23 10:17:50 +1100589static int calc_degraded(struct r5conf *conf)
NeilBrown674806d2010-06-16 17:17:53 +1000590{
NeilBrown908f4fb2011-12-23 10:17:50 +1100591 int degraded, degraded2;
NeilBrown674806d2010-06-16 17:17:53 +1000592 int i;
NeilBrown674806d2010-06-16 17:17:53 +1000593
594 rcu_read_lock();
595 degraded = 0;
596 for (i = 0; i < conf->previous_raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100597 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000598 if (rdev && test_bit(Faulty, &rdev->flags))
599 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000600 if (!rdev || test_bit(Faulty, &rdev->flags))
601 degraded++;
602 else if (test_bit(In_sync, &rdev->flags))
603 ;
604 else
605 /* not in-sync or faulty.
606 * If the reshape increases the number of devices,
607 * this is being recovered by the reshape, so
608 * this 'previous' section is not in_sync.
609 * If the number of devices is being reduced however,
610 * the device can only be part of the array if
611 * we are reverting a reshape, so this section will
612 * be in-sync.
613 */
614 if (conf->raid_disks >= conf->previous_raid_disks)
615 degraded++;
616 }
617 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100618 if (conf->raid_disks == conf->previous_raid_disks)
619 return degraded;
NeilBrown674806d2010-06-16 17:17:53 +1000620 rcu_read_lock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100621 degraded2 = 0;
NeilBrown674806d2010-06-16 17:17:53 +1000622 for (i = 0; i < conf->raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100623 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000624 if (rdev && test_bit(Faulty, &rdev->flags))
625 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000626 if (!rdev || test_bit(Faulty, &rdev->flags))
NeilBrown908f4fb2011-12-23 10:17:50 +1100627 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000628 else if (test_bit(In_sync, &rdev->flags))
629 ;
630 else
631 /* not in-sync or faulty.
632 * If reshape increases the number of devices, this
633 * section has already been recovered, else it
634 * almost certainly hasn't.
635 */
636 if (conf->raid_disks <= conf->previous_raid_disks)
NeilBrown908f4fb2011-12-23 10:17:50 +1100637 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000638 }
639 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100640 if (degraded2 > degraded)
641 return degraded2;
642 return degraded;
643}
644
645static int has_failed(struct r5conf *conf)
646{
647 int degraded;
648
649 if (conf->mddev->reshape_position == MaxSector)
650 return conf->mddev->degraded > conf->max_degraded;
651
652 degraded = calc_degraded(conf);
NeilBrown674806d2010-06-16 17:17:53 +1000653 if (degraded > conf->max_degraded)
654 return 1;
655 return 0;
656}
657
NeilBrownb5663ba2009-03-31 14:39:38 +1100658static struct stripe_head *
NeilBrownd1688a62011-10-11 16:49:52 +1100659get_active_stripe(struct r5conf *conf, sector_t sector,
NeilBrowna8c906c2009-06-09 14:39:59 +1000660 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 struct stripe_head *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +1100663 int hash = stripe_hash_locks_hash(sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Dan Williams45b42332007-07-09 11:56:43 -0700665 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Shaohua Li566c09c2013-11-14 15:16:17 +1100667 spin_lock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 do {
NeilBrown72626682005-09-09 16:23:54 -0700670 wait_event_lock_irq(conf->wait_for_stripe,
NeilBrowna8c906c2009-06-09 14:39:59 +1000671 conf->quiesce == 0 || noquiesce,
Shaohua Li566c09c2013-11-14 15:16:17 +1100672 *(conf->hash_locks + hash));
NeilBrown86b42c72009-03-31 15:19:03 +1100673 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (!sh) {
675 if (!conf->inactive_blocked)
Shaohua Li566c09c2013-11-14 15:16:17 +1100676 sh = get_free_stripe(conf, hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (noblock && sh == NULL)
678 break;
679 if (!sh) {
680 conf->inactive_blocked = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +1100681 wait_event_lock_irq(
682 conf->wait_for_stripe,
683 !list_empty(conf->inactive_list + hash) &&
684 (atomic_read(&conf->active_stripes)
685 < (conf->max_nr_stripes * 3 / 4)
686 || !conf->inactive_blocked),
687 *(conf->hash_locks + hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 conf->inactive_blocked = 0;
NeilBrown7da9d452014-01-22 11:45:03 +1100689 } else {
NeilBrownb5663ba2009-03-31 14:39:38 +1100690 init_stripe(sh, sector, previous);
NeilBrown7da9d452014-01-22 11:45:03 +1100691 atomic_inc(&sh->count);
692 }
Shaohua Lie240c182014-04-09 11:27:42 +0800693 } else if (!atomic_inc_not_zero(&sh->count)) {
NeilBrown6d183de2013-11-28 10:55:27 +1100694 spin_lock(&conf->device_lock);
Shaohua Lie240c182014-04-09 11:27:42 +0800695 if (!atomic_read(&sh->count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (!test_bit(STRIPE_HANDLE, &sh->state))
697 atomic_inc(&conf->active_stripes);
NeilBrown5af9bef2014-01-14 15:16:10 +1100698 BUG_ON(list_empty(&sh->lru) &&
699 !test_bit(STRIPE_EXPANDING, &sh->state));
NeilBrown16a53ec2006-06-26 00:27:38 -0700700 list_del_init(&sh->lru);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800701 if (sh->group) {
702 sh->group->stripes_cnt--;
703 sh->group = NULL;
704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
NeilBrown7da9d452014-01-22 11:45:03 +1100706 atomic_inc(&sh->count);
NeilBrown6d183de2013-11-28 10:55:27 +1100707 spin_unlock(&conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 } while (sh == NULL);
710
Shaohua Li566c09c2013-11-14 15:16:17 +1100711 spin_unlock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return sh;
713}
714
shli@kernel.org7a87f432014-12-15 12:57:03 +1100715static bool is_full_stripe_write(struct stripe_head *sh)
716{
717 BUG_ON(sh->overwrite_disks > (sh->disks - sh->raid_conf->max_degraded));
718 return sh->overwrite_disks == (sh->disks - sh->raid_conf->max_degraded);
719}
720
shli@kernel.org59fc6302014-12-15 12:57:03 +1100721static void lock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
722{
723 local_irq_disable();
724 if (sh1 > sh2) {
725 spin_lock(&sh2->stripe_lock);
726 spin_lock_nested(&sh1->stripe_lock, 1);
727 } else {
728 spin_lock(&sh1->stripe_lock);
729 spin_lock_nested(&sh2->stripe_lock, 1);
730 }
731}
732
733static void unlock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
734{
735 spin_unlock(&sh1->stripe_lock);
736 spin_unlock(&sh2->stripe_lock);
737 local_irq_enable();
738}
739
740/* Only freshly new full stripe normal write stripe can be added to a batch list */
741static bool stripe_can_batch(struct stripe_head *sh)
742{
743 return test_bit(STRIPE_BATCH_READY, &sh->state) &&
744 is_full_stripe_write(sh);
745}
746
747/* we only do back search */
748static void stripe_add_to_batch_list(struct r5conf *conf, struct stripe_head *sh)
749{
750 struct stripe_head *head;
751 sector_t head_sector, tmp_sec;
752 int hash;
753 int dd_idx;
754
755 if (!stripe_can_batch(sh))
756 return;
757 /* Don't cross chunks, so stripe pd_idx/qd_idx is the same */
758 tmp_sec = sh->sector;
759 if (!sector_div(tmp_sec, conf->chunk_sectors))
760 return;
761 head_sector = sh->sector - STRIPE_SECTORS;
762
763 hash = stripe_hash_locks_hash(head_sector);
764 spin_lock_irq(conf->hash_locks + hash);
765 head = __find_stripe(conf, head_sector, conf->generation);
766 if (head && !atomic_inc_not_zero(&head->count)) {
767 spin_lock(&conf->device_lock);
768 if (!atomic_read(&head->count)) {
769 if (!test_bit(STRIPE_HANDLE, &head->state))
770 atomic_inc(&conf->active_stripes);
771 BUG_ON(list_empty(&head->lru) &&
772 !test_bit(STRIPE_EXPANDING, &head->state));
773 list_del_init(&head->lru);
774 if (head->group) {
775 head->group->stripes_cnt--;
776 head->group = NULL;
777 }
778 }
779 atomic_inc(&head->count);
780 spin_unlock(&conf->device_lock);
781 }
782 spin_unlock_irq(conf->hash_locks + hash);
783
784 if (!head)
785 return;
786 if (!stripe_can_batch(head))
787 goto out;
788
789 lock_two_stripes(head, sh);
790 /* clear_batch_ready clear the flag */
791 if (!stripe_can_batch(head) || !stripe_can_batch(sh))
792 goto unlock_out;
793
794 if (sh->batch_head)
795 goto unlock_out;
796
797 dd_idx = 0;
798 while (dd_idx == sh->pd_idx || dd_idx == sh->qd_idx)
799 dd_idx++;
800 if (head->dev[dd_idx].towrite->bi_rw != sh->dev[dd_idx].towrite->bi_rw)
801 goto unlock_out;
802
803 if (head->batch_head) {
804 spin_lock(&head->batch_head->batch_lock);
805 /* This batch list is already running */
806 if (!stripe_can_batch(head)) {
807 spin_unlock(&head->batch_head->batch_lock);
808 goto unlock_out;
809 }
810
811 /*
812 * at this point, head's BATCH_READY could be cleared, but we
813 * can still add the stripe to batch list
814 */
815 list_add(&sh->batch_list, &head->batch_list);
816 spin_unlock(&head->batch_head->batch_lock);
817
818 sh->batch_head = head->batch_head;
819 } else {
820 head->batch_head = head;
821 sh->batch_head = head->batch_head;
822 spin_lock(&head->batch_lock);
823 list_add_tail(&sh->batch_list, &head->batch_list);
824 spin_unlock(&head->batch_lock);
825 }
826
827 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
828 if (atomic_dec_return(&conf->preread_active_stripes)
829 < IO_THRESHOLD)
830 md_wakeup_thread(conf->mddev->thread);
831
832 atomic_inc(&sh->count);
833unlock_out:
834 unlock_two_stripes(head, sh);
835out:
836 release_stripe(head);
837}
838
NeilBrown05616be2012-05-21 09:27:00 +1000839/* Determine if 'data_offset' or 'new_data_offset' should be used
840 * in this stripe_head.
841 */
842static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
843{
844 sector_t progress = conf->reshape_progress;
845 /* Need a memory barrier to make sure we see the value
846 * of conf->generation, or ->data_offset that was set before
847 * reshape_progress was updated.
848 */
849 smp_rmb();
850 if (progress == MaxSector)
851 return 0;
852 if (sh->generation == conf->generation - 1)
853 return 0;
854 /* We are in a reshape, and this is a new-generation stripe,
855 * so use new_data_offset.
856 */
857 return 1;
858}
859
NeilBrown6712ecf2007-09-27 12:47:43 +0200860static void
861raid5_end_read_request(struct bio *bi, int error);
862static void
863raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700864
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000865static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700866{
NeilBrownd1688a62011-10-11 16:49:52 +1100867 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -0700868 int i, disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100869 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -0700870
871 might_sleep();
872
873 for (i = disks; i--; ) {
874 int rw;
NeilBrown9a3e1102011-12-23 10:17:53 +1100875 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +1100876 struct bio *bi, *rbi;
877 struct md_rdev *rdev, *rrdev = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100878
879 sh = head_sh;
Tejun Heoe9c74692010-09-03 11:56:18 +0200880 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
881 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
882 rw = WRITE_FUA;
883 else
884 rw = WRITE;
Shaohua Li9e4447682012-10-11 13:49:49 +1100885 if (test_bit(R5_Discard, &sh->dev[i].flags))
Shaohua Li620125f2012-10-11 13:49:05 +1100886 rw |= REQ_DISCARD;
Tejun Heoe9c74692010-09-03 11:56:18 +0200887 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -0700888 rw = READ;
NeilBrown9a3e1102011-12-23 10:17:53 +1100889 else if (test_and_clear_bit(R5_WantReplace,
890 &sh->dev[i].flags)) {
891 rw = WRITE;
892 replace_only = 1;
893 } else
Dan Williams91c00922007-01-02 13:52:30 -0700894 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +1000895 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
896 rw |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -0700897
shli@kernel.org59fc6302014-12-15 12:57:03 +1100898again:
Dan Williams91c00922007-01-02 13:52:30 -0700899 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +1100900 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -0700901
Dan Williams91c00922007-01-02 13:52:30 -0700902 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +1100903 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +1100904 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
905 rdev = rcu_dereference(conf->disks[i].rdev);
906 if (!rdev) {
907 rdev = rrdev;
908 rrdev = NULL;
909 }
NeilBrown9a3e1102011-12-23 10:17:53 +1100910 if (rw & WRITE) {
911 if (replace_only)
912 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +1100913 if (rdev == rrdev)
914 /* We raced and saw duplicates */
915 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +1100916 } else {
shli@kernel.org59fc6302014-12-15 12:57:03 +1100917 if (test_bit(R5_ReadRepl, &head_sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +1100918 rdev = rrdev;
919 rrdev = NULL;
920 }
NeilBrown977df362011-12-23 10:17:53 +1100921
Dan Williams91c00922007-01-02 13:52:30 -0700922 if (rdev && test_bit(Faulty, &rdev->flags))
923 rdev = NULL;
924 if (rdev)
925 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +1100926 if (rrdev && test_bit(Faulty, &rrdev->flags))
927 rrdev = NULL;
928 if (rrdev)
929 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -0700930 rcu_read_unlock();
931
NeilBrown73e92e52011-07-28 11:39:22 +1000932 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +1100933 * need to check for writes. We never accept write errors
934 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +1000935 */
936 while ((rw & WRITE) && rdev &&
937 test_bit(WriteErrorSeen, &rdev->flags)) {
938 sector_t first_bad;
939 int bad_sectors;
940 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
941 &first_bad, &bad_sectors);
942 if (!bad)
943 break;
944
945 if (bad < 0) {
946 set_bit(BlockedBadBlocks, &rdev->flags);
947 if (!conf->mddev->external &&
948 conf->mddev->flags) {
949 /* It is very unlikely, but we might
950 * still need to write out the
951 * bad block log - better give it
952 * a chance*/
953 md_check_recovery(conf->mddev);
954 }
majianpeng18507532012-07-03 12:11:54 +1000955 /*
956 * Because md_wait_for_blocked_rdev
957 * will dec nr_pending, we must
958 * increment it first.
959 */
960 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +1000961 md_wait_for_blocked_rdev(rdev, conf->mddev);
962 } else {
963 /* Acknowledged bad block - skip the write */
964 rdev_dec_pending(rdev, conf->mddev);
965 rdev = NULL;
966 }
967 }
968
Dan Williams91c00922007-01-02 13:52:30 -0700969 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100970 if (s->syncing || s->expanding || s->expanded
971 || s->replacing)
Dan Williams91c00922007-01-02 13:52:30 -0700972 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
973
Dan Williams2b7497f2008-06-28 08:31:52 +1000974 set_bit(STRIPE_IO_STARTED, &sh->state);
975
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700976 bio_reset(bi);
Dan Williams91c00922007-01-02 13:52:30 -0700977 bi->bi_bdev = rdev->bdev;
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700978 bi->bi_rw = rw;
979 bi->bi_end_io = (rw & WRITE)
980 ? raid5_end_write_request
981 : raid5_end_read_request;
982 bi->bi_private = sh;
983
Dan Williams91c00922007-01-02 13:52:30 -0700984 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700985 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700986 bi->bi_rw, i);
987 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100988 if (sh != head_sh)
989 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +1000990 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700991 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +1000992 + rdev->new_data_offset);
993 else
Kent Overstreet4f024f32013-10-11 15:44:27 -0700994 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +1000995 + rdev->data_offset);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100996 if (test_bit(R5_ReadNoMerge, &head_sh->dev[i].flags))
majianpenge59aa232013-11-14 15:16:19 +1100997 bi->bi_rw |= REQ_NOMERGE;
majianpeng3f9e7c12012-07-31 10:04:21 +1000998
Shaohua Lid592a992014-05-21 17:57:44 +0800999 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1000 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1001 sh->dev[i].vec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001002 bi->bi_vcnt = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001003 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1004 bi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001005 bi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001006 /*
1007 * If this is discard request, set bi_vcnt 0. We don't
1008 * want to confuse SCSI because SCSI will replace payload
1009 */
1010 if (rw & REQ_DISCARD)
1011 bi->bi_vcnt = 0;
NeilBrown977df362011-12-23 10:17:53 +11001012 if (rrdev)
1013 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001014
1015 if (conf->mddev->gendisk)
1016 trace_block_bio_remap(bdev_get_queue(bi->bi_bdev),
1017 bi, disk_devt(conf->mddev->gendisk),
1018 sh->dev[i].sector);
Dan Williams91c00922007-01-02 13:52:30 -07001019 generic_make_request(bi);
NeilBrown977df362011-12-23 10:17:53 +11001020 }
1021 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001022 if (s->syncing || s->expanding || s->expanded
1023 || s->replacing)
NeilBrown977df362011-12-23 10:17:53 +11001024 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
1025
1026 set_bit(STRIPE_IO_STARTED, &sh->state);
1027
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001028 bio_reset(rbi);
NeilBrown977df362011-12-23 10:17:53 +11001029 rbi->bi_bdev = rrdev->bdev;
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001030 rbi->bi_rw = rw;
1031 BUG_ON(!(rw & WRITE));
1032 rbi->bi_end_io = raid5_end_write_request;
1033 rbi->bi_private = sh;
1034
NeilBrown977df362011-12-23 10:17:53 +11001035 pr_debug("%s: for %llu schedule op %ld on "
1036 "replacement disc %d\n",
1037 __func__, (unsigned long long)sh->sector,
1038 rbi->bi_rw, i);
1039 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001040 if (sh != head_sh)
1041 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001042 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001043 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001044 + rrdev->new_data_offset);
1045 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001046 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001047 + rrdev->data_offset);
Shaohua Lid592a992014-05-21 17:57:44 +08001048 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1049 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1050 sh->dev[i].rvec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001051 rbi->bi_vcnt = 1;
NeilBrown977df362011-12-23 10:17:53 +11001052 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1053 rbi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001054 rbi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001055 /*
1056 * If this is discard request, set bi_vcnt 0. We don't
1057 * want to confuse SCSI because SCSI will replace payload
1058 */
1059 if (rw & REQ_DISCARD)
1060 rbi->bi_vcnt = 0;
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001061 if (conf->mddev->gendisk)
1062 trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev),
1063 rbi, disk_devt(conf->mddev->gendisk),
1064 sh->dev[i].sector);
NeilBrown977df362011-12-23 10:17:53 +11001065 generic_make_request(rbi);
1066 }
1067 if (!rdev && !rrdev) {
Namhyung Kimb0629622011-06-14 14:20:19 +10001068 if (rw & WRITE)
Dan Williams91c00922007-01-02 13:52:30 -07001069 set_bit(STRIPE_DEGRADED, &sh->state);
1070 pr_debug("skip op %ld on disc %d for sector %llu\n",
1071 bi->bi_rw, i, (unsigned long long)sh->sector);
1072 clear_bit(R5_LOCKED, &sh->dev[i].flags);
shli@kernel.org72ac7332014-12-15 12:57:03 +11001073 if (sh->batch_head)
1074 set_bit(STRIPE_BATCH_ERR,
1075 &sh->batch_head->state);
Dan Williams91c00922007-01-02 13:52:30 -07001076 set_bit(STRIPE_HANDLE, &sh->state);
1077 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001078
1079 if (!head_sh->batch_head)
1080 continue;
1081 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1082 batch_list);
1083 if (sh != head_sh)
1084 goto again;
Dan Williams91c00922007-01-02 13:52:30 -07001085 }
1086}
1087
1088static struct dma_async_tx_descriptor *
Shaohua Lid592a992014-05-21 17:57:44 +08001089async_copy_data(int frombio, struct bio *bio, struct page **page,
1090 sector_t sector, struct dma_async_tx_descriptor *tx,
1091 struct stripe_head *sh)
Dan Williams91c00922007-01-02 13:52:30 -07001092{
Kent Overstreet79886132013-11-23 17:19:00 -08001093 struct bio_vec bvl;
1094 struct bvec_iter iter;
Dan Williams91c00922007-01-02 13:52:30 -07001095 struct page *bio_page;
Dan Williams91c00922007-01-02 13:52:30 -07001096 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -07001097 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -07001098 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001099
Kent Overstreet4f024f32013-10-11 15:44:27 -07001100 if (bio->bi_iter.bi_sector >= sector)
1101 page_offset = (signed)(bio->bi_iter.bi_sector - sector) * 512;
Dan Williams91c00922007-01-02 13:52:30 -07001102 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001103 page_offset = (signed)(sector - bio->bi_iter.bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -07001104
Dan Williams0403e382009-09-08 17:42:50 -07001105 if (frombio)
1106 flags |= ASYNC_TX_FENCE;
1107 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
1108
Kent Overstreet79886132013-11-23 17:19:00 -08001109 bio_for_each_segment(bvl, bio, iter) {
1110 int len = bvl.bv_len;
Dan Williams91c00922007-01-02 13:52:30 -07001111 int clen;
1112 int b_offset = 0;
1113
1114 if (page_offset < 0) {
1115 b_offset = -page_offset;
1116 page_offset += b_offset;
1117 len -= b_offset;
1118 }
1119
1120 if (len > 0 && page_offset + len > STRIPE_SIZE)
1121 clen = STRIPE_SIZE - page_offset;
1122 else
1123 clen = len;
1124
1125 if (clen > 0) {
Kent Overstreet79886132013-11-23 17:19:00 -08001126 b_offset += bvl.bv_offset;
1127 bio_page = bvl.bv_page;
Shaohua Lid592a992014-05-21 17:57:44 +08001128 if (frombio) {
1129 if (sh->raid_conf->skip_copy &&
1130 b_offset == 0 && page_offset == 0 &&
1131 clen == STRIPE_SIZE)
1132 *page = bio_page;
1133 else
1134 tx = async_memcpy(*page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001135 b_offset, clen, &submit);
Shaohua Lid592a992014-05-21 17:57:44 +08001136 } else
1137 tx = async_memcpy(bio_page, *page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001138 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001139 }
Dan Williamsa08abd82009-06-03 11:43:59 -07001140 /* chain the operations */
1141 submit.depend_tx = tx;
1142
Dan Williams91c00922007-01-02 13:52:30 -07001143 if (clen < len) /* hit end of page */
1144 break;
1145 page_offset += len;
1146 }
1147
1148 return tx;
1149}
1150
1151static void ops_complete_biofill(void *stripe_head_ref)
1152{
1153 struct stripe_head *sh = stripe_head_ref;
1154 struct bio *return_bi = NULL;
Dan Williamse4d84902007-09-24 10:06:13 -07001155 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001156
Harvey Harrisone46b2722008-04-28 02:15:50 -07001157 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001158 (unsigned long long)sh->sector);
1159
1160 /* clear completed biofills */
1161 for (i = sh->disks; i--; ) {
1162 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -07001163
1164 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -07001165 /* and check if we need to reply to a read request,
1166 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +10001167 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -07001168 */
1169 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001170 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -07001171
Dan Williams91c00922007-01-02 13:52:30 -07001172 BUG_ON(!dev->read);
1173 rbi = dev->read;
1174 dev->read = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001175 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001176 dev->sector + STRIPE_SECTORS) {
1177 rbi2 = r5_next_bio(rbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10001178 if (!raid5_dec_bi_active_stripes(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -07001179 rbi->bi_next = return_bi;
1180 return_bi = rbi;
1181 }
Dan Williams91c00922007-01-02 13:52:30 -07001182 rbi = rbi2;
1183 }
1184 }
1185 }
Dan Williams83de75c2008-06-28 08:31:58 +10001186 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001187
1188 return_io(return_bi);
1189
Dan Williamse4d84902007-09-24 10:06:13 -07001190 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001191 release_stripe(sh);
1192}
1193
1194static void ops_run_biofill(struct stripe_head *sh)
1195{
1196 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -07001197 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001198 int i;
1199
shli@kernel.org59fc6302014-12-15 12:57:03 +11001200 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001201 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001202 (unsigned long long)sh->sector);
1203
1204 for (i = sh->disks; i--; ) {
1205 struct r5dev *dev = &sh->dev[i];
1206 if (test_bit(R5_Wantfill, &dev->flags)) {
1207 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +10001208 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001209 dev->read = rbi = dev->toread;
1210 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10001211 spin_unlock_irq(&sh->stripe_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001212 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001213 dev->sector + STRIPE_SECTORS) {
Shaohua Lid592a992014-05-21 17:57:44 +08001214 tx = async_copy_data(0, rbi, &dev->page,
1215 dev->sector, tx, sh);
Dan Williams91c00922007-01-02 13:52:30 -07001216 rbi = r5_next_bio(rbi, dev->sector);
1217 }
1218 }
1219 }
1220
1221 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001222 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
1223 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001224}
1225
Dan Williams4e7d2c02009-08-29 19:13:11 -07001226static void mark_target_uptodate(struct stripe_head *sh, int target)
1227{
1228 struct r5dev *tgt;
1229
1230 if (target < 0)
1231 return;
1232
1233 tgt = &sh->dev[target];
1234 set_bit(R5_UPTODATE, &tgt->flags);
1235 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1236 clear_bit(R5_Wantcompute, &tgt->flags);
1237}
1238
Dan Williamsac6b53b2009-07-14 13:40:19 -07001239static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001240{
1241 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001242
Harvey Harrisone46b2722008-04-28 02:15:50 -07001243 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001244 (unsigned long long)sh->sector);
1245
Dan Williamsac6b53b2009-07-14 13:40:19 -07001246 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -07001247 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001248 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -07001249
Dan Williamsecc65c92008-06-28 08:31:57 +10001250 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
1251 if (sh->check_state == check_state_compute_run)
1252 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -07001253 set_bit(STRIPE_HANDLE, &sh->state);
1254 release_stripe(sh);
1255}
1256
Dan Williamsd6f38f32009-07-14 11:50:52 -07001257/* return a pointer to the address conversion region of the scribble buffer */
1258static addr_conv_t *to_addr_conv(struct stripe_head *sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001259 struct raid5_percpu *percpu, int i)
Dan Williams91c00922007-01-02 13:52:30 -07001260{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001261 void *addr;
1262
1263 addr = flex_array_get(percpu->scribble, i);
1264 return addr + sizeof(struct page *) * (sh->disks + 2);
1265}
1266
1267/* return a pointer to the address conversion region of the scribble buffer */
1268static struct page **to_addr_page(struct raid5_percpu *percpu, int i)
1269{
1270 void *addr;
1271
1272 addr = flex_array_get(percpu->scribble, i);
1273 return addr;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001274}
1275
1276static struct dma_async_tx_descriptor *
1277ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
1278{
Dan Williams91c00922007-01-02 13:52:30 -07001279 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001280 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001281 int target = sh->ops.target;
1282 struct r5dev *tgt = &sh->dev[target];
1283 struct page *xor_dest = tgt->page;
1284 int count = 0;
1285 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001286 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001287 int i;
1288
shli@kernel.org59fc6302014-12-15 12:57:03 +11001289 BUG_ON(sh->batch_head);
1290
Dan Williams91c00922007-01-02 13:52:30 -07001291 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001292 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -07001293 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1294
1295 for (i = disks; i--; )
1296 if (i != target)
1297 xor_srcs[count++] = sh->dev[i].page;
1298
1299 atomic_inc(&sh->count);
1300
Dan Williams0403e382009-09-08 17:42:50 -07001301 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001302 ops_complete_compute, sh, to_addr_conv(sh, percpu, 0));
Dan Williams91c00922007-01-02 13:52:30 -07001303 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -07001304 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001305 else
Dan Williamsa08abd82009-06-03 11:43:59 -07001306 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001307
Dan Williams91c00922007-01-02 13:52:30 -07001308 return tx;
1309}
1310
Dan Williamsac6b53b2009-07-14 13:40:19 -07001311/* set_syndrome_sources - populate source buffers for gen_syndrome
1312 * @srcs - (struct page *) array of size sh->disks
1313 * @sh - stripe_head to parse
1314 *
1315 * Populates srcs in proper layout order for the stripe and returns the
1316 * 'count' of sources to be used in a call to async_gen_syndrome. The P
1317 * destination buffer is recorded in srcs[count] and the Q destination
1318 * is recorded in srcs[count+1]].
1319 */
1320static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
1321{
1322 int disks = sh->disks;
1323 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1324 int d0_idx = raid6_d0(sh);
1325 int count;
1326 int i;
1327
1328 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001329 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001330
1331 count = 0;
1332 i = d0_idx;
1333 do {
1334 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1335
1336 srcs[slot] = sh->dev[i].page;
1337 i = raid6_next_disk(i, disks);
1338 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001339
NeilBrowne4424fe2009-10-16 16:27:34 +11001340 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001341}
1342
1343static struct dma_async_tx_descriptor *
1344ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1345{
1346 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001347 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001348 int target;
1349 int qd_idx = sh->qd_idx;
1350 struct dma_async_tx_descriptor *tx;
1351 struct async_submit_ctl submit;
1352 struct r5dev *tgt;
1353 struct page *dest;
1354 int i;
1355 int count;
1356
shli@kernel.org59fc6302014-12-15 12:57:03 +11001357 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001358 if (sh->ops.target < 0)
1359 target = sh->ops.target2;
1360 else if (sh->ops.target2 < 0)
1361 target = sh->ops.target;
1362 else
1363 /* we should only have one valid target */
1364 BUG();
1365 BUG_ON(target < 0);
1366 pr_debug("%s: stripe %llu block: %d\n",
1367 __func__, (unsigned long long)sh->sector, target);
1368
1369 tgt = &sh->dev[target];
1370 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1371 dest = tgt->page;
1372
1373 atomic_inc(&sh->count);
1374
1375 if (target == qd_idx) {
1376 count = set_syndrome_sources(blocks, sh);
1377 blocks[count] = NULL; /* regenerating p is not necessary */
1378 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001379 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1380 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001381 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001382 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1383 } else {
1384 /* Compute any data- or p-drive using XOR */
1385 count = 0;
1386 for (i = disks; i-- ; ) {
1387 if (i == target || i == qd_idx)
1388 continue;
1389 blocks[count++] = sh->dev[i].page;
1390 }
1391
Dan Williams0403e382009-09-08 17:42:50 -07001392 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1393 NULL, ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001394 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001395 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1396 }
1397
1398 return tx;
1399}
1400
1401static struct dma_async_tx_descriptor *
1402ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1403{
1404 int i, count, disks = sh->disks;
1405 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1406 int d0_idx = raid6_d0(sh);
1407 int faila = -1, failb = -1;
1408 int target = sh->ops.target;
1409 int target2 = sh->ops.target2;
1410 struct r5dev *tgt = &sh->dev[target];
1411 struct r5dev *tgt2 = &sh->dev[target2];
1412 struct dma_async_tx_descriptor *tx;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001413 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001414 struct async_submit_ctl submit;
1415
shli@kernel.org59fc6302014-12-15 12:57:03 +11001416 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001417 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1418 __func__, (unsigned long long)sh->sector, target, target2);
1419 BUG_ON(target < 0 || target2 < 0);
1420 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1421 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1422
Dan Williams6c910a72009-09-16 12:24:54 -07001423 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001424 * slot number conversion for 'faila' and 'failb'
1425 */
1426 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001427 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001428 count = 0;
1429 i = d0_idx;
1430 do {
1431 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1432
1433 blocks[slot] = sh->dev[i].page;
1434
1435 if (i == target)
1436 faila = slot;
1437 if (i == target2)
1438 failb = slot;
1439 i = raid6_next_disk(i, disks);
1440 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001441
1442 BUG_ON(faila == failb);
1443 if (failb < faila)
1444 swap(faila, failb);
1445 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1446 __func__, (unsigned long long)sh->sector, faila, failb);
1447
1448 atomic_inc(&sh->count);
1449
1450 if (failb == syndrome_disks+1) {
1451 /* Q disk is one of the missing disks */
1452 if (faila == syndrome_disks) {
1453 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001454 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1455 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001456 to_addr_conv(sh, percpu, 0));
NeilBrowne4424fe2009-10-16 16:27:34 +11001457 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001458 STRIPE_SIZE, &submit);
1459 } else {
1460 struct page *dest;
1461 int data_target;
1462 int qd_idx = sh->qd_idx;
1463
1464 /* Missing D+Q: recompute D from P, then recompute Q */
1465 if (target == qd_idx)
1466 data_target = target2;
1467 else
1468 data_target = target;
1469
1470 count = 0;
1471 for (i = disks; i-- ; ) {
1472 if (i == data_target || i == qd_idx)
1473 continue;
1474 blocks[count++] = sh->dev[i].page;
1475 }
1476 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001477 init_async_submit(&submit,
1478 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1479 NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001480 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001481 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1482 &submit);
1483
1484 count = set_syndrome_sources(blocks, sh);
Dan Williams0403e382009-09-08 17:42:50 -07001485 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1486 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001487 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001488 return async_gen_syndrome(blocks, 0, count+2,
1489 STRIPE_SIZE, &submit);
1490 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001491 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001492 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1493 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001494 to_addr_conv(sh, percpu, 0));
Dan Williams6c910a72009-09-16 12:24:54 -07001495 if (failb == syndrome_disks) {
1496 /* We're missing D+P. */
1497 return async_raid6_datap_recov(syndrome_disks+2,
1498 STRIPE_SIZE, faila,
1499 blocks, &submit);
1500 } else {
1501 /* We're missing D+D. */
1502 return async_raid6_2data_recov(syndrome_disks+2,
1503 STRIPE_SIZE, faila, failb,
1504 blocks, &submit);
1505 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001506 }
1507}
1508
Dan Williams91c00922007-01-02 13:52:30 -07001509static void ops_complete_prexor(void *stripe_head_ref)
1510{
1511 struct stripe_head *sh = stripe_head_ref;
1512
Harvey Harrisone46b2722008-04-28 02:15:50 -07001513 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001514 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001515}
1516
1517static struct dma_async_tx_descriptor *
Dan Williamsd6f38f32009-07-14 11:50:52 -07001518ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
1519 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001520{
Dan Williams91c00922007-01-02 13:52:30 -07001521 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001522 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001523 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001524 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001525
1526 /* existing parity data subtracted */
1527 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1528
shli@kernel.org59fc6302014-12-15 12:57:03 +11001529 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001530 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001531 (unsigned long long)sh->sector);
1532
1533 for (i = disks; i--; ) {
1534 struct r5dev *dev = &sh->dev[i];
1535 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001536 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001537 xor_srcs[count++] = dev->page;
1538 }
1539
Dan Williams0403e382009-09-08 17:42:50 -07001540 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001541 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Dan Williamsa08abd82009-06-03 11:43:59 -07001542 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001543
1544 return tx;
1545}
1546
1547static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001548ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001549{
1550 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001551 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001552 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -07001553
Harvey Harrisone46b2722008-04-28 02:15:50 -07001554 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001555 (unsigned long long)sh->sector);
1556
1557 for (i = disks; i--; ) {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001558 struct r5dev *dev;
Dan Williams91c00922007-01-02 13:52:30 -07001559 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001560
shli@kernel.org59fc6302014-12-15 12:57:03 +11001561 sh = head_sh;
1562 if (test_and_clear_bit(R5_Wantdrain, &head_sh->dev[i].flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001563 struct bio *wbi;
1564
shli@kernel.org59fc6302014-12-15 12:57:03 +11001565again:
1566 dev = &sh->dev[i];
Shaohua Lib17459c2012-07-19 16:01:31 +10001567 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001568 chosen = dev->towrite;
1569 dev->towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11001570 sh->overwrite_disks = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001571 BUG_ON(dev->written);
1572 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001573 spin_unlock_irq(&sh->stripe_lock);
Shaohua Lid592a992014-05-21 17:57:44 +08001574 WARN_ON(dev->page != dev->orig_page);
Dan Williams91c00922007-01-02 13:52:30 -07001575
Kent Overstreet4f024f32013-10-11 15:44:27 -07001576 while (wbi && wbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001577 dev->sector + STRIPE_SECTORS) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001578 if (wbi->bi_rw & REQ_FUA)
1579 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001580 if (wbi->bi_rw & REQ_SYNC)
1581 set_bit(R5_SyncIO, &dev->flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001582 if (wbi->bi_rw & REQ_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001583 set_bit(R5_Discard, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08001584 else {
1585 tx = async_copy_data(1, wbi, &dev->page,
1586 dev->sector, tx, sh);
1587 if (dev->page != dev->orig_page) {
1588 set_bit(R5_SkipCopy, &dev->flags);
1589 clear_bit(R5_UPTODATE, &dev->flags);
1590 clear_bit(R5_OVERWRITE, &dev->flags);
1591 }
1592 }
Dan Williams91c00922007-01-02 13:52:30 -07001593 wbi = r5_next_bio(wbi, dev->sector);
1594 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001595
1596 if (head_sh->batch_head) {
1597 sh = list_first_entry(&sh->batch_list,
1598 struct stripe_head,
1599 batch_list);
1600 if (sh == head_sh)
1601 continue;
1602 goto again;
1603 }
Dan Williams91c00922007-01-02 13:52:30 -07001604 }
1605 }
1606
1607 return tx;
1608}
1609
Dan Williamsac6b53b2009-07-14 13:40:19 -07001610static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001611{
1612 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001613 int disks = sh->disks;
1614 int pd_idx = sh->pd_idx;
1615 int qd_idx = sh->qd_idx;
1616 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001617 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001618
Harvey Harrisone46b2722008-04-28 02:15:50 -07001619 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001620 (unsigned long long)sh->sector);
1621
Shaohua Libc0934f2012-05-22 13:55:05 +10001622 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001623 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001624 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001625 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001626 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001627
Dan Williams91c00922007-01-02 13:52:30 -07001628 for (i = disks; i--; ) {
1629 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001630
Tejun Heoe9c74692010-09-03 11:56:18 +02001631 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Lid592a992014-05-21 17:57:44 +08001632 if (!discard && !test_bit(R5_SkipCopy, &dev->flags))
Shaohua Li9e4447682012-10-11 13:49:49 +11001633 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001634 if (fua)
1635 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001636 if (sync)
1637 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001638 }
Dan Williams91c00922007-01-02 13:52:30 -07001639 }
1640
Dan Williamsd8ee0722008-06-28 08:32:06 +10001641 if (sh->reconstruct_state == reconstruct_state_drain_run)
1642 sh->reconstruct_state = reconstruct_state_drain_result;
1643 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1644 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1645 else {
1646 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1647 sh->reconstruct_state = reconstruct_state_result;
1648 }
Dan Williams91c00922007-01-02 13:52:30 -07001649
1650 set_bit(STRIPE_HANDLE, &sh->state);
1651 release_stripe(sh);
1652}
1653
1654static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001655ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1656 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001657{
Dan Williams91c00922007-01-02 13:52:30 -07001658 int disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001659 struct page **xor_srcs;
Dan Williamsa08abd82009-06-03 11:43:59 -07001660 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001661 int count, pd_idx = sh->pd_idx, i;
Dan Williams91c00922007-01-02 13:52:30 -07001662 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001663 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001664 unsigned long flags;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001665 int j = 0;
1666 struct stripe_head *head_sh = sh;
1667 int last_stripe;
Dan Williams91c00922007-01-02 13:52:30 -07001668
Harvey Harrisone46b2722008-04-28 02:15:50 -07001669 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001670 (unsigned long long)sh->sector);
1671
Shaohua Li620125f2012-10-11 13:49:05 +11001672 for (i = 0; i < sh->disks; i++) {
1673 if (pd_idx == i)
1674 continue;
1675 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1676 break;
1677 }
1678 if (i >= sh->disks) {
1679 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001680 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1681 ops_complete_reconstruct(sh);
1682 return;
1683 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001684again:
1685 count = 0;
1686 xor_srcs = to_addr_page(percpu, j);
Dan Williams91c00922007-01-02 13:52:30 -07001687 /* check if prexor is active which means only process blocks
1688 * that are part of a read-modify-write (written)
1689 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001690 if (head_sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001691 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001692 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1693 for (i = disks; i--; ) {
1694 struct r5dev *dev = &sh->dev[i];
shli@kernel.org59fc6302014-12-15 12:57:03 +11001695 if (head_sh->dev[i].written)
Dan Williams91c00922007-01-02 13:52:30 -07001696 xor_srcs[count++] = dev->page;
1697 }
1698 } else {
1699 xor_dest = sh->dev[pd_idx].page;
1700 for (i = disks; i--; ) {
1701 struct r5dev *dev = &sh->dev[i];
1702 if (i != pd_idx)
1703 xor_srcs[count++] = dev->page;
1704 }
1705 }
1706
Dan Williams91c00922007-01-02 13:52:30 -07001707 /* 1/ if we prexor'd then the dest is reused as a source
1708 * 2/ if we did not prexor then we are redoing the parity
1709 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1710 * for the synchronous xor case
1711 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001712 last_stripe = !head_sh->batch_head ||
1713 list_first_entry(&sh->batch_list,
1714 struct stripe_head, batch_list) == head_sh;
1715 if (last_stripe) {
1716 flags = ASYNC_TX_ACK |
1717 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
Dan Williams91c00922007-01-02 13:52:30 -07001718
shli@kernel.org59fc6302014-12-15 12:57:03 +11001719 atomic_inc(&head_sh->count);
1720 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, head_sh,
1721 to_addr_conv(sh, percpu, j));
1722 } else {
1723 flags = prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST;
1724 init_async_submit(&submit, flags, tx, NULL, NULL,
1725 to_addr_conv(sh, percpu, j));
1726 }
Dan Williams91c00922007-01-02 13:52:30 -07001727
Dan Williamsa08abd82009-06-03 11:43:59 -07001728 if (unlikely(count == 1))
1729 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1730 else
1731 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001732 if (!last_stripe) {
1733 j++;
1734 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1735 batch_list);
1736 goto again;
1737 }
Dan Williams91c00922007-01-02 13:52:30 -07001738}
1739
Dan Williamsac6b53b2009-07-14 13:40:19 -07001740static void
1741ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1742 struct dma_async_tx_descriptor *tx)
1743{
1744 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001745 struct page **blocks;
1746 int count, i, j = 0;
1747 struct stripe_head *head_sh = sh;
1748 int last_stripe;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001749
1750 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1751
Shaohua Li620125f2012-10-11 13:49:05 +11001752 for (i = 0; i < sh->disks; i++) {
1753 if (sh->pd_idx == i || sh->qd_idx == i)
1754 continue;
1755 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1756 break;
1757 }
1758 if (i >= sh->disks) {
1759 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001760 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1761 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1762 ops_complete_reconstruct(sh);
1763 return;
1764 }
1765
shli@kernel.org59fc6302014-12-15 12:57:03 +11001766again:
1767 blocks = to_addr_page(percpu, j);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001768 count = set_syndrome_sources(blocks, sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001769 last_stripe = !head_sh->batch_head ||
1770 list_first_entry(&sh->batch_list,
1771 struct stripe_head, batch_list) == head_sh;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001772
shli@kernel.org59fc6302014-12-15 12:57:03 +11001773 if (last_stripe) {
1774 atomic_inc(&head_sh->count);
1775 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1776 head_sh, to_addr_conv(sh, percpu, j));
1777 } else
1778 init_async_submit(&submit, 0, tx, NULL, NULL,
1779 to_addr_conv(sh, percpu, j));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001780 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001781 if (!last_stripe) {
1782 j++;
1783 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1784 batch_list);
1785 goto again;
1786 }
Dan Williams91c00922007-01-02 13:52:30 -07001787}
1788
1789static void ops_complete_check(void *stripe_head_ref)
1790{
1791 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001792
Harvey Harrisone46b2722008-04-28 02:15:50 -07001793 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001794 (unsigned long long)sh->sector);
1795
Dan Williamsecc65c92008-06-28 08:31:57 +10001796 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001797 set_bit(STRIPE_HANDLE, &sh->state);
1798 release_stripe(sh);
1799}
1800
Dan Williamsac6b53b2009-07-14 13:40:19 -07001801static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001802{
Dan Williams91c00922007-01-02 13:52:30 -07001803 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001804 int pd_idx = sh->pd_idx;
1805 int qd_idx = sh->qd_idx;
1806 struct page *xor_dest;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001807 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001808 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001809 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001810 int count;
1811 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001812
Harvey Harrisone46b2722008-04-28 02:15:50 -07001813 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001814 (unsigned long long)sh->sector);
1815
shli@kernel.org59fc6302014-12-15 12:57:03 +11001816 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001817 count = 0;
1818 xor_dest = sh->dev[pd_idx].page;
1819 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001820 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001821 if (i == pd_idx || i == qd_idx)
1822 continue;
1823 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001824 }
1825
Dan Williamsd6f38f32009-07-14 11:50:52 -07001826 init_async_submit(&submit, 0, NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001827 to_addr_conv(sh, percpu, 0));
Dan Williams099f53c2009-04-08 14:28:37 -07001828 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001829 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001830
Dan Williams91c00922007-01-02 13:52:30 -07001831 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001832 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1833 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001834}
1835
Dan Williamsac6b53b2009-07-14 13:40:19 -07001836static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1837{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001838 struct page **srcs = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001839 struct async_submit_ctl submit;
1840 int count;
1841
1842 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1843 (unsigned long long)sh->sector, checkp);
1844
shli@kernel.org59fc6302014-12-15 12:57:03 +11001845 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001846 count = set_syndrome_sources(srcs, sh);
1847 if (!checkp)
1848 srcs[count] = NULL;
1849
1850 atomic_inc(&sh->count);
1851 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001852 sh, to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001853 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1854 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1855}
1856
NeilBrown51acbce2013-02-28 09:08:34 +11001857static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001858{
1859 int overlap_clear = 0, i, disks = sh->disks;
1860 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001861 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001862 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001863 struct raid5_percpu *percpu;
1864 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001865
Dan Williamsd6f38f32009-07-14 11:50:52 -07001866 cpu = get_cpu();
1867 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001868 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001869 ops_run_biofill(sh);
1870 overlap_clear++;
1871 }
1872
Dan Williams7b3a8712008-06-28 08:32:09 +10001873 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001874 if (level < 6)
1875 tx = ops_run_compute5(sh, percpu);
1876 else {
1877 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1878 tx = ops_run_compute6_1(sh, percpu);
1879 else
1880 tx = ops_run_compute6_2(sh, percpu);
1881 }
1882 /* terminate the chain if reconstruct is not set to be run */
1883 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001884 async_tx_ack(tx);
1885 }
Dan Williams91c00922007-01-02 13:52:30 -07001886
Dan Williams600aa102008-06-28 08:32:05 +10001887 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williamsd6f38f32009-07-14 11:50:52 -07001888 tx = ops_run_prexor(sh, percpu, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001889
Dan Williams600aa102008-06-28 08:32:05 +10001890 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001891 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001892 overlap_clear++;
1893 }
1894
Dan Williamsac6b53b2009-07-14 13:40:19 -07001895 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1896 if (level < 6)
1897 ops_run_reconstruct5(sh, percpu, tx);
1898 else
1899 ops_run_reconstruct6(sh, percpu, tx);
1900 }
Dan Williams91c00922007-01-02 13:52:30 -07001901
Dan Williamsac6b53b2009-07-14 13:40:19 -07001902 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1903 if (sh->check_state == check_state_run)
1904 ops_run_check_p(sh, percpu);
1905 else if (sh->check_state == check_state_run_q)
1906 ops_run_check_pq(sh, percpu, 0);
1907 else if (sh->check_state == check_state_run_pq)
1908 ops_run_check_pq(sh, percpu, 1);
1909 else
1910 BUG();
1911 }
Dan Williams91c00922007-01-02 13:52:30 -07001912
shli@kernel.org59fc6302014-12-15 12:57:03 +11001913 if (overlap_clear && !sh->batch_head)
Dan Williams91c00922007-01-02 13:52:30 -07001914 for (i = disks; i--; ) {
1915 struct r5dev *dev = &sh->dev[i];
1916 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1917 wake_up(&sh->raid_conf->wait_for_overlap);
1918 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001919 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001920}
1921
Shaohua Li566c09c2013-11-14 15:16:17 +11001922static int grow_one_stripe(struct r5conf *conf, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
1924 struct stripe_head *sh;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001925 sh = kmem_cache_zalloc(conf->slab_cache, GFP_KERNEL);
NeilBrown3f294f42005-11-08 21:39:25 -08001926 if (!sh)
1927 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001928
NeilBrown3f294f42005-11-08 21:39:25 -08001929 sh->raid_conf = conf;
NeilBrown3f294f42005-11-08 21:39:25 -08001930
Shaohua Lib17459c2012-07-19 16:01:31 +10001931 spin_lock_init(&sh->stripe_lock);
1932
NeilBrowne4e11e32010-06-16 16:45:16 +10001933 if (grow_buffers(sh)) {
1934 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001935 kmem_cache_free(conf->slab_cache, sh);
1936 return 0;
1937 }
Shaohua Li566c09c2013-11-14 15:16:17 +11001938 sh->hash_lock_index = hash;
NeilBrown3f294f42005-11-08 21:39:25 -08001939 /* we just created an active stripe so... */
1940 atomic_set(&sh->count, 1);
1941 atomic_inc(&conf->active_stripes);
1942 INIT_LIST_HEAD(&sh->lru);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001943
1944 spin_lock_init(&sh->batch_lock);
1945 INIT_LIST_HEAD(&sh->batch_list);
1946 sh->batch_head = NULL;
NeilBrown3f294f42005-11-08 21:39:25 -08001947 release_stripe(sh);
1948 return 1;
1949}
1950
NeilBrownd1688a62011-10-11 16:49:52 +11001951static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08001952{
Christoph Lametere18b8902006-12-06 20:33:20 -08001953 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11001954 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Shaohua Li566c09c2013-11-14 15:16:17 +11001955 int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
NeilBrownf4be6b42010-06-01 19:37:25 +10001957 if (conf->mddev->gendisk)
1958 sprintf(conf->cache_name[0],
1959 "raid%d-%s", conf->level, mdname(conf->mddev));
1960 else
1961 sprintf(conf->cache_name[0],
1962 "raid%d-%p", conf->level, conf->mddev);
1963 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
1964
NeilBrownad01c9e2006-03-27 01:18:07 -08001965 conf->active_name = 0;
1966 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001968 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (!sc)
1970 return 1;
1971 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001972 conf->pool_size = devs;
Shaohua Li566c09c2013-11-14 15:16:17 +11001973 hash = conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
1974 while (num--) {
1975 if (!grow_one_stripe(conf, hash))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 return 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11001977 conf->max_nr_stripes++;
1978 hash = (hash + 1) % NR_STRIPE_HASH_LOCKS;
1979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 return 0;
1981}
NeilBrown29269552006-03-27 01:18:10 -08001982
Dan Williamsd6f38f32009-07-14 11:50:52 -07001983/**
1984 * scribble_len - return the required size of the scribble region
1985 * @num - total number of disks in the array
1986 *
1987 * The size must be enough to contain:
1988 * 1/ a struct page pointer for each device in the array +2
1989 * 2/ room to convert each entry in (1) to its corresponding dma
1990 * (dma_map_page()) or page (page_address()) address.
1991 *
1992 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1993 * calculate over all devices (not just the data blocks), using zeros in place
1994 * of the P and Q blocks.
1995 */
shli@kernel.org46d5b782014-12-15 12:57:02 +11001996static struct flex_array *scribble_alloc(int num, int cnt, gfp_t flags)
Dan Williamsd6f38f32009-07-14 11:50:52 -07001997{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001998 struct flex_array *ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001999 size_t len;
2000
2001 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002002 ret = flex_array_alloc(len, cnt, flags);
2003 if (!ret)
2004 return NULL;
2005 /* always prealloc all elements, so no locking is required */
2006 if (flex_array_prealloc(ret, 0, cnt, flags)) {
2007 flex_array_free(ret);
2008 return NULL;
2009 }
2010 return ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002011}
2012
NeilBrownd1688a62011-10-11 16:49:52 +11002013static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08002014{
2015 /* Make all the stripes able to hold 'newsize' devices.
2016 * New slots in each stripe get 'page' set to a new page.
2017 *
2018 * This happens in stages:
2019 * 1/ create a new kmem_cache and allocate the required number of
2020 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09002021 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08002022 * to the new stripe_heads. This will have the side effect of
2023 * freezing the array as once all stripe_heads have been collected,
2024 * no IO will be possible. Old stripe heads are freed once their
2025 * pages have been transferred over, and the old kmem_cache is
2026 * freed when all stripes are done.
2027 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
2028 * we simple return a failre status - no need to clean anything up.
2029 * 4/ allocate new pages for the new slots in the new stripe_heads.
2030 * If this fails, we don't bother trying the shrink the
2031 * stripe_heads down again, we just leave them as they are.
2032 * As each stripe_head is processed the new one is released into
2033 * active service.
2034 *
2035 * Once step2 is started, we cannot afford to wait for a write,
2036 * so we use GFP_NOIO allocations.
2037 */
2038 struct stripe_head *osh, *nsh;
2039 LIST_HEAD(newstripes);
2040 struct disk_info *ndisks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002041 unsigned long cpu;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002042 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08002043 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002044 int i;
Shaohua Li566c09c2013-11-14 15:16:17 +11002045 int hash, cnt;
NeilBrownad01c9e2006-03-27 01:18:07 -08002046
2047 if (newsize <= conf->pool_size)
2048 return 0; /* never bother to shrink */
2049
Dan Williamsb5470dc2008-06-27 21:44:04 -07002050 err = md_allow_write(conf->mddev);
2051 if (err)
2052 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002053
NeilBrownad01c9e2006-03-27 01:18:07 -08002054 /* Step 1 */
2055 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
2056 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002057 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002058 if (!sc)
2059 return -ENOMEM;
2060
2061 for (i = conf->max_nr_stripes; i; i--) {
Namhyung Kim6ce32842011-07-18 17:38:50 +10002062 nsh = kmem_cache_zalloc(sc, GFP_KERNEL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002063 if (!nsh)
2064 break;
2065
NeilBrownad01c9e2006-03-27 01:18:07 -08002066 nsh->raid_conf = conf;
NeilBrowncb13ff62012-09-24 16:27:20 +10002067 spin_lock_init(&nsh->stripe_lock);
NeilBrownad01c9e2006-03-27 01:18:07 -08002068
2069 list_add(&nsh->lru, &newstripes);
2070 }
2071 if (i) {
2072 /* didn't get enough, give up */
2073 while (!list_empty(&newstripes)) {
2074 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2075 list_del(&nsh->lru);
2076 kmem_cache_free(sc, nsh);
2077 }
2078 kmem_cache_destroy(sc);
2079 return -ENOMEM;
2080 }
2081 /* Step 2 - Must use GFP_NOIO now.
2082 * OK, we have enough stripes, start collecting inactive
2083 * stripes and copying them over
2084 */
Shaohua Li566c09c2013-11-14 15:16:17 +11002085 hash = 0;
2086 cnt = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002087 list_for_each_entry(nsh, &newstripes, lru) {
Shaohua Li566c09c2013-11-14 15:16:17 +11002088 lock_device_hash_lock(conf, hash);
2089 wait_event_cmd(conf->wait_for_stripe,
2090 !list_empty(conf->inactive_list + hash),
2091 unlock_device_hash_lock(conf, hash),
2092 lock_device_hash_lock(conf, hash));
2093 osh = get_free_stripe(conf, hash);
2094 unlock_device_hash_lock(conf, hash);
NeilBrownad01c9e2006-03-27 01:18:07 -08002095 atomic_set(&nsh->count, 1);
Shaohua Lid592a992014-05-21 17:57:44 +08002096 for(i=0; i<conf->pool_size; i++) {
NeilBrownad01c9e2006-03-27 01:18:07 -08002097 nsh->dev[i].page = osh->dev[i].page;
Shaohua Lid592a992014-05-21 17:57:44 +08002098 nsh->dev[i].orig_page = osh->dev[i].page;
2099 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002100 for( ; i<newsize; i++)
2101 nsh->dev[i].page = NULL;
Shaohua Li566c09c2013-11-14 15:16:17 +11002102 nsh->hash_lock_index = hash;
NeilBrownad01c9e2006-03-27 01:18:07 -08002103 kmem_cache_free(conf->slab_cache, osh);
Shaohua Li566c09c2013-11-14 15:16:17 +11002104 cnt++;
2105 if (cnt >= conf->max_nr_stripes / NR_STRIPE_HASH_LOCKS +
2106 !!((conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS) > hash)) {
2107 hash++;
2108 cnt = 0;
2109 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002110 }
2111 kmem_cache_destroy(conf->slab_cache);
2112
2113 /* Step 3.
2114 * At this point, we are holding all the stripes so the array
2115 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07002116 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08002117 */
2118 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
2119 if (ndisks) {
2120 for (i=0; i<conf->raid_disks; i++)
2121 ndisks[i] = conf->disks[i];
2122 kfree(conf->disks);
2123 conf->disks = ndisks;
2124 } else
2125 err = -ENOMEM;
2126
Dan Williamsd6f38f32009-07-14 11:50:52 -07002127 get_online_cpus();
Dan Williamsd6f38f32009-07-14 11:50:52 -07002128 for_each_present_cpu(cpu) {
2129 struct raid5_percpu *percpu;
shli@kernel.org46d5b782014-12-15 12:57:02 +11002130 struct flex_array *scribble;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002131
2132 percpu = per_cpu_ptr(conf->percpu, cpu);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002133 scribble = scribble_alloc(newsize, conf->chunk_sectors /
2134 STRIPE_SECTORS, GFP_NOIO);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002135
2136 if (scribble) {
shli@kernel.org46d5b782014-12-15 12:57:02 +11002137 flex_array_free(percpu->scribble);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002138 percpu->scribble = scribble;
2139 } else {
2140 err = -ENOMEM;
2141 break;
2142 }
2143 }
2144 put_online_cpus();
2145
NeilBrownad01c9e2006-03-27 01:18:07 -08002146 /* Step 4, return new stripes to service */
2147 while(!list_empty(&newstripes)) {
2148 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2149 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002150
NeilBrownad01c9e2006-03-27 01:18:07 -08002151 for (i=conf->raid_disks; i < newsize; i++)
2152 if (nsh->dev[i].page == NULL) {
2153 struct page *p = alloc_page(GFP_NOIO);
2154 nsh->dev[i].page = p;
Shaohua Lid592a992014-05-21 17:57:44 +08002155 nsh->dev[i].orig_page = p;
NeilBrownad01c9e2006-03-27 01:18:07 -08002156 if (!p)
2157 err = -ENOMEM;
2158 }
2159 release_stripe(nsh);
2160 }
2161 /* critical section pass, GFP_NOIO no longer needed */
2162
2163 conf->slab_cache = sc;
2164 conf->active_name = 1-conf->active_name;
2165 conf->pool_size = newsize;
2166 return err;
2167}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Shaohua Li566c09c2013-11-14 15:16:17 +11002169static int drop_one_stripe(struct r5conf *conf, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170{
2171 struct stripe_head *sh;
2172
Shaohua Li566c09c2013-11-14 15:16:17 +11002173 spin_lock_irq(conf->hash_locks + hash);
2174 sh = get_free_stripe(conf, hash);
2175 spin_unlock_irq(conf->hash_locks + hash);
NeilBrown3f294f42005-11-08 21:39:25 -08002176 if (!sh)
2177 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002178 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10002179 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002180 kmem_cache_free(conf->slab_cache, sh);
2181 atomic_dec(&conf->active_stripes);
2182 return 1;
2183}
2184
NeilBrownd1688a62011-10-11 16:49:52 +11002185static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08002186{
Shaohua Li566c09c2013-11-14 15:16:17 +11002187 int hash;
2188 for (hash = 0; hash < NR_STRIPE_HASH_LOCKS; hash++)
2189 while (drop_one_stripe(conf, hash))
2190 ;
NeilBrown3f294f42005-11-08 21:39:25 -08002191
NeilBrown29fc7e32006-02-03 03:03:41 -08002192 if (conf->slab_cache)
2193 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 conf->slab_cache = NULL;
2195}
2196
NeilBrown6712ecf2007-09-27 12:47:43 +02002197static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
NeilBrown99c0fb52009-03-31 14:39:38 +11002199 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002200 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002201 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07002203 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11002204 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10002205 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207 for (i=0 ; i<disks; i++)
2208 if (bi == &sh->dev[i].req)
2209 break;
2210
Dan Williams45b42332007-07-09 11:56:43 -07002211 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
2212 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 uptodate);
2214 if (i == disks) {
2215 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002216 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 }
NeilBrown14a75d32011-12-23 10:17:52 +11002218 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11002219 /* If replacement finished while this request was outstanding,
2220 * 'replacement' might be NULL already.
2221 * In that case it moved down to 'rdev'.
2222 * rdev is not removed until all requests are finished.
2223 */
NeilBrown14a75d32011-12-23 10:17:52 +11002224 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002225 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11002226 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
NeilBrown05616be2012-05-21 09:27:00 +10002228 if (use_new_offset(conf, sh))
2229 s = sh->sector + rdev->new_data_offset;
2230 else
2231 s = sh->sector + rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08002234 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11002235 /* Note that this cannot happen on a
2236 * replacement device. We just fail those on
2237 * any error
2238 */
Christian Dietrich8bda4702011-07-27 11:00:36 +10002239 printk_ratelimited(
2240 KERN_INFO
2241 "md/raid:%s: read error corrected"
2242 " (%lu sectors at %llu on %s)\n",
2243 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10002244 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002245 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10002246 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08002247 clear_bit(R5_ReadError, &sh->dev[i].flags);
2248 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10002249 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2250 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2251
NeilBrown14a75d32011-12-23 10:17:52 +11002252 if (atomic_read(&rdev->read_errors))
2253 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11002255 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08002256 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10002257 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07002258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07002260 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11002261 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
2262 printk_ratelimited(
2263 KERN_WARNING
2264 "md/raid:%s: read error on replacement device "
2265 "(sector %llu on %s).\n",
2266 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002267 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11002268 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002269 else if (conf->mddev->degraded >= conf->max_degraded) {
2270 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10002271 printk_ratelimited(
2272 KERN_WARNING
2273 "md/raid:%s: read error not correctable "
2274 "(sector %llu on %s).\n",
2275 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002276 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002277 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002278 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08002279 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10002280 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10002281 printk_ratelimited(
2282 KERN_WARNING
2283 "md/raid:%s: read error NOT corrected!! "
2284 "(sector %llu on %s).\n",
2285 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002286 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002287 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002288 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08002289 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08002290 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10002291 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07002292 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08002293 else
2294 retry = 1;
Bian Yuedfa1f62013-11-14 15:16:17 +11002295 if (set_bad && test_bit(In_sync, &rdev->flags)
2296 && !test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2297 retry = 1;
NeilBrownba22dcb2005-11-08 21:39:31 -08002298 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10002299 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
2300 set_bit(R5_ReadError, &sh->dev[i].flags);
2301 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2302 } else
2303 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08002304 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08002305 clear_bit(R5_ReadError, &sh->dev[i].flags);
2306 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10002307 if (!(set_bad
2308 && test_bit(In_sync, &rdev->flags)
2309 && rdev_set_badblocks(
2310 rdev, sh->sector, STRIPE_SECTORS, 0)))
2311 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08002312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
NeilBrown14a75d32011-12-23 10:17:52 +11002314 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2316 set_bit(STRIPE_HANDLE, &sh->state);
2317 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318}
2319
NeilBrownd710e132008-10-13 11:55:12 +11002320static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321{
NeilBrown99c0fb52009-03-31 14:39:38 +11002322 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002323 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002324 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11002325 struct md_rdev *uninitialized_var(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownb84db562011-07-28 11:39:23 +10002327 sector_t first_bad;
2328 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11002329 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
NeilBrown977df362011-12-23 10:17:53 +11002331 for (i = 0 ; i < disks; i++) {
2332 if (bi == &sh->dev[i].req) {
2333 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 break;
NeilBrown977df362011-12-23 10:17:53 +11002335 }
2336 if (bi == &sh->dev[i].rreq) {
2337 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002338 if (rdev)
2339 replacement = 1;
2340 else
2341 /* rdev was removed and 'replacement'
2342 * replaced it. rdev is not removed
2343 * until all requests are finished.
2344 */
2345 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11002346 break;
2347 }
2348 }
Dan Williams45b42332007-07-09 11:56:43 -07002349 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
2351 uptodate);
2352 if (i == disks) {
2353 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002354 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 }
2356
NeilBrown977df362011-12-23 10:17:53 +11002357 if (replacement) {
2358 if (!uptodate)
2359 md_error(conf->mddev, rdev);
2360 else if (is_badblock(rdev, sh->sector,
2361 STRIPE_SECTORS,
2362 &first_bad, &bad_sectors))
2363 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2364 } else {
2365 if (!uptodate) {
NeilBrown9f97e4b2014-01-16 09:35:38 +11002366 set_bit(STRIPE_DEGRADED, &sh->state);
NeilBrown977df362011-12-23 10:17:53 +11002367 set_bit(WriteErrorSeen, &rdev->flags);
2368 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002369 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2370 set_bit(MD_RECOVERY_NEEDED,
2371 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002372 } else if (is_badblock(rdev, sh->sector,
2373 STRIPE_SECTORS,
NeilBrownc0b32972013-04-24 11:42:42 +10002374 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002375 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002376 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2377 /* That was a successful write so make
2378 * sure it looks like we already did
2379 * a re-write.
2380 */
2381 set_bit(R5_ReWrite, &sh->dev[i].flags);
2382 }
NeilBrown977df362011-12-23 10:17:53 +11002383 }
2384 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
shli@kernel.org72ac7332014-12-15 12:57:03 +11002386 if (sh->batch_head && !uptodate)
2387 set_bit(STRIPE_BATCH_ERR, &sh->batch_head->state);
2388
NeilBrown977df362011-12-23 10:17:53 +11002389 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2390 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07002392 release_stripe(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002393
2394 if (sh->batch_head && sh != sh->batch_head)
2395 release_stripe(sh->batch_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396}
2397
NeilBrown784052e2009-03-31 15:19:07 +11002398static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Shaohua Lid592a992014-05-21 17:57:44 +08002399
NeilBrown784052e2009-03-31 15:19:07 +11002400static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
2402 struct r5dev *dev = &sh->dev[i];
2403
2404 bio_init(&dev->req);
2405 dev->req.bi_io_vec = &dev->vec;
Shaohua Lid592a992014-05-21 17:57:44 +08002406 dev->req.bi_max_vecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 dev->req.bi_private = sh;
2408
NeilBrown977df362011-12-23 10:17:53 +11002409 bio_init(&dev->rreq);
2410 dev->rreq.bi_io_vec = &dev->rvec;
Shaohua Lid592a992014-05-21 17:57:44 +08002411 dev->rreq.bi_max_vecs = 1;
NeilBrown977df362011-12-23 10:17:53 +11002412 dev->rreq.bi_private = sh;
NeilBrown977df362011-12-23 10:17:53 +11002413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11002415 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416}
2417
NeilBrownfd01b882011-10-11 16:47:53 +11002418static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419{
2420 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002421 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002422 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002423 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
NeilBrown908f4fb2011-12-23 10:17:50 +11002425 spin_lock_irqsave(&conf->device_lock, flags);
2426 clear_bit(In_sync, &rdev->flags);
2427 mddev->degraded = calc_degraded(conf);
2428 spin_unlock_irqrestore(&conf->device_lock, flags);
2429 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2430
NeilBrownde393cd2011-07-28 11:31:48 +10002431 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10002432 set_bit(Faulty, &rdev->flags);
2433 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2434 printk(KERN_ALERT
2435 "md/raid:%s: Disk failure on %s, disabling device.\n"
2436 "md/raid:%s: Operation continuing on %d devices.\n",
2437 mdname(mddev),
2438 bdevname(rdev->bdev, b),
2439 mdname(mddev),
2440 conf->raid_disks - mddev->degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07002441}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443/*
2444 * Input: a 'big' sector number,
2445 * Output: index of the data and parity disk, and the sector # in them.
2446 */
NeilBrownd1688a62011-10-11 16:49:52 +11002447static sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11002448 int previous, int *dd_idx,
2449 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002451 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002452 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002454 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002455 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002457 int algorithm = previous ? conf->prev_algo
2458 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002459 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2460 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002461 int raid_disks = previous ? conf->previous_raid_disks
2462 : conf->raid_disks;
2463 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 /* First compute the information on this sector */
2466
2467 /*
2468 * Compute the chunk number and the sector offset inside the chunk
2469 */
2470 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2471 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
2473 /*
2474 * Compute the stripe number
2475 */
NeilBrown35f2a592010-04-20 14:13:34 +10002476 stripe = chunk_number;
2477 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002478 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 /*
2480 * Select the parity disk based on the user selected algorithm.
2481 */
NeilBrown84789552011-07-27 11:00:36 +10002482 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002483 switch(conf->level) {
2484 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002485 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002486 break;
2487 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002488 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002490 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002491 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 (*dd_idx)++;
2493 break;
2494 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002495 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002496 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 (*dd_idx)++;
2498 break;
2499 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002500 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002501 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 break;
2503 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002504 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002505 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002507 case ALGORITHM_PARITY_0:
2508 pd_idx = 0;
2509 (*dd_idx)++;
2510 break;
2511 case ALGORITHM_PARITY_N:
2512 pd_idx = data_disks;
2513 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002515 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002516 }
2517 break;
2518 case 6:
2519
NeilBrowne183eae2009-03-31 15:20:22 +11002520 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002521 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002522 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002523 qd_idx = pd_idx + 1;
2524 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002525 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002526 qd_idx = 0;
2527 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002528 (*dd_idx) += 2; /* D D P Q D */
2529 break;
2530 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002531 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002532 qd_idx = pd_idx + 1;
2533 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002534 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002535 qd_idx = 0;
2536 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002537 (*dd_idx) += 2; /* D D P Q D */
2538 break;
2539 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002540 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002541 qd_idx = (pd_idx + 1) % raid_disks;
2542 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002543 break;
2544 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002545 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002546 qd_idx = (pd_idx + 1) % raid_disks;
2547 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002548 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002549
2550 case ALGORITHM_PARITY_0:
2551 pd_idx = 0;
2552 qd_idx = 1;
2553 (*dd_idx) += 2;
2554 break;
2555 case ALGORITHM_PARITY_N:
2556 pd_idx = data_disks;
2557 qd_idx = data_disks + 1;
2558 break;
2559
2560 case ALGORITHM_ROTATING_ZERO_RESTART:
2561 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2562 * of blocks for computing Q is different.
2563 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002564 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002565 qd_idx = pd_idx + 1;
2566 if (pd_idx == raid_disks-1) {
2567 (*dd_idx)++; /* Q D D D P */
2568 qd_idx = 0;
2569 } else if (*dd_idx >= pd_idx)
2570 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002571 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002572 break;
2573
2574 case ALGORITHM_ROTATING_N_RESTART:
2575 /* Same a left_asymmetric, by first stripe is
2576 * D D D P Q rather than
2577 * Q D D D P
2578 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002579 stripe2 += 1;
2580 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002581 qd_idx = pd_idx + 1;
2582 if (pd_idx == raid_disks-1) {
2583 (*dd_idx)++; /* Q D D D P */
2584 qd_idx = 0;
2585 } else if (*dd_idx >= pd_idx)
2586 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002587 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002588 break;
2589
2590 case ALGORITHM_ROTATING_N_CONTINUE:
2591 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002592 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002593 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2594 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002595 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002596 break;
2597
2598 case ALGORITHM_LEFT_ASYMMETRIC_6:
2599 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002600 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002601 if (*dd_idx >= pd_idx)
2602 (*dd_idx)++;
2603 qd_idx = raid_disks - 1;
2604 break;
2605
2606 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002607 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002608 if (*dd_idx >= pd_idx)
2609 (*dd_idx)++;
2610 qd_idx = raid_disks - 1;
2611 break;
2612
2613 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002614 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002615 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2616 qd_idx = raid_disks - 1;
2617 break;
2618
2619 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002620 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002621 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2622 qd_idx = raid_disks - 1;
2623 break;
2624
2625 case ALGORITHM_PARITY_0_6:
2626 pd_idx = 0;
2627 (*dd_idx)++;
2628 qd_idx = raid_disks - 1;
2629 break;
2630
NeilBrown16a53ec2006-06-26 00:27:38 -07002631 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002632 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002633 }
2634 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 }
2636
NeilBrown911d4ee2009-03-31 14:39:38 +11002637 if (sh) {
2638 sh->pd_idx = pd_idx;
2639 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002640 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 /*
2643 * Finally, compute the new sector number
2644 */
2645 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2646 return new_sector;
2647}
2648
NeilBrown784052e2009-03-31 15:19:07 +11002649static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
NeilBrownd1688a62011-10-11 16:49:52 +11002651 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002652 int raid_disks = sh->disks;
2653 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002655 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2656 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002657 int algorithm = previous ? conf->prev_algo
2658 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 sector_t stripe;
2660 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002661 sector_t chunk_number;
2662 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002664 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
2666 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2667 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
NeilBrown16a53ec2006-06-26 00:27:38 -07002669 if (i == sh->pd_idx)
2670 return 0;
2671 switch(conf->level) {
2672 case 4: break;
2673 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002674 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 case ALGORITHM_LEFT_ASYMMETRIC:
2676 case ALGORITHM_RIGHT_ASYMMETRIC:
2677 if (i > sh->pd_idx)
2678 i--;
2679 break;
2680 case ALGORITHM_LEFT_SYMMETRIC:
2681 case ALGORITHM_RIGHT_SYMMETRIC:
2682 if (i < sh->pd_idx)
2683 i += raid_disks;
2684 i -= (sh->pd_idx + 1);
2685 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002686 case ALGORITHM_PARITY_0:
2687 i -= 1;
2688 break;
2689 case ALGORITHM_PARITY_N:
2690 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002692 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002693 }
2694 break;
2695 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002696 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002697 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002698 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002699 case ALGORITHM_LEFT_ASYMMETRIC:
2700 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002701 case ALGORITHM_ROTATING_ZERO_RESTART:
2702 case ALGORITHM_ROTATING_N_RESTART:
2703 if (sh->pd_idx == raid_disks-1)
2704 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002705 else if (i > sh->pd_idx)
2706 i -= 2; /* D D P Q D */
2707 break;
2708 case ALGORITHM_LEFT_SYMMETRIC:
2709 case ALGORITHM_RIGHT_SYMMETRIC:
2710 if (sh->pd_idx == raid_disks-1)
2711 i--; /* Q D D D P */
2712 else {
2713 /* D D P Q D */
2714 if (i < sh->pd_idx)
2715 i += raid_disks;
2716 i -= (sh->pd_idx + 2);
2717 }
2718 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002719 case ALGORITHM_PARITY_0:
2720 i -= 2;
2721 break;
2722 case ALGORITHM_PARITY_N:
2723 break;
2724 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002725 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002726 if (sh->pd_idx == 0)
2727 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002728 else {
2729 /* D D Q P D */
2730 if (i < sh->pd_idx)
2731 i += raid_disks;
2732 i -= (sh->pd_idx + 1);
2733 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002734 break;
2735 case ALGORITHM_LEFT_ASYMMETRIC_6:
2736 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2737 if (i > sh->pd_idx)
2738 i--;
2739 break;
2740 case ALGORITHM_LEFT_SYMMETRIC_6:
2741 case ALGORITHM_RIGHT_SYMMETRIC_6:
2742 if (i < sh->pd_idx)
2743 i += data_disks + 1;
2744 i -= (sh->pd_idx + 1);
2745 break;
2746 case ALGORITHM_PARITY_0_6:
2747 i -= 1;
2748 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002749 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002750 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002751 }
2752 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
2754
2755 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002756 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
NeilBrown112bf892009-03-31 14:39:38 +11002758 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002759 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002760 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2761 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002762 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2763 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 return 0;
2765 }
2766 return r_sector;
2767}
2768
Dan Williams600aa102008-06-28 08:32:05 +10002769static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002770schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002771 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002772{
2773 int i, pd_idx = sh->pd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002774 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002775 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002776
Dan Williamse33129d2007-01-02 13:52:30 -07002777 if (rcw) {
Dan Williamse33129d2007-01-02 13:52:30 -07002778
2779 for (i = disks; i--; ) {
2780 struct r5dev *dev = &sh->dev[i];
2781
2782 if (dev->towrite) {
2783 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002784 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002785 if (!expand)
2786 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002787 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002788 }
2789 }
NeilBrownce7d3632013-03-04 12:37:14 +11002790 /* if we are not expanding this is a proper write request, and
2791 * there will be bios with new data to be drained into the
2792 * stripe cache
2793 */
2794 if (!expand) {
2795 if (!s->locked)
2796 /* False alarm, nothing to do */
2797 return;
2798 sh->reconstruct_state = reconstruct_state_drain_run;
2799 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2800 } else
2801 sh->reconstruct_state = reconstruct_state_run;
2802
2803 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
2804
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002805 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002806 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002807 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002808 } else {
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002809 BUG_ON(level == 6);
Dan Williamse33129d2007-01-02 13:52:30 -07002810 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2811 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
2812
Dan Williamse33129d2007-01-02 13:52:30 -07002813 for (i = disks; i--; ) {
2814 struct r5dev *dev = &sh->dev[i];
2815 if (i == pd_idx)
2816 continue;
2817
Dan Williamse33129d2007-01-02 13:52:30 -07002818 if (dev->towrite &&
2819 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002820 test_bit(R5_Wantcompute, &dev->flags))) {
2821 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002822 set_bit(R5_LOCKED, &dev->flags);
2823 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002824 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002825 }
2826 }
NeilBrownce7d3632013-03-04 12:37:14 +11002827 if (!s->locked)
2828 /* False alarm - nothing to do */
2829 return;
2830 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
2831 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2832 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2833 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002834 }
2835
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002836 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002837 * are in flight
2838 */
2839 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2840 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002841 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002842
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002843 if (level == 6) {
2844 int qd_idx = sh->qd_idx;
2845 struct r5dev *dev = &sh->dev[qd_idx];
2846
2847 set_bit(R5_LOCKED, &dev->flags);
2848 clear_bit(R5_UPTODATE, &dev->flags);
2849 s->locked++;
2850 }
2851
Dan Williams600aa102008-06-28 08:32:05 +10002852 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07002853 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002854 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002855}
NeilBrown16a53ec2006-06-26 00:27:38 -07002856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857/*
2858 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002859 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 * The bi_next chain must be in order.
2861 */
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002862static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx,
2863 int forwrite, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864{
2865 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11002866 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002867 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
NeilBrowncbe47ec2011-07-26 11:20:35 +10002869 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002870 (unsigned long long)bi->bi_iter.bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 (unsigned long long)sh->sector);
2872
Shaohua Lib17459c2012-07-19 16:01:31 +10002873 /*
2874 * If several bio share a stripe. The bio bi_phys_segments acts as a
2875 * reference count to avoid race. The reference count should already be
2876 * increased before this function is called (for example, in
2877 * make_request()), so other bio sharing this stripe will not free the
2878 * stripe. If a stripe is owned by one stripe, the stripe lock will
2879 * protect it.
2880 */
2881 spin_lock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002882 /* Don't allow new IO added to stripes in batch list */
2883 if (sh->batch_head)
2884 goto overlap;
NeilBrown72626682005-09-09 16:23:54 -07002885 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002887 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07002888 firstwrite = 1;
2889 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 bip = &sh->dev[dd_idx].toread;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002891 while (*bip && (*bip)->bi_iter.bi_sector < bi->bi_iter.bi_sector) {
2892 if (bio_end_sector(*bip) > bi->bi_iter.bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 goto overlap;
2894 bip = & (*bip)->bi_next;
2895 }
Kent Overstreet4f024f32013-10-11 15:44:27 -07002896 if (*bip && (*bip)->bi_iter.bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 goto overlap;
2898
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002899 if (!forwrite || previous)
2900 clear_bit(STRIPE_BATCH_READY, &sh->state);
2901
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002902 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 if (*bip)
2904 bi->bi_next = *bip;
2905 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10002906 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07002907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 if (forwrite) {
2909 /* check if page is covered */
2910 sector_t sector = sh->dev[dd_idx].sector;
2911 for (bi=sh->dev[dd_idx].towrite;
2912 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07002913 bi && bi->bi_iter.bi_sector <= sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002915 if (bio_end_sector(bi) >= sector)
2916 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 }
2918 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
shli@kernel.org7a87f432014-12-15 12:57:03 +11002919 if (!test_and_set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags))
2920 sh->overwrite_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10002922
2923 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002924 (unsigned long long)(*bip)->bi_iter.bi_sector,
NeilBrowncbe47ec2011-07-26 11:20:35 +10002925 (unsigned long long)sh->sector, dd_idx);
NeilBrownb97390a2012-10-11 13:50:12 +11002926 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10002927
2928 if (conf->mddev->bitmap && firstwrite) {
2929 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2930 STRIPE_SECTORS, 0);
2931 sh->bm_seq = conf->seq_flush+1;
2932 set_bit(STRIPE_BIT_DELAY, &sh->state);
2933 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11002934
2935 if (stripe_can_batch(sh))
2936 stripe_add_to_batch_list(conf, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 return 1;
2938
2939 overlap:
2940 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10002941 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return 0;
2943}
2944
NeilBrownd1688a62011-10-11 16:49:52 +11002945static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08002946
NeilBrownd1688a62011-10-11 16:49:52 +11002947static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002948 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002949{
NeilBrown784052e2009-03-31 15:19:07 +11002950 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10002951 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11002952 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002953 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002954 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002955
NeilBrown112bf892009-03-31 14:39:38 +11002956 raid5_compute_sector(conf,
2957 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002958 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002959 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002960 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002961}
2962
Dan Williamsa4456852007-07-09 11:56:43 -07002963static void
NeilBrownd1688a62011-10-11 16:49:52 +11002964handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002965 struct stripe_head_state *s, int disks,
2966 struct bio **return_bi)
2967{
2968 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11002969 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07002970 for (i = disks; i--; ) {
2971 struct bio *bi;
2972 int bitmap_end = 0;
2973
2974 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11002975 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07002976 rcu_read_lock();
2977 rdev = rcu_dereference(conf->disks[i].rdev);
2978 if (rdev && test_bit(In_sync, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10002979 atomic_inc(&rdev->nr_pending);
2980 else
2981 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002982 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10002983 if (rdev) {
2984 if (!rdev_set_badblocks(
2985 rdev,
2986 sh->sector,
2987 STRIPE_SECTORS, 0))
2988 md_error(conf->mddev, rdev);
2989 rdev_dec_pending(rdev, conf->mddev);
2990 }
Dan Williamsa4456852007-07-09 11:56:43 -07002991 }
Shaohua Lib17459c2012-07-19 16:01:31 +10002992 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07002993 /* fail all writes first */
2994 bi = sh->dev[i].towrite;
2995 sh->dev[i].towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11002996 sh->overwrite_disks = 0;
Shaohua Lib17459c2012-07-19 16:01:31 +10002997 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11002998 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07002999 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07003000
3001 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3002 wake_up(&conf->wait_for_overlap);
3003
Kent Overstreet4f024f32013-10-11 15:44:27 -07003004 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003005 sh->dev[i].sector + STRIPE_SECTORS) {
3006 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
3007 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003008 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003009 md_write_end(conf->mddev);
3010 bi->bi_next = *return_bi;
3011 *return_bi = bi;
3012 }
3013 bi = nextbi;
3014 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003015 if (bitmap_end)
3016 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3017 STRIPE_SECTORS, 0, 0);
3018 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003019 /* and fail all 'written' */
3020 bi = sh->dev[i].written;
3021 sh->dev[i].written = NULL;
Shaohua Lid592a992014-05-21 17:57:44 +08003022 if (test_and_clear_bit(R5_SkipCopy, &sh->dev[i].flags)) {
3023 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
3024 sh->dev[i].page = sh->dev[i].orig_page;
3025 }
3026
Dan Williamsa4456852007-07-09 11:56:43 -07003027 if (bi) bitmap_end = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003028 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003029 sh->dev[i].sector + STRIPE_SECTORS) {
3030 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
3031 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003032 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003033 md_write_end(conf->mddev);
3034 bi->bi_next = *return_bi;
3035 *return_bi = bi;
3036 }
3037 bi = bi2;
3038 }
3039
Dan Williamsb5e98d62007-01-02 13:52:31 -07003040 /* fail any reads if this device is non-operational and
3041 * the data has not reached the cache yet.
3042 */
3043 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
3044 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
3045 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11003046 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003047 bi = sh->dev[i].toread;
3048 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11003049 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003050 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3051 wake_up(&conf->wait_for_overlap);
Kent Overstreet4f024f32013-10-11 15:44:27 -07003052 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003053 sh->dev[i].sector + STRIPE_SECTORS) {
3054 struct bio *nextbi =
3055 r5_next_bio(bi, sh->dev[i].sector);
3056 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003057 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003058 bi->bi_next = *return_bi;
3059 *return_bi = bi;
3060 }
3061 bi = nextbi;
3062 }
3063 }
Dan Williamsa4456852007-07-09 11:56:43 -07003064 if (bitmap_end)
3065 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3066 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10003067 /* If we were in the middle of a write the parity block might
3068 * still be locked - so just clear all R5_LOCKED flags
3069 */
3070 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003071 }
3072
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003073 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3074 if (atomic_dec_and_test(&conf->pending_full_writes))
3075 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07003076}
3077
NeilBrown7f0da592011-07-28 11:39:22 +10003078static void
NeilBrownd1688a62011-10-11 16:49:52 +11003079handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10003080 struct stripe_head_state *s)
3081{
3082 int abort = 0;
3083 int i;
3084
shli@kernel.org59fc6302014-12-15 12:57:03 +11003085 BUG_ON(sh->batch_head);
NeilBrown7f0da592011-07-28 11:39:22 +10003086 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003087 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3088 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10003089 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11003090 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10003091 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10003092 * Don't even need to abort as that is handled elsewhere
3093 * if needed, and not always wanted e.g. if there is a known
3094 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11003095 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10003096 * non-sync devices, or abort the recovery
3097 */
NeilBrown18b98372012-04-01 23:48:38 +10003098 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
3099 /* During recovery devices cannot be removed, so
3100 * locking and refcounting of rdevs is not needed
3101 */
3102 for (i = 0; i < conf->raid_disks; i++) {
3103 struct md_rdev *rdev = conf->disks[i].rdev;
3104 if (rdev
3105 && !test_bit(Faulty, &rdev->flags)
3106 && !test_bit(In_sync, &rdev->flags)
3107 && !rdev_set_badblocks(rdev, sh->sector,
3108 STRIPE_SECTORS, 0))
3109 abort = 1;
3110 rdev = conf->disks[i].replacement;
3111 if (rdev
3112 && !test_bit(Faulty, &rdev->flags)
3113 && !test_bit(In_sync, &rdev->flags)
3114 && !rdev_set_badblocks(rdev, sh->sector,
3115 STRIPE_SECTORS, 0))
3116 abort = 1;
3117 }
3118 if (abort)
3119 conf->recovery_disabled =
3120 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10003121 }
NeilBrown18b98372012-04-01 23:48:38 +10003122 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10003123}
3124
NeilBrown9a3e1102011-12-23 10:17:53 +11003125static int want_replace(struct stripe_head *sh, int disk_idx)
3126{
3127 struct md_rdev *rdev;
3128 int rv = 0;
3129 /* Doing recovery so rcu locking not required */
3130 rdev = sh->raid_conf->disks[disk_idx].replacement;
3131 if (rdev
3132 && !test_bit(Faulty, &rdev->flags)
3133 && !test_bit(In_sync, &rdev->flags)
3134 && (rdev->recovery_offset <= sh->sector
3135 || rdev->mddev->recovery_cp <= sh->sector))
3136 rv = 1;
3137
3138 return rv;
3139}
3140
NeilBrown93b3dbc2011-07-27 11:00:36 +10003141/* fetch_block - checks the given member device to see if its data needs
Dan Williams1fe797e2008-06-28 09:16:30 +10003142 * to be read or computed to satisfy a request.
3143 *
3144 * Returns 1 when no more member devices need to be checked, otherwise returns
NeilBrown93b3dbc2011-07-27 11:00:36 +10003145 * 0 to tell the loop in handle_stripe_fill to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07003146 */
NeilBrown2c58f062015-02-02 11:32:23 +11003147
3148static int need_this_block(struct stripe_head *sh, struct stripe_head_state *s,
3149 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07003150{
3151 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10003152 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
3153 &sh->dev[s->failed_num[1]] };
NeilBrownea664c82015-02-02 14:03:28 +11003154 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07003155
NeilBrowna79cfe12015-02-02 11:37:59 +11003156
3157 if (test_bit(R5_LOCKED, &dev->flags) ||
3158 test_bit(R5_UPTODATE, &dev->flags))
3159 /* No point reading this as we already have it or have
3160 * decided to get it.
3161 */
3162 return 0;
3163
3164 if (dev->toread ||
3165 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)))
3166 /* We need this block to directly satisfy a request */
3167 return 1;
3168
3169 if (s->syncing || s->expanding ||
3170 (s->replacing && want_replace(sh, disk_idx)))
3171 /* When syncing, or expanding we read everything.
3172 * When replacing, we need the replaced block.
3173 */
3174 return 1;
3175
3176 if ((s->failed >= 1 && fdev[0]->toread) ||
3177 (s->failed >= 2 && fdev[1]->toread))
3178 /* If we want to read from a failed device, then
3179 * we need to actually read every other device.
3180 */
3181 return 1;
3182
NeilBrowna9d56952015-02-02 11:49:10 +11003183 /* Sometimes neither read-modify-write nor reconstruct-write
3184 * cycles can work. In those cases we read every block we
3185 * can. Then the parity-update is certain to have enough to
3186 * work with.
3187 * This can only be a problem when we need to write something,
3188 * and some device has failed. If either of those tests
3189 * fail we need look no further.
3190 */
3191 if (!s->failed || !s->to_write)
3192 return 0;
3193
3194 if (test_bit(R5_Insync, &dev->flags) &&
3195 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3196 /* Pre-reads at not permitted until after short delay
3197 * to gather multiple requests. However if this
3198 * device is no Insync, the block could only be be computed
3199 * and there is no need to delay that.
3200 */
3201 return 0;
NeilBrownea664c82015-02-02 14:03:28 +11003202
3203 for (i = 0; i < s->failed; i++) {
3204 if (fdev[i]->towrite &&
3205 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3206 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3207 /* If we have a partial write to a failed
3208 * device, then we will need to reconstruct
3209 * the content of that device, so all other
3210 * devices must be read.
3211 */
3212 return 1;
3213 }
3214
3215 /* If we are forced to do a reconstruct-write, either because
3216 * the current RAID6 implementation only supports that, or
3217 * or because parity cannot be trusted and we are currently
3218 * recovering it, there is extra need to be careful.
3219 * If one of the devices that we would need to read, because
3220 * it is not being overwritten (and maybe not written at all)
3221 * is missing/faulty, then we need to read everything we can.
3222 */
3223 if (sh->raid_conf->level != 6 &&
3224 sh->sector < sh->raid_conf->mddev->recovery_cp)
3225 /* reconstruct-write isn't being forced */
3226 return 0;
3227 for (i = 0; i < s->failed; i++) {
3228 if (!test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3229 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3230 return 1;
3231 }
3232
NeilBrown2c58f062015-02-02 11:32:23 +11003233 return 0;
3234}
3235
3236static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
3237 int disk_idx, int disks)
3238{
3239 struct r5dev *dev = &sh->dev[disk_idx];
3240
3241 /* is the data in this block needed, and can we get it? */
3242 if (need_this_block(sh, s, disk_idx, disks)) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003243 /* we would like to get this block, possibly by computing it,
3244 * otherwise read it if the backing disk is insync
3245 */
3246 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
3247 BUG_ON(test_bit(R5_Wantread, &dev->flags));
3248 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10003249 (s->failed && (disk_idx == s->failed_num[0] ||
3250 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003251 /* have disk failed, and we're requested to fetch it;
3252 * do compute it
3253 */
3254 pr_debug("Computing stripe %llu block %d\n",
3255 (unsigned long long)sh->sector, disk_idx);
3256 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3257 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3258 set_bit(R5_Wantcompute, &dev->flags);
3259 sh->ops.target = disk_idx;
3260 sh->ops.target2 = -1; /* no 2nd target */
3261 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10003262 /* Careful: from this point on 'uptodate' is in the eye
3263 * of raid_run_ops which services 'compute' operations
3264 * before writes. R5_Wantcompute flags a block that will
3265 * be R5_UPTODATE by the time it is needed for a
3266 * subsequent operation.
3267 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003268 s->uptodate++;
3269 return 1;
3270 } else if (s->uptodate == disks-2 && s->failed >= 2) {
3271 /* Computing 2-failure is *very* expensive; only
3272 * do it if failed >= 2
3273 */
3274 int other;
3275 for (other = disks; other--; ) {
3276 if (other == disk_idx)
3277 continue;
3278 if (!test_bit(R5_UPTODATE,
3279 &sh->dev[other].flags))
3280 break;
3281 }
3282 BUG_ON(other < 0);
3283 pr_debug("Computing stripe %llu blocks %d,%d\n",
3284 (unsigned long long)sh->sector,
3285 disk_idx, other);
3286 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3287 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3288 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
3289 set_bit(R5_Wantcompute, &sh->dev[other].flags);
3290 sh->ops.target = disk_idx;
3291 sh->ops.target2 = other;
3292 s->uptodate += 2;
3293 s->req_compute = 1;
3294 return 1;
3295 } else if (test_bit(R5_Insync, &dev->flags)) {
3296 set_bit(R5_LOCKED, &dev->flags);
3297 set_bit(R5_Wantread, &dev->flags);
3298 s->locked++;
3299 pr_debug("Reading block %d (sync=%d)\n",
3300 disk_idx, s->syncing);
3301 }
3302 }
3303
3304 return 0;
3305}
3306
3307/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10003308 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003309 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10003310static void handle_stripe_fill(struct stripe_head *sh,
3311 struct stripe_head_state *s,
3312 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003313{
3314 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003315
shli@kernel.org59fc6302014-12-15 12:57:03 +11003316 BUG_ON(sh->batch_head);
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003317 /* look for blocks to read/compute, skip this if a compute
3318 * is already in flight, or if the stripe contents are in the
3319 * midst of changing due to a write
3320 */
3321 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
3322 !sh->reconstruct_state)
3323 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10003324 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003325 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003326 set_bit(STRIPE_HANDLE, &sh->state);
3327}
3328
Dan Williams1fe797e2008-06-28 09:16:30 +10003329/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07003330 * any written block on an uptodate or failed drive can be returned.
3331 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
3332 * never LOCKED, so we don't need to test 'failed' directly.
3333 */
NeilBrownd1688a62011-10-11 16:49:52 +11003334static void handle_stripe_clean_event(struct r5conf *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07003335 struct stripe_head *sh, int disks, struct bio **return_bi)
3336{
3337 int i;
3338 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003339 int discard_pending = 0;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003340 struct stripe_head *head_sh = sh;
3341 bool do_endio = false;
3342 int wakeup_nr = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003343
3344 for (i = disks; i--; )
3345 if (sh->dev[i].written) {
3346 dev = &sh->dev[i];
3347 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003348 (test_bit(R5_UPTODATE, &dev->flags) ||
Shaohua Lid592a992014-05-21 17:57:44 +08003349 test_bit(R5_Discard, &dev->flags) ||
3350 test_bit(R5_SkipCopy, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003351 /* We can return any write requests */
3352 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003353 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11003354 if (test_and_clear_bit(R5_Discard, &dev->flags))
3355 clear_bit(R5_UPTODATE, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08003356 if (test_and_clear_bit(R5_SkipCopy, &dev->flags)) {
3357 WARN_ON(test_bit(R5_UPTODATE, &dev->flags));
Shaohua Lid592a992014-05-21 17:57:44 +08003358 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003359 do_endio = true;
3360
3361returnbi:
3362 dev->page = dev->orig_page;
Dan Williamsa4456852007-07-09 11:56:43 -07003363 wbi = dev->written;
3364 dev->written = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003365 while (wbi && wbi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003366 dev->sector + STRIPE_SECTORS) {
3367 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003368 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003369 md_write_end(conf->mddev);
3370 wbi->bi_next = *return_bi;
3371 *return_bi = wbi;
3372 }
3373 wbi = wbi2;
3374 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003375 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3376 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07003377 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003378 0);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003379 if (head_sh->batch_head) {
3380 sh = list_first_entry(&sh->batch_list,
3381 struct stripe_head,
3382 batch_list);
3383 if (sh != head_sh) {
3384 dev = &sh->dev[i];
3385 goto returnbi;
3386 }
3387 }
3388 sh = head_sh;
3389 dev = &sh->dev[i];
NeilBrownf8dfcff2013-03-12 12:18:06 +11003390 } else if (test_bit(R5_Discard, &dev->flags))
3391 discard_pending = 1;
Shaohua Lid592a992014-05-21 17:57:44 +08003392 WARN_ON(test_bit(R5_SkipCopy, &dev->flags));
3393 WARN_ON(dev->page != dev->orig_page);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003394 }
3395 if (!discard_pending &&
3396 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
3397 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
3398 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
3399 if (sh->qd_idx >= 0) {
3400 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
3401 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
3402 }
3403 /* now that discard is done we can proceed with any sync */
3404 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08003405 /*
3406 * SCSI discard will change some bio fields and the stripe has
3407 * no updated data, so remove it from hash list and the stripe
3408 * will be reinitialized
3409 */
3410 spin_lock_irq(&conf->device_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003411unhash:
Shaohua Lid47648f2013-10-19 14:51:42 +08003412 remove_hash(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003413 if (head_sh->batch_head) {
3414 sh = list_first_entry(&sh->batch_list,
3415 struct stripe_head, batch_list);
3416 if (sh != head_sh)
3417 goto unhash;
3418 }
Shaohua Lid47648f2013-10-19 14:51:42 +08003419 spin_unlock_irq(&conf->device_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003420 sh = head_sh;
3421
NeilBrownf8dfcff2013-03-12 12:18:06 +11003422 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
3423 set_bit(STRIPE_HANDLE, &sh->state);
3424
3425 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003426
3427 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3428 if (atomic_dec_and_test(&conf->pending_full_writes))
3429 md_wakeup_thread(conf->mddev->thread);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003430
3431 if (!head_sh->batch_head || !do_endio)
3432 return;
3433 for (i = 0; i < head_sh->disks; i++) {
3434 if (test_and_clear_bit(R5_Overlap, &head_sh->dev[i].flags))
3435 wakeup_nr++;
3436 }
3437 while (!list_empty(&head_sh->batch_list)) {
3438 int i;
3439 sh = list_first_entry(&head_sh->batch_list,
3440 struct stripe_head, batch_list);
3441 list_del_init(&sh->batch_list);
3442
3443 sh->state = head_sh->state & (~((1 << STRIPE_ACTIVE) |
3444 (1 << STRIPE_PREREAD_ACTIVE)));
3445 sh->check_state = head_sh->check_state;
3446 sh->reconstruct_state = head_sh->reconstruct_state;
3447 for (i = 0; i < sh->disks; i++) {
3448 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3449 wakeup_nr++;
3450 sh->dev[i].flags = head_sh->dev[i].flags;
3451 }
3452
3453 spin_lock_irq(&sh->stripe_lock);
3454 sh->batch_head = NULL;
3455 spin_unlock_irq(&sh->stripe_lock);
3456 release_stripe(sh);
3457 }
3458
3459 spin_lock_irq(&head_sh->stripe_lock);
3460 head_sh->batch_head = NULL;
3461 spin_unlock_irq(&head_sh->stripe_lock);
3462 wake_up_nr(&conf->wait_for_overlap, wakeup_nr);
Dan Williamsa4456852007-07-09 11:56:43 -07003463}
3464
NeilBrownd1688a62011-10-11 16:49:52 +11003465static void handle_stripe_dirtying(struct r5conf *conf,
NeilBrownc8ac1802011-07-27 11:00:36 +10003466 struct stripe_head *sh,
3467 struct stripe_head_state *s,
3468 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003469{
3470 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11003471 sector_t recovery_cp = conf->mddev->recovery_cp;
3472
3473 /* RAID6 requires 'rcw' in current implementation.
3474 * Otherwise, check whether resync is now happening or should start.
3475 * If yes, then the array is dirty (after unclean shutdown or
3476 * initial creation), so parity in some stripes might be inconsistent.
3477 * In this case, we need to always do reconstruct-write, to ensure
3478 * that in case of drive failure or read-error correction, we
3479 * generate correct data from the parity.
3480 */
3481 if (conf->max_degraded == 2 ||
NeilBrown26ac1072015-02-18 11:35:14 +11003482 (recovery_cp < MaxSector && sh->sector >= recovery_cp &&
3483 s->failed == 0)) {
Alexander Lyakasa7854482012-10-11 13:50:12 +11003484 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10003485 * look like rcw is cheaper
3486 */
3487 rcw = 1; rmw = 2;
Alexander Lyakasa7854482012-10-11 13:50:12 +11003488 pr_debug("force RCW max_degraded=%u, recovery_cp=%llu sh->sector=%llu\n",
3489 conf->max_degraded, (unsigned long long)recovery_cp,
3490 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10003491 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003492 /* would I have to read this buffer for read_modify_write */
3493 struct r5dev *dev = &sh->dev[i];
3494 if ((dev->towrite || i == sh->pd_idx) &&
3495 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003496 !(test_bit(R5_UPTODATE, &dev->flags) ||
3497 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003498 if (test_bit(R5_Insync, &dev->flags))
3499 rmw++;
3500 else
3501 rmw += 2*disks; /* cannot read it */
3502 }
3503 /* Would I have to read this buffer for reconstruct_write */
3504 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
3505 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003506 !(test_bit(R5_UPTODATE, &dev->flags) ||
3507 test_bit(R5_Wantcompute, &dev->flags))) {
NeilBrown67f45542014-05-28 13:39:22 +10003508 if (test_bit(R5_Insync, &dev->flags))
3509 rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07003510 else
3511 rcw += 2*disks;
3512 }
3513 }
Dan Williams45b42332007-07-09 11:56:43 -07003514 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003515 (unsigned long long)sh->sector, rmw, rcw);
3516 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrowna9add5d2012-10-31 11:59:09 +11003517 if (rmw < rcw && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003518 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003519 if (conf->mddev->queue)
3520 blk_add_trace_msg(conf->mddev->queue,
3521 "raid5 rmw %llu %d",
3522 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07003523 for (i = disks; i--; ) {
3524 struct r5dev *dev = &sh->dev[i];
3525 if ((dev->towrite || i == sh->pd_idx) &&
3526 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003527 !(test_bit(R5_UPTODATE, &dev->flags) ||
3528 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003529 test_bit(R5_Insync, &dev->flags)) {
NeilBrown67f45542014-05-28 13:39:22 +10003530 if (test_bit(STRIPE_PREREAD_ACTIVE,
3531 &sh->state)) {
3532 pr_debug("Read_old block %d for r-m-w\n",
3533 i);
Dan Williamsa4456852007-07-09 11:56:43 -07003534 set_bit(R5_LOCKED, &dev->flags);
3535 set_bit(R5_Wantread, &dev->flags);
3536 s->locked++;
3537 } else {
3538 set_bit(STRIPE_DELAYED, &sh->state);
3539 set_bit(STRIPE_HANDLE, &sh->state);
3540 }
3541 }
3542 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003543 }
NeilBrownc8ac1802011-07-27 11:00:36 +10003544 if (rcw <= rmw && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003545 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003546 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003547 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003548 for (i = disks; i--; ) {
3549 struct r5dev *dev = &sh->dev[i];
3550 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003551 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003552 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003553 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003554 test_bit(R5_Wantcompute, &dev->flags))) {
3555 rcw++;
NeilBrown67f45542014-05-28 13:39:22 +10003556 if (test_bit(R5_Insync, &dev->flags) &&
3557 test_bit(STRIPE_PREREAD_ACTIVE,
3558 &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003559 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003560 "%d for Reconstruct\n", i);
3561 set_bit(R5_LOCKED, &dev->flags);
3562 set_bit(R5_Wantread, &dev->flags);
3563 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003564 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003565 } else {
3566 set_bit(STRIPE_DELAYED, &sh->state);
3567 set_bit(STRIPE_HANDLE, &sh->state);
3568 }
3569 }
3570 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003571 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003572 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3573 (unsigned long long)sh->sector,
3574 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003575 }
NeilBrownb1b02fe2015-02-02 10:44:29 +11003576
3577 if (rcw > disks && rmw > disks &&
3578 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3579 set_bit(STRIPE_DELAYED, &sh->state);
3580
Dan Williamsa4456852007-07-09 11:56:43 -07003581 /* now if nothing is locked, and if we have enough data,
3582 * we can start a write request
3583 */
Dan Williamsf38e1212007-01-02 13:52:30 -07003584 /* since handle_stripe can be called at any time we need to handle the
3585 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07003586 * subsequent call wants to start a write request. raid_run_ops only
3587 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07003588 * simultaneously. If this is not the case then new writes need to be
3589 * held off until the compute completes.
3590 */
Dan Williams976ea8d2008-06-28 08:32:03 +10003591 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
3592 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
3593 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003594 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07003595}
3596
NeilBrownd1688a62011-10-11 16:49:52 +11003597static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003598 struct stripe_head_state *s, int disks)
3599{
Dan Williamsecc65c92008-06-28 08:31:57 +10003600 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07003601
shli@kernel.org59fc6302014-12-15 12:57:03 +11003602 BUG_ON(sh->batch_head);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003603 set_bit(STRIPE_HANDLE, &sh->state);
3604
Dan Williamsecc65c92008-06-28 08:31:57 +10003605 switch (sh->check_state) {
3606 case check_state_idle:
3607 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07003608 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07003609 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10003610 sh->check_state = check_state_run;
3611 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003612 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003613 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10003614 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07003615 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003616 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10003617 /* fall through */
3618 case check_state_compute_result:
3619 sh->check_state = check_state_idle;
3620 if (!dev)
3621 dev = &sh->dev[sh->pd_idx];
3622
3623 /* check that a write has not made the stripe insync */
3624 if (test_bit(STRIPE_INSYNC, &sh->state))
3625 break;
3626
3627 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07003628 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3629 BUG_ON(s->uptodate != disks);
3630
3631 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10003632 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07003633 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07003634
Dan Williamsa4456852007-07-09 11:56:43 -07003635 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003636 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003637 break;
3638 case check_state_run:
3639 break; /* we will be called again upon completion */
3640 case check_state_check_result:
3641 sh->check_state = check_state_idle;
3642
3643 /* if a failure occurred during the check operation, leave
3644 * STRIPE_INSYNC not set and let the stripe be handled again
3645 */
3646 if (s->failed)
3647 break;
3648
3649 /* handle a successful check operation, if parity is correct
3650 * we are done. Otherwise update the mismatch count and repair
3651 * parity if !MD_RECOVERY_CHECK
3652 */
Dan Williamsad283ea2009-08-29 19:09:26 -07003653 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10003654 /* parity is correct (on disc,
3655 * not in buffer any more)
3656 */
3657 set_bit(STRIPE_INSYNC, &sh->state);
3658 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003659 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10003660 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3661 /* don't try to repair!! */
3662 set_bit(STRIPE_INSYNC, &sh->state);
3663 else {
3664 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003665 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003666 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3667 set_bit(R5_Wantcompute,
3668 &sh->dev[sh->pd_idx].flags);
3669 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003670 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003671 s->uptodate++;
3672 }
3673 }
3674 break;
3675 case check_state_compute_run:
3676 break;
3677 default:
3678 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3679 __func__, sh->check_state,
3680 (unsigned long long) sh->sector);
3681 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003682 }
3683}
3684
NeilBrownd1688a62011-10-11 16:49:52 +11003685static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003686 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003687 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003688{
Dan Williamsa4456852007-07-09 11:56:43 -07003689 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003690 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003691 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003692
shli@kernel.org59fc6302014-12-15 12:57:03 +11003693 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003694 set_bit(STRIPE_HANDLE, &sh->state);
3695
3696 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003697
Dan Williamsa4456852007-07-09 11:56:43 -07003698 /* Want to check and possibly repair P and Q.
3699 * However there could be one 'failed' device, in which
3700 * case we can only check one of them, possibly using the
3701 * other to generate missing data
3702 */
3703
Dan Williamsd82dfee2009-07-14 13:40:57 -07003704 switch (sh->check_state) {
3705 case check_state_idle:
3706 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10003707 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003708 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07003709 * makes sense to check P (If anything else were failed,
3710 * we would have used P to recreate it).
3711 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003712 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07003713 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003714 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003715 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07003716 * anything, so it makes sense to check it
3717 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003718 if (sh->check_state == check_state_run)
3719 sh->check_state = check_state_run_pq;
3720 else
3721 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07003722 }
Dan Williams36d1c642009-07-14 11:48:22 -07003723
Dan Williamsd82dfee2009-07-14 13:40:57 -07003724 /* discard potentially stale zero_sum_result */
3725 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07003726
Dan Williamsd82dfee2009-07-14 13:40:57 -07003727 if (sh->check_state == check_state_run) {
3728 /* async_xor_zero_sum destroys the contents of P */
3729 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3730 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07003731 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003732 if (sh->check_state >= check_state_run &&
3733 sh->check_state <= check_state_run_pq) {
3734 /* async_syndrome_zero_sum preserves P and Q, so
3735 * no need to mark them !uptodate here
3736 */
3737 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3738 break;
3739 }
Dan Williams36d1c642009-07-14 11:48:22 -07003740
Dan Williamsd82dfee2009-07-14 13:40:57 -07003741 /* we have 2-disk failure */
3742 BUG_ON(s->failed != 2);
3743 /* fall through */
3744 case check_state_compute_result:
3745 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003746
Dan Williamsd82dfee2009-07-14 13:40:57 -07003747 /* check that a write has not made the stripe insync */
3748 if (test_bit(STRIPE_INSYNC, &sh->state))
3749 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003750
3751 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003752 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003753 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003754 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003755 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003756 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003757 s->locked++;
3758 set_bit(R5_LOCKED, &dev->flags);
3759 set_bit(R5_Wantwrite, &dev->flags);
3760 }
3761 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003762 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003763 s->locked++;
3764 set_bit(R5_LOCKED, &dev->flags);
3765 set_bit(R5_Wantwrite, &dev->flags);
3766 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003767 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003768 dev = &sh->dev[pd_idx];
3769 s->locked++;
3770 set_bit(R5_LOCKED, &dev->flags);
3771 set_bit(R5_Wantwrite, &dev->flags);
3772 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003773 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003774 dev = &sh->dev[qd_idx];
3775 s->locked++;
3776 set_bit(R5_LOCKED, &dev->flags);
3777 set_bit(R5_Wantwrite, &dev->flags);
3778 }
3779 clear_bit(STRIPE_DEGRADED, &sh->state);
3780
3781 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003782 break;
3783 case check_state_run:
3784 case check_state_run_q:
3785 case check_state_run_pq:
3786 break; /* we will be called again upon completion */
3787 case check_state_check_result:
3788 sh->check_state = check_state_idle;
3789
3790 /* handle a successful check operation, if parity is correct
3791 * we are done. Otherwise update the mismatch count and repair
3792 * parity if !MD_RECOVERY_CHECK
3793 */
3794 if (sh->ops.zero_sum_result == 0) {
3795 /* both parities are correct */
3796 if (!s->failed)
3797 set_bit(STRIPE_INSYNC, &sh->state);
3798 else {
3799 /* in contrast to the raid5 case we can validate
3800 * parity, but still have a failure to write
3801 * back
3802 */
3803 sh->check_state = check_state_compute_result;
3804 /* Returning at this point means that we may go
3805 * off and bring p and/or q uptodate again so
3806 * we make sure to check zero_sum_result again
3807 * to verify if p or q need writeback
3808 */
3809 }
3810 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003811 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003812 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3813 /* don't try to repair!! */
3814 set_bit(STRIPE_INSYNC, &sh->state);
3815 else {
3816 int *target = &sh->ops.target;
3817
3818 sh->ops.target = -1;
3819 sh->ops.target2 = -1;
3820 sh->check_state = check_state_compute_run;
3821 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3822 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3823 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3824 set_bit(R5_Wantcompute,
3825 &sh->dev[pd_idx].flags);
3826 *target = pd_idx;
3827 target = &sh->ops.target2;
3828 s->uptodate++;
3829 }
3830 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3831 set_bit(R5_Wantcompute,
3832 &sh->dev[qd_idx].flags);
3833 *target = qd_idx;
3834 s->uptodate++;
3835 }
3836 }
3837 }
3838 break;
3839 case check_state_compute_run:
3840 break;
3841 default:
3842 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3843 __func__, sh->check_state,
3844 (unsigned long long) sh->sector);
3845 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003846 }
3847}
3848
NeilBrownd1688a62011-10-11 16:49:52 +11003849static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07003850{
3851 int i;
3852
3853 /* We have read all the blocks in this stripe and now we need to
3854 * copy some of them into a target stripe for expand.
3855 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07003856 struct dma_async_tx_descriptor *tx = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003857 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003858 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3859 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11003860 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11003861 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07003862 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07003863 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07003864
NeilBrown784052e2009-03-31 15:19:07 +11003865 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11003866 sector_t s = raid5_compute_sector(conf, bn, 0,
3867 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10003868 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07003869 if (sh2 == NULL)
3870 /* so far only the early blocks of this stripe
3871 * have been requested. When later blocks
3872 * get requested, we will try again
3873 */
3874 continue;
3875 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
3876 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
3877 /* must have already done this block */
3878 release_stripe(sh2);
3879 continue;
3880 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003881
3882 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07003883 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003884 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07003885 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07003886 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003887
Dan Williamsa4456852007-07-09 11:56:43 -07003888 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
3889 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
3890 for (j = 0; j < conf->raid_disks; j++)
3891 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10003892 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003893 !test_bit(R5_Expanded, &sh2->dev[j].flags))
3894 break;
3895 if (j == conf->raid_disks) {
3896 set_bit(STRIPE_EXPAND_READY, &sh2->state);
3897 set_bit(STRIPE_HANDLE, &sh2->state);
3898 }
3899 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003900
Dan Williamsa4456852007-07-09 11:56:43 -07003901 }
NeilBrowna2e08552007-09-11 15:23:36 -07003902 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11003903 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07003904}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
3906/*
3907 * handle_stripe - do things to a stripe.
3908 *
NeilBrown9a3e1102011-12-23 10:17:53 +11003909 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
3910 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11003912 * return some read requests which now have data
3913 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 * schedule a read on some buffers
3915 * schedule a write of some buffers
3916 * return confirmation of parity correctness
3917 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 */
Dan Williamsa4456852007-07-09 11:56:43 -07003919
NeilBrownacfe7262011-07-27 11:00:36 +10003920static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07003921{
NeilBrownd1688a62011-10-11 16:49:52 +11003922 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003923 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003924 struct r5dev *dev;
3925 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11003926 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003927
NeilBrownacfe7262011-07-27 11:00:36 +10003928 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003929
NeilBrownacfe7262011-07-27 11:00:36 +10003930 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3931 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
3932 s->failed_num[0] = -1;
3933 s->failed_num[1] = -1;
3934
3935 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07003936 rcu_read_lock();
3937 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003938 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10003939 sector_t first_bad;
3940 int bad_sectors;
3941 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10003942
NeilBrown16a53ec2006-06-26 00:27:38 -07003943 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07003944
Dan Williams45b42332007-07-09 11:56:43 -07003945 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11003946 i, dev->flags,
3947 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003948 /* maybe we can reply to a read
3949 *
3950 * new wantfill requests are only permitted while
3951 * ops_complete_biofill is guaranteed to be inactive
3952 */
3953 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3954 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3955 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07003956
3957 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10003958 if (test_bit(R5_LOCKED, &dev->flags))
3959 s->locked++;
3960 if (test_bit(R5_UPTODATE, &dev->flags))
3961 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003962 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10003963 s->compute++;
3964 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003965 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003966
NeilBrownacfe7262011-07-27 11:00:36 +10003967 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003968 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10003969 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10003970 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003971 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10003972 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003973 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003974 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003975 }
Dan Williamsa4456852007-07-09 11:56:43 -07003976 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10003977 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11003978 /* Prefer to use the replacement for reads, but only
3979 * if it is recovered enough and has no bad blocks.
3980 */
3981 rdev = rcu_dereference(conf->disks[i].replacement);
3982 if (rdev && !test_bit(Faulty, &rdev->flags) &&
3983 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
3984 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3985 &first_bad, &bad_sectors))
3986 set_bit(R5_ReadRepl, &dev->flags);
3987 else {
NeilBrown9a3e1102011-12-23 10:17:53 +11003988 if (rdev)
3989 set_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11003990 rdev = rcu_dereference(conf->disks[i].rdev);
3991 clear_bit(R5_ReadRepl, &dev->flags);
3992 }
NeilBrown9283d8c2011-12-08 16:27:57 +11003993 if (rdev && test_bit(Faulty, &rdev->flags))
3994 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10003995 if (rdev) {
3996 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3997 &first_bad, &bad_sectors);
3998 if (s->blocked_rdev == NULL
3999 && (test_bit(Blocked, &rdev->flags)
4000 || is_bad < 0)) {
4001 if (is_bad < 0)
4002 set_bit(BlockedBadBlocks,
4003 &rdev->flags);
4004 s->blocked_rdev = rdev;
4005 atomic_inc(&rdev->nr_pending);
4006 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004007 }
NeilBrown415e72d2010-06-17 17:25:21 +10004008 clear_bit(R5_Insync, &dev->flags);
4009 if (!rdev)
4010 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10004011 else if (is_bad) {
4012 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10004013 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
4014 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10004015 /* treat as in-sync, but with a read error
4016 * which we can now try to correct
4017 */
4018 set_bit(R5_Insync, &dev->flags);
4019 set_bit(R5_ReadError, &dev->flags);
4020 }
4021 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10004022 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11004023 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10004024 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11004025 set_bit(R5_Insync, &dev->flags);
4026 else if (test_bit(R5_UPTODATE, &dev->flags) &&
4027 test_bit(R5_Expanded, &dev->flags))
4028 /* If we've reshaped into here, we assume it is Insync.
4029 * We will shortly update recovery_offset to make
4030 * it official.
4031 */
4032 set_bit(R5_Insync, &dev->flags);
4033
NeilBrown1cc03eb2014-01-06 13:19:42 +11004034 if (test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004035 /* This flag does not apply to '.replacement'
4036 * only to .rdev, so make sure to check that*/
4037 struct md_rdev *rdev2 = rcu_dereference(
4038 conf->disks[i].rdev);
4039 if (rdev2 == rdev)
4040 clear_bit(R5_Insync, &dev->flags);
4041 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004042 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004043 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10004044 } else
4045 clear_bit(R5_WriteError, &dev->flags);
4046 }
NeilBrown1cc03eb2014-01-06 13:19:42 +11004047 if (test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004048 /* This flag does not apply to '.replacement'
4049 * only to .rdev, so make sure to check that*/
4050 struct md_rdev *rdev2 = rcu_dereference(
4051 conf->disks[i].rdev);
4052 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10004053 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004054 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10004055 } else
4056 clear_bit(R5_MadeGood, &dev->flags);
4057 }
NeilBrown977df362011-12-23 10:17:53 +11004058 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
4059 struct md_rdev *rdev2 = rcu_dereference(
4060 conf->disks[i].replacement);
4061 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
4062 s->handle_bad_blocks = 1;
4063 atomic_inc(&rdev2->nr_pending);
4064 } else
4065 clear_bit(R5_MadeGoodRepl, &dev->flags);
4066 }
NeilBrown415e72d2010-06-17 17:25:21 +10004067 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004068 /* The ReadError flag will just be confusing now */
4069 clear_bit(R5_ReadError, &dev->flags);
4070 clear_bit(R5_ReWrite, &dev->flags);
4071 }
NeilBrown415e72d2010-06-17 17:25:21 +10004072 if (test_bit(R5_ReadError, &dev->flags))
4073 clear_bit(R5_Insync, &dev->flags);
4074 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004075 if (s->failed < 2)
4076 s->failed_num[s->failed] = i;
4077 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11004078 if (rdev && !test_bit(Faulty, &rdev->flags))
4079 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10004080 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004081 }
NeilBrown9a3e1102011-12-23 10:17:53 +11004082 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4083 /* If there is a failed device being replaced,
4084 * we must be recovering.
4085 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10004086 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11004087 * else we can only be replacing
4088 * sync and recovery both need to read all devices, and so
4089 * use the same flag.
4090 */
4091 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10004092 sh->sector >= conf->mddev->recovery_cp ||
4093 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11004094 s->syncing = 1;
4095 else
4096 s->replacing = 1;
4097 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004098 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10004099}
NeilBrownf4168852007-02-28 20:11:53 -08004100
shli@kernel.org59fc6302014-12-15 12:57:03 +11004101static int clear_batch_ready(struct stripe_head *sh)
4102{
4103 struct stripe_head *tmp;
4104 if (!test_and_clear_bit(STRIPE_BATCH_READY, &sh->state))
4105 return 0;
4106 spin_lock(&sh->stripe_lock);
4107 if (!sh->batch_head) {
4108 spin_unlock(&sh->stripe_lock);
4109 return 0;
4110 }
4111
4112 /*
4113 * this stripe could be added to a batch list before we check
4114 * BATCH_READY, skips it
4115 */
4116 if (sh->batch_head != sh) {
4117 spin_unlock(&sh->stripe_lock);
4118 return 1;
4119 }
4120 spin_lock(&sh->batch_lock);
4121 list_for_each_entry(tmp, &sh->batch_list, batch_list)
4122 clear_bit(STRIPE_BATCH_READY, &tmp->state);
4123 spin_unlock(&sh->batch_lock);
4124 spin_unlock(&sh->stripe_lock);
4125
4126 /*
4127 * BATCH_READY is cleared, no new stripes can be added.
4128 * batch_list can be accessed without lock
4129 */
4130 return 0;
4131}
4132
shli@kernel.org72ac7332014-12-15 12:57:03 +11004133static void check_break_stripe_batch_list(struct stripe_head *sh)
4134{
4135 struct stripe_head *head_sh, *next;
4136 int i;
4137
4138 if (!test_and_clear_bit(STRIPE_BATCH_ERR, &sh->state))
4139 return;
4140
4141 head_sh = sh;
4142 do {
4143 sh = list_first_entry(&sh->batch_list,
4144 struct stripe_head, batch_list);
4145 BUG_ON(sh == head_sh);
4146 } while (!test_bit(STRIPE_DEGRADED, &sh->state));
4147
4148 while (sh != head_sh) {
4149 next = list_first_entry(&sh->batch_list,
4150 struct stripe_head, batch_list);
4151 list_del_init(&sh->batch_list);
4152
4153 sh->state = head_sh->state & ~((1 << STRIPE_ACTIVE) |
4154 (1 << STRIPE_PREREAD_ACTIVE) |
4155 (1 << STRIPE_DEGRADED));
4156 sh->check_state = head_sh->check_state;
4157 sh->reconstruct_state = head_sh->reconstruct_state;
4158 for (i = 0; i < sh->disks; i++)
4159 sh->dev[i].flags = head_sh->dev[i].flags &
4160 (~((1 << R5_WriteError) | (1 << R5_Overlap)));
4161
4162 spin_lock_irq(&sh->stripe_lock);
4163 sh->batch_head = NULL;
4164 spin_unlock_irq(&sh->stripe_lock);
4165
4166 set_bit(STRIPE_HANDLE, &sh->state);
4167 release_stripe(sh);
4168
4169 sh = next;
4170 }
4171}
4172
NeilBrowncc940152011-07-26 11:35:35 +10004173static void handle_stripe(struct stripe_head *sh)
4174{
4175 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11004176 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10004177 int i;
NeilBrown84789552011-07-27 11:00:36 +10004178 int prexor;
4179 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004180 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10004181
4182 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11004183 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10004184 /* already being handled, ensure it gets handled
4185 * again when current action finishes */
4186 set_bit(STRIPE_HANDLE, &sh->state);
4187 return;
4188 }
4189
shli@kernel.org59fc6302014-12-15 12:57:03 +11004190 if (clear_batch_ready(sh) ) {
4191 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
4192 return;
4193 }
4194
shli@kernel.org72ac7332014-12-15 12:57:03 +11004195 check_break_stripe_batch_list(sh);
4196
NeilBrownf8dfcff2013-03-12 12:18:06 +11004197 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4198 spin_lock(&sh->stripe_lock);
4199 /* Cannot process 'sync' concurrently with 'discard' */
4200 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
4201 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4202 set_bit(STRIPE_SYNCING, &sh->state);
4203 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10004204 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004205 }
4206 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10004207 }
4208 clear_bit(STRIPE_DELAYED, &sh->state);
4209
4210 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
4211 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
4212 (unsigned long long)sh->sector, sh->state,
4213 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
4214 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10004215
NeilBrownacfe7262011-07-27 11:00:36 +10004216 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10004217
NeilBrownbc2607f2011-07-28 11:39:22 +10004218 if (s.handle_bad_blocks) {
4219 set_bit(STRIPE_HANDLE, &sh->state);
4220 goto finish;
4221 }
4222
NeilBrown474af965fe2011-07-27 11:00:36 +10004223 if (unlikely(s.blocked_rdev)) {
4224 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11004225 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10004226 set_bit(STRIPE_HANDLE, &sh->state);
4227 goto finish;
4228 }
4229 /* There is nothing for the blocked_rdev to block */
4230 rdev_dec_pending(s.blocked_rdev, conf->mddev);
4231 s.blocked_rdev = NULL;
4232 }
4233
4234 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
4235 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
4236 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
4237 }
4238
4239 pr_debug("locked=%d uptodate=%d to_read=%d"
4240 " to_write=%d failed=%d failed_num=%d,%d\n",
4241 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
4242 s.failed_num[0], s.failed_num[1]);
4243 /* check if the array has lost more than max_degraded devices and,
4244 * if so, some requests might need to be failed.
4245 */
NeilBrown9a3f5302011-11-08 16:22:01 +11004246 if (s.failed > conf->max_degraded) {
4247 sh->check_state = 0;
4248 sh->reconstruct_state = 0;
4249 if (s.to_read+s.to_write+s.written)
4250 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11004251 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11004252 handle_failed_sync(conf, sh, &s);
4253 }
NeilBrown474af965fe2011-07-27 11:00:36 +10004254
NeilBrown84789552011-07-27 11:00:36 +10004255 /* Now we check to see if any write operations have recently
4256 * completed
4257 */
4258 prexor = 0;
4259 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
4260 prexor = 1;
4261 if (sh->reconstruct_state == reconstruct_state_drain_result ||
4262 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
4263 sh->reconstruct_state = reconstruct_state_idle;
4264
4265 /* All the 'written' buffers and the parity block are ready to
4266 * be written back to disk
4267 */
Shaohua Li9e4447682012-10-11 13:49:49 +11004268 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
4269 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004270 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11004271 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
4272 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004273 for (i = disks; i--; ) {
4274 struct r5dev *dev = &sh->dev[i];
4275 if (test_bit(R5_LOCKED, &dev->flags) &&
4276 (i == sh->pd_idx || i == sh->qd_idx ||
4277 dev->written)) {
4278 pr_debug("Writing block %d\n", i);
4279 set_bit(R5_Wantwrite, &dev->flags);
4280 if (prexor)
4281 continue;
NeilBrown9c4bdf62014-08-13 09:57:07 +10004282 if (s.failed > 1)
4283 continue;
NeilBrown84789552011-07-27 11:00:36 +10004284 if (!test_bit(R5_Insync, &dev->flags) ||
4285 ((i == sh->pd_idx || i == sh->qd_idx) &&
4286 s.failed == 0))
4287 set_bit(STRIPE_INSYNC, &sh->state);
4288 }
4289 }
4290 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4291 s.dec_preread_active = 1;
4292 }
4293
NeilBrownef5b7c62012-11-22 09:13:36 +11004294 /*
4295 * might be able to return some write requests if the parity blocks
4296 * are safe, or on a failed drive
4297 */
4298 pdev = &sh->dev[sh->pd_idx];
4299 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
4300 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
4301 qdev = &sh->dev[sh->qd_idx];
4302 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
4303 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
4304 || conf->level < 6;
4305
4306 if (s.written &&
4307 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
4308 && !test_bit(R5_LOCKED, &pdev->flags)
4309 && (test_bit(R5_UPTODATE, &pdev->flags) ||
4310 test_bit(R5_Discard, &pdev->flags))))) &&
4311 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
4312 && !test_bit(R5_LOCKED, &qdev->flags)
4313 && (test_bit(R5_UPTODATE, &qdev->flags) ||
4314 test_bit(R5_Discard, &qdev->flags))))))
4315 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
4316
4317 /* Now we might consider reading some blocks, either to check/generate
4318 * parity, or to satisfy requests
4319 * or to load a block that is being partially written.
4320 */
4321 if (s.to_read || s.non_overwrite
4322 || (conf->level == 6 && s.to_write && s.failed)
4323 || (s.syncing && (s.uptodate + s.compute < disks))
4324 || s.replacing
4325 || s.expanding)
4326 handle_stripe_fill(sh, &s, disks);
4327
NeilBrown84789552011-07-27 11:00:36 +10004328 /* Now to consider new write requests and what else, if anything
4329 * should be read. We do not handle new writes when:
4330 * 1/ A 'write' operation (copy+xor) is already in flight.
4331 * 2/ A 'check' operation is in flight, as it may clobber the parity
4332 * block.
4333 */
4334 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
4335 handle_stripe_dirtying(conf, sh, &s, disks);
4336
4337 /* maybe we need to check and possibly fix the parity for this stripe
4338 * Any reads will already have been scheduled, so we just see if enough
4339 * data is available. The parity check is held off while parity
4340 * dependent operations are in flight.
4341 */
4342 if (sh->check_state ||
4343 (s.syncing && s.locked == 0 &&
4344 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
4345 !test_bit(STRIPE_INSYNC, &sh->state))) {
4346 if (conf->level == 6)
4347 handle_parity_checks6(conf, sh, &s, disks);
4348 else
4349 handle_parity_checks5(conf, sh, &s, disks);
4350 }
NeilBrownc5a31002011-07-27 11:00:36 +10004351
NeilBrownf94c0b62013-07-22 12:57:21 +10004352 if ((s.replacing || s.syncing) && s.locked == 0
4353 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
4354 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11004355 /* Write out to replacement devices where possible */
4356 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10004357 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
4358 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11004359 set_bit(R5_WantReplace, &sh->dev[i].flags);
4360 set_bit(R5_LOCKED, &sh->dev[i].flags);
4361 s.locked++;
4362 }
NeilBrownf94c0b62013-07-22 12:57:21 +10004363 if (s.replacing)
4364 set_bit(STRIPE_INSYNC, &sh->state);
4365 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11004366 }
4367 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10004368 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11004369 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10004370 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4371 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004372 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
4373 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10004374 }
4375
4376 /* If the failed drives are just a ReadError, then we might need
4377 * to progress the repair/check process
4378 */
4379 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
4380 for (i = 0; i < s.failed; i++) {
4381 struct r5dev *dev = &sh->dev[s.failed_num[i]];
4382 if (test_bit(R5_ReadError, &dev->flags)
4383 && !test_bit(R5_LOCKED, &dev->flags)
4384 && test_bit(R5_UPTODATE, &dev->flags)
4385 ) {
4386 if (!test_bit(R5_ReWrite, &dev->flags)) {
4387 set_bit(R5_Wantwrite, &dev->flags);
4388 set_bit(R5_ReWrite, &dev->flags);
4389 set_bit(R5_LOCKED, &dev->flags);
4390 s.locked++;
4391 } else {
4392 /* let's read it back */
4393 set_bit(R5_Wantread, &dev->flags);
4394 set_bit(R5_LOCKED, &dev->flags);
4395 s.locked++;
4396 }
4397 }
4398 }
4399
NeilBrown3687c062011-07-27 11:00:36 +10004400 /* Finish reconstruct operations initiated by the expansion process */
4401 if (sh->reconstruct_state == reconstruct_state_result) {
4402 struct stripe_head *sh_src
4403 = get_active_stripe(conf, sh->sector, 1, 1, 1);
4404 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
4405 /* sh cannot be written until sh_src has been read.
4406 * so arrange for sh to be delayed a little
4407 */
4408 set_bit(STRIPE_DELAYED, &sh->state);
4409 set_bit(STRIPE_HANDLE, &sh->state);
4410 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
4411 &sh_src->state))
4412 atomic_inc(&conf->preread_active_stripes);
4413 release_stripe(sh_src);
4414 goto finish;
4415 }
4416 if (sh_src)
4417 release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07004418
NeilBrown3687c062011-07-27 11:00:36 +10004419 sh->reconstruct_state = reconstruct_state_idle;
4420 clear_bit(STRIPE_EXPANDING, &sh->state);
4421 for (i = conf->raid_disks; i--; ) {
4422 set_bit(R5_Wantwrite, &sh->dev[i].flags);
4423 set_bit(R5_LOCKED, &sh->dev[i].flags);
4424 s.locked++;
4425 }
4426 }
4427
4428 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
4429 !sh->reconstruct_state) {
4430 /* Need to write out all blocks after computing parity */
4431 sh->disks = conf->raid_disks;
4432 stripe_set_idx(sh->sector, conf, 0, sh);
4433 schedule_reconstruction(sh, &s, 1, 1);
4434 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
4435 clear_bit(STRIPE_EXPAND_READY, &sh->state);
4436 atomic_dec(&conf->reshape_stripes);
4437 wake_up(&conf->wait_for_overlap);
4438 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4439 }
4440
4441 if (s.expanding && s.locked == 0 &&
4442 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
4443 handle_stripe_expansion(conf, sh);
4444
4445finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07004446 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10004447 if (unlikely(s.blocked_rdev)) {
4448 if (conf->mddev->external)
4449 md_wait_for_blocked_rdev(s.blocked_rdev,
4450 conf->mddev);
4451 else
4452 /* Internal metadata will immediately
4453 * be written by raid5d, so we don't
4454 * need to wait here.
4455 */
4456 rdev_dec_pending(s.blocked_rdev,
4457 conf->mddev);
4458 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004459
NeilBrownbc2607f2011-07-28 11:39:22 +10004460 if (s.handle_bad_blocks)
4461 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004462 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10004463 struct r5dev *dev = &sh->dev[i];
4464 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
4465 /* We own a safe reference to the rdev */
4466 rdev = conf->disks[i].rdev;
4467 if (!rdev_set_badblocks(rdev, sh->sector,
4468 STRIPE_SECTORS, 0))
4469 md_error(conf->mddev, rdev);
4470 rdev_dec_pending(rdev, conf->mddev);
4471 }
NeilBrownb84db562011-07-28 11:39:23 +10004472 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
4473 rdev = conf->disks[i].rdev;
4474 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004475 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10004476 rdev_dec_pending(rdev, conf->mddev);
4477 }
NeilBrown977df362011-12-23 10:17:53 +11004478 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
4479 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11004480 if (!rdev)
4481 /* rdev have been moved down */
4482 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11004483 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004484 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11004485 rdev_dec_pending(rdev, conf->mddev);
4486 }
NeilBrownbc2607f2011-07-28 11:39:22 +10004487 }
4488
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004489 if (s.ops_request)
4490 raid_run_ops(sh, s.ops_request);
4491
Dan Williamsf0e43bc2008-06-28 08:31:55 +10004492 ops_run_io(sh, &s);
4493
NeilBrownc5709ef2011-07-26 11:35:20 +10004494 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11004495 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02004496 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11004497 * have actually been submitted.
4498 */
4499 atomic_dec(&conf->preread_active_stripes);
4500 if (atomic_read(&conf->preread_active_stripes) <
4501 IO_THRESHOLD)
4502 md_wakeup_thread(conf->mddev->thread);
4503 }
4504
NeilBrownc5709ef2011-07-26 11:35:20 +10004505 return_io(s.return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07004506
Dan Williams257a4b42011-11-08 16:22:06 +11004507 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07004508}
4509
NeilBrownd1688a62011-10-11 16:49:52 +11004510static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511{
4512 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
4513 while (!list_empty(&conf->delayed_list)) {
4514 struct list_head *l = conf->delayed_list.next;
4515 struct stripe_head *sh;
4516 sh = list_entry(l, struct stripe_head, lru);
4517 list_del_init(l);
4518 clear_bit(STRIPE_DELAYED, &sh->state);
4519 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4520 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004521 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08004522 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 }
NeilBrown482c0832011-04-18 18:25:42 +10004524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525}
4526
Shaohua Li566c09c2013-11-14 15:16:17 +11004527static void activate_bit_delay(struct r5conf *conf,
4528 struct list_head *temp_inactive_list)
NeilBrown72626682005-09-09 16:23:54 -07004529{
4530 /* device_lock is held */
4531 struct list_head head;
4532 list_add(&head, &conf->bitmap_list);
4533 list_del_init(&conf->bitmap_list);
4534 while (!list_empty(&head)) {
4535 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
Shaohua Li566c09c2013-11-14 15:16:17 +11004536 int hash;
NeilBrown72626682005-09-09 16:23:54 -07004537 list_del_init(&sh->lru);
4538 atomic_inc(&sh->count);
Shaohua Li566c09c2013-11-14 15:16:17 +11004539 hash = sh->hash_lock_index;
4540 __release_stripe(conf, sh, &temp_inactive_list[hash]);
NeilBrown72626682005-09-09 16:23:54 -07004541 }
4542}
4543
NeilBrown5c675f82014-12-15 12:56:56 +11004544static int raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07004545{
NeilBrownd1688a62011-10-11 16:49:52 +11004546 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07004547
4548 /* No difference between reads and writes. Just check
4549 * how busy the stripe_cache is
4550 */
NeilBrown3fa841d2009-09-23 18:10:29 +10004551
NeilBrownf022b2f2006-10-03 01:15:56 -07004552 if (conf->inactive_blocked)
4553 return 1;
4554 if (conf->quiesce)
4555 return 1;
Shaohua Li4bda5562013-11-14 15:16:17 +11004556 if (atomic_read(&conf->empty_inactive_list_nr))
NeilBrownf022b2f2006-10-03 01:15:56 -07004557 return 1;
4558
4559 return 0;
4560}
4561
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004562/* We want read requests to align with chunks where possible,
4563 * but write requests don't need to.
4564 */
NeilBrown64590f42014-12-15 12:56:57 +11004565static int raid5_mergeable_bvec(struct mddev *mddev,
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004566 struct bvec_merge_data *bvm,
4567 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004568{
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004569 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004570 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10004571 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004572 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004573
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004574 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004575 return biovec->bv_len; /* always allow writes to be mergeable */
4576
Andre Noll664e7c42009-06-18 08:45:27 +10004577 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
4578 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004579 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
4580 if (max < 0) max = 0;
4581 if (max <= biovec->bv_len && bio_sectors == 0)
4582 return biovec->bv_len;
4583 else
4584 return max;
4585}
4586
NeilBrownfd01b882011-10-11 16:47:53 +11004587static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004588{
Kent Overstreet4f024f32013-10-11 15:44:27 -07004589 sector_t sector = bio->bi_iter.bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10004590 unsigned int chunk_sectors = mddev->chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004591 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004592
Andre Noll664e7c42009-06-18 08:45:27 +10004593 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
4594 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004595 return chunk_sectors >=
4596 ((sector & (chunk_sectors - 1)) + bio_sectors);
4597}
4598
4599/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004600 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
4601 * later sampled by raid5d.
4602 */
NeilBrownd1688a62011-10-11 16:49:52 +11004603static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004604{
4605 unsigned long flags;
4606
4607 spin_lock_irqsave(&conf->device_lock, flags);
4608
4609 bi->bi_next = conf->retry_read_aligned_list;
4610 conf->retry_read_aligned_list = bi;
4611
4612 spin_unlock_irqrestore(&conf->device_lock, flags);
4613 md_wakeup_thread(conf->mddev->thread);
4614}
4615
NeilBrownd1688a62011-10-11 16:49:52 +11004616static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004617{
4618 struct bio *bi;
4619
4620 bi = conf->retry_read_aligned;
4621 if (bi) {
4622 conf->retry_read_aligned = NULL;
4623 return bi;
4624 }
4625 bi = conf->retry_read_aligned_list;
4626 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08004627 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004628 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02004629 /*
4630 * this sets the active strip count to 1 and the processed
4631 * strip count to zero (upper 8 bits)
4632 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004633 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004634 }
4635
4636 return bi;
4637}
4638
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004639/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004640 * The "raid5_align_endio" should check if the read succeeded and if it
4641 * did, call bio_endio on the original bio (having bio_put the new bio
4642 * first).
4643 * If the read failed..
4644 */
NeilBrown6712ecf2007-09-27 12:47:43 +02004645static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004646{
4647 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11004648 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11004649 struct r5conf *conf;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004650 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrown3cb03002011-10-11 16:45:26 +11004651 struct md_rdev *rdev;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004652
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004653 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004654
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004655 rdev = (void*)raid_bi->bi_next;
4656 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11004657 mddev = rdev->mddev;
4658 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004659
4660 rdev_dec_pending(rdev, conf->mddev);
4661
4662 if (!error && uptodate) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004663 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
4664 raid_bi, 0);
NeilBrown6712ecf2007-09-27 12:47:43 +02004665 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004666 if (atomic_dec_and_test(&conf->active_aligned_reads))
4667 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02004668 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004669 }
4670
Dan Williams45b42332007-07-09 11:56:43 -07004671 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004672
4673 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004674}
4675
Neil Brown387bb172007-02-08 14:20:29 -08004676static int bio_fits_rdev(struct bio *bi)
4677{
Jens Axboe165125e2007-07-24 09:28:11 +02004678 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08004679
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004680 if (bio_sectors(bi) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08004681 return 0;
4682 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05004683 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08004684 return 0;
4685
4686 if (q->merge_bvec_fn)
4687 /* it's too hard to apply the merge_bvec_fn at this stage,
4688 * just just give up
4689 */
4690 return 0;
4691
4692 return 1;
4693}
4694
NeilBrownfd01b882011-10-11 16:47:53 +11004695static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004696{
NeilBrownd1688a62011-10-11 16:49:52 +11004697 struct r5conf *conf = mddev->private;
NeilBrown8553fe72009-12-14 12:49:47 +11004698 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004699 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11004700 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11004701 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004702
4703 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07004704 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004705 return 0;
4706 }
4707 /*
NeilBrowna167f662010-10-26 18:31:13 +11004708 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004709 */
NeilBrowna167f662010-10-26 18:31:13 +11004710 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004711 if (!align_bi)
4712 return 0;
4713 /*
4714 * set bi_end_io to a new function, and set bi_private to the
4715 * original bio.
4716 */
4717 align_bi->bi_end_io = raid5_align_endio;
4718 align_bi->bi_private = raid_bio;
4719 /*
4720 * compute position
4721 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004722 align_bi->bi_iter.bi_sector =
4723 raid5_compute_sector(conf, raid_bio->bi_iter.bi_sector,
4724 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004725
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004726 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004727 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11004728 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
4729 if (!rdev || test_bit(Faulty, &rdev->flags) ||
4730 rdev->recovery_offset < end_sector) {
4731 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
4732 if (rdev &&
4733 (test_bit(Faulty, &rdev->flags) ||
4734 !(test_bit(In_sync, &rdev->flags) ||
4735 rdev->recovery_offset >= end_sector)))
4736 rdev = NULL;
4737 }
4738 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10004739 sector_t first_bad;
4740 int bad_sectors;
4741
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004742 atomic_inc(&rdev->nr_pending);
4743 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004744 raid_bio->bi_next = (void*)rdev;
4745 align_bi->bi_bdev = rdev->bdev;
NeilBrown3fd83712014-08-23 20:19:26 +10004746 __clear_bit(BIO_SEG_VALID, &align_bi->bi_flags);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004747
NeilBrown31c176e2011-07-28 11:39:22 +10004748 if (!bio_fits_rdev(align_bi) ||
Kent Overstreet4f024f32013-10-11 15:44:27 -07004749 is_badblock(rdev, align_bi->bi_iter.bi_sector,
4750 bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10004751 &first_bad, &bad_sectors)) {
4752 /* too big in some way, or has a known bad block */
Neil Brown387bb172007-02-08 14:20:29 -08004753 bio_put(align_bi);
4754 rdev_dec_pending(rdev, mddev);
4755 return 0;
4756 }
4757
majianpeng6c0544e2012-06-12 08:31:10 +08004758 /* No reshape active, so we can trust rdev->data_offset */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004759 align_bi->bi_iter.bi_sector += rdev->data_offset;
majianpeng6c0544e2012-06-12 08:31:10 +08004760
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004761 spin_lock_irq(&conf->device_lock);
4762 wait_event_lock_irq(conf->wait_for_stripe,
4763 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01004764 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004765 atomic_inc(&conf->active_aligned_reads);
4766 spin_unlock_irq(&conf->device_lock);
4767
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004768 if (mddev->gendisk)
4769 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4770 align_bi, disk_devt(mddev->gendisk),
Kent Overstreet4f024f32013-10-11 15:44:27 -07004771 raid_bio->bi_iter.bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004772 generic_make_request(align_bi);
4773 return 1;
4774 } else {
4775 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004776 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004777 return 0;
4778 }
4779}
4780
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004781/* __get_priority_stripe - get the next stripe to process
4782 *
4783 * Full stripe writes are allowed to pass preread active stripes up until
4784 * the bypass_threshold is exceeded. In general the bypass_count
4785 * increments when the handle_list is handled before the hold_list; however, it
4786 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
4787 * stripe with in flight i/o. The bypass_count will be reset when the
4788 * head of the hold_list has changed, i.e. the head was promoted to the
4789 * handle_list.
4790 */
Shaohua Li851c30c2013-08-28 14:30:16 +08004791static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004792{
Shaohua Li851c30c2013-08-28 14:30:16 +08004793 struct stripe_head *sh = NULL, *tmp;
4794 struct list_head *handle_list = NULL;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004795 struct r5worker_group *wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004796
4797 if (conf->worker_cnt_per_group == 0) {
4798 handle_list = &conf->handle_list;
4799 } else if (group != ANY_GROUP) {
4800 handle_list = &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004801 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08004802 } else {
4803 int i;
4804 for (i = 0; i < conf->group_cnt; i++) {
4805 handle_list = &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004806 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08004807 if (!list_empty(handle_list))
4808 break;
4809 }
4810 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004811
4812 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
4813 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08004814 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004815 list_empty(&conf->hold_list) ? "empty" : "busy",
4816 atomic_read(&conf->pending_full_writes), conf->bypass_count);
4817
Shaohua Li851c30c2013-08-28 14:30:16 +08004818 if (!list_empty(handle_list)) {
4819 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004820
4821 if (list_empty(&conf->hold_list))
4822 conf->bypass_count = 0;
4823 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
4824 if (conf->hold_list.next == conf->last_hold)
4825 conf->bypass_count++;
4826 else {
4827 conf->last_hold = conf->hold_list.next;
4828 conf->bypass_count -= conf->bypass_threshold;
4829 if (conf->bypass_count < 0)
4830 conf->bypass_count = 0;
4831 }
4832 }
4833 } else if (!list_empty(&conf->hold_list) &&
4834 ((conf->bypass_threshold &&
4835 conf->bypass_count > conf->bypass_threshold) ||
4836 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08004837
4838 list_for_each_entry(tmp, &conf->hold_list, lru) {
4839 if (conf->worker_cnt_per_group == 0 ||
4840 group == ANY_GROUP ||
4841 !cpu_online(tmp->cpu) ||
4842 cpu_to_group(tmp->cpu) == group) {
4843 sh = tmp;
4844 break;
4845 }
4846 }
4847
4848 if (sh) {
4849 conf->bypass_count -= conf->bypass_threshold;
4850 if (conf->bypass_count < 0)
4851 conf->bypass_count = 0;
4852 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08004853 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004854 }
4855
4856 if (!sh)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004857 return NULL;
4858
Shaohua Libfc90cb2013-08-29 15:40:32 +08004859 if (wg) {
4860 wg->stripes_cnt--;
4861 sh->group = NULL;
4862 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004863 list_del_init(&sh->lru);
Shaohua Lic7a6d352014-04-15 09:12:54 +08004864 BUG_ON(atomic_inc_return(&sh->count) != 1);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004865 return sh;
4866}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004867
Shaohua Li8811b592012-08-02 08:33:00 +10004868struct raid5_plug_cb {
4869 struct blk_plug_cb cb;
4870 struct list_head list;
Shaohua Li566c09c2013-11-14 15:16:17 +11004871 struct list_head temp_inactive_list[NR_STRIPE_HASH_LOCKS];
Shaohua Li8811b592012-08-02 08:33:00 +10004872};
4873
4874static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
4875{
4876 struct raid5_plug_cb *cb = container_of(
4877 blk_cb, struct raid5_plug_cb, cb);
4878 struct stripe_head *sh;
4879 struct mddev *mddev = cb->cb.data;
4880 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11004881 int cnt = 0;
Shaohua Li566c09c2013-11-14 15:16:17 +11004882 int hash;
Shaohua Li8811b592012-08-02 08:33:00 +10004883
4884 if (cb->list.next && !list_empty(&cb->list)) {
4885 spin_lock_irq(&conf->device_lock);
4886 while (!list_empty(&cb->list)) {
4887 sh = list_first_entry(&cb->list, struct stripe_head, lru);
4888 list_del_init(&sh->lru);
4889 /*
4890 * avoid race release_stripe_plug() sees
4891 * STRIPE_ON_UNPLUG_LIST clear but the stripe
4892 * is still in our list
4893 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004894 smp_mb__before_atomic();
Shaohua Li8811b592012-08-02 08:33:00 +10004895 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08004896 /*
4897 * STRIPE_ON_RELEASE_LIST could be set here. In that
4898 * case, the count is always > 1 here
4899 */
Shaohua Li566c09c2013-11-14 15:16:17 +11004900 hash = sh->hash_lock_index;
4901 __release_stripe(conf, sh, &cb->temp_inactive_list[hash]);
NeilBrowna9add5d2012-10-31 11:59:09 +11004902 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10004903 }
4904 spin_unlock_irq(&conf->device_lock);
4905 }
Shaohua Li566c09c2013-11-14 15:16:17 +11004906 release_inactive_stripe_list(conf, cb->temp_inactive_list,
4907 NR_STRIPE_HASH_LOCKS);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004908 if (mddev->queue)
4909 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10004910 kfree(cb);
4911}
4912
4913static void release_stripe_plug(struct mddev *mddev,
4914 struct stripe_head *sh)
4915{
4916 struct blk_plug_cb *blk_cb = blk_check_plugged(
4917 raid5_unplug, mddev,
4918 sizeof(struct raid5_plug_cb));
4919 struct raid5_plug_cb *cb;
4920
4921 if (!blk_cb) {
4922 release_stripe(sh);
4923 return;
4924 }
4925
4926 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
4927
Shaohua Li566c09c2013-11-14 15:16:17 +11004928 if (cb->list.next == NULL) {
4929 int i;
Shaohua Li8811b592012-08-02 08:33:00 +10004930 INIT_LIST_HEAD(&cb->list);
Shaohua Li566c09c2013-11-14 15:16:17 +11004931 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
4932 INIT_LIST_HEAD(cb->temp_inactive_list + i);
4933 }
Shaohua Li8811b592012-08-02 08:33:00 +10004934
4935 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
4936 list_add_tail(&sh->lru, &cb->list);
4937 else
4938 release_stripe(sh);
4939}
4940
Shaohua Li620125f2012-10-11 13:49:05 +11004941static void make_discard_request(struct mddev *mddev, struct bio *bi)
4942{
4943 struct r5conf *conf = mddev->private;
4944 sector_t logical_sector, last_sector;
4945 struct stripe_head *sh;
4946 int remaining;
4947 int stripe_sectors;
4948
4949 if (mddev->reshape_position != MaxSector)
4950 /* Skip discard while reshape is happening */
4951 return;
4952
Kent Overstreet4f024f32013-10-11 15:44:27 -07004953 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
4954 last_sector = bi->bi_iter.bi_sector + (bi->bi_iter.bi_size>>9);
Shaohua Li620125f2012-10-11 13:49:05 +11004955
4956 bi->bi_next = NULL;
4957 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
4958
4959 stripe_sectors = conf->chunk_sectors *
4960 (conf->raid_disks - conf->max_degraded);
4961 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
4962 stripe_sectors);
4963 sector_div(last_sector, stripe_sectors);
4964
4965 logical_sector *= conf->chunk_sectors;
4966 last_sector *= conf->chunk_sectors;
4967
4968 for (; logical_sector < last_sector;
4969 logical_sector += STRIPE_SECTORS) {
4970 DEFINE_WAIT(w);
4971 int d;
4972 again:
4973 sh = get_active_stripe(conf, logical_sector, 0, 0, 0);
4974 prepare_to_wait(&conf->wait_for_overlap, &w,
4975 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004976 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
4977 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4978 release_stripe(sh);
4979 schedule();
4980 goto again;
4981 }
4982 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11004983 spin_lock_irq(&sh->stripe_lock);
4984 for (d = 0; d < conf->raid_disks; d++) {
4985 if (d == sh->pd_idx || d == sh->qd_idx)
4986 continue;
4987 if (sh->dev[d].towrite || sh->dev[d].toread) {
4988 set_bit(R5_Overlap, &sh->dev[d].flags);
4989 spin_unlock_irq(&sh->stripe_lock);
4990 release_stripe(sh);
4991 schedule();
4992 goto again;
4993 }
4994 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11004995 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11004996 finish_wait(&conf->wait_for_overlap, &w);
shli@kernel.org7a87f432014-12-15 12:57:03 +11004997 sh->overwrite_disks = 0;
Shaohua Li620125f2012-10-11 13:49:05 +11004998 for (d = 0; d < conf->raid_disks; d++) {
4999 if (d == sh->pd_idx || d == sh->qd_idx)
5000 continue;
5001 sh->dev[d].towrite = bi;
5002 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
5003 raid5_inc_bi_active_stripes(bi);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005004 sh->overwrite_disks++;
Shaohua Li620125f2012-10-11 13:49:05 +11005005 }
5006 spin_unlock_irq(&sh->stripe_lock);
5007 if (conf->mddev->bitmap) {
5008 for (d = 0;
5009 d < conf->raid_disks - conf->max_degraded;
5010 d++)
5011 bitmap_startwrite(mddev->bitmap,
5012 sh->sector,
5013 STRIPE_SECTORS,
5014 0);
5015 sh->bm_seq = conf->seq_flush + 1;
5016 set_bit(STRIPE_BIT_DELAY, &sh->state);
5017 }
5018
5019 set_bit(STRIPE_HANDLE, &sh->state);
5020 clear_bit(STRIPE_DELAYED, &sh->state);
5021 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5022 atomic_inc(&conf->preread_active_stripes);
5023 release_stripe_plug(mddev, sh);
5024 }
5025
5026 remaining = raid5_dec_bi_active_stripes(bi);
5027 if (remaining == 0) {
5028 md_write_end(mddev);
5029 bio_endio(bi, 0);
5030 }
5031}
5032
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07005033static void make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034{
NeilBrownd1688a62011-10-11 16:49:52 +11005035 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11005036 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 sector_t new_sector;
5038 sector_t logical_sector, last_sector;
5039 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01005040 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11005041 int remaining;
Shaohua Li27c0f682014-04-09 11:25:47 +08005042 DEFINE_WAIT(w);
5043 bool do_prepare;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044
Tejun Heoe9c74692010-09-03 11:56:18 +02005045 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
5046 md_flush_request(mddev, bi);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02005047 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07005048 }
5049
NeilBrown3d310eb2005-06-21 17:17:26 -07005050 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07005051
NeilBrown802ba062006-12-13 00:34:13 -08005052 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005053 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11005054 chunk_aligned_read(mddev,bi))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02005055 return;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005056
Shaohua Li620125f2012-10-11 13:49:05 +11005057 if (unlikely(bi->bi_rw & REQ_DISCARD)) {
5058 make_discard_request(mddev, bi);
5059 return;
5060 }
5061
Kent Overstreet4f024f32013-10-11 15:44:27 -07005062 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005063 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 bi->bi_next = NULL;
5065 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07005066
Shaohua Li27c0f682014-04-09 11:25:47 +08005067 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005069 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10005070 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08005071
Shaohua Li27c0f682014-04-09 11:25:47 +08005072 do_prepare = false;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005073 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10005074 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11005075 previous = 0;
Shaohua Li27c0f682014-04-09 11:25:47 +08005076 if (do_prepare)
5077 prepare_to_wait(&conf->wait_for_overlap, &w,
5078 TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005079 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11005080 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08005081 * 64bit on a 32bit platform, and so it might be
5082 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02005083 * Of course reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08005084 * the lock is dropped, so once we get a reference
5085 * to the stripe that we think it is, we will have
5086 * to check again.
5087 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005088 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005089 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005090 ? logical_sector < conf->reshape_progress
5091 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005092 previous = 1;
5093 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10005094 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005095 ? logical_sector < conf->reshape_safe
5096 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08005097 spin_unlock_irq(&conf->device_lock);
5098 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005099 do_prepare = true;
NeilBrownb578d552006-03-27 01:18:12 -08005100 goto retry;
5101 }
5102 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005103 spin_unlock_irq(&conf->device_lock);
5104 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005105
NeilBrown112bf892009-03-31 14:39:38 +11005106 new_sector = raid5_compute_sector(conf, logical_sector,
5107 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11005108 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10005109 pr_debug("raid456: make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10005110 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 (unsigned long long)logical_sector);
5112
NeilBrownb5663ba2009-03-31 14:39:38 +11005113 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10005114 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11005116 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005117 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08005118 * stripe, so we must do the range check again.
5119 * Expansion could still move past after this
5120 * test, but as we are holding a reference to
5121 * 'sh', we know that if that happens,
5122 * STRIPE_EXPANDING will get set and the expansion
5123 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005124 */
5125 int must_retry = 0;
5126 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005127 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11005128 ? logical_sector >= conf->reshape_progress
5129 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005130 /* mismatch, need to try again */
5131 must_retry = 1;
5132 spin_unlock_irq(&conf->device_lock);
5133 if (must_retry) {
5134 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07005135 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005136 do_prepare = true;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005137 goto retry;
5138 }
5139 }
NeilBrownc46501b2013-08-27 15:52:13 +10005140 if (read_seqcount_retry(&conf->gen_lock, seq)) {
5141 /* Might have got the wrong stripe_head
5142 * by accident
5143 */
5144 release_stripe(sh);
5145 goto retry;
5146 }
NeilBrowne62e58a2009-07-01 13:15:35 +10005147
Namhyung Kimffd96e32011-07-18 17:38:51 +10005148 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10005149 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08005150 logical_sector < mddev->suspend_hi) {
5151 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10005152 /* As the suspend_* range is controlled by
5153 * userspace, we want an interruptible
5154 * wait.
5155 */
5156 flush_signals(current);
5157 prepare_to_wait(&conf->wait_for_overlap,
5158 &w, TASK_INTERRUPTIBLE);
5159 if (logical_sector >= mddev->suspend_lo &&
Shaohua Li27c0f682014-04-09 11:25:47 +08005160 logical_sector < mddev->suspend_hi) {
NeilBrowne62e58a2009-07-01 13:15:35 +10005161 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005162 do_prepare = true;
5163 }
NeilBrowne464eaf2006-03-27 01:18:14 -08005164 goto retry;
5165 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005166
5167 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005168 !add_stripe_bio(sh, bi, dd_idx, rw, previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005169 /* Stripe is busy expanding or
5170 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 * and wait a while
5172 */
NeilBrown482c0832011-04-18 18:25:42 +10005173 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 release_stripe(sh);
5175 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005176 do_prepare = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177 goto retry;
5178 }
NeilBrown6ed30032008-02-06 01:40:00 -08005179 set_bit(STRIPE_HANDLE, &sh->state);
5180 clear_bit(STRIPE_DELAYED, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11005181 if ((!sh->batch_head || sh == sh->batch_head) &&
5182 (bi->bi_rw & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11005183 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5184 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10005185 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 } else {
5187 /* cannot get stripe for read-ahead, just give-up */
5188 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189 break;
5190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191 }
Shaohua Li27c0f682014-04-09 11:25:47 +08005192 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown7c13edc2011-04-18 18:25:43 +10005193
Shaohua Lie7836bd62012-07-19 16:01:31 +10005194 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08005195 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196
NeilBrown16a53ec2006-06-26 00:27:38 -07005197 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02005199
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005200 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
5201 bi, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10005202 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204}
5205
NeilBrownfd01b882011-10-11 16:47:53 +11005206static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11005207
NeilBrownfd01b882011-10-11 16:47:53 +11005208static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209{
NeilBrown52c03292006-06-26 00:27:43 -07005210 /* reshaping is quite different to recovery/resync so it is
5211 * handled quite separately ... here.
5212 *
5213 * On each call to sync_request, we gather one chunk worth of
5214 * destination stripes and flag them as expanding.
5215 * Then we find all the source stripes and request reads.
5216 * As the reads complete, handle_stripe will copy the data
5217 * into the destination stripe and release that stripe.
5218 */
NeilBrownd1688a62011-10-11 16:49:52 +11005219 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08005221 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08005222 int raid_disks = conf->previous_raid_disks;
5223 int data_disks = raid_disks - conf->max_degraded;
5224 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07005225 int i;
5226 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11005227 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11005228 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11005229 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11005230 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07005231
NeilBrownfef9c612009-03-31 15:16:46 +11005232 if (sector_nr == 0) {
5233 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10005234 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005235 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
5236 sector_nr = raid5_size(mddev, 0, 0)
5237 - conf->reshape_progress;
NeilBrown2c810cd2012-05-21 09:27:00 +10005238 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005239 conf->reshape_progress > 0)
5240 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005241 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005242 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11005243 mddev->curr_resync_completed = sector_nr;
5244 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11005245 *skipped = 1;
5246 return sector_nr;
5247 }
NeilBrown52c03292006-06-26 00:27:43 -07005248 }
5249
NeilBrown7a661382009-03-31 15:21:40 +11005250 /* We need to process a full chunk at a time.
5251 * If old and new chunk sizes differ, we need to process the
5252 * largest of these
5253 */
Andre Noll664e7c42009-06-18 08:45:27 +10005254 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
5255 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005256 else
Andre Noll9d8f0362009-06-18 08:45:01 +10005257 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005258
NeilBrownb5254dd2012-05-21 09:27:01 +10005259 /* We update the metadata at least every 10 seconds, or when
5260 * the data about to be copied would over-write the source of
5261 * the data at the front of the range. i.e. one new_stripe
5262 * along from reshape_progress new_maps to after where
5263 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07005264 */
NeilBrownfef9c612009-03-31 15:16:46 +11005265 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005266 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11005267 readpos = conf->reshape_progress;
5268 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005269 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08005270 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10005271 if (mddev->reshape_backwards) {
NeilBrowned37d832009-05-27 21:39:05 +10005272 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11005273 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005274 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11005275 } else {
NeilBrown7a661382009-03-31 15:21:40 +11005276 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10005277 readpos -= min_t(sector_t, reshape_sectors, readpos);
5278 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11005279 }
NeilBrown52c03292006-06-26 00:27:43 -07005280
NeilBrownb5254dd2012-05-21 09:27:01 +10005281 /* Having calculated the 'writepos' possibly use it
5282 * to set 'stripe_addr' which is where we will write to.
5283 */
5284 if (mddev->reshape_backwards) {
5285 BUG_ON(conf->reshape_progress == 0);
5286 stripe_addr = writepos;
5287 BUG_ON((mddev->dev_sectors &
5288 ~((sector_t)reshape_sectors - 1))
5289 - reshape_sectors - stripe_addr
5290 != sector_nr);
5291 } else {
5292 BUG_ON(writepos != sector_nr + reshape_sectors);
5293 stripe_addr = sector_nr;
5294 }
5295
NeilBrownc8f517c2009-03-31 15:28:40 +11005296 /* 'writepos' is the most advanced device address we might write.
5297 * 'readpos' is the least advanced device address we might read.
5298 * 'safepos' is the least address recorded in the metadata as having
5299 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10005300 * If there is a min_offset_diff, these are adjusted either by
5301 * increasing the safepos/readpos if diff is negative, or
5302 * increasing writepos if diff is positive.
5303 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11005304 * ensure safety in the face of a crash - that must be done by userspace
5305 * making a backup of the data. So in that case there is no particular
5306 * rush to update metadata.
5307 * Otherwise if 'safepos' is behind 'writepos', then we really need to
5308 * update the metadata to advance 'safepos' to match 'readpos' so that
5309 * we can be safe in the event of a crash.
5310 * So we insist on updating metadata if safepos is behind writepos and
5311 * readpos is beyond writepos.
5312 * In any case, update the metadata every 10 seconds.
5313 * Maybe that number should be configurable, but I'm not sure it is
5314 * worth it.... maybe it could be a multiple of safemode_delay???
5315 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005316 if (conf->min_offset_diff < 0) {
5317 safepos += -conf->min_offset_diff;
5318 readpos += -conf->min_offset_diff;
5319 } else
5320 writepos += conf->min_offset_diff;
5321
NeilBrown2c810cd2012-05-21 09:27:00 +10005322 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11005323 ? (safepos > writepos && readpos < writepos)
5324 : (safepos < writepos && readpos > writepos)) ||
5325 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07005326 /* Cannot proceed until we've updated the superblock... */
5327 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005328 atomic_read(&conf->reshape_stripes)==0
5329 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5330 if (atomic_read(&conf->reshape_stripes) != 0)
5331 return 0;
NeilBrownfef9c612009-03-31 15:16:46 +11005332 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005333 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005334 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07005335 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07005336 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07005337 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrownc91abf52013-11-19 12:02:01 +11005338 test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5339 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5340 return 0;
NeilBrown52c03292006-06-26 00:27:43 -07005341 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005342 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07005343 spin_unlock_irq(&conf->device_lock);
5344 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005345 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07005346 }
5347
NeilBrownab69ae12009-03-31 15:26:47 +11005348 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11005349 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07005350 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10005351 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10005352 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005353 set_bit(STRIPE_EXPANDING, &sh->state);
5354 atomic_inc(&conf->reshape_stripes);
5355 /* If any of this stripe is beyond the end of the old
5356 * array, then we need to zero those blocks
5357 */
5358 for (j=sh->disks; j--;) {
5359 sector_t s;
5360 if (j == sh->pd_idx)
5361 continue;
NeilBrownf4168852007-02-28 20:11:53 -08005362 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11005363 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08005364 continue;
NeilBrown784052e2009-03-31 15:19:07 +11005365 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11005366 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10005367 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07005368 continue;
5369 }
5370 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
5371 set_bit(R5_Expanded, &sh->dev[j].flags);
5372 set_bit(R5_UPTODATE, &sh->dev[j].flags);
5373 }
NeilBrowna9f326e2009-09-23 18:06:41 +10005374 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07005375 set_bit(STRIPE_EXPAND_READY, &sh->state);
5376 set_bit(STRIPE_HANDLE, &sh->state);
5377 }
NeilBrownab69ae12009-03-31 15:26:47 +11005378 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07005379 }
5380 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005381 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11005382 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005383 else
NeilBrown7a661382009-03-31 15:21:40 +11005384 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07005385 spin_unlock_irq(&conf->device_lock);
5386 /* Ok, those stripe are ready. We can start scheduling
5387 * reads on the source stripes.
5388 * The source stripes are determined by mapping the first and last
5389 * block on the destination stripes.
5390 */
NeilBrown52c03292006-06-26 00:27:43 -07005391 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11005392 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11005393 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07005394 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10005395 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10005396 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11005397 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11005398 if (last_sector >= mddev->dev_sectors)
5399 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07005400 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10005401 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005402 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
5403 set_bit(STRIPE_HANDLE, &sh->state);
5404 release_stripe(sh);
5405 first_sector += STRIPE_SECTORS;
5406 }
NeilBrownab69ae12009-03-31 15:26:47 +11005407 /* Now that the sources are clearly marked, we can release
5408 * the destination stripes
5409 */
5410 while (!list_empty(&stripes)) {
5411 sh = list_entry(stripes.next, struct stripe_head, lru);
5412 list_del_init(&sh->lru);
5413 release_stripe(sh);
5414 }
NeilBrownc6207272008-02-06 01:39:52 -08005415 /* If this takes us to the resync_max point where we have to pause,
5416 * then we need to write out the superblock.
5417 */
NeilBrown7a661382009-03-31 15:21:40 +11005418 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10005419 if ((sector_nr - mddev->curr_resync_completed) * 2
5420 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08005421 /* Cannot proceed until we've updated the superblock... */
5422 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005423 atomic_read(&conf->reshape_stripes) == 0
5424 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5425 if (atomic_read(&conf->reshape_stripes) != 0)
5426 goto ret;
NeilBrownfef9c612009-03-31 15:16:46 +11005427 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005428 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005429 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08005430 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5431 md_wakeup_thread(mddev->thread);
5432 wait_event(mddev->sb_wait,
5433 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
NeilBrownc91abf52013-11-19 12:02:01 +11005434 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5435 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5436 goto ret;
NeilBrownc6207272008-02-06 01:39:52 -08005437 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005438 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08005439 spin_unlock_irq(&conf->device_lock);
5440 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005441 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08005442 }
NeilBrownc91abf52013-11-19 12:02:01 +11005443ret:
NeilBrown7a661382009-03-31 15:21:40 +11005444 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07005445}
5446
NeilBrown09314792015-02-19 16:04:40 +11005447static inline sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
NeilBrown52c03292006-06-26 00:27:43 -07005448{
NeilBrownd1688a62011-10-11 16:49:52 +11005449 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07005450 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11005451 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11005452 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07005453 int still_degraded = 0;
5454 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455
NeilBrown72626682005-09-09 16:23:54 -07005456 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11005458
NeilBrown29269552006-03-27 01:18:10 -08005459 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
5460 end_reshape(conf);
5461 return 0;
5462 }
NeilBrown72626682005-09-09 16:23:54 -07005463
5464 if (mddev->curr_resync < max_sector) /* aborted */
5465 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
5466 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07005467 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07005468 conf->fullsync = 0;
5469 bitmap_close_sync(mddev->bitmap);
5470
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 return 0;
5472 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08005473
NeilBrown64bd6602009-08-03 10:59:58 +10005474 /* Allow raid5_quiesce to complete */
5475 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
5476
NeilBrown52c03292006-06-26 00:27:43 -07005477 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
5478 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08005479
NeilBrownc6207272008-02-06 01:39:52 -08005480 /* No need to check resync_max as we never do more than one
5481 * stripe, and as resync_max will always be on a chunk boundary,
5482 * if the check in md_do_sync didn't fire, there is no chance
5483 * of overstepping resync_max here
5484 */
5485
NeilBrown16a53ec2006-06-26 00:27:38 -07005486 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 * to resync, then assert that we are finished, because there is
5488 * nothing we can do.
5489 */
NeilBrown3285edf2006-06-26 00:27:55 -07005490 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005491 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11005492 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07005493 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494 return rv;
5495 }
majianpeng6f608042013-04-24 11:42:41 +10005496 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
5497 !conf->fullsync &&
5498 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
5499 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07005500 /* we can skip this block, and probably more */
5501 sync_blocks /= STRIPE_SECTORS;
5502 *skipped = 1;
5503 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
5504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505
NeilBrownb47490c2008-02-06 01:39:50 -08005506 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
5507
NeilBrowna8c906c2009-06-09 14:39:59 +10005508 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10005510 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07005512 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08005514 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005516 /* Need to check if array will still be degraded after recovery/resync
Eric Mei16d9cfa2015-01-06 09:35:02 -08005517 * Note in case of > 1 drive failures it's possible we're rebuilding
5518 * one drive while leaving another faulty drive in array.
NeilBrown16a53ec2006-06-26 00:27:38 -07005519 */
Eric Mei16d9cfa2015-01-06 09:35:02 -08005520 rcu_read_lock();
5521 for (i = 0; i < conf->raid_disks; i++) {
5522 struct md_rdev *rdev = ACCESS_ONCE(conf->disks[i].rdev);
5523
5524 if (rdev == NULL || test_bit(Faulty, &rdev->flags))
NeilBrown16a53ec2006-06-26 00:27:38 -07005525 still_degraded = 1;
Eric Mei16d9cfa2015-01-06 09:35:02 -08005526 }
5527 rcu_read_unlock();
NeilBrown16a53ec2006-06-26 00:27:38 -07005528
5529 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
5530
NeilBrown83206d62011-07-26 11:19:49 +10005531 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Eivind Sarto053f5b62014-06-09 17:06:19 -07005532 set_bit(STRIPE_HANDLE, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534 release_stripe(sh);
5535
5536 return STRIPE_SECTORS;
5537}
5538
NeilBrownd1688a62011-10-11 16:49:52 +11005539static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005540{
5541 /* We may not be able to submit a whole bio at once as there
5542 * may not be enough stripe_heads available.
5543 * We cannot pre-allocate enough stripe_heads as we may need
5544 * more than exist in the cache (if we allow ever large chunks).
5545 * So we do one stripe head at a time and record in
5546 * ->bi_hw_segments how many have been done.
5547 *
5548 * We *know* that this entire raid_bio is in one chunk, so
5549 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
5550 */
5551 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11005552 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005553 sector_t sector, logical_sector, last_sector;
5554 int scnt = 0;
5555 int remaining;
5556 int handled = 0;
5557
Kent Overstreet4f024f32013-10-11 15:44:27 -07005558 logical_sector = raid_bio->bi_iter.bi_sector &
5559 ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11005560 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11005561 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005562 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005563
5564 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08005565 logical_sector += STRIPE_SECTORS,
5566 sector += STRIPE_SECTORS,
5567 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005568
Shaohua Lie7836bd62012-07-19 16:01:31 +10005569 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005570 /* already done this stripe */
5571 continue;
5572
hui jiao2844dc32014-06-05 11:34:24 +08005573 sh = get_active_stripe(conf, sector, 0, 1, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005574
5575 if (!sh) {
5576 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10005577 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005578 conf->retry_read_aligned = raid_bio;
5579 return handled;
5580 }
5581
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005582 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0, 0)) {
Neil Brown387bb172007-02-08 14:20:29 -08005583 release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10005584 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08005585 conf->retry_read_aligned = raid_bio;
5586 return handled;
5587 }
5588
majianpeng3f9e7c12012-07-31 10:04:21 +10005589 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07005590 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005591 release_stripe(sh);
5592 handled++;
5593 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10005594 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005595 if (remaining == 0) {
5596 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
5597 raid_bio, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10005598 bio_endio(raid_bio, 0);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005599 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005600 if (atomic_dec_and_test(&conf->active_aligned_reads))
5601 wake_up(&conf->wait_for_stripe);
5602 return handled;
5603}
5604
Shaohua Libfc90cb2013-08-29 15:40:32 +08005605static int handle_active_stripes(struct r5conf *conf, int group,
Shaohua Li566c09c2013-11-14 15:16:17 +11005606 struct r5worker *worker,
5607 struct list_head *temp_inactive_list)
Shaohua Li46a06402012-08-02 08:33:15 +10005608{
5609 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +11005610 int i, batch_size = 0, hash;
5611 bool release_inactive = false;
Shaohua Li46a06402012-08-02 08:33:15 +10005612
5613 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08005614 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10005615 batch[batch_size++] = sh;
5616
Shaohua Li566c09c2013-11-14 15:16:17 +11005617 if (batch_size == 0) {
5618 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5619 if (!list_empty(temp_inactive_list + i))
5620 break;
5621 if (i == NR_STRIPE_HASH_LOCKS)
5622 return batch_size;
5623 release_inactive = true;
5624 }
Shaohua Li46a06402012-08-02 08:33:15 +10005625 spin_unlock_irq(&conf->device_lock);
5626
Shaohua Li566c09c2013-11-14 15:16:17 +11005627 release_inactive_stripe_list(conf, temp_inactive_list,
5628 NR_STRIPE_HASH_LOCKS);
5629
5630 if (release_inactive) {
5631 spin_lock_irq(&conf->device_lock);
5632 return 0;
5633 }
5634
Shaohua Li46a06402012-08-02 08:33:15 +10005635 for (i = 0; i < batch_size; i++)
5636 handle_stripe(batch[i]);
5637
5638 cond_resched();
5639
5640 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11005641 for (i = 0; i < batch_size; i++) {
5642 hash = batch[i]->hash_lock_index;
5643 __release_stripe(conf, batch[i], &temp_inactive_list[hash]);
5644 }
Shaohua Li46a06402012-08-02 08:33:15 +10005645 return batch_size;
5646}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005647
Shaohua Li851c30c2013-08-28 14:30:16 +08005648static void raid5_do_work(struct work_struct *work)
5649{
5650 struct r5worker *worker = container_of(work, struct r5worker, work);
5651 struct r5worker_group *group = worker->group;
5652 struct r5conf *conf = group->conf;
5653 int group_id = group - conf->worker_groups;
5654 int handled;
5655 struct blk_plug plug;
5656
5657 pr_debug("+++ raid5worker active\n");
5658
5659 blk_start_plug(&plug);
5660 handled = 0;
5661 spin_lock_irq(&conf->device_lock);
5662 while (1) {
5663 int batch_size, released;
5664
Shaohua Li566c09c2013-11-14 15:16:17 +11005665 released = release_stripe_list(conf, worker->temp_inactive_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08005666
Shaohua Li566c09c2013-11-14 15:16:17 +11005667 batch_size = handle_active_stripes(conf, group_id, worker,
5668 worker->temp_inactive_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +08005669 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08005670 if (!batch_size && !released)
5671 break;
5672 handled += batch_size;
5673 }
5674 pr_debug("%d stripes handled\n", handled);
5675
5676 spin_unlock_irq(&conf->device_lock);
5677 blk_finish_plug(&plug);
5678
5679 pr_debug("--- raid5worker inactive\n");
5680}
5681
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682/*
5683 * This is our raid5 kernel thread.
5684 *
5685 * We scan the hash table for stripes which can be handled now.
5686 * During the scan, completed stripes are saved for us by the interrupt
5687 * handler, so that they will not have to wait for our next wakeup.
5688 */
Shaohua Li4ed87312012-10-11 13:34:00 +11005689static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690{
Shaohua Li4ed87312012-10-11 13:34:00 +11005691 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005692 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005694 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695
Dan Williams45b42332007-07-09 11:56:43 -07005696 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697
5698 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005700 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701 handled = 0;
5702 spin_lock_irq(&conf->device_lock);
5703 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005704 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08005705 int batch_size, released;
5706
Shaohua Li566c09c2013-11-14 15:16:17 +11005707 released = release_stripe_list(conf, conf->temp_inactive_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708
NeilBrown0021b7b2012-07-31 09:08:14 +02005709 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10005710 !list_empty(&conf->bitmap_list)) {
5711 /* Now is a good time to flush some bitmap updates */
5712 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08005713 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07005714 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08005715 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10005716 conf->seq_write = conf->seq_flush;
Shaohua Li566c09c2013-11-14 15:16:17 +11005717 activate_bit_delay(conf, conf->temp_inactive_list);
NeilBrown72626682005-09-09 16:23:54 -07005718 }
NeilBrown0021b7b2012-07-31 09:08:14 +02005719 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07005720
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005721 while ((bio = remove_bio_from_retry(conf))) {
5722 int ok;
5723 spin_unlock_irq(&conf->device_lock);
5724 ok = retry_aligned_read(conf, bio);
5725 spin_lock_irq(&conf->device_lock);
5726 if (!ok)
5727 break;
5728 handled++;
5729 }
5730
Shaohua Li566c09c2013-11-14 15:16:17 +11005731 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL,
5732 conf->temp_inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08005733 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734 break;
Shaohua Li46a06402012-08-02 08:33:15 +10005735 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736
Shaohua Li46a06402012-08-02 08:33:15 +10005737 if (mddev->flags & ~(1<<MD_CHANGE_PENDING)) {
5738 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10005739 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10005740 spin_lock_irq(&conf->device_lock);
5741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 }
Dan Williams45b42332007-07-09 11:56:43 -07005743 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744
5745 spin_unlock_irq(&conf->device_lock);
5746
Dan Williamsc9f21aa2008-07-23 12:05:51 -07005747 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005748 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749
Dan Williams45b42332007-07-09 11:56:43 -07005750 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751}
5752
NeilBrown3f294f42005-11-08 21:39:25 -08005753static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005754raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08005755{
NeilBrown7b1485b2014-12-15 12:56:59 +11005756 struct r5conf *conf;
5757 int ret = 0;
5758 spin_lock(&mddev->lock);
5759 conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08005760 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11005761 ret = sprintf(page, "%d\n", conf->max_nr_stripes);
5762 spin_unlock(&mddev->lock);
5763 return ret;
NeilBrown3f294f42005-11-08 21:39:25 -08005764}
5765
NeilBrownc41d4ac2010-06-01 19:37:24 +10005766int
NeilBrownfd01b882011-10-11 16:47:53 +11005767raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10005768{
NeilBrownd1688a62011-10-11 16:49:52 +11005769 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005770 int err;
Shaohua Li566c09c2013-11-14 15:16:17 +11005771 int hash;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005772
5773 if (size <= 16 || size > 32768)
5774 return -EINVAL;
Shaohua Li566c09c2013-11-14 15:16:17 +11005775 hash = (conf->max_nr_stripes - 1) % NR_STRIPE_HASH_LOCKS;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005776 while (size < conf->max_nr_stripes) {
Shaohua Li566c09c2013-11-14 15:16:17 +11005777 if (drop_one_stripe(conf, hash))
NeilBrownc41d4ac2010-06-01 19:37:24 +10005778 conf->max_nr_stripes--;
5779 else
5780 break;
Shaohua Li566c09c2013-11-14 15:16:17 +11005781 hash--;
5782 if (hash < 0)
5783 hash = NR_STRIPE_HASH_LOCKS - 1;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005784 }
5785 err = md_allow_write(mddev);
5786 if (err)
5787 return err;
Shaohua Li566c09c2013-11-14 15:16:17 +11005788 hash = conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005789 while (size > conf->max_nr_stripes) {
Shaohua Li566c09c2013-11-14 15:16:17 +11005790 if (grow_one_stripe(conf, hash))
NeilBrownc41d4ac2010-06-01 19:37:24 +10005791 conf->max_nr_stripes++;
5792 else break;
Shaohua Li566c09c2013-11-14 15:16:17 +11005793 hash = (hash + 1) % NR_STRIPE_HASH_LOCKS;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005794 }
5795 return 0;
5796}
5797EXPORT_SYMBOL(raid5_set_cache_size);
5798
NeilBrown3f294f42005-11-08 21:39:25 -08005799static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005800raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08005801{
NeilBrown67918752014-12-15 12:57:01 +11005802 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07005803 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07005804 int err;
5805
NeilBrown3f294f42005-11-08 21:39:25 -08005806 if (len >= PAGE_SIZE)
5807 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005808 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08005809 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11005810 err = mddev_lock(mddev);
Dan Williamsb5470dc2008-06-27 21:44:04 -07005811 if (err)
5812 return err;
NeilBrown67918752014-12-15 12:57:01 +11005813 conf = mddev->private;
5814 if (!conf)
5815 err = -ENODEV;
5816 else
5817 err = raid5_set_cache_size(mddev, new);
5818 mddev_unlock(mddev);
5819
5820 return err ?: len;
NeilBrown3f294f42005-11-08 21:39:25 -08005821}
NeilBrown007583c2005-11-08 21:39:30 -08005822
NeilBrown96de1e62005-11-08 21:39:39 -08005823static struct md_sysfs_entry
5824raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
5825 raid5_show_stripe_cache_size,
5826 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08005827
5828static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005829raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005830{
NeilBrown7b1485b2014-12-15 12:56:59 +11005831 struct r5conf *conf;
5832 int ret = 0;
5833 spin_lock(&mddev->lock);
5834 conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005835 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11005836 ret = sprintf(page, "%d\n", conf->bypass_threshold);
5837 spin_unlock(&mddev->lock);
5838 return ret;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005839}
5840
5841static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005842raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005843{
NeilBrown67918752014-12-15 12:57:01 +11005844 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07005845 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11005846 int err;
5847
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005848 if (len >= PAGE_SIZE)
5849 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005850 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005851 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11005852
5853 err = mddev_lock(mddev);
5854 if (err)
5855 return err;
5856 conf = mddev->private;
5857 if (!conf)
5858 err = -ENODEV;
5859 else if (new > conf->max_nr_stripes)
5860 err = -EINVAL;
5861 else
5862 conf->bypass_threshold = new;
5863 mddev_unlock(mddev);
5864 return err ?: len;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005865}
5866
5867static struct md_sysfs_entry
5868raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
5869 S_IRUGO | S_IWUSR,
5870 raid5_show_preread_threshold,
5871 raid5_store_preread_threshold);
5872
5873static ssize_t
Shaohua Lid592a992014-05-21 17:57:44 +08005874raid5_show_skip_copy(struct mddev *mddev, char *page)
5875{
NeilBrown7b1485b2014-12-15 12:56:59 +11005876 struct r5conf *conf;
5877 int ret = 0;
5878 spin_lock(&mddev->lock);
5879 conf = mddev->private;
Shaohua Lid592a992014-05-21 17:57:44 +08005880 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11005881 ret = sprintf(page, "%d\n", conf->skip_copy);
5882 spin_unlock(&mddev->lock);
5883 return ret;
Shaohua Lid592a992014-05-21 17:57:44 +08005884}
5885
5886static ssize_t
5887raid5_store_skip_copy(struct mddev *mddev, const char *page, size_t len)
5888{
NeilBrown67918752014-12-15 12:57:01 +11005889 struct r5conf *conf;
Shaohua Lid592a992014-05-21 17:57:44 +08005890 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11005891 int err;
5892
Shaohua Lid592a992014-05-21 17:57:44 +08005893 if (len >= PAGE_SIZE)
5894 return -EINVAL;
Shaohua Lid592a992014-05-21 17:57:44 +08005895 if (kstrtoul(page, 10, &new))
5896 return -EINVAL;
5897 new = !!new;
Shaohua Lid592a992014-05-21 17:57:44 +08005898
NeilBrown67918752014-12-15 12:57:01 +11005899 err = mddev_lock(mddev);
5900 if (err)
5901 return err;
5902 conf = mddev->private;
5903 if (!conf)
5904 err = -ENODEV;
5905 else if (new != conf->skip_copy) {
5906 mddev_suspend(mddev);
5907 conf->skip_copy = new;
5908 if (new)
5909 mddev->queue->backing_dev_info.capabilities |=
5910 BDI_CAP_STABLE_WRITES;
5911 else
5912 mddev->queue->backing_dev_info.capabilities &=
5913 ~BDI_CAP_STABLE_WRITES;
5914 mddev_resume(mddev);
5915 }
5916 mddev_unlock(mddev);
5917 return err ?: len;
Shaohua Lid592a992014-05-21 17:57:44 +08005918}
5919
5920static struct md_sysfs_entry
5921raid5_skip_copy = __ATTR(skip_copy, S_IRUGO | S_IWUSR,
5922 raid5_show_skip_copy,
5923 raid5_store_skip_copy);
5924
Shaohua Lid592a992014-05-21 17:57:44 +08005925static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005926stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08005927{
NeilBrownd1688a62011-10-11 16:49:52 +11005928 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08005929 if (conf)
5930 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
5931 else
5932 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08005933}
5934
NeilBrown96de1e62005-11-08 21:39:39 -08005935static struct md_sysfs_entry
5936raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08005937
Shaohua Lib7214202013-08-27 17:50:42 +08005938static ssize_t
5939raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
5940{
NeilBrown7b1485b2014-12-15 12:56:59 +11005941 struct r5conf *conf;
5942 int ret = 0;
5943 spin_lock(&mddev->lock);
5944 conf = mddev->private;
Shaohua Lib7214202013-08-27 17:50:42 +08005945 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11005946 ret = sprintf(page, "%d\n", conf->worker_cnt_per_group);
5947 spin_unlock(&mddev->lock);
5948 return ret;
Shaohua Lib7214202013-08-27 17:50:42 +08005949}
5950
majianpeng60aaf932013-11-14 15:16:20 +11005951static int alloc_thread_groups(struct r5conf *conf, int cnt,
5952 int *group_cnt,
5953 int *worker_cnt_per_group,
5954 struct r5worker_group **worker_groups);
Shaohua Lib7214202013-08-27 17:50:42 +08005955static ssize_t
5956raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
5957{
NeilBrown67918752014-12-15 12:57:01 +11005958 struct r5conf *conf;
Shaohua Lib7214202013-08-27 17:50:42 +08005959 unsigned long new;
5960 int err;
majianpeng60aaf932013-11-14 15:16:20 +11005961 struct r5worker_group *new_groups, *old_groups;
5962 int group_cnt, worker_cnt_per_group;
Shaohua Lib7214202013-08-27 17:50:42 +08005963
5964 if (len >= PAGE_SIZE)
5965 return -EINVAL;
Shaohua Lib7214202013-08-27 17:50:42 +08005966 if (kstrtoul(page, 10, &new))
5967 return -EINVAL;
5968
NeilBrown67918752014-12-15 12:57:01 +11005969 err = mddev_lock(mddev);
Shaohua Lib7214202013-08-27 17:50:42 +08005970 if (err)
5971 return err;
NeilBrown67918752014-12-15 12:57:01 +11005972 conf = mddev->private;
5973 if (!conf)
5974 err = -ENODEV;
5975 else if (new != conf->worker_cnt_per_group) {
5976 mddev_suspend(mddev);
5977
5978 old_groups = conf->worker_groups;
5979 if (old_groups)
5980 flush_workqueue(raid5_wq);
5981
5982 err = alloc_thread_groups(conf, new,
5983 &group_cnt, &worker_cnt_per_group,
5984 &new_groups);
5985 if (!err) {
5986 spin_lock_irq(&conf->device_lock);
5987 conf->group_cnt = group_cnt;
5988 conf->worker_cnt_per_group = worker_cnt_per_group;
5989 conf->worker_groups = new_groups;
5990 spin_unlock_irq(&conf->device_lock);
5991
5992 if (old_groups)
5993 kfree(old_groups[0].workers);
5994 kfree(old_groups);
5995 }
5996 mddev_resume(mddev);
5997 }
5998 mddev_unlock(mddev);
5999
6000 return err ?: len;
Shaohua Lib7214202013-08-27 17:50:42 +08006001}
6002
6003static struct md_sysfs_entry
6004raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
6005 raid5_show_group_thread_cnt,
6006 raid5_store_group_thread_cnt);
6007
NeilBrown007583c2005-11-08 21:39:30 -08006008static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08006009 &raid5_stripecache_size.attr,
6010 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006011 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08006012 &raid5_group_thread_cnt.attr,
Shaohua Lid592a992014-05-21 17:57:44 +08006013 &raid5_skip_copy.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08006014 NULL,
6015};
NeilBrown007583c2005-11-08 21:39:30 -08006016static struct attribute_group raid5_attrs_group = {
6017 .name = NULL,
6018 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08006019};
6020
majianpeng60aaf932013-11-14 15:16:20 +11006021static int alloc_thread_groups(struct r5conf *conf, int cnt,
6022 int *group_cnt,
6023 int *worker_cnt_per_group,
6024 struct r5worker_group **worker_groups)
Shaohua Li851c30c2013-08-28 14:30:16 +08006025{
Shaohua Li566c09c2013-11-14 15:16:17 +11006026 int i, j, k;
Shaohua Li851c30c2013-08-28 14:30:16 +08006027 ssize_t size;
6028 struct r5worker *workers;
6029
majianpeng60aaf932013-11-14 15:16:20 +11006030 *worker_cnt_per_group = cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +08006031 if (cnt == 0) {
majianpeng60aaf932013-11-14 15:16:20 +11006032 *group_cnt = 0;
6033 *worker_groups = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08006034 return 0;
6035 }
majianpeng60aaf932013-11-14 15:16:20 +11006036 *group_cnt = num_possible_nodes();
Shaohua Li851c30c2013-08-28 14:30:16 +08006037 size = sizeof(struct r5worker) * cnt;
majianpeng60aaf932013-11-14 15:16:20 +11006038 workers = kzalloc(size * *group_cnt, GFP_NOIO);
6039 *worker_groups = kzalloc(sizeof(struct r5worker_group) *
6040 *group_cnt, GFP_NOIO);
6041 if (!*worker_groups || !workers) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006042 kfree(workers);
majianpeng60aaf932013-11-14 15:16:20 +11006043 kfree(*worker_groups);
Shaohua Li851c30c2013-08-28 14:30:16 +08006044 return -ENOMEM;
6045 }
6046
majianpeng60aaf932013-11-14 15:16:20 +11006047 for (i = 0; i < *group_cnt; i++) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006048 struct r5worker_group *group;
6049
NeilBrown0c775d52013-11-25 11:12:43 +11006050 group = &(*worker_groups)[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08006051 INIT_LIST_HEAD(&group->handle_list);
6052 group->conf = conf;
6053 group->workers = workers + i * cnt;
6054
6055 for (j = 0; j < cnt; j++) {
Shaohua Li566c09c2013-11-14 15:16:17 +11006056 struct r5worker *worker = group->workers + j;
6057 worker->group = group;
6058 INIT_WORK(&worker->work, raid5_do_work);
6059
6060 for (k = 0; k < NR_STRIPE_HASH_LOCKS; k++)
6061 INIT_LIST_HEAD(worker->temp_inactive_list + k);
Shaohua Li851c30c2013-08-28 14:30:16 +08006062 }
6063 }
6064
6065 return 0;
6066}
6067
6068static void free_thread_groups(struct r5conf *conf)
6069{
6070 if (conf->worker_groups)
6071 kfree(conf->worker_groups[0].workers);
6072 kfree(conf->worker_groups);
6073 conf->worker_groups = NULL;
6074}
6075
Dan Williams80c3a6c2009-03-17 18:10:40 -07006076static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11006077raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07006078{
NeilBrownd1688a62011-10-11 16:49:52 +11006079 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006080
6081 if (!sectors)
6082 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006083 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11006084 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11006085 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006086
Andre Noll9d8f0362009-06-18 08:45:01 +10006087 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10006088 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006089 return sectors * (raid_disks - conf->max_degraded);
6090}
6091
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306092static void free_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6093{
6094 safe_put_page(percpu->spare_page);
shli@kernel.org46d5b782014-12-15 12:57:02 +11006095 if (percpu->scribble)
6096 flex_array_free(percpu->scribble);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306097 percpu->spare_page = NULL;
6098 percpu->scribble = NULL;
6099}
6100
6101static int alloc_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6102{
6103 if (conf->level == 6 && !percpu->spare_page)
6104 percpu->spare_page = alloc_page(GFP_KERNEL);
6105 if (!percpu->scribble)
shli@kernel.org46d5b782014-12-15 12:57:02 +11006106 percpu->scribble = scribble_alloc(max(conf->raid_disks,
6107 conf->previous_raid_disks), conf->chunk_sectors /
6108 STRIPE_SECTORS, GFP_KERNEL);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306109
6110 if (!percpu->scribble || (conf->level == 6 && !percpu->spare_page)) {
6111 free_scratch_buffer(conf, percpu);
6112 return -ENOMEM;
6113 }
6114
6115 return 0;
6116}
6117
NeilBrownd1688a62011-10-11 16:49:52 +11006118static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006119{
Dan Williams36d1c642009-07-14 11:48:22 -07006120 unsigned long cpu;
6121
6122 if (!conf->percpu)
6123 return;
6124
Dan Williams36d1c642009-07-14 11:48:22 -07006125#ifdef CONFIG_HOTPLUG_CPU
6126 unregister_cpu_notifier(&conf->cpu_notify);
6127#endif
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306128
6129 get_online_cpus();
6130 for_each_possible_cpu(cpu)
6131 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
Dan Williams36d1c642009-07-14 11:48:22 -07006132 put_online_cpus();
6133
6134 free_percpu(conf->percpu);
6135}
6136
NeilBrownd1688a62011-10-11 16:49:52 +11006137static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10006138{
Shaohua Li851c30c2013-08-28 14:30:16 +08006139 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006140 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07006141 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006142 kfree(conf->disks);
6143 kfree(conf->stripe_hashtbl);
6144 kfree(conf);
6145}
6146
Dan Williams36d1c642009-07-14 11:48:22 -07006147#ifdef CONFIG_HOTPLUG_CPU
6148static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
6149 void *hcpu)
6150{
NeilBrownd1688a62011-10-11 16:49:52 +11006151 struct r5conf *conf = container_of(nfb, struct r5conf, cpu_notify);
Dan Williams36d1c642009-07-14 11:48:22 -07006152 long cpu = (long)hcpu;
6153 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
6154
6155 switch (action) {
6156 case CPU_UP_PREPARE:
6157 case CPU_UP_PREPARE_FROZEN:
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306158 if (alloc_scratch_buffer(conf, percpu)) {
Dan Williams36d1c642009-07-14 11:48:22 -07006159 pr_err("%s: failed memory allocation for cpu%ld\n",
6160 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07006161 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07006162 }
6163 break;
6164 case CPU_DEAD:
6165 case CPU_DEAD_FROZEN:
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306166 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
Dan Williams36d1c642009-07-14 11:48:22 -07006167 break;
6168 default:
6169 break;
6170 }
6171 return NOTIFY_OK;
6172}
6173#endif
6174
NeilBrownd1688a62011-10-11 16:49:52 +11006175static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006176{
6177 unsigned long cpu;
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306178 int err = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006179
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306180 conf->percpu = alloc_percpu(struct raid5_percpu);
6181 if (!conf->percpu)
Dan Williams36d1c642009-07-14 11:48:22 -07006182 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006183
Dan Williams36d1c642009-07-14 11:48:22 -07006184#ifdef CONFIG_HOTPLUG_CPU
6185 conf->cpu_notify.notifier_call = raid456_cpu_notify;
6186 conf->cpu_notify.priority = 0;
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306187 err = register_cpu_notifier(&conf->cpu_notify);
6188 if (err)
6189 return err;
Dan Williams36d1c642009-07-14 11:48:22 -07006190#endif
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306191
6192 get_online_cpus();
6193 for_each_present_cpu(cpu) {
6194 err = alloc_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
6195 if (err) {
6196 pr_err("%s: failed memory allocation for cpu%ld\n",
6197 __func__, cpu);
6198 break;
6199 }
6200 }
Dan Williams36d1c642009-07-14 11:48:22 -07006201 put_online_cpus();
6202
6203 return err;
6204}
6205
NeilBrownd1688a62011-10-11 16:49:52 +11006206static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207{
NeilBrownd1688a62011-10-11 16:49:52 +11006208 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006209 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11006210 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10006212 char pers_name[6];
Shaohua Li566c09c2013-11-14 15:16:17 +11006213 int i;
majianpeng60aaf932013-11-14 15:16:20 +11006214 int group_cnt, worker_cnt_per_group;
6215 struct r5worker_group *new_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216
NeilBrown91adb562009-03-31 14:39:39 +11006217 if (mddev->new_level != 5
6218 && mddev->new_level != 4
6219 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10006220 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11006221 mdname(mddev), mddev->new_level);
6222 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223 }
NeilBrown91adb562009-03-31 14:39:39 +11006224 if ((mddev->new_level == 5
6225 && !algorithm_valid_raid5(mddev->new_layout)) ||
6226 (mddev->new_level == 6
6227 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10006228 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11006229 mdname(mddev), mddev->new_layout);
6230 return ERR_PTR(-EIO);
6231 }
6232 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10006233 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11006234 mdname(mddev), mddev->raid_disks);
6235 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11006236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237
Andre Noll664e7c42009-06-18 08:45:27 +10006238 if (!mddev->new_chunk_sectors ||
6239 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
6240 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10006241 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
6242 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11006243 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11006244 }
6245
NeilBrownd1688a62011-10-11 16:49:52 +11006246 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11006247 if (conf == NULL)
6248 goto abort;
Shaohua Li851c30c2013-08-28 14:30:16 +08006249 /* Don't enable multi-threading by default*/
majianpeng60aaf932013-11-14 15:16:20 +11006250 if (!alloc_thread_groups(conf, 0, &group_cnt, &worker_cnt_per_group,
6251 &new_group)) {
6252 conf->group_cnt = group_cnt;
6253 conf->worker_cnt_per_group = worker_cnt_per_group;
6254 conf->worker_groups = new_group;
6255 } else
Shaohua Li851c30c2013-08-28 14:30:16 +08006256 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11006257 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006258 seqcount_init(&conf->gen_lock);
Dan Williamsf5efd452009-10-16 15:55:38 +11006259 init_waitqueue_head(&conf->wait_for_stripe);
6260 init_waitqueue_head(&conf->wait_for_overlap);
6261 INIT_LIST_HEAD(&conf->handle_list);
6262 INIT_LIST_HEAD(&conf->hold_list);
6263 INIT_LIST_HEAD(&conf->delayed_list);
6264 INIT_LIST_HEAD(&conf->bitmap_list);
Shaohua Li773ca822013-08-27 17:50:39 +08006265 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11006266 atomic_set(&conf->active_stripes, 0);
6267 atomic_set(&conf->preread_active_stripes, 0);
6268 atomic_set(&conf->active_aligned_reads, 0);
6269 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11006270 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11006271
6272 conf->raid_disks = mddev->raid_disks;
6273 if (mddev->reshape_position == MaxSector)
6274 conf->previous_raid_disks = mddev->raid_disks;
6275 else
6276 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006277 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006278
NeilBrown5e5e3e72009-10-16 16:35:30 +11006279 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11006280 GFP_KERNEL);
6281 if (!conf->disks)
6282 goto abort;
6283
6284 conf->mddev = mddev;
6285
6286 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
6287 goto abort;
6288
Shaohua Li566c09c2013-11-14 15:16:17 +11006289 /* We init hash_locks[0] separately to that it can be used
6290 * as the reference lock in the spin_lock_nest_lock() call
6291 * in lock_all_device_hash_locks_irq in order to convince
6292 * lockdep that we know what we are doing.
6293 */
6294 spin_lock_init(conf->hash_locks);
6295 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
6296 spin_lock_init(conf->hash_locks + i);
6297
6298 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6299 INIT_LIST_HEAD(conf->inactive_list + i);
6300
6301 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6302 INIT_LIST_HEAD(conf->temp_inactive_list + i);
6303
Dan Williams36d1c642009-07-14 11:48:22 -07006304 conf->level = mddev->new_level;
shli@kernel.org46d5b782014-12-15 12:57:02 +11006305 conf->chunk_sectors = mddev->new_chunk_sectors;
Dan Williams36d1c642009-07-14 11:48:22 -07006306 if (raid5_alloc_percpu(conf) != 0)
6307 goto abort;
6308
NeilBrown0c55e022010-05-03 14:09:02 +10006309 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006310
NeilBrowndafb20f2012-03-19 12:46:39 +11006311 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11006312 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006313 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11006314 || raid_disk < 0)
6315 continue;
6316 disk = conf->disks + raid_disk;
6317
NeilBrown17045f52011-12-23 10:17:53 +11006318 if (test_bit(Replacement, &rdev->flags)) {
6319 if (disk->replacement)
6320 goto abort;
6321 disk->replacement = rdev;
6322 } else {
6323 if (disk->rdev)
6324 goto abort;
6325 disk->rdev = rdev;
6326 }
NeilBrown91adb562009-03-31 14:39:39 +11006327
6328 if (test_bit(In_sync, &rdev->flags)) {
6329 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10006330 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
6331 " disk %d\n",
6332 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05006333 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11006334 /* Cannot rely on bitmap to complete recovery */
6335 conf->fullsync = 1;
6336 }
6337
NeilBrown91adb562009-03-31 14:39:39 +11006338 conf->level = mddev->new_level;
6339 if (conf->level == 6)
6340 conf->max_degraded = 2;
6341 else
6342 conf->max_degraded = 1;
6343 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11006344 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11006345 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10006346 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11006347 conf->prev_algo = mddev->layout;
6348 }
NeilBrown91adb562009-03-31 14:39:39 +11006349
6350 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11006351 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
Shaohua Li4bda5562013-11-14 15:16:17 +11006352 atomic_set(&conf->empty_inactive_list_nr, NR_STRIPE_HASH_LOCKS);
Shaohua Li566c09c2013-11-14 15:16:17 +11006353 if (grow_stripes(conf, NR_STRIPES)) {
NeilBrown91adb562009-03-31 14:39:39 +11006354 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006355 "md/raid:%s: couldn't allocate %dkB for buffers\n",
6356 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11006357 goto abort;
6358 } else
NeilBrown0c55e022010-05-03 14:09:02 +10006359 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
6360 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11006361
NeilBrown02326052012-07-03 15:56:52 +10006362 sprintf(pers_name, "raid%d", mddev->new_level);
6363 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11006364 if (!conf->thread) {
6365 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006366 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11006367 mdname(mddev));
6368 goto abort;
6369 }
6370
6371 return conf;
6372
6373 abort:
6374 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10006375 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11006376 return ERR_PTR(-EIO);
6377 } else
6378 return ERR_PTR(-ENOMEM);
6379}
6380
NeilBrownc148ffd2009-11-13 17:47:00 +11006381static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
6382{
6383 switch (algo) {
6384 case ALGORITHM_PARITY_0:
6385 if (raid_disk < max_degraded)
6386 return 1;
6387 break;
6388 case ALGORITHM_PARITY_N:
6389 if (raid_disk >= raid_disks - max_degraded)
6390 return 1;
6391 break;
6392 case ALGORITHM_PARITY_0_6:
NeilBrownf72ffdd2014-09-30 14:23:59 +10006393 if (raid_disk == 0 ||
NeilBrownc148ffd2009-11-13 17:47:00 +11006394 raid_disk == raid_disks - 1)
6395 return 1;
6396 break;
6397 case ALGORITHM_LEFT_ASYMMETRIC_6:
6398 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6399 case ALGORITHM_LEFT_SYMMETRIC_6:
6400 case ALGORITHM_RIGHT_SYMMETRIC_6:
6401 if (raid_disk == raid_disks - 1)
6402 return 1;
6403 }
6404 return 0;
6405}
6406
NeilBrownfd01b882011-10-11 16:47:53 +11006407static int run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11006408{
NeilBrownd1688a62011-10-11 16:49:52 +11006409 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10006410 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11006411 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11006412 struct md_rdev *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11006413 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11006414 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10006415 long long min_offset_diff = 0;
6416 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11006417
Andre Noll8c6ac862009-06-18 08:48:06 +10006418 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10006419 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10006420 " -- starting background reconstruction\n",
6421 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10006422
6423 rdev_for_each(rdev, mddev) {
6424 long long diff;
6425 if (rdev->raid_disk < 0)
6426 continue;
6427 diff = (rdev->new_data_offset - rdev->data_offset);
6428 if (first) {
6429 min_offset_diff = diff;
6430 first = 0;
6431 } else if (mddev->reshape_backwards &&
6432 diff < min_offset_diff)
6433 min_offset_diff = diff;
6434 else if (!mddev->reshape_backwards &&
6435 diff > min_offset_diff)
6436 min_offset_diff = diff;
6437 }
6438
NeilBrownf6705572006-03-27 01:18:11 -08006439 if (mddev->reshape_position != MaxSector) {
6440 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10006441 * Difficulties arise if the stripe we would write to
6442 * next is at or after the stripe we would read from next.
6443 * For a reshape that changes the number of devices, this
6444 * is only possible for a very short time, and mdadm makes
6445 * sure that time appears to have past before assembling
6446 * the array. So we fail if that time hasn't passed.
6447 * For a reshape that keeps the number of devices the same
6448 * mdadm must be monitoring the reshape can keeping the
6449 * critical areas read-only and backed up. It will start
6450 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08006451 */
6452 sector_t here_new, here_old;
6453 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11006454 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08006455
NeilBrown88ce4932009-03-31 15:24:23 +11006456 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10006457 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08006458 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08006459 mdname(mddev));
6460 return -EINVAL;
6461 }
NeilBrownf6705572006-03-27 01:18:11 -08006462 old_disks = mddev->raid_disks - mddev->delta_disks;
6463 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08006464 * further up in new geometry must map after here in old
6465 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08006466 */
6467 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10006468 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08006469 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10006470 printk(KERN_ERR "md/raid:%s: reshape_position not "
6471 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006472 return -EINVAL;
6473 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006474 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08006475 /* here_new is the stripe we will write to */
6476 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10006477 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08006478 (old_disks-max_degraded));
6479 /* here_old is the first stripe that we might need to read
6480 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10006481 if (mddev->delta_disks == 0) {
NeilBrownb5254dd2012-05-21 09:27:01 +10006482 if ((here_new * mddev->new_chunk_sectors !=
6483 here_old * mddev->chunk_sectors)) {
6484 printk(KERN_ERR "md/raid:%s: reshape position is"
6485 " confused - aborting\n", mdname(mddev));
6486 return -EINVAL;
6487 }
NeilBrown67ac6012009-08-13 10:06:24 +10006488 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10006489 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10006490 * and taking constant backups.
6491 * mdadm always starts a situation like this in
6492 * readonly mode so it can take control before
6493 * allowing any writes. So just check for that.
6494 */
NeilBrownb5254dd2012-05-21 09:27:01 +10006495 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
6496 abs(min_offset_diff) >= mddev->new_chunk_sectors)
6497 /* not really in-place - so OK */;
6498 else if (mddev->ro == 0) {
6499 printk(KERN_ERR "md/raid:%s: in-place reshape "
6500 "must be started in read-only mode "
6501 "- aborting\n",
NeilBrown0c55e022010-05-03 14:09:02 +10006502 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10006503 return -EINVAL;
6504 }
NeilBrown2c810cd2012-05-21 09:27:00 +10006505 } else if (mddev->reshape_backwards
NeilBrownb5254dd2012-05-21 09:27:01 +10006506 ? (here_new * mddev->new_chunk_sectors + min_offset_diff <=
NeilBrown67ac6012009-08-13 10:06:24 +10006507 here_old * mddev->chunk_sectors)
6508 : (here_new * mddev->new_chunk_sectors >=
NeilBrownb5254dd2012-05-21 09:27:01 +10006509 here_old * mddev->chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08006510 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10006511 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
6512 "auto-recovery - aborting.\n",
6513 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006514 return -EINVAL;
6515 }
NeilBrown0c55e022010-05-03 14:09:02 +10006516 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
6517 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006518 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08006519 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006520 BUG_ON(mddev->level != mddev->new_level);
6521 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10006522 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11006523 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08006524 }
6525
NeilBrown245f46c2009-03-31 14:39:39 +11006526 if (mddev->private == NULL)
6527 conf = setup_conf(mddev);
6528 else
6529 conf = mddev->private;
6530
NeilBrown91adb562009-03-31 14:39:39 +11006531 if (IS_ERR(conf))
6532 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08006533
NeilBrownb5254dd2012-05-21 09:27:01 +10006534 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11006535 mddev->thread = conf->thread;
6536 conf->thread = NULL;
6537 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538
NeilBrown17045f52011-12-23 10:17:53 +11006539 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
6540 i++) {
6541 rdev = conf->disks[i].rdev;
6542 if (!rdev && conf->disks[i].replacement) {
6543 /* The replacement is all we have yet */
6544 rdev = conf->disks[i].replacement;
6545 conf->disks[i].replacement = NULL;
6546 clear_bit(Replacement, &rdev->flags);
6547 conf->disks[i].rdev = rdev;
6548 }
6549 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11006550 continue;
NeilBrown17045f52011-12-23 10:17:53 +11006551 if (conf->disks[i].replacement &&
6552 conf->reshape_progress != MaxSector) {
6553 /* replacements and reshape simply do not mix. */
6554 printk(KERN_ERR "md: cannot handle concurrent "
6555 "replacement and reshape.\n");
6556 goto abort;
6557 }
NeilBrown2f115882010-06-17 17:41:03 +10006558 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11006559 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10006560 continue;
6561 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006562 /* This disc is not fully in-sync. However if it
6563 * just stored parity (beyond the recovery_offset),
6564 * when we don't need to be concerned about the
6565 * array being dirty.
6566 * When reshape goes 'backwards', we never have
6567 * partially completed devices, so we only need
6568 * to worry about reshape going forwards.
6569 */
6570 /* Hack because v0.91 doesn't store recovery_offset properly. */
6571 if (mddev->major_version == 0 &&
6572 mddev->minor_version > 90)
6573 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07006574
NeilBrownc148ffd2009-11-13 17:47:00 +11006575 if (rdev->recovery_offset < reshape_offset) {
6576 /* We need to check old and new layout */
6577 if (!only_parity(rdev->raid_disk,
6578 conf->algorithm,
6579 conf->raid_disks,
6580 conf->max_degraded))
6581 continue;
6582 }
6583 if (!only_parity(rdev->raid_disk,
6584 conf->prev_algo,
6585 conf->previous_raid_disks,
6586 conf->max_degraded))
6587 continue;
6588 dirty_parity_disks++;
6589 }
NeilBrown91adb562009-03-31 14:39:39 +11006590
NeilBrown17045f52011-12-23 10:17:53 +11006591 /*
6592 * 0 for a fully functional array, 1 or 2 for a degraded array.
6593 */
NeilBrown908f4fb2011-12-23 10:17:50 +11006594 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595
NeilBrown674806d2010-06-16 17:17:53 +10006596 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10006597 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07006599 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600 goto abort;
6601 }
6602
NeilBrown91adb562009-03-31 14:39:39 +11006603 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10006604 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11006605 mddev->resync_max_sectors = mddev->dev_sectors;
6606
NeilBrownc148ffd2009-11-13 17:47:00 +11006607 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006609 if (mddev->ok_start_degraded)
6610 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10006611 "md/raid:%s: starting dirty degraded array"
6612 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006613 mdname(mddev));
6614 else {
6615 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006616 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006617 mdname(mddev));
6618 goto abort;
6619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620 }
6621
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10006623 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
6624 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11006625 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
6626 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627 else
NeilBrown0c55e022010-05-03 14:09:02 +10006628 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
6629 " out of %d devices, algorithm %d\n",
6630 mdname(mddev), conf->level,
6631 mddev->raid_disks - mddev->degraded,
6632 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633
6634 print_raid5_conf(conf);
6635
NeilBrownfef9c612009-03-31 15:16:46 +11006636 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11006637 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08006638 atomic_set(&conf->reshape_stripes, 0);
6639 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
6640 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
6641 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
6642 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
6643 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10006644 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08006645 }
6646
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10006648 if (mddev->to_remove == &raid5_attrs_group)
6649 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10006650 else if (mddev->kobj.sd &&
6651 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08006652 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10006653 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08006654 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10006655 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
6656
6657 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10006658 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11006659 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10006660 /* read-ahead size must cover two whole stripes, which
6661 * is 2 * (datadisks) * chunksize where 'n' is the
6662 * number of raid devices
6663 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664 int data_disks = conf->previous_raid_disks - conf->max_degraded;
6665 int stripe = data_disks *
6666 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
6667 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
6668 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10006669
NeilBrown9f7c2222010-07-26 12:04:13 +10006670 chunk_size = mddev->chunk_sectors << 9;
6671 blk_queue_io_min(mddev->queue, chunk_size);
6672 blk_queue_io_opt(mddev->queue, chunk_size *
6673 (conf->raid_disks - conf->max_degraded));
Kent Overstreetc78afc62013-07-11 22:39:53 -07006674 mddev->queue->limits.raid_partial_stripes_expensive = 1;
Shaohua Li620125f2012-10-11 13:49:05 +11006675 /*
6676 * We can only discard a whole stripe. It doesn't make sense to
6677 * discard data disk but write parity disk
6678 */
6679 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11006680 /* Round up to power of 2, as discard handling
6681 * currently assumes that */
6682 while ((stripe-1) & stripe)
6683 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11006684 mddev->queue->limits.discard_alignment = stripe;
6685 mddev->queue->limits.discard_granularity = stripe;
6686 /*
6687 * unaligned part of discard request will be ignored, so can't
NeilBrown8e0e99b2014-10-02 13:45:00 +10006688 * guarantee discard_zeroes_data
Shaohua Li620125f2012-10-11 13:49:05 +11006689 */
6690 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10006691
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07006692 blk_queue_max_write_same_sectors(mddev->queue, 0);
6693
NeilBrown05616be2012-05-21 09:27:00 +10006694 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10006695 disk_stack_limits(mddev->gendisk, rdev->bdev,
6696 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10006697 disk_stack_limits(mddev->gendisk, rdev->bdev,
6698 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11006699 /*
6700 * discard_zeroes_data is required, otherwise data
6701 * could be lost. Consider a scenario: discard a stripe
6702 * (the stripe could be inconsistent if
6703 * discard_zeroes_data is 0); write one disk of the
6704 * stripe (the stripe could be inconsistent again
6705 * depending on which disks are used to calculate
6706 * parity); the disk is broken; The stripe data of this
6707 * disk is lost.
6708 */
6709 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
6710 !bdev_get_queue(rdev->bdev)->
6711 limits.discard_zeroes_data)
6712 discard_supported = false;
NeilBrown8e0e99b2014-10-02 13:45:00 +10006713 /* Unfortunately, discard_zeroes_data is not currently
6714 * a guarantee - just a hint. So we only allow DISCARD
6715 * if the sysadmin has confirmed that only safe devices
6716 * are in use by setting a module parameter.
6717 */
6718 if (!devices_handle_discard_safely) {
6719 if (discard_supported) {
6720 pr_info("md/raid456: discard support disabled due to uncertainty.\n");
6721 pr_info("Set raid456.devices_handle_discard_safely=Y to override.\n");
6722 }
6723 discard_supported = false;
6724 }
NeilBrown05616be2012-05-21 09:27:00 +10006725 }
Shaohua Li620125f2012-10-11 13:49:05 +11006726
6727 if (discard_supported &&
6728 mddev->queue->limits.max_discard_sectors >= stripe &&
6729 mddev->queue->limits.discard_granularity >= stripe)
6730 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
6731 mddev->queue);
6732 else
6733 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
6734 mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735 }
6736
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737 return 0;
6738abort:
NeilBrown01f96c02011-09-21 15:30:20 +10006739 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11006740 print_raid5_conf(conf);
6741 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10006743 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744 return -EIO;
6745}
6746
NeilBrownafa0f552014-12-15 12:56:58 +11006747static void raid5_free(struct mddev *mddev, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748{
NeilBrownafa0f552014-12-15 12:56:58 +11006749 struct r5conf *conf = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006750
Dan Williams95fc17a2009-07-31 12:39:15 +10006751 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10006752 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753}
6754
NeilBrownfd01b882011-10-11 16:47:53 +11006755static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756{
NeilBrownd1688a62011-10-11 16:49:52 +11006757 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758 int i;
6759
Andre Noll9d8f0362009-06-18 08:45:01 +10006760 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
6761 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07006762 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763 for (i = 0; i < conf->raid_disks; i++)
6764 seq_printf (seq, "%s",
6765 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08006766 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768}
6769
NeilBrownd1688a62011-10-11 16:49:52 +11006770static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771{
6772 int i;
6773 struct disk_info *tmp;
6774
NeilBrown0c55e022010-05-03 14:09:02 +10006775 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776 if (!conf) {
6777 printk("(conf==NULL)\n");
6778 return;
6779 }
NeilBrown0c55e022010-05-03 14:09:02 +10006780 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
6781 conf->raid_disks,
6782 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783
6784 for (i = 0; i < conf->raid_disks; i++) {
6785 char b[BDEVNAME_SIZE];
6786 tmp = conf->disks + i;
6787 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10006788 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
6789 i, !test_bit(Faulty, &tmp->rdev->flags),
6790 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791 }
6792}
6793
NeilBrownfd01b882011-10-11 16:47:53 +11006794static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795{
6796 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11006797 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10006799 int count = 0;
6800 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801
6802 for (i = 0; i < conf->raid_disks; i++) {
6803 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11006804 if (tmp->replacement
6805 && tmp->replacement->recovery_offset == MaxSector
6806 && !test_bit(Faulty, &tmp->replacement->flags)
6807 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
6808 /* Replacement has just become active. */
6809 if (!tmp->rdev
6810 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
6811 count++;
6812 if (tmp->rdev) {
6813 /* Replaced device not technically faulty,
6814 * but we need to be sure it gets removed
6815 * and never re-added.
6816 */
6817 set_bit(Faulty, &tmp->rdev->flags);
6818 sysfs_notify_dirent_safe(
6819 tmp->rdev->sysfs_state);
6820 }
6821 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
6822 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10006823 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08006824 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07006825 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10006826 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11006827 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828 }
6829 }
NeilBrown6b965622010-08-18 11:56:59 +10006830 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11006831 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10006832 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10006834 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835}
6836
NeilBrownb8321b62011-12-23 10:17:51 +11006837static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838{
NeilBrownd1688a62011-10-11 16:49:52 +11006839 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11006841 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11006842 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843 struct disk_info *p = conf->disks + number;
6844
6845 print_raid5_conf(conf);
NeilBrown657e3e42011-12-23 10:17:52 +11006846 if (rdev == p->rdev)
6847 rdevp = &p->rdev;
6848 else if (rdev == p->replacement)
6849 rdevp = &p->replacement;
6850 else
6851 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11006852
NeilBrown657e3e42011-12-23 10:17:52 +11006853 if (number >= conf->raid_disks &&
6854 conf->reshape_progress == MaxSector)
6855 clear_bit(In_sync, &rdev->flags);
6856
6857 if (test_bit(In_sync, &rdev->flags) ||
6858 atomic_read(&rdev->nr_pending)) {
6859 err = -EBUSY;
6860 goto abort;
6861 }
6862 /* Only remove non-faulty devices if recovery
6863 * isn't possible.
6864 */
6865 if (!test_bit(Faulty, &rdev->flags) &&
6866 mddev->recovery_disabled != conf->recovery_disabled &&
6867 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11006868 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11006869 number < conf->raid_disks) {
6870 err = -EBUSY;
6871 goto abort;
6872 }
6873 *rdevp = NULL;
6874 synchronize_rcu();
6875 if (atomic_read(&rdev->nr_pending)) {
6876 /* lost the race, try later */
6877 err = -EBUSY;
6878 *rdevp = rdev;
NeilBrowndd054fc2011-12-23 10:17:53 +11006879 } else if (p->replacement) {
6880 /* We must have just cleared 'rdev' */
6881 p->rdev = p->replacement;
6882 clear_bit(Replacement, &p->replacement->flags);
6883 smp_mb(); /* Make sure other CPUs may see both as identical
6884 * but will never see neither - if they are careful
6885 */
6886 p->replacement = NULL;
6887 clear_bit(WantReplacement, &rdev->flags);
6888 } else
6889 /* We might have just removed the Replacement as faulty-
6890 * clear the bit just in case
6891 */
6892 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893abort:
6894
6895 print_raid5_conf(conf);
6896 return err;
6897}
6898
NeilBrownfd01b882011-10-11 16:47:53 +11006899static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900{
NeilBrownd1688a62011-10-11 16:49:52 +11006901 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10006902 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903 int disk;
6904 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10006905 int first = 0;
6906 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907
NeilBrown7f0da592011-07-28 11:39:22 +10006908 if (mddev->recovery_disabled == conf->recovery_disabled)
6909 return -EBUSY;
6910
NeilBrowndc10c642012-03-19 12:46:37 +11006911 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10006913 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914
Neil Brown6c2fce22008-06-28 08:31:31 +10006915 if (rdev->raid_disk >= 0)
6916 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917
6918 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07006919 * find the disk ... but prefer rdev->saved_raid_disk
6920 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921 */
NeilBrown16a53ec2006-06-26 00:27:38 -07006922 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10006923 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07006924 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10006925 first = rdev->saved_raid_disk;
6926
6927 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11006928 p = conf->disks + disk;
6929 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08006930 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10006932 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07006933 if (rdev->saved_raid_disk != disk)
6934 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08006935 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10006936 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10006938 }
6939 for (disk = first; disk <= last; disk++) {
6940 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11006941 if (test_bit(WantReplacement, &p->rdev->flags) &&
6942 p->replacement == NULL) {
6943 clear_bit(In_sync, &rdev->flags);
6944 set_bit(Replacement, &rdev->flags);
6945 rdev->raid_disk = disk;
6946 err = 0;
6947 conf->fullsync = 1;
6948 rcu_assign_pointer(p->replacement, rdev);
6949 break;
6950 }
6951 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10006952out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10006954 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955}
6956
NeilBrownfd01b882011-10-11 16:47:53 +11006957static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958{
6959 /* no resync is happening, and there is enough space
6960 * on all devices, so we can resize.
6961 * We need to make sure resync covers any new space.
6962 * If the array is shrinking we should possibly wait until
6963 * any io in the removed space completes, but it hardly seems
6964 * worth it.
6965 */
NeilBrowna4a61252012-05-22 13:55:27 +10006966 sector_t newsize;
Andre Noll9d8f0362009-06-18 08:45:01 +10006967 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10006968 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
6969 if (mddev->external_size &&
6970 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11006971 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10006972 if (mddev->bitmap) {
6973 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
6974 if (ret)
6975 return ret;
6976 }
6977 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10006978 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10006979 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10006980 if (sectors > mddev->dev_sectors &&
6981 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11006982 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
6984 }
Andre Noll58c0fed2009-03-31 14:33:13 +11006985 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07006986 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006987 return 0;
6988}
6989
NeilBrownfd01b882011-10-11 16:47:53 +11006990static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10006991{
6992 /* Can only proceed if there are plenty of stripe_heads.
6993 * We need a minimum of one full stripe,, and for sensible progress
6994 * it is best to have about 4 times that.
6995 * If we require 4 times, then the default 256 4K stripe_heads will
6996 * allow for chunk sizes up to 256K, which is probably OK.
6997 * If the chunk size is greater, user-space should request more
6998 * stripe_heads first.
6999 */
NeilBrownd1688a62011-10-11 16:49:52 +11007000 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10007001 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
7002 > conf->max_nr_stripes ||
7003 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
7004 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10007005 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
7006 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10007007 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
7008 / STRIPE_SIZE)*4);
7009 return 0;
7010 }
7011 return 1;
7012}
7013
NeilBrownfd01b882011-10-11 16:47:53 +11007014static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08007015{
NeilBrownd1688a62011-10-11 16:49:52 +11007016 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08007017
NeilBrown88ce4932009-03-31 15:24:23 +11007018 if (mddev->delta_disks == 0 &&
7019 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10007020 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10007021 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10007022 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11007023 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10007024 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11007025 /* We might be able to shrink, but the devices must
7026 * be made bigger first.
7027 * For raid6, 4 is the minimum size.
7028 * Otherwise 2 is the minimum
7029 */
7030 int min = 2;
7031 if (mddev->level == 6)
7032 min = 4;
7033 if (mddev->raid_disks + mddev->delta_disks < min)
7034 return -EINVAL;
7035 }
NeilBrown29269552006-03-27 01:18:10 -08007036
NeilBrown01ee22b2009-06-18 08:47:20 +10007037 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08007038 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08007039
NeilBrowne56108d62012-10-11 14:24:13 +11007040 return resize_stripes(conf, (conf->previous_raid_disks
7041 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08007042}
7043
NeilBrownfd01b882011-10-11 16:47:53 +11007044static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08007045{
NeilBrownd1688a62011-10-11 16:49:52 +11007046 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11007047 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08007048 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07007049 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08007050
NeilBrownf4168852007-02-28 20:11:53 -08007051 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08007052 return -EBUSY;
7053
NeilBrown01ee22b2009-06-18 08:47:20 +10007054 if (!check_stripe_cache(mddev))
7055 return -ENOSPC;
7056
NeilBrown30b67642012-05-22 13:55:28 +10007057 if (has_failed(conf))
7058 return -EINVAL;
7059
NeilBrownc6563a82012-05-21 09:27:00 +10007060 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11007061 if (!test_bit(In_sync, &rdev->flags)
7062 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08007063 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10007064 }
NeilBrown63c70c42006-03-27 01:18:13 -08007065
NeilBrownf4168852007-02-28 20:11:53 -08007066 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08007067 /* Not enough devices even to make a degraded array
7068 * of that size
7069 */
7070 return -EINVAL;
7071
NeilBrownec32a2b2009-03-31 15:17:38 +11007072 /* Refuse to reduce size of the array. Any reductions in
7073 * array size must be through explicit setting of array_size
7074 * attribute.
7075 */
7076 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
7077 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10007078 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11007079 "before number of disks\n", mdname(mddev));
7080 return -EINVAL;
7081 }
7082
NeilBrownf6705572006-03-27 01:18:11 -08007083 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08007084 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10007085 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007086 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08007087 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007088 conf->prev_chunk_sectors = conf->chunk_sectors;
7089 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11007090 conf->prev_algo = conf->algorithm;
7091 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10007092 conf->generation++;
7093 /* Code that selects data_offset needs to see the generation update
7094 * if reshape_progress has been set - so a memory barrier needed.
7095 */
7096 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10007097 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11007098 conf->reshape_progress = raid5_size(mddev, 0, 0);
7099 else
7100 conf->reshape_progress = 0;
7101 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10007102 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007103 spin_unlock_irq(&conf->device_lock);
7104
NeilBrown4d77e3b2013-08-27 15:57:47 +10007105 /* Now make sure any requests that proceeded on the assumption
7106 * the reshape wasn't running - like Discard or Read - have
7107 * completed.
7108 */
7109 mddev_suspend(mddev);
7110 mddev_resume(mddev);
7111
NeilBrown29269552006-03-27 01:18:10 -08007112 /* Add some new drives, as many as will fit.
7113 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10007114 * Don't add devices if we are reducing the number of
7115 * devices in the array. This is because it is not possible
7116 * to correctly record the "partially reconstructed" state of
7117 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08007118 */
NeilBrown87a8dec2011-01-31 11:57:43 +11007119 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11007120 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11007121 if (rdev->raid_disk < 0 &&
7122 !test_bit(Faulty, &rdev->flags)) {
7123 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11007124 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11007125 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11007126 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11007127 else
NeilBrown87a8dec2011-01-31 11:57:43 +11007128 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10007129
7130 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11007131 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11007132 }
NeilBrown87a8dec2011-01-31 11:57:43 +11007133 } else if (rdev->raid_disk >= conf->previous_raid_disks
7134 && !test_bit(Faulty, &rdev->flags)) {
7135 /* This is a spare that was manually added */
7136 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11007137 }
NeilBrown29269552006-03-27 01:18:10 -08007138
NeilBrown87a8dec2011-01-31 11:57:43 +11007139 /* When a reshape changes the number of devices,
7140 * ->degraded is measured against the larger of the
7141 * pre and post number of devices.
7142 */
NeilBrownec32a2b2009-03-31 15:17:38 +11007143 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007144 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11007145 spin_unlock_irqrestore(&conf->device_lock, flags);
7146 }
NeilBrown63c70c42006-03-27 01:18:13 -08007147 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10007148 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07007149 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08007150
NeilBrown29269552006-03-27 01:18:10 -08007151 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7152 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
7153 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7154 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7155 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007156 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08007157 if (!mddev->sync_thread) {
7158 mddev->recovery = 0;
7159 spin_lock_irq(&conf->device_lock);
NeilBrownba8805b2013-11-14 15:16:15 +11007160 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007161 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownba8805b2013-11-14 15:16:15 +11007162 mddev->new_chunk_sectors =
7163 conf->chunk_sectors = conf->prev_chunk_sectors;
7164 mddev->new_layout = conf->algorithm = conf->prev_algo;
NeilBrown05616be2012-05-21 09:27:00 +10007165 rdev_for_each(rdev, mddev)
7166 rdev->new_data_offset = rdev->data_offset;
7167 smp_wmb();
NeilBrownba8805b2013-11-14 15:16:15 +11007168 conf->generation --;
NeilBrownfef9c612009-03-31 15:16:46 +11007169 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11007170 mddev->reshape_position = MaxSector;
NeilBrownba8805b2013-11-14 15:16:15 +11007171 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007172 spin_unlock_irq(&conf->device_lock);
7173 return -EAGAIN;
7174 }
NeilBrownc8f517c2009-03-31 15:28:40 +11007175 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08007176 md_wakeup_thread(mddev->sync_thread);
7177 md_new_event(mddev);
7178 return 0;
7179}
NeilBrown29269552006-03-27 01:18:10 -08007180
NeilBrownec32a2b2009-03-31 15:17:38 +11007181/* This is called from the reshape thread and should make any
7182 * changes needed in 'conf'
7183 */
NeilBrownd1688a62011-10-11 16:49:52 +11007184static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08007185{
NeilBrown29269552006-03-27 01:18:10 -08007186
NeilBrownf6705572006-03-27 01:18:11 -08007187 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10007188 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07007189
NeilBrownf6705572006-03-27 01:18:11 -08007190 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11007191 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10007192 rdev_for_each(rdev, conf->mddev)
7193 rdev->data_offset = rdev->new_data_offset;
7194 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11007195 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08007196 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11007197 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07007198
7199 /* read-ahead size must cover two whole stripes, which is
7200 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
7201 */
NeilBrown4a5add42010-06-01 19:37:28 +10007202 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11007203 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007204 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11007205 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07007206 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
7207 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
7208 }
NeilBrown29269552006-03-27 01:18:10 -08007209 }
NeilBrown29269552006-03-27 01:18:10 -08007210}
7211
NeilBrownec32a2b2009-03-31 15:17:38 +11007212/* This is called from the raid5d thread with mddev_lock held.
7213 * It makes config changes to the device.
7214 */
NeilBrownfd01b882011-10-11 16:47:53 +11007215static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11007216{
NeilBrownd1688a62011-10-11 16:49:52 +11007217 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11007218
7219 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
7220
NeilBrownec32a2b2009-03-31 15:17:38 +11007221 if (mddev->delta_disks > 0) {
7222 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7223 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007224 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11007225 } else {
7226 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11007227 spin_lock_irq(&conf->device_lock);
7228 mddev->degraded = calc_degraded(conf);
7229 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11007230 for (d = conf->raid_disks ;
7231 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10007232 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11007233 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10007234 if (rdev)
7235 clear_bit(In_sync, &rdev->flags);
7236 rdev = conf->disks[d].replacement;
7237 if (rdev)
7238 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10007239 }
NeilBrowncea9c222009-03-31 15:15:05 +11007240 }
NeilBrown88ce4932009-03-31 15:24:23 +11007241 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007242 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11007243 mddev->reshape_position = MaxSector;
7244 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10007245 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11007246 }
7247}
7248
NeilBrownfd01b882011-10-11 16:47:53 +11007249static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07007250{
NeilBrownd1688a62011-10-11 16:49:52 +11007251 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07007252
7253 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08007254 case 2: /* resume for a suspend */
7255 wake_up(&conf->wait_for_overlap);
7256 break;
7257
NeilBrown72626682005-09-09 16:23:54 -07007258 case 1: /* stop all writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007259 lock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007260 /* '2' tells resync/reshape to pause so that all
7261 * active stripes can drain
7262 */
7263 conf->quiesce = 2;
Shaohua Li566c09c2013-11-14 15:16:17 +11007264 wait_event_cmd(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08007265 atomic_read(&conf->active_stripes) == 0 &&
7266 atomic_read(&conf->active_aligned_reads) == 0,
Shaohua Li566c09c2013-11-14 15:16:17 +11007267 unlock_all_device_hash_locks_irq(conf),
7268 lock_all_device_hash_locks_irq(conf));
NeilBrown64bd6602009-08-03 10:59:58 +10007269 conf->quiesce = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11007270 unlock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007271 /* allow reshape to continue */
7272 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07007273 break;
7274
7275 case 0: /* re-enable writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007276 lock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007277 conf->quiesce = 0;
7278 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08007279 wake_up(&conf->wait_for_overlap);
Shaohua Li566c09c2013-11-14 15:16:17 +11007280 unlock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007281 break;
7282 }
NeilBrown72626682005-09-09 16:23:54 -07007283}
NeilBrownb15c2e52006-01-06 00:20:16 -08007284
NeilBrownfd01b882011-10-11 16:47:53 +11007285static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11007286{
NeilBrowne373ab12011-10-11 16:48:59 +11007287 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07007288 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11007289
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007290 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11007291 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10007292 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
7293 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007294 return ERR_PTR(-EINVAL);
7295 }
7296
NeilBrowne373ab12011-10-11 16:48:59 +11007297 sectors = raid0_conf->strip_zone[0].zone_end;
7298 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10007299 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007300 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11007301 mddev->new_layout = ALGORITHM_PARITY_N;
7302 mddev->new_chunk_sectors = mddev->chunk_sectors;
7303 mddev->raid_disks += 1;
7304 mddev->delta_disks = 1;
7305 /* make sure it will be not marked as dirty */
7306 mddev->recovery_cp = MaxSector;
7307
7308 return setup_conf(mddev);
7309}
7310
NeilBrownfd01b882011-10-11 16:47:53 +11007311static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007312{
7313 int chunksect;
7314
7315 if (mddev->raid_disks != 2 ||
7316 mddev->degraded > 1)
7317 return ERR_PTR(-EINVAL);
7318
7319 /* Should check if there are write-behind devices? */
7320
7321 chunksect = 64*2; /* 64K by default */
7322
7323 /* The array must be an exact multiple of chunksize */
7324 while (chunksect && (mddev->array_sectors & (chunksect-1)))
7325 chunksect >>= 1;
7326
7327 if ((chunksect<<9) < STRIPE_SIZE)
7328 /* array size does not allow a suitable chunk size */
7329 return ERR_PTR(-EINVAL);
7330
7331 mddev->new_level = 5;
7332 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10007333 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11007334
7335 return setup_conf(mddev);
7336}
7337
NeilBrownfd01b882011-10-11 16:47:53 +11007338static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11007339{
7340 int new_layout;
7341
7342 switch (mddev->layout) {
7343 case ALGORITHM_LEFT_ASYMMETRIC_6:
7344 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
7345 break;
7346 case ALGORITHM_RIGHT_ASYMMETRIC_6:
7347 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
7348 break;
7349 case ALGORITHM_LEFT_SYMMETRIC_6:
7350 new_layout = ALGORITHM_LEFT_SYMMETRIC;
7351 break;
7352 case ALGORITHM_RIGHT_SYMMETRIC_6:
7353 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
7354 break;
7355 case ALGORITHM_PARITY_0_6:
7356 new_layout = ALGORITHM_PARITY_0;
7357 break;
7358 case ALGORITHM_PARITY_N:
7359 new_layout = ALGORITHM_PARITY_N;
7360 break;
7361 default:
7362 return ERR_PTR(-EINVAL);
7363 }
7364 mddev->new_level = 5;
7365 mddev->new_layout = new_layout;
7366 mddev->delta_disks = -1;
7367 mddev->raid_disks -= 1;
7368 return setup_conf(mddev);
7369}
7370
NeilBrownfd01b882011-10-11 16:47:53 +11007371static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11007372{
NeilBrown88ce4932009-03-31 15:24:23 +11007373 /* For a 2-drive array, the layout and chunk size can be changed
7374 * immediately as not restriping is needed.
7375 * For larger arrays we record the new value - after validation
7376 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11007377 */
NeilBrownd1688a62011-10-11 16:49:52 +11007378 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10007379 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11007380
NeilBrown597a7112009-06-18 08:47:42 +10007381 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11007382 return -EINVAL;
7383 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007384 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11007385 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007386 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11007387 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007388 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11007389 /* not factor of array size */
7390 return -EINVAL;
7391 }
7392
7393 /* They look valid */
7394
NeilBrown88ce4932009-03-31 15:24:23 +11007395 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10007396 /* can make the change immediately */
7397 if (mddev->new_layout >= 0) {
7398 conf->algorithm = mddev->new_layout;
7399 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11007400 }
7401 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10007402 conf->chunk_sectors = new_chunk ;
7403 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11007404 }
7405 set_bit(MD_CHANGE_DEVS, &mddev->flags);
7406 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11007407 }
NeilBrown50ac1682009-06-18 08:47:55 +10007408 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11007409}
7410
NeilBrownfd01b882011-10-11 16:47:53 +11007411static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11007412{
NeilBrown597a7112009-06-18 08:47:42 +10007413 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10007414
NeilBrown597a7112009-06-18 08:47:42 +10007415 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11007416 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007417 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007418 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11007419 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007420 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11007421 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007422 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11007423 /* not factor of array size */
7424 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007425 }
NeilBrown88ce4932009-03-31 15:24:23 +11007426
7427 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10007428 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11007429}
7430
NeilBrownfd01b882011-10-11 16:47:53 +11007431static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007432{
7433 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007434 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007435 * raid1 - if there are two drives. We need to know the chunk size
7436 * raid4 - trivial - just use a raid4 layout.
7437 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007438 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007439 if (mddev->level == 0)
7440 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11007441 if (mddev->level == 1)
7442 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11007443 if (mddev->level == 4) {
7444 mddev->new_layout = ALGORITHM_PARITY_N;
7445 mddev->new_level = 5;
7446 return setup_conf(mddev);
7447 }
NeilBrownfc9739c2009-03-31 14:57:20 +11007448 if (mddev->level == 6)
7449 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11007450
7451 return ERR_PTR(-EINVAL);
7452}
7453
NeilBrownfd01b882011-10-11 16:47:53 +11007454static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11007455{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007456 /* raid4 can take over:
7457 * raid0 - if there is only one strip zone
7458 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11007459 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007460 if (mddev->level == 0)
7461 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11007462 if (mddev->level == 5 &&
7463 mddev->layout == ALGORITHM_PARITY_N) {
7464 mddev->new_layout = 0;
7465 mddev->new_level = 4;
7466 return setup_conf(mddev);
7467 }
7468 return ERR_PTR(-EINVAL);
7469}
NeilBrownd562b0c2009-03-31 14:39:39 +11007470
NeilBrown84fc4b52011-10-11 16:49:58 +11007471static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11007472
NeilBrownfd01b882011-10-11 16:47:53 +11007473static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11007474{
7475 /* Currently can only take over a raid5. We map the
7476 * personality to an equivalent raid6 personality
7477 * with the Q block at the end.
7478 */
7479 int new_layout;
7480
7481 if (mddev->pers != &raid5_personality)
7482 return ERR_PTR(-EINVAL);
7483 if (mddev->degraded > 1)
7484 return ERR_PTR(-EINVAL);
7485 if (mddev->raid_disks > 253)
7486 return ERR_PTR(-EINVAL);
7487 if (mddev->raid_disks < 3)
7488 return ERR_PTR(-EINVAL);
7489
7490 switch (mddev->layout) {
7491 case ALGORITHM_LEFT_ASYMMETRIC:
7492 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
7493 break;
7494 case ALGORITHM_RIGHT_ASYMMETRIC:
7495 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
7496 break;
7497 case ALGORITHM_LEFT_SYMMETRIC:
7498 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
7499 break;
7500 case ALGORITHM_RIGHT_SYMMETRIC:
7501 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
7502 break;
7503 case ALGORITHM_PARITY_0:
7504 new_layout = ALGORITHM_PARITY_0_6;
7505 break;
7506 case ALGORITHM_PARITY_N:
7507 new_layout = ALGORITHM_PARITY_N;
7508 break;
7509 default:
7510 return ERR_PTR(-EINVAL);
7511 }
7512 mddev->new_level = 6;
7513 mddev->new_layout = new_layout;
7514 mddev->delta_disks = 1;
7515 mddev->raid_disks += 1;
7516 return setup_conf(mddev);
7517}
7518
NeilBrown84fc4b52011-10-11 16:49:58 +11007519static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07007520{
7521 .name = "raid6",
7522 .level = 6,
7523 .owner = THIS_MODULE,
7524 .make_request = make_request,
7525 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007526 .free = raid5_free,
NeilBrown16a53ec2006-06-26 00:27:38 -07007527 .status = status,
7528 .error_handler = error,
7529 .hot_add_disk = raid5_add_disk,
7530 .hot_remove_disk= raid5_remove_disk,
7531 .spare_active = raid5_spare_active,
7532 .sync_request = sync_request,
7533 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007534 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10007535 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08007536 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007537 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07007538 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11007539 .takeover = raid6_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007540 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007541 .mergeable_bvec = raid5_mergeable_bvec,
NeilBrown16a53ec2006-06-26 00:27:38 -07007542};
NeilBrown84fc4b52011-10-11 16:49:58 +11007543static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007544{
7545 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08007546 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547 .owner = THIS_MODULE,
7548 .make_request = make_request,
7549 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007550 .free = raid5_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551 .status = status,
7552 .error_handler = error,
7553 .hot_add_disk = raid5_add_disk,
7554 .hot_remove_disk= raid5_remove_disk,
7555 .spare_active = raid5_spare_active,
7556 .sync_request = sync_request,
7557 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007558 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08007559 .check_reshape = raid5_check_reshape,
7560 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007561 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07007562 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11007563 .takeover = raid5_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007564 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007565 .mergeable_bvec = raid5_mergeable_bvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566};
7567
NeilBrown84fc4b52011-10-11 16:49:58 +11007568static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569{
NeilBrown2604b702006-01-06 00:20:36 -08007570 .name = "raid4",
7571 .level = 4,
7572 .owner = THIS_MODULE,
7573 .make_request = make_request,
7574 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007575 .free = raid5_free,
NeilBrown2604b702006-01-06 00:20:36 -08007576 .status = status,
7577 .error_handler = error,
7578 .hot_add_disk = raid5_add_disk,
7579 .hot_remove_disk= raid5_remove_disk,
7580 .spare_active = raid5_spare_active,
7581 .sync_request = sync_request,
7582 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007583 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08007584 .check_reshape = raid5_check_reshape,
7585 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007586 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08007587 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11007588 .takeover = raid4_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007589 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007590 .mergeable_bvec = raid5_mergeable_bvec,
NeilBrown2604b702006-01-06 00:20:36 -08007591};
7592
7593static int __init raid5_init(void)
7594{
Shaohua Li851c30c2013-08-28 14:30:16 +08007595 raid5_wq = alloc_workqueue("raid5wq",
7596 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
7597 if (!raid5_wq)
7598 return -ENOMEM;
NeilBrown16a53ec2006-06-26 00:27:38 -07007599 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08007600 register_md_personality(&raid5_personality);
7601 register_md_personality(&raid4_personality);
7602 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603}
7604
NeilBrown2604b702006-01-06 00:20:36 -08007605static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606{
NeilBrown16a53ec2006-06-26 00:27:38 -07007607 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08007608 unregister_md_personality(&raid5_personality);
7609 unregister_md_personality(&raid4_personality);
Shaohua Li851c30c2013-08-28 14:30:16 +08007610 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611}
7612
7613module_init(raid5_init);
7614module_exit(raid5_exit);
7615MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11007616MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08007618MODULE_ALIAS("md-raid5");
7619MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08007620MODULE_ALIAS("md-level-5");
7621MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07007622MODULE_ALIAS("md-personality-8"); /* RAID6 */
7623MODULE_ALIAS("md-raid6");
7624MODULE_ALIAS("md-level-6");
7625
7626/* This used to be two separate modules, they were: */
7627MODULE_ALIAS("raid5");
7628MODULE_ALIAS("raid6");