blob: 78ac7dc853c7d1b79ac38fc25d379fc8ae9e9fc2 [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
NeilBrowna9683a72015-02-25 12:02:51 +1100500static int grow_buffers(struct stripe_head *sh, gfp_t gfp)
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
NeilBrowna9683a72015-02-25 12:02:51 +1100508 if (!(page = alloc_page(gfp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 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 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001320static int set_syndrome_sources(struct page **srcs,
1321 struct stripe_head *sh,
1322 int srctype)
Dan Williamsac6b53b2009-07-14 13:40:19 -07001323{
1324 int disks = sh->disks;
1325 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1326 int d0_idx = raid6_d0(sh);
1327 int count;
1328 int i;
1329
1330 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001331 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001332
1333 count = 0;
1334 i = d0_idx;
1335 do {
1336 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001337 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001338
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001339 if (i == sh->qd_idx || i == sh->pd_idx ||
1340 (srctype == SYNDROME_SRC_ALL) ||
1341 (srctype == SYNDROME_SRC_WANT_DRAIN &&
1342 test_bit(R5_Wantdrain, &dev->flags)) ||
1343 (srctype == SYNDROME_SRC_WRITTEN &&
1344 dev->written))
1345 srcs[slot] = sh->dev[i].page;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001346 i = raid6_next_disk(i, disks);
1347 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001348
NeilBrowne4424fe2009-10-16 16:27:34 +11001349 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001350}
1351
1352static struct dma_async_tx_descriptor *
1353ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1354{
1355 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001356 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001357 int target;
1358 int qd_idx = sh->qd_idx;
1359 struct dma_async_tx_descriptor *tx;
1360 struct async_submit_ctl submit;
1361 struct r5dev *tgt;
1362 struct page *dest;
1363 int i;
1364 int count;
1365
shli@kernel.org59fc6302014-12-15 12:57:03 +11001366 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001367 if (sh->ops.target < 0)
1368 target = sh->ops.target2;
1369 else if (sh->ops.target2 < 0)
1370 target = sh->ops.target;
1371 else
1372 /* we should only have one valid target */
1373 BUG();
1374 BUG_ON(target < 0);
1375 pr_debug("%s: stripe %llu block: %d\n",
1376 __func__, (unsigned long long)sh->sector, target);
1377
1378 tgt = &sh->dev[target];
1379 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1380 dest = tgt->page;
1381
1382 atomic_inc(&sh->count);
1383
1384 if (target == qd_idx) {
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001385 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001386 blocks[count] = NULL; /* regenerating p is not necessary */
1387 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001388 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1389 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001390 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001391 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1392 } else {
1393 /* Compute any data- or p-drive using XOR */
1394 count = 0;
1395 for (i = disks; i-- ; ) {
1396 if (i == target || i == qd_idx)
1397 continue;
1398 blocks[count++] = sh->dev[i].page;
1399 }
1400
Dan Williams0403e382009-09-08 17:42:50 -07001401 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1402 NULL, ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001403 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001404 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1405 }
1406
1407 return tx;
1408}
1409
1410static struct dma_async_tx_descriptor *
1411ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1412{
1413 int i, count, disks = sh->disks;
1414 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1415 int d0_idx = raid6_d0(sh);
1416 int faila = -1, failb = -1;
1417 int target = sh->ops.target;
1418 int target2 = sh->ops.target2;
1419 struct r5dev *tgt = &sh->dev[target];
1420 struct r5dev *tgt2 = &sh->dev[target2];
1421 struct dma_async_tx_descriptor *tx;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001422 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001423 struct async_submit_ctl submit;
1424
shli@kernel.org59fc6302014-12-15 12:57:03 +11001425 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001426 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1427 __func__, (unsigned long long)sh->sector, target, target2);
1428 BUG_ON(target < 0 || target2 < 0);
1429 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1430 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1431
Dan Williams6c910a72009-09-16 12:24:54 -07001432 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001433 * slot number conversion for 'faila' and 'failb'
1434 */
1435 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001436 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001437 count = 0;
1438 i = d0_idx;
1439 do {
1440 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1441
1442 blocks[slot] = sh->dev[i].page;
1443
1444 if (i == target)
1445 faila = slot;
1446 if (i == target2)
1447 failb = slot;
1448 i = raid6_next_disk(i, disks);
1449 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001450
1451 BUG_ON(faila == failb);
1452 if (failb < faila)
1453 swap(faila, failb);
1454 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1455 __func__, (unsigned long long)sh->sector, faila, failb);
1456
1457 atomic_inc(&sh->count);
1458
1459 if (failb == syndrome_disks+1) {
1460 /* Q disk is one of the missing disks */
1461 if (faila == syndrome_disks) {
1462 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001463 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1464 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001465 to_addr_conv(sh, percpu, 0));
NeilBrowne4424fe2009-10-16 16:27:34 +11001466 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001467 STRIPE_SIZE, &submit);
1468 } else {
1469 struct page *dest;
1470 int data_target;
1471 int qd_idx = sh->qd_idx;
1472
1473 /* Missing D+Q: recompute D from P, then recompute Q */
1474 if (target == qd_idx)
1475 data_target = target2;
1476 else
1477 data_target = target;
1478
1479 count = 0;
1480 for (i = disks; i-- ; ) {
1481 if (i == data_target || i == qd_idx)
1482 continue;
1483 blocks[count++] = sh->dev[i].page;
1484 }
1485 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001486 init_async_submit(&submit,
1487 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1488 NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001489 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001490 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1491 &submit);
1492
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001493 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williams0403e382009-09-08 17:42:50 -07001494 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1495 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001496 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001497 return async_gen_syndrome(blocks, 0, count+2,
1498 STRIPE_SIZE, &submit);
1499 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001500 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001501 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1502 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001503 to_addr_conv(sh, percpu, 0));
Dan Williams6c910a72009-09-16 12:24:54 -07001504 if (failb == syndrome_disks) {
1505 /* We're missing D+P. */
1506 return async_raid6_datap_recov(syndrome_disks+2,
1507 STRIPE_SIZE, faila,
1508 blocks, &submit);
1509 } else {
1510 /* We're missing D+D. */
1511 return async_raid6_2data_recov(syndrome_disks+2,
1512 STRIPE_SIZE, faila, failb,
1513 blocks, &submit);
1514 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001515 }
1516}
1517
Dan Williams91c00922007-01-02 13:52:30 -07001518static void ops_complete_prexor(void *stripe_head_ref)
1519{
1520 struct stripe_head *sh = stripe_head_ref;
1521
Harvey Harrisone46b2722008-04-28 02:15:50 -07001522 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001523 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001524}
1525
1526static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001527ops_run_prexor5(struct stripe_head *sh, struct raid5_percpu *percpu,
1528 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001529{
Dan Williams91c00922007-01-02 13:52:30 -07001530 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001531 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001532 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001533 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001534
1535 /* existing parity data subtracted */
1536 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1537
shli@kernel.org59fc6302014-12-15 12:57:03 +11001538 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001539 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001540 (unsigned long long)sh->sector);
1541
1542 for (i = disks; i--; ) {
1543 struct r5dev *dev = &sh->dev[i];
1544 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001545 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001546 xor_srcs[count++] = dev->page;
1547 }
1548
Dan Williams0403e382009-09-08 17:42:50 -07001549 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001550 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Dan Williamsa08abd82009-06-03 11:43:59 -07001551 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001552
1553 return tx;
1554}
1555
1556static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001557ops_run_prexor6(struct stripe_head *sh, struct raid5_percpu *percpu,
1558 struct dma_async_tx_descriptor *tx)
1559{
1560 struct page **blocks = to_addr_page(percpu, 0);
1561 int count;
1562 struct async_submit_ctl submit;
1563
1564 pr_debug("%s: stripe %llu\n", __func__,
1565 (unsigned long long)sh->sector);
1566
1567 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_WANT_DRAIN);
1568
1569 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_PQ_XOR_DST, tx,
1570 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
1571 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1572
1573 return tx;
1574}
1575
1576static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001577ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001578{
1579 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001580 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001581 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -07001582
Harvey Harrisone46b2722008-04-28 02:15:50 -07001583 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001584 (unsigned long long)sh->sector);
1585
1586 for (i = disks; i--; ) {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001587 struct r5dev *dev;
Dan Williams91c00922007-01-02 13:52:30 -07001588 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001589
shli@kernel.org59fc6302014-12-15 12:57:03 +11001590 sh = head_sh;
1591 if (test_and_clear_bit(R5_Wantdrain, &head_sh->dev[i].flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001592 struct bio *wbi;
1593
shli@kernel.org59fc6302014-12-15 12:57:03 +11001594again:
1595 dev = &sh->dev[i];
Shaohua Lib17459c2012-07-19 16:01:31 +10001596 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001597 chosen = dev->towrite;
1598 dev->towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11001599 sh->overwrite_disks = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001600 BUG_ON(dev->written);
1601 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001602 spin_unlock_irq(&sh->stripe_lock);
Shaohua Lid592a992014-05-21 17:57:44 +08001603 WARN_ON(dev->page != dev->orig_page);
Dan Williams91c00922007-01-02 13:52:30 -07001604
Kent Overstreet4f024f32013-10-11 15:44:27 -07001605 while (wbi && wbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001606 dev->sector + STRIPE_SECTORS) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001607 if (wbi->bi_rw & REQ_FUA)
1608 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001609 if (wbi->bi_rw & REQ_SYNC)
1610 set_bit(R5_SyncIO, &dev->flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001611 if (wbi->bi_rw & REQ_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001612 set_bit(R5_Discard, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08001613 else {
1614 tx = async_copy_data(1, wbi, &dev->page,
1615 dev->sector, tx, sh);
1616 if (dev->page != dev->orig_page) {
1617 set_bit(R5_SkipCopy, &dev->flags);
1618 clear_bit(R5_UPTODATE, &dev->flags);
1619 clear_bit(R5_OVERWRITE, &dev->flags);
1620 }
1621 }
Dan Williams91c00922007-01-02 13:52:30 -07001622 wbi = r5_next_bio(wbi, dev->sector);
1623 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001624
1625 if (head_sh->batch_head) {
1626 sh = list_first_entry(&sh->batch_list,
1627 struct stripe_head,
1628 batch_list);
1629 if (sh == head_sh)
1630 continue;
1631 goto again;
1632 }
Dan Williams91c00922007-01-02 13:52:30 -07001633 }
1634 }
1635
1636 return tx;
1637}
1638
Dan Williamsac6b53b2009-07-14 13:40:19 -07001639static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001640{
1641 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001642 int disks = sh->disks;
1643 int pd_idx = sh->pd_idx;
1644 int qd_idx = sh->qd_idx;
1645 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001646 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001647
Harvey Harrisone46b2722008-04-28 02:15:50 -07001648 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001649 (unsigned long long)sh->sector);
1650
Shaohua Libc0934f2012-05-22 13:55:05 +10001651 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001652 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001653 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001654 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001655 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001656
Dan Williams91c00922007-01-02 13:52:30 -07001657 for (i = disks; i--; ) {
1658 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001659
Tejun Heoe9c74692010-09-03 11:56:18 +02001660 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Lid592a992014-05-21 17:57:44 +08001661 if (!discard && !test_bit(R5_SkipCopy, &dev->flags))
Shaohua Li9e4447682012-10-11 13:49:49 +11001662 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001663 if (fua)
1664 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001665 if (sync)
1666 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001667 }
Dan Williams91c00922007-01-02 13:52:30 -07001668 }
1669
Dan Williamsd8ee0722008-06-28 08:32:06 +10001670 if (sh->reconstruct_state == reconstruct_state_drain_run)
1671 sh->reconstruct_state = reconstruct_state_drain_result;
1672 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1673 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1674 else {
1675 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1676 sh->reconstruct_state = reconstruct_state_result;
1677 }
Dan Williams91c00922007-01-02 13:52:30 -07001678
1679 set_bit(STRIPE_HANDLE, &sh->state);
1680 release_stripe(sh);
1681}
1682
1683static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001684ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1685 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001686{
Dan Williams91c00922007-01-02 13:52:30 -07001687 int disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001688 struct page **xor_srcs;
Dan Williamsa08abd82009-06-03 11:43:59 -07001689 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001690 int count, pd_idx = sh->pd_idx, i;
Dan Williams91c00922007-01-02 13:52:30 -07001691 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001692 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001693 unsigned long flags;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001694 int j = 0;
1695 struct stripe_head *head_sh = sh;
1696 int last_stripe;
Dan Williams91c00922007-01-02 13:52:30 -07001697
Harvey Harrisone46b2722008-04-28 02:15:50 -07001698 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001699 (unsigned long long)sh->sector);
1700
Shaohua Li620125f2012-10-11 13:49:05 +11001701 for (i = 0; i < sh->disks; i++) {
1702 if (pd_idx == i)
1703 continue;
1704 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1705 break;
1706 }
1707 if (i >= sh->disks) {
1708 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001709 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1710 ops_complete_reconstruct(sh);
1711 return;
1712 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001713again:
1714 count = 0;
1715 xor_srcs = to_addr_page(percpu, j);
Dan Williams91c00922007-01-02 13:52:30 -07001716 /* check if prexor is active which means only process blocks
1717 * that are part of a read-modify-write (written)
1718 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001719 if (head_sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001720 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001721 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1722 for (i = disks; i--; ) {
1723 struct r5dev *dev = &sh->dev[i];
shli@kernel.org59fc6302014-12-15 12:57:03 +11001724 if (head_sh->dev[i].written)
Dan Williams91c00922007-01-02 13:52:30 -07001725 xor_srcs[count++] = dev->page;
1726 }
1727 } else {
1728 xor_dest = sh->dev[pd_idx].page;
1729 for (i = disks; i--; ) {
1730 struct r5dev *dev = &sh->dev[i];
1731 if (i != pd_idx)
1732 xor_srcs[count++] = dev->page;
1733 }
1734 }
1735
Dan Williams91c00922007-01-02 13:52:30 -07001736 /* 1/ if we prexor'd then the dest is reused as a source
1737 * 2/ if we did not prexor then we are redoing the parity
1738 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1739 * for the synchronous xor case
1740 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001741 last_stripe = !head_sh->batch_head ||
1742 list_first_entry(&sh->batch_list,
1743 struct stripe_head, batch_list) == head_sh;
1744 if (last_stripe) {
1745 flags = ASYNC_TX_ACK |
1746 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
Dan Williams91c00922007-01-02 13:52:30 -07001747
shli@kernel.org59fc6302014-12-15 12:57:03 +11001748 atomic_inc(&head_sh->count);
1749 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, head_sh,
1750 to_addr_conv(sh, percpu, j));
1751 } else {
1752 flags = prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST;
1753 init_async_submit(&submit, flags, tx, NULL, NULL,
1754 to_addr_conv(sh, percpu, j));
1755 }
Dan Williams91c00922007-01-02 13:52:30 -07001756
Dan Williamsa08abd82009-06-03 11:43:59 -07001757 if (unlikely(count == 1))
1758 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1759 else
1760 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001761 if (!last_stripe) {
1762 j++;
1763 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1764 batch_list);
1765 goto again;
1766 }
Dan Williams91c00922007-01-02 13:52:30 -07001767}
1768
Dan Williamsac6b53b2009-07-14 13:40:19 -07001769static void
1770ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1771 struct dma_async_tx_descriptor *tx)
1772{
1773 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001774 struct page **blocks;
1775 int count, i, j = 0;
1776 struct stripe_head *head_sh = sh;
1777 int last_stripe;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001778 int synflags;
1779 unsigned long txflags;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001780
1781 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1782
Shaohua Li620125f2012-10-11 13:49:05 +11001783 for (i = 0; i < sh->disks; i++) {
1784 if (sh->pd_idx == i || sh->qd_idx == i)
1785 continue;
1786 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1787 break;
1788 }
1789 if (i >= sh->disks) {
1790 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001791 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1792 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1793 ops_complete_reconstruct(sh);
1794 return;
1795 }
1796
shli@kernel.org59fc6302014-12-15 12:57:03 +11001797again:
1798 blocks = to_addr_page(percpu, j);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001799
1800 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1801 synflags = SYNDROME_SRC_WRITTEN;
1802 txflags = ASYNC_TX_ACK | ASYNC_TX_PQ_XOR_DST;
1803 } else {
1804 synflags = SYNDROME_SRC_ALL;
1805 txflags = ASYNC_TX_ACK;
1806 }
1807
1808 count = set_syndrome_sources(blocks, sh, synflags);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001809 last_stripe = !head_sh->batch_head ||
1810 list_first_entry(&sh->batch_list,
1811 struct stripe_head, batch_list) == head_sh;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001812
shli@kernel.org59fc6302014-12-15 12:57:03 +11001813 if (last_stripe) {
1814 atomic_inc(&head_sh->count);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001815 init_async_submit(&submit, txflags, tx, ops_complete_reconstruct,
shli@kernel.org59fc6302014-12-15 12:57:03 +11001816 head_sh, to_addr_conv(sh, percpu, j));
1817 } else
1818 init_async_submit(&submit, 0, tx, NULL, NULL,
1819 to_addr_conv(sh, percpu, j));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001820 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001821 if (!last_stripe) {
1822 j++;
1823 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1824 batch_list);
1825 goto again;
1826 }
Dan Williams91c00922007-01-02 13:52:30 -07001827}
1828
1829static void ops_complete_check(void *stripe_head_ref)
1830{
1831 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001832
Harvey Harrisone46b2722008-04-28 02:15:50 -07001833 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001834 (unsigned long long)sh->sector);
1835
Dan Williamsecc65c92008-06-28 08:31:57 +10001836 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001837 set_bit(STRIPE_HANDLE, &sh->state);
1838 release_stripe(sh);
1839}
1840
Dan Williamsac6b53b2009-07-14 13:40:19 -07001841static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001842{
Dan Williams91c00922007-01-02 13:52:30 -07001843 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001844 int pd_idx = sh->pd_idx;
1845 int qd_idx = sh->qd_idx;
1846 struct page *xor_dest;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001847 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001848 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001849 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001850 int count;
1851 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001852
Harvey Harrisone46b2722008-04-28 02:15:50 -07001853 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001854 (unsigned long long)sh->sector);
1855
shli@kernel.org59fc6302014-12-15 12:57:03 +11001856 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001857 count = 0;
1858 xor_dest = sh->dev[pd_idx].page;
1859 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001860 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001861 if (i == pd_idx || i == qd_idx)
1862 continue;
1863 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001864 }
1865
Dan Williamsd6f38f32009-07-14 11:50:52 -07001866 init_async_submit(&submit, 0, NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001867 to_addr_conv(sh, percpu, 0));
Dan Williams099f53c2009-04-08 14:28:37 -07001868 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001869 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001870
Dan Williams91c00922007-01-02 13:52:30 -07001871 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001872 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1873 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001874}
1875
Dan Williamsac6b53b2009-07-14 13:40:19 -07001876static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1877{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001878 struct page **srcs = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001879 struct async_submit_ctl submit;
1880 int count;
1881
1882 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1883 (unsigned long long)sh->sector, checkp);
1884
shli@kernel.org59fc6302014-12-15 12:57:03 +11001885 BUG_ON(sh->batch_head);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001886 count = set_syndrome_sources(srcs, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001887 if (!checkp)
1888 srcs[count] = NULL;
1889
1890 atomic_inc(&sh->count);
1891 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001892 sh, to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001893 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1894 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1895}
1896
NeilBrown51acbce2013-02-28 09:08:34 +11001897static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001898{
1899 int overlap_clear = 0, i, disks = sh->disks;
1900 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001901 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001902 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001903 struct raid5_percpu *percpu;
1904 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001905
Dan Williamsd6f38f32009-07-14 11:50:52 -07001906 cpu = get_cpu();
1907 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001908 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001909 ops_run_biofill(sh);
1910 overlap_clear++;
1911 }
1912
Dan Williams7b3a8712008-06-28 08:32:09 +10001913 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001914 if (level < 6)
1915 tx = ops_run_compute5(sh, percpu);
1916 else {
1917 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1918 tx = ops_run_compute6_1(sh, percpu);
1919 else
1920 tx = ops_run_compute6_2(sh, percpu);
1921 }
1922 /* terminate the chain if reconstruct is not set to be run */
1923 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001924 async_tx_ack(tx);
1925 }
Dan Williams91c00922007-01-02 13:52:30 -07001926
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001927 if (test_bit(STRIPE_OP_PREXOR, &ops_request)) {
1928 if (level < 6)
1929 tx = ops_run_prexor5(sh, percpu, tx);
1930 else
1931 tx = ops_run_prexor6(sh, percpu, tx);
1932 }
Dan Williams91c00922007-01-02 13:52:30 -07001933
Dan Williams600aa102008-06-28 08:32:05 +10001934 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001935 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001936 overlap_clear++;
1937 }
1938
Dan Williamsac6b53b2009-07-14 13:40:19 -07001939 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1940 if (level < 6)
1941 ops_run_reconstruct5(sh, percpu, tx);
1942 else
1943 ops_run_reconstruct6(sh, percpu, tx);
1944 }
Dan Williams91c00922007-01-02 13:52:30 -07001945
Dan Williamsac6b53b2009-07-14 13:40:19 -07001946 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1947 if (sh->check_state == check_state_run)
1948 ops_run_check_p(sh, percpu);
1949 else if (sh->check_state == check_state_run_q)
1950 ops_run_check_pq(sh, percpu, 0);
1951 else if (sh->check_state == check_state_run_pq)
1952 ops_run_check_pq(sh, percpu, 1);
1953 else
1954 BUG();
1955 }
Dan Williams91c00922007-01-02 13:52:30 -07001956
shli@kernel.org59fc6302014-12-15 12:57:03 +11001957 if (overlap_clear && !sh->batch_head)
Dan Williams91c00922007-01-02 13:52:30 -07001958 for (i = disks; i--; ) {
1959 struct r5dev *dev = &sh->dev[i];
1960 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1961 wake_up(&sh->raid_conf->wait_for_overlap);
1962 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001963 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001964}
1965
NeilBrown486f0642015-02-25 12:10:35 +11001966static int grow_one_stripe(struct r5conf *conf, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
1968 struct stripe_head *sh;
NeilBrowna9683a72015-02-25 12:02:51 +11001969 sh = kmem_cache_zalloc(conf->slab_cache, gfp);
NeilBrown3f294f42005-11-08 21:39:25 -08001970 if (!sh)
1971 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001972
NeilBrown3f294f42005-11-08 21:39:25 -08001973 sh->raid_conf = conf;
NeilBrown3f294f42005-11-08 21:39:25 -08001974
Shaohua Lib17459c2012-07-19 16:01:31 +10001975 spin_lock_init(&sh->stripe_lock);
1976
NeilBrowna9683a72015-02-25 12:02:51 +11001977 if (grow_buffers(sh, gfp)) {
NeilBrowne4e11e32010-06-16 16:45:16 +10001978 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001979 kmem_cache_free(conf->slab_cache, sh);
1980 return 0;
1981 }
NeilBrown486f0642015-02-25 12:10:35 +11001982 sh->hash_lock_index =
1983 conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
NeilBrown3f294f42005-11-08 21:39:25 -08001984 /* we just created an active stripe so... */
1985 atomic_set(&sh->count, 1);
1986 atomic_inc(&conf->active_stripes);
1987 INIT_LIST_HEAD(&sh->lru);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001988
1989 spin_lock_init(&sh->batch_lock);
1990 INIT_LIST_HEAD(&sh->batch_list);
1991 sh->batch_head = NULL;
NeilBrown3f294f42005-11-08 21:39:25 -08001992 release_stripe(sh);
NeilBrown486f0642015-02-25 12:10:35 +11001993 conf->max_nr_stripes++;
NeilBrown3f294f42005-11-08 21:39:25 -08001994 return 1;
1995}
1996
NeilBrownd1688a62011-10-11 16:49:52 +11001997static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08001998{
Christoph Lametere18b8902006-12-06 20:33:20 -08001999 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11002000 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
NeilBrownf4be6b42010-06-01 19:37:25 +10002002 if (conf->mddev->gendisk)
2003 sprintf(conf->cache_name[0],
2004 "raid%d-%s", conf->level, mdname(conf->mddev));
2005 else
2006 sprintf(conf->cache_name[0],
2007 "raid%d-%p", conf->level, conf->mddev);
2008 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
2009
NeilBrownad01c9e2006-03-27 01:18:07 -08002010 conf->active_name = 0;
2011 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002013 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if (!sc)
2015 return 1;
2016 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002017 conf->pool_size = devs;
NeilBrown486f0642015-02-25 12:10:35 +11002018 while (num--)
2019 if (!grow_one_stripe(conf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 return 1;
NeilBrown486f0642015-02-25 12:10:35 +11002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 return 0;
2023}
NeilBrown29269552006-03-27 01:18:10 -08002024
Dan Williamsd6f38f32009-07-14 11:50:52 -07002025/**
2026 * scribble_len - return the required size of the scribble region
2027 * @num - total number of disks in the array
2028 *
2029 * The size must be enough to contain:
2030 * 1/ a struct page pointer for each device in the array +2
2031 * 2/ room to convert each entry in (1) to its corresponding dma
2032 * (dma_map_page()) or page (page_address()) address.
2033 *
2034 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
2035 * calculate over all devices (not just the data blocks), using zeros in place
2036 * of the P and Q blocks.
2037 */
shli@kernel.org46d5b782014-12-15 12:57:02 +11002038static struct flex_array *scribble_alloc(int num, int cnt, gfp_t flags)
Dan Williamsd6f38f32009-07-14 11:50:52 -07002039{
shli@kernel.org46d5b782014-12-15 12:57:02 +11002040 struct flex_array *ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002041 size_t len;
2042
2043 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002044 ret = flex_array_alloc(len, cnt, flags);
2045 if (!ret)
2046 return NULL;
2047 /* always prealloc all elements, so no locking is required */
2048 if (flex_array_prealloc(ret, 0, cnt, flags)) {
2049 flex_array_free(ret);
2050 return NULL;
2051 }
2052 return ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002053}
2054
NeilBrownd1688a62011-10-11 16:49:52 +11002055static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08002056{
2057 /* Make all the stripes able to hold 'newsize' devices.
2058 * New slots in each stripe get 'page' set to a new page.
2059 *
2060 * This happens in stages:
2061 * 1/ create a new kmem_cache and allocate the required number of
2062 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09002063 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08002064 * to the new stripe_heads. This will have the side effect of
2065 * freezing the array as once all stripe_heads have been collected,
2066 * no IO will be possible. Old stripe heads are freed once their
2067 * pages have been transferred over, and the old kmem_cache is
2068 * freed when all stripes are done.
2069 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
2070 * we simple return a failre status - no need to clean anything up.
2071 * 4/ allocate new pages for the new slots in the new stripe_heads.
2072 * If this fails, we don't bother trying the shrink the
2073 * stripe_heads down again, we just leave them as they are.
2074 * As each stripe_head is processed the new one is released into
2075 * active service.
2076 *
2077 * Once step2 is started, we cannot afford to wait for a write,
2078 * so we use GFP_NOIO allocations.
2079 */
2080 struct stripe_head *osh, *nsh;
2081 LIST_HEAD(newstripes);
2082 struct disk_info *ndisks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002083 unsigned long cpu;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002084 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08002085 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002086 int i;
Shaohua Li566c09c2013-11-14 15:16:17 +11002087 int hash, cnt;
NeilBrownad01c9e2006-03-27 01:18:07 -08002088
2089 if (newsize <= conf->pool_size)
2090 return 0; /* never bother to shrink */
2091
Dan Williamsb5470dc2008-06-27 21:44:04 -07002092 err = md_allow_write(conf->mddev);
2093 if (err)
2094 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002095
NeilBrownad01c9e2006-03-27 01:18:07 -08002096 /* Step 1 */
2097 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
2098 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002099 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002100 if (!sc)
2101 return -ENOMEM;
2102
2103 for (i = conf->max_nr_stripes; i; i--) {
Namhyung Kim6ce32842011-07-18 17:38:50 +10002104 nsh = kmem_cache_zalloc(sc, GFP_KERNEL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002105 if (!nsh)
2106 break;
2107
NeilBrownad01c9e2006-03-27 01:18:07 -08002108 nsh->raid_conf = conf;
NeilBrowncb13ff62012-09-24 16:27:20 +10002109 spin_lock_init(&nsh->stripe_lock);
NeilBrownad01c9e2006-03-27 01:18:07 -08002110
2111 list_add(&nsh->lru, &newstripes);
2112 }
2113 if (i) {
2114 /* didn't get enough, give up */
2115 while (!list_empty(&newstripes)) {
2116 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2117 list_del(&nsh->lru);
2118 kmem_cache_free(sc, nsh);
2119 }
2120 kmem_cache_destroy(sc);
2121 return -ENOMEM;
2122 }
2123 /* Step 2 - Must use GFP_NOIO now.
2124 * OK, we have enough stripes, start collecting inactive
2125 * stripes and copying them over
2126 */
Shaohua Li566c09c2013-11-14 15:16:17 +11002127 hash = 0;
2128 cnt = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002129 list_for_each_entry(nsh, &newstripes, lru) {
Shaohua Li566c09c2013-11-14 15:16:17 +11002130 lock_device_hash_lock(conf, hash);
2131 wait_event_cmd(conf->wait_for_stripe,
2132 !list_empty(conf->inactive_list + hash),
2133 unlock_device_hash_lock(conf, hash),
2134 lock_device_hash_lock(conf, hash));
2135 osh = get_free_stripe(conf, hash);
2136 unlock_device_hash_lock(conf, hash);
NeilBrownad01c9e2006-03-27 01:18:07 -08002137 atomic_set(&nsh->count, 1);
Shaohua Lid592a992014-05-21 17:57:44 +08002138 for(i=0; i<conf->pool_size; i++) {
NeilBrownad01c9e2006-03-27 01:18:07 -08002139 nsh->dev[i].page = osh->dev[i].page;
Shaohua Lid592a992014-05-21 17:57:44 +08002140 nsh->dev[i].orig_page = osh->dev[i].page;
2141 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002142 for( ; i<newsize; i++)
2143 nsh->dev[i].page = NULL;
Shaohua Li566c09c2013-11-14 15:16:17 +11002144 nsh->hash_lock_index = hash;
NeilBrownad01c9e2006-03-27 01:18:07 -08002145 kmem_cache_free(conf->slab_cache, osh);
Shaohua Li566c09c2013-11-14 15:16:17 +11002146 cnt++;
2147 if (cnt >= conf->max_nr_stripes / NR_STRIPE_HASH_LOCKS +
2148 !!((conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS) > hash)) {
2149 hash++;
2150 cnt = 0;
2151 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002152 }
2153 kmem_cache_destroy(conf->slab_cache);
2154
2155 /* Step 3.
2156 * At this point, we are holding all the stripes so the array
2157 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07002158 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08002159 */
2160 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
2161 if (ndisks) {
2162 for (i=0; i<conf->raid_disks; i++)
2163 ndisks[i] = conf->disks[i];
2164 kfree(conf->disks);
2165 conf->disks = ndisks;
2166 } else
2167 err = -ENOMEM;
2168
Dan Williamsd6f38f32009-07-14 11:50:52 -07002169 get_online_cpus();
Dan Williamsd6f38f32009-07-14 11:50:52 -07002170 for_each_present_cpu(cpu) {
2171 struct raid5_percpu *percpu;
shli@kernel.org46d5b782014-12-15 12:57:02 +11002172 struct flex_array *scribble;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002173
2174 percpu = per_cpu_ptr(conf->percpu, cpu);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002175 scribble = scribble_alloc(newsize, conf->chunk_sectors /
2176 STRIPE_SECTORS, GFP_NOIO);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002177
2178 if (scribble) {
shli@kernel.org46d5b782014-12-15 12:57:02 +11002179 flex_array_free(percpu->scribble);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002180 percpu->scribble = scribble;
2181 } else {
2182 err = -ENOMEM;
2183 break;
2184 }
2185 }
2186 put_online_cpus();
2187
NeilBrownad01c9e2006-03-27 01:18:07 -08002188 /* Step 4, return new stripes to service */
2189 while(!list_empty(&newstripes)) {
2190 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2191 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002192
NeilBrownad01c9e2006-03-27 01:18:07 -08002193 for (i=conf->raid_disks; i < newsize; i++)
2194 if (nsh->dev[i].page == NULL) {
2195 struct page *p = alloc_page(GFP_NOIO);
2196 nsh->dev[i].page = p;
Shaohua Lid592a992014-05-21 17:57:44 +08002197 nsh->dev[i].orig_page = p;
NeilBrownad01c9e2006-03-27 01:18:07 -08002198 if (!p)
2199 err = -ENOMEM;
2200 }
2201 release_stripe(nsh);
2202 }
2203 /* critical section pass, GFP_NOIO no longer needed */
2204
2205 conf->slab_cache = sc;
2206 conf->active_name = 1-conf->active_name;
2207 conf->pool_size = newsize;
2208 return err;
2209}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
NeilBrown486f0642015-02-25 12:10:35 +11002211static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212{
2213 struct stripe_head *sh;
NeilBrown486f0642015-02-25 12:10:35 +11002214 int hash = (conf->max_nr_stripes - 1) % NR_STRIPE_HASH_LOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Shaohua Li566c09c2013-11-14 15:16:17 +11002216 spin_lock_irq(conf->hash_locks + hash);
2217 sh = get_free_stripe(conf, hash);
2218 spin_unlock_irq(conf->hash_locks + hash);
NeilBrown3f294f42005-11-08 21:39:25 -08002219 if (!sh)
2220 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002221 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10002222 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002223 kmem_cache_free(conf->slab_cache, sh);
2224 atomic_dec(&conf->active_stripes);
NeilBrown486f0642015-02-25 12:10:35 +11002225 conf->max_nr_stripes--;
NeilBrown3f294f42005-11-08 21:39:25 -08002226 return 1;
2227}
2228
NeilBrownd1688a62011-10-11 16:49:52 +11002229static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08002230{
NeilBrown486f0642015-02-25 12:10:35 +11002231 while (conf->max_nr_stripes &&
2232 drop_one_stripe(conf))
2233 ;
NeilBrown3f294f42005-11-08 21:39:25 -08002234
NeilBrown29fc7e32006-02-03 03:03:41 -08002235 if (conf->slab_cache)
2236 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 conf->slab_cache = NULL;
2238}
2239
NeilBrown6712ecf2007-09-27 12:47:43 +02002240static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241{
NeilBrown99c0fb52009-03-31 14:39:38 +11002242 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002243 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002244 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07002246 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11002247 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10002248 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
2250 for (i=0 ; i<disks; i++)
2251 if (bi == &sh->dev[i].req)
2252 break;
2253
Dan Williams45b42332007-07-09 11:56:43 -07002254 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
2255 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 uptodate);
2257 if (i == disks) {
2258 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002259 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 }
NeilBrown14a75d32011-12-23 10:17:52 +11002261 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11002262 /* If replacement finished while this request was outstanding,
2263 * 'replacement' might be NULL already.
2264 * In that case it moved down to 'rdev'.
2265 * rdev is not removed until all requests are finished.
2266 */
NeilBrown14a75d32011-12-23 10:17:52 +11002267 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002268 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11002269 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
NeilBrown05616be2012-05-21 09:27:00 +10002271 if (use_new_offset(conf, sh))
2272 s = sh->sector + rdev->new_data_offset;
2273 else
2274 s = sh->sector + rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08002277 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11002278 /* Note that this cannot happen on a
2279 * replacement device. We just fail those on
2280 * any error
2281 */
Christian Dietrich8bda4702011-07-27 11:00:36 +10002282 printk_ratelimited(
2283 KERN_INFO
2284 "md/raid:%s: read error corrected"
2285 " (%lu sectors at %llu on %s)\n",
2286 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10002287 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002288 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10002289 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08002290 clear_bit(R5_ReadError, &sh->dev[i].flags);
2291 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10002292 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2293 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2294
NeilBrown14a75d32011-12-23 10:17:52 +11002295 if (atomic_read(&rdev->read_errors))
2296 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11002298 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08002299 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10002300 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07002301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07002303 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11002304 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
2305 printk_ratelimited(
2306 KERN_WARNING
2307 "md/raid:%s: read error on replacement device "
2308 "(sector %llu on %s).\n",
2309 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002310 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11002311 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002312 else if (conf->mddev->degraded >= conf->max_degraded) {
2313 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10002314 printk_ratelimited(
2315 KERN_WARNING
2316 "md/raid:%s: read error not correctable "
2317 "(sector %llu on %s).\n",
2318 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002319 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002320 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002321 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08002322 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10002323 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10002324 printk_ratelimited(
2325 KERN_WARNING
2326 "md/raid:%s: read error NOT corrected!! "
2327 "(sector %llu on %s).\n",
2328 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002329 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002330 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002331 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08002332 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08002333 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10002334 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07002335 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08002336 else
2337 retry = 1;
Bian Yuedfa1f62013-11-14 15:16:17 +11002338 if (set_bad && test_bit(In_sync, &rdev->flags)
2339 && !test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2340 retry = 1;
NeilBrownba22dcb2005-11-08 21:39:31 -08002341 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10002342 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
2343 set_bit(R5_ReadError, &sh->dev[i].flags);
2344 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2345 } else
2346 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08002347 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08002348 clear_bit(R5_ReadError, &sh->dev[i].flags);
2349 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10002350 if (!(set_bad
2351 && test_bit(In_sync, &rdev->flags)
2352 && rdev_set_badblocks(
2353 rdev, sh->sector, STRIPE_SECTORS, 0)))
2354 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08002355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 }
NeilBrown14a75d32011-12-23 10:17:52 +11002357 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2359 set_bit(STRIPE_HANDLE, &sh->state);
2360 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
NeilBrownd710e132008-10-13 11:55:12 +11002363static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
NeilBrown99c0fb52009-03-31 14:39:38 +11002365 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002366 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002367 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11002368 struct md_rdev *uninitialized_var(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownb84db562011-07-28 11:39:23 +10002370 sector_t first_bad;
2371 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11002372 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
NeilBrown977df362011-12-23 10:17:53 +11002374 for (i = 0 ; i < disks; i++) {
2375 if (bi == &sh->dev[i].req) {
2376 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 break;
NeilBrown977df362011-12-23 10:17:53 +11002378 }
2379 if (bi == &sh->dev[i].rreq) {
2380 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002381 if (rdev)
2382 replacement = 1;
2383 else
2384 /* rdev was removed and 'replacement'
2385 * replaced it. rdev is not removed
2386 * until all requests are finished.
2387 */
2388 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11002389 break;
2390 }
2391 }
Dan Williams45b42332007-07-09 11:56:43 -07002392 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
2394 uptodate);
2395 if (i == disks) {
2396 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002397 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
2399
NeilBrown977df362011-12-23 10:17:53 +11002400 if (replacement) {
2401 if (!uptodate)
2402 md_error(conf->mddev, rdev);
2403 else if (is_badblock(rdev, sh->sector,
2404 STRIPE_SECTORS,
2405 &first_bad, &bad_sectors))
2406 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2407 } else {
2408 if (!uptodate) {
NeilBrown9f97e4b2014-01-16 09:35:38 +11002409 set_bit(STRIPE_DEGRADED, &sh->state);
NeilBrown977df362011-12-23 10:17:53 +11002410 set_bit(WriteErrorSeen, &rdev->flags);
2411 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002412 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2413 set_bit(MD_RECOVERY_NEEDED,
2414 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002415 } else if (is_badblock(rdev, sh->sector,
2416 STRIPE_SECTORS,
NeilBrownc0b32972013-04-24 11:42:42 +10002417 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002418 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002419 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2420 /* That was a successful write so make
2421 * sure it looks like we already did
2422 * a re-write.
2423 */
2424 set_bit(R5_ReWrite, &sh->dev[i].flags);
2425 }
NeilBrown977df362011-12-23 10:17:53 +11002426 }
2427 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
shli@kernel.org72ac7332014-12-15 12:57:03 +11002429 if (sh->batch_head && !uptodate)
2430 set_bit(STRIPE_BATCH_ERR, &sh->batch_head->state);
2431
NeilBrown977df362011-12-23 10:17:53 +11002432 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2433 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07002435 release_stripe(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002436
2437 if (sh->batch_head && sh != sh->batch_head)
2438 release_stripe(sh->batch_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439}
2440
NeilBrown784052e2009-03-31 15:19:07 +11002441static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Shaohua Lid592a992014-05-21 17:57:44 +08002442
NeilBrown784052e2009-03-31 15:19:07 +11002443static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
2445 struct r5dev *dev = &sh->dev[i];
2446
2447 bio_init(&dev->req);
2448 dev->req.bi_io_vec = &dev->vec;
Shaohua Lid592a992014-05-21 17:57:44 +08002449 dev->req.bi_max_vecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 dev->req.bi_private = sh;
2451
NeilBrown977df362011-12-23 10:17:53 +11002452 bio_init(&dev->rreq);
2453 dev->rreq.bi_io_vec = &dev->rvec;
Shaohua Lid592a992014-05-21 17:57:44 +08002454 dev->rreq.bi_max_vecs = 1;
NeilBrown977df362011-12-23 10:17:53 +11002455 dev->rreq.bi_private = sh;
NeilBrown977df362011-12-23 10:17:53 +11002456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11002458 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459}
2460
NeilBrownfd01b882011-10-11 16:47:53 +11002461static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
2463 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002464 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002465 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002466 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
NeilBrown908f4fb2011-12-23 10:17:50 +11002468 spin_lock_irqsave(&conf->device_lock, flags);
2469 clear_bit(In_sync, &rdev->flags);
2470 mddev->degraded = calc_degraded(conf);
2471 spin_unlock_irqrestore(&conf->device_lock, flags);
2472 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2473
NeilBrownde393cd2011-07-28 11:31:48 +10002474 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10002475 set_bit(Faulty, &rdev->flags);
2476 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2477 printk(KERN_ALERT
2478 "md/raid:%s: Disk failure on %s, disabling device.\n"
2479 "md/raid:%s: Operation continuing on %d devices.\n",
2480 mdname(mddev),
2481 bdevname(rdev->bdev, b),
2482 mdname(mddev),
2483 conf->raid_disks - mddev->degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07002484}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486/*
2487 * Input: a 'big' sector number,
2488 * Output: index of the data and parity disk, and the sector # in them.
2489 */
NeilBrownd1688a62011-10-11 16:49:52 +11002490static sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11002491 int previous, int *dd_idx,
2492 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002494 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002495 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002497 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002498 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002500 int algorithm = previous ? conf->prev_algo
2501 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002502 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2503 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002504 int raid_disks = previous ? conf->previous_raid_disks
2505 : conf->raid_disks;
2506 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508 /* First compute the information on this sector */
2509
2510 /*
2511 * Compute the chunk number and the sector offset inside the chunk
2512 */
2513 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2514 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 /*
2517 * Compute the stripe number
2518 */
NeilBrown35f2a592010-04-20 14:13:34 +10002519 stripe = chunk_number;
2520 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002521 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 /*
2523 * Select the parity disk based on the user selected algorithm.
2524 */
NeilBrown84789552011-07-27 11:00:36 +10002525 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002526 switch(conf->level) {
2527 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002528 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002529 break;
2530 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002531 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002533 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002534 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 (*dd_idx)++;
2536 break;
2537 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002538 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002539 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 (*dd_idx)++;
2541 break;
2542 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002543 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002544 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 break;
2546 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002547 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002548 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002550 case ALGORITHM_PARITY_0:
2551 pd_idx = 0;
2552 (*dd_idx)++;
2553 break;
2554 case ALGORITHM_PARITY_N:
2555 pd_idx = data_disks;
2556 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002558 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002559 }
2560 break;
2561 case 6:
2562
NeilBrowne183eae2009-03-31 15:20:22 +11002563 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002564 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002565 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002566 qd_idx = pd_idx + 1;
2567 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002568 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002569 qd_idx = 0;
2570 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002571 (*dd_idx) += 2; /* D D P Q D */
2572 break;
2573 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002574 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002575 qd_idx = pd_idx + 1;
2576 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002577 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002578 qd_idx = 0;
2579 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002580 (*dd_idx) += 2; /* D D P Q D */
2581 break;
2582 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002583 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002584 qd_idx = (pd_idx + 1) % raid_disks;
2585 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002586 break;
2587 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002588 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002589 qd_idx = (pd_idx + 1) % raid_disks;
2590 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002591 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002592
2593 case ALGORITHM_PARITY_0:
2594 pd_idx = 0;
2595 qd_idx = 1;
2596 (*dd_idx) += 2;
2597 break;
2598 case ALGORITHM_PARITY_N:
2599 pd_idx = data_disks;
2600 qd_idx = data_disks + 1;
2601 break;
2602
2603 case ALGORITHM_ROTATING_ZERO_RESTART:
2604 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2605 * of blocks for computing Q is different.
2606 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002607 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002608 qd_idx = pd_idx + 1;
2609 if (pd_idx == raid_disks-1) {
2610 (*dd_idx)++; /* Q D D D P */
2611 qd_idx = 0;
2612 } else if (*dd_idx >= pd_idx)
2613 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002614 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002615 break;
2616
2617 case ALGORITHM_ROTATING_N_RESTART:
2618 /* Same a left_asymmetric, by first stripe is
2619 * D D D P Q rather than
2620 * Q D D D P
2621 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002622 stripe2 += 1;
2623 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002624 qd_idx = pd_idx + 1;
2625 if (pd_idx == raid_disks-1) {
2626 (*dd_idx)++; /* Q D D D P */
2627 qd_idx = 0;
2628 } else if (*dd_idx >= pd_idx)
2629 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002630 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002631 break;
2632
2633 case ALGORITHM_ROTATING_N_CONTINUE:
2634 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002635 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002636 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2637 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002638 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002639 break;
2640
2641 case ALGORITHM_LEFT_ASYMMETRIC_6:
2642 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002643 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002644 if (*dd_idx >= pd_idx)
2645 (*dd_idx)++;
2646 qd_idx = raid_disks - 1;
2647 break;
2648
2649 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002650 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002651 if (*dd_idx >= pd_idx)
2652 (*dd_idx)++;
2653 qd_idx = raid_disks - 1;
2654 break;
2655
2656 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002657 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002658 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2659 qd_idx = raid_disks - 1;
2660 break;
2661
2662 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002663 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002664 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2665 qd_idx = raid_disks - 1;
2666 break;
2667
2668 case ALGORITHM_PARITY_0_6:
2669 pd_idx = 0;
2670 (*dd_idx)++;
2671 qd_idx = raid_disks - 1;
2672 break;
2673
NeilBrown16a53ec2006-06-26 00:27:38 -07002674 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002675 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002676 }
2677 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 }
2679
NeilBrown911d4ee2009-03-31 14:39:38 +11002680 if (sh) {
2681 sh->pd_idx = pd_idx;
2682 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002683 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 /*
2686 * Finally, compute the new sector number
2687 */
2688 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2689 return new_sector;
2690}
2691
NeilBrown784052e2009-03-31 15:19:07 +11002692static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
NeilBrownd1688a62011-10-11 16:49:52 +11002694 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002695 int raid_disks = sh->disks;
2696 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002698 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2699 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002700 int algorithm = previous ? conf->prev_algo
2701 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 sector_t stripe;
2703 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002704 sector_t chunk_number;
2705 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002707 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2710 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
NeilBrown16a53ec2006-06-26 00:27:38 -07002712 if (i == sh->pd_idx)
2713 return 0;
2714 switch(conf->level) {
2715 case 4: break;
2716 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002717 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 case ALGORITHM_LEFT_ASYMMETRIC:
2719 case ALGORITHM_RIGHT_ASYMMETRIC:
2720 if (i > sh->pd_idx)
2721 i--;
2722 break;
2723 case ALGORITHM_LEFT_SYMMETRIC:
2724 case ALGORITHM_RIGHT_SYMMETRIC:
2725 if (i < sh->pd_idx)
2726 i += raid_disks;
2727 i -= (sh->pd_idx + 1);
2728 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002729 case ALGORITHM_PARITY_0:
2730 i -= 1;
2731 break;
2732 case ALGORITHM_PARITY_N:
2733 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002735 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002736 }
2737 break;
2738 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002739 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002740 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002741 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002742 case ALGORITHM_LEFT_ASYMMETRIC:
2743 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002744 case ALGORITHM_ROTATING_ZERO_RESTART:
2745 case ALGORITHM_ROTATING_N_RESTART:
2746 if (sh->pd_idx == raid_disks-1)
2747 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002748 else if (i > sh->pd_idx)
2749 i -= 2; /* D D P Q D */
2750 break;
2751 case ALGORITHM_LEFT_SYMMETRIC:
2752 case ALGORITHM_RIGHT_SYMMETRIC:
2753 if (sh->pd_idx == raid_disks-1)
2754 i--; /* Q D D D P */
2755 else {
2756 /* D D P Q D */
2757 if (i < sh->pd_idx)
2758 i += raid_disks;
2759 i -= (sh->pd_idx + 2);
2760 }
2761 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002762 case ALGORITHM_PARITY_0:
2763 i -= 2;
2764 break;
2765 case ALGORITHM_PARITY_N:
2766 break;
2767 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002768 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002769 if (sh->pd_idx == 0)
2770 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002771 else {
2772 /* D D Q P D */
2773 if (i < sh->pd_idx)
2774 i += raid_disks;
2775 i -= (sh->pd_idx + 1);
2776 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002777 break;
2778 case ALGORITHM_LEFT_ASYMMETRIC_6:
2779 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2780 if (i > sh->pd_idx)
2781 i--;
2782 break;
2783 case ALGORITHM_LEFT_SYMMETRIC_6:
2784 case ALGORITHM_RIGHT_SYMMETRIC_6:
2785 if (i < sh->pd_idx)
2786 i += data_disks + 1;
2787 i -= (sh->pd_idx + 1);
2788 break;
2789 case ALGORITHM_PARITY_0_6:
2790 i -= 1;
2791 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002792 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002793 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002794 }
2795 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 }
2797
2798 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002799 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
NeilBrown112bf892009-03-31 14:39:38 +11002801 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002802 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002803 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2804 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002805 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2806 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 return 0;
2808 }
2809 return r_sector;
2810}
2811
Dan Williams600aa102008-06-28 08:32:05 +10002812static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002813schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002814 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002815{
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002816 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002817 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002818 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002819
Dan Williamse33129d2007-01-02 13:52:30 -07002820 if (rcw) {
Dan Williamse33129d2007-01-02 13:52:30 -07002821
2822 for (i = disks; i--; ) {
2823 struct r5dev *dev = &sh->dev[i];
2824
2825 if (dev->towrite) {
2826 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002827 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002828 if (!expand)
2829 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002830 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002831 }
2832 }
NeilBrownce7d3632013-03-04 12:37:14 +11002833 /* if we are not expanding this is a proper write request, and
2834 * there will be bios with new data to be drained into the
2835 * stripe cache
2836 */
2837 if (!expand) {
2838 if (!s->locked)
2839 /* False alarm, nothing to do */
2840 return;
2841 sh->reconstruct_state = reconstruct_state_drain_run;
2842 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2843 } else
2844 sh->reconstruct_state = reconstruct_state_run;
2845
2846 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
2847
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002848 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002849 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002850 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002851 } else {
2852 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2853 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002854 BUG_ON(level == 6 &&
2855 (!(test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags) ||
2856 test_bit(R5_Wantcompute, &sh->dev[qd_idx].flags))));
Dan Williamse33129d2007-01-02 13:52:30 -07002857
Dan Williamse33129d2007-01-02 13:52:30 -07002858 for (i = disks; i--; ) {
2859 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002860 if (i == pd_idx || i == qd_idx)
Dan Williamse33129d2007-01-02 13:52:30 -07002861 continue;
2862
Dan Williamse33129d2007-01-02 13:52:30 -07002863 if (dev->towrite &&
2864 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002865 test_bit(R5_Wantcompute, &dev->flags))) {
2866 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002867 set_bit(R5_LOCKED, &dev->flags);
2868 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002869 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002870 }
2871 }
NeilBrownce7d3632013-03-04 12:37:14 +11002872 if (!s->locked)
2873 /* False alarm - nothing to do */
2874 return;
2875 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
2876 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2877 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2878 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002879 }
2880
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002881 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002882 * are in flight
2883 */
2884 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2885 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002886 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002887
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002888 if (level == 6) {
2889 int qd_idx = sh->qd_idx;
2890 struct r5dev *dev = &sh->dev[qd_idx];
2891
2892 set_bit(R5_LOCKED, &dev->flags);
2893 clear_bit(R5_UPTODATE, &dev->flags);
2894 s->locked++;
2895 }
2896
Dan Williams600aa102008-06-28 08:32:05 +10002897 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07002898 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002899 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002900}
NeilBrown16a53ec2006-06-26 00:27:38 -07002901
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902/*
2903 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002904 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 * The bi_next chain must be in order.
2906 */
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002907static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx,
2908 int forwrite, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909{
2910 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11002911 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002912 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
NeilBrowncbe47ec2011-07-26 11:20:35 +10002914 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002915 (unsigned long long)bi->bi_iter.bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 (unsigned long long)sh->sector);
2917
Shaohua Lib17459c2012-07-19 16:01:31 +10002918 /*
2919 * If several bio share a stripe. The bio bi_phys_segments acts as a
2920 * reference count to avoid race. The reference count should already be
2921 * increased before this function is called (for example, in
2922 * make_request()), so other bio sharing this stripe will not free the
2923 * stripe. If a stripe is owned by one stripe, the stripe lock will
2924 * protect it.
2925 */
2926 spin_lock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002927 /* Don't allow new IO added to stripes in batch list */
2928 if (sh->batch_head)
2929 goto overlap;
NeilBrown72626682005-09-09 16:23:54 -07002930 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002932 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07002933 firstwrite = 1;
2934 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 bip = &sh->dev[dd_idx].toread;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002936 while (*bip && (*bip)->bi_iter.bi_sector < bi->bi_iter.bi_sector) {
2937 if (bio_end_sector(*bip) > bi->bi_iter.bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 goto overlap;
2939 bip = & (*bip)->bi_next;
2940 }
Kent Overstreet4f024f32013-10-11 15:44:27 -07002941 if (*bip && (*bip)->bi_iter.bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 goto overlap;
2943
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002944 if (!forwrite || previous)
2945 clear_bit(STRIPE_BATCH_READY, &sh->state);
2946
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002947 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 if (*bip)
2949 bi->bi_next = *bip;
2950 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10002951 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07002952
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 if (forwrite) {
2954 /* check if page is covered */
2955 sector_t sector = sh->dev[dd_idx].sector;
2956 for (bi=sh->dev[dd_idx].towrite;
2957 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07002958 bi && bi->bi_iter.bi_sector <= sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002960 if (bio_end_sector(bi) >= sector)
2961 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 }
2963 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
shli@kernel.org7a87f432014-12-15 12:57:03 +11002964 if (!test_and_set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags))
2965 sh->overwrite_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10002967
2968 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002969 (unsigned long long)(*bip)->bi_iter.bi_sector,
NeilBrowncbe47ec2011-07-26 11:20:35 +10002970 (unsigned long long)sh->sector, dd_idx);
NeilBrownb97390a2012-10-11 13:50:12 +11002971 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10002972
2973 if (conf->mddev->bitmap && firstwrite) {
2974 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2975 STRIPE_SECTORS, 0);
2976 sh->bm_seq = conf->seq_flush+1;
2977 set_bit(STRIPE_BIT_DELAY, &sh->state);
2978 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11002979
2980 if (stripe_can_batch(sh))
2981 stripe_add_to_batch_list(conf, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 return 1;
2983
2984 overlap:
2985 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10002986 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 return 0;
2988}
2989
NeilBrownd1688a62011-10-11 16:49:52 +11002990static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08002991
NeilBrownd1688a62011-10-11 16:49:52 +11002992static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002993 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002994{
NeilBrown784052e2009-03-31 15:19:07 +11002995 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10002996 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11002997 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002998 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002999 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003000
NeilBrown112bf892009-03-31 14:39:38 +11003001 raid5_compute_sector(conf,
3002 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08003003 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11003004 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003005 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003006}
3007
Dan Williamsa4456852007-07-09 11:56:43 -07003008static void
NeilBrownd1688a62011-10-11 16:49:52 +11003009handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003010 struct stripe_head_state *s, int disks,
3011 struct bio **return_bi)
3012{
3013 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003014 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003015 for (i = disks; i--; ) {
3016 struct bio *bi;
3017 int bitmap_end = 0;
3018
3019 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11003020 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07003021 rcu_read_lock();
3022 rdev = rcu_dereference(conf->disks[i].rdev);
3023 if (rdev && test_bit(In_sync, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10003024 atomic_inc(&rdev->nr_pending);
3025 else
3026 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003027 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10003028 if (rdev) {
3029 if (!rdev_set_badblocks(
3030 rdev,
3031 sh->sector,
3032 STRIPE_SECTORS, 0))
3033 md_error(conf->mddev, rdev);
3034 rdev_dec_pending(rdev, conf->mddev);
3035 }
Dan Williamsa4456852007-07-09 11:56:43 -07003036 }
Shaohua Lib17459c2012-07-19 16:01:31 +10003037 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003038 /* fail all writes first */
3039 bi = sh->dev[i].towrite;
3040 sh->dev[i].towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11003041 sh->overwrite_disks = 0;
Shaohua Lib17459c2012-07-19 16:01:31 +10003042 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11003043 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003044 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07003045
3046 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3047 wake_up(&conf->wait_for_overlap);
3048
Kent Overstreet4f024f32013-10-11 15:44:27 -07003049 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003050 sh->dev[i].sector + STRIPE_SECTORS) {
3051 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
3052 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003053 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003054 md_write_end(conf->mddev);
3055 bi->bi_next = *return_bi;
3056 *return_bi = bi;
3057 }
3058 bi = nextbi;
3059 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003060 if (bitmap_end)
3061 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3062 STRIPE_SECTORS, 0, 0);
3063 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003064 /* and fail all 'written' */
3065 bi = sh->dev[i].written;
3066 sh->dev[i].written = NULL;
Shaohua Lid592a992014-05-21 17:57:44 +08003067 if (test_and_clear_bit(R5_SkipCopy, &sh->dev[i].flags)) {
3068 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
3069 sh->dev[i].page = sh->dev[i].orig_page;
3070 }
3071
Dan Williamsa4456852007-07-09 11:56:43 -07003072 if (bi) bitmap_end = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003073 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003074 sh->dev[i].sector + STRIPE_SECTORS) {
3075 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
3076 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003077 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003078 md_write_end(conf->mddev);
3079 bi->bi_next = *return_bi;
3080 *return_bi = bi;
3081 }
3082 bi = bi2;
3083 }
3084
Dan Williamsb5e98d62007-01-02 13:52:31 -07003085 /* fail any reads if this device is non-operational and
3086 * the data has not reached the cache yet.
3087 */
3088 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
3089 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
3090 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11003091 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003092 bi = sh->dev[i].toread;
3093 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11003094 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003095 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3096 wake_up(&conf->wait_for_overlap);
Kent Overstreet4f024f32013-10-11 15:44:27 -07003097 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003098 sh->dev[i].sector + STRIPE_SECTORS) {
3099 struct bio *nextbi =
3100 r5_next_bio(bi, sh->dev[i].sector);
3101 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003102 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003103 bi->bi_next = *return_bi;
3104 *return_bi = bi;
3105 }
3106 bi = nextbi;
3107 }
3108 }
Dan Williamsa4456852007-07-09 11:56:43 -07003109 if (bitmap_end)
3110 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3111 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10003112 /* If we were in the middle of a write the parity block might
3113 * still be locked - so just clear all R5_LOCKED flags
3114 */
3115 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003116 }
3117
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003118 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3119 if (atomic_dec_and_test(&conf->pending_full_writes))
3120 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07003121}
3122
NeilBrown7f0da592011-07-28 11:39:22 +10003123static void
NeilBrownd1688a62011-10-11 16:49:52 +11003124handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10003125 struct stripe_head_state *s)
3126{
3127 int abort = 0;
3128 int i;
3129
shli@kernel.org59fc6302014-12-15 12:57:03 +11003130 BUG_ON(sh->batch_head);
NeilBrown7f0da592011-07-28 11:39:22 +10003131 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003132 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3133 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10003134 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11003135 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10003136 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10003137 * Don't even need to abort as that is handled elsewhere
3138 * if needed, and not always wanted e.g. if there is a known
3139 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11003140 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10003141 * non-sync devices, or abort the recovery
3142 */
NeilBrown18b98372012-04-01 23:48:38 +10003143 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
3144 /* During recovery devices cannot be removed, so
3145 * locking and refcounting of rdevs is not needed
3146 */
3147 for (i = 0; i < conf->raid_disks; i++) {
3148 struct md_rdev *rdev = conf->disks[i].rdev;
3149 if (rdev
3150 && !test_bit(Faulty, &rdev->flags)
3151 && !test_bit(In_sync, &rdev->flags)
3152 && !rdev_set_badblocks(rdev, sh->sector,
3153 STRIPE_SECTORS, 0))
3154 abort = 1;
3155 rdev = conf->disks[i].replacement;
3156 if (rdev
3157 && !test_bit(Faulty, &rdev->flags)
3158 && !test_bit(In_sync, &rdev->flags)
3159 && !rdev_set_badblocks(rdev, sh->sector,
3160 STRIPE_SECTORS, 0))
3161 abort = 1;
3162 }
3163 if (abort)
3164 conf->recovery_disabled =
3165 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10003166 }
NeilBrown18b98372012-04-01 23:48:38 +10003167 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10003168}
3169
NeilBrown9a3e1102011-12-23 10:17:53 +11003170static int want_replace(struct stripe_head *sh, int disk_idx)
3171{
3172 struct md_rdev *rdev;
3173 int rv = 0;
3174 /* Doing recovery so rcu locking not required */
3175 rdev = sh->raid_conf->disks[disk_idx].replacement;
3176 if (rdev
3177 && !test_bit(Faulty, &rdev->flags)
3178 && !test_bit(In_sync, &rdev->flags)
3179 && (rdev->recovery_offset <= sh->sector
3180 || rdev->mddev->recovery_cp <= sh->sector))
3181 rv = 1;
3182
3183 return rv;
3184}
3185
NeilBrown93b3dbc2011-07-27 11:00:36 +10003186/* fetch_block - checks the given member device to see if its data needs
Dan Williams1fe797e2008-06-28 09:16:30 +10003187 * to be read or computed to satisfy a request.
3188 *
3189 * Returns 1 when no more member devices need to be checked, otherwise returns
NeilBrown93b3dbc2011-07-27 11:00:36 +10003190 * 0 to tell the loop in handle_stripe_fill to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07003191 */
NeilBrown2c58f062015-02-02 11:32:23 +11003192
3193static int need_this_block(struct stripe_head *sh, struct stripe_head_state *s,
3194 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07003195{
3196 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10003197 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
3198 &sh->dev[s->failed_num[1]] };
NeilBrownea664c82015-02-02 14:03:28 +11003199 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07003200
NeilBrowna79cfe12015-02-02 11:37:59 +11003201
3202 if (test_bit(R5_LOCKED, &dev->flags) ||
3203 test_bit(R5_UPTODATE, &dev->flags))
3204 /* No point reading this as we already have it or have
3205 * decided to get it.
3206 */
3207 return 0;
3208
3209 if (dev->toread ||
3210 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)))
3211 /* We need this block to directly satisfy a request */
3212 return 1;
3213
3214 if (s->syncing || s->expanding ||
3215 (s->replacing && want_replace(sh, disk_idx)))
3216 /* When syncing, or expanding we read everything.
3217 * When replacing, we need the replaced block.
3218 */
3219 return 1;
3220
3221 if ((s->failed >= 1 && fdev[0]->toread) ||
3222 (s->failed >= 2 && fdev[1]->toread))
3223 /* If we want to read from a failed device, then
3224 * we need to actually read every other device.
3225 */
3226 return 1;
3227
NeilBrowna9d56952015-02-02 11:49:10 +11003228 /* Sometimes neither read-modify-write nor reconstruct-write
3229 * cycles can work. In those cases we read every block we
3230 * can. Then the parity-update is certain to have enough to
3231 * work with.
3232 * This can only be a problem when we need to write something,
3233 * and some device has failed. If either of those tests
3234 * fail we need look no further.
3235 */
3236 if (!s->failed || !s->to_write)
3237 return 0;
3238
3239 if (test_bit(R5_Insync, &dev->flags) &&
3240 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3241 /* Pre-reads at not permitted until after short delay
3242 * to gather multiple requests. However if this
3243 * device is no Insync, the block could only be be computed
3244 * and there is no need to delay that.
3245 */
3246 return 0;
NeilBrownea664c82015-02-02 14:03:28 +11003247
3248 for (i = 0; i < s->failed; i++) {
3249 if (fdev[i]->towrite &&
3250 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3251 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3252 /* If we have a partial write to a failed
3253 * device, then we will need to reconstruct
3254 * the content of that device, so all other
3255 * devices must be read.
3256 */
3257 return 1;
3258 }
3259
3260 /* If we are forced to do a reconstruct-write, either because
3261 * the current RAID6 implementation only supports that, or
3262 * or because parity cannot be trusted and we are currently
3263 * recovering it, there is extra need to be careful.
3264 * If one of the devices that we would need to read, because
3265 * it is not being overwritten (and maybe not written at all)
3266 * is missing/faulty, then we need to read everything we can.
3267 */
3268 if (sh->raid_conf->level != 6 &&
3269 sh->sector < sh->raid_conf->mddev->recovery_cp)
3270 /* reconstruct-write isn't being forced */
3271 return 0;
3272 for (i = 0; i < s->failed; i++) {
3273 if (!test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3274 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3275 return 1;
3276 }
3277
NeilBrown2c58f062015-02-02 11:32:23 +11003278 return 0;
3279}
3280
3281static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
3282 int disk_idx, int disks)
3283{
3284 struct r5dev *dev = &sh->dev[disk_idx];
3285
3286 /* is the data in this block needed, and can we get it? */
3287 if (need_this_block(sh, s, disk_idx, disks)) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003288 /* we would like to get this block, possibly by computing it,
3289 * otherwise read it if the backing disk is insync
3290 */
3291 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
3292 BUG_ON(test_bit(R5_Wantread, &dev->flags));
3293 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10003294 (s->failed && (disk_idx == s->failed_num[0] ||
3295 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003296 /* have disk failed, and we're requested to fetch it;
3297 * do compute it
3298 */
3299 pr_debug("Computing stripe %llu block %d\n",
3300 (unsigned long long)sh->sector, disk_idx);
3301 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3302 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3303 set_bit(R5_Wantcompute, &dev->flags);
3304 sh->ops.target = disk_idx;
3305 sh->ops.target2 = -1; /* no 2nd target */
3306 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10003307 /* Careful: from this point on 'uptodate' is in the eye
3308 * of raid_run_ops which services 'compute' operations
3309 * before writes. R5_Wantcompute flags a block that will
3310 * be R5_UPTODATE by the time it is needed for a
3311 * subsequent operation.
3312 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003313 s->uptodate++;
3314 return 1;
3315 } else if (s->uptodate == disks-2 && s->failed >= 2) {
3316 /* Computing 2-failure is *very* expensive; only
3317 * do it if failed >= 2
3318 */
3319 int other;
3320 for (other = disks; other--; ) {
3321 if (other == disk_idx)
3322 continue;
3323 if (!test_bit(R5_UPTODATE,
3324 &sh->dev[other].flags))
3325 break;
3326 }
3327 BUG_ON(other < 0);
3328 pr_debug("Computing stripe %llu blocks %d,%d\n",
3329 (unsigned long long)sh->sector,
3330 disk_idx, other);
3331 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3332 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3333 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
3334 set_bit(R5_Wantcompute, &sh->dev[other].flags);
3335 sh->ops.target = disk_idx;
3336 sh->ops.target2 = other;
3337 s->uptodate += 2;
3338 s->req_compute = 1;
3339 return 1;
3340 } else if (test_bit(R5_Insync, &dev->flags)) {
3341 set_bit(R5_LOCKED, &dev->flags);
3342 set_bit(R5_Wantread, &dev->flags);
3343 s->locked++;
3344 pr_debug("Reading block %d (sync=%d)\n",
3345 disk_idx, s->syncing);
3346 }
3347 }
3348
3349 return 0;
3350}
3351
3352/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10003353 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003354 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10003355static void handle_stripe_fill(struct stripe_head *sh,
3356 struct stripe_head_state *s,
3357 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003358{
3359 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003360
shli@kernel.org59fc6302014-12-15 12:57:03 +11003361 BUG_ON(sh->batch_head);
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003362 /* look for blocks to read/compute, skip this if a compute
3363 * is already in flight, or if the stripe contents are in the
3364 * midst of changing due to a write
3365 */
3366 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
3367 !sh->reconstruct_state)
3368 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10003369 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003370 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003371 set_bit(STRIPE_HANDLE, &sh->state);
3372}
3373
Dan Williams1fe797e2008-06-28 09:16:30 +10003374/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07003375 * any written block on an uptodate or failed drive can be returned.
3376 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
3377 * never LOCKED, so we don't need to test 'failed' directly.
3378 */
NeilBrownd1688a62011-10-11 16:49:52 +11003379static void handle_stripe_clean_event(struct r5conf *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07003380 struct stripe_head *sh, int disks, struct bio **return_bi)
3381{
3382 int i;
3383 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003384 int discard_pending = 0;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003385 struct stripe_head *head_sh = sh;
3386 bool do_endio = false;
3387 int wakeup_nr = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003388
3389 for (i = disks; i--; )
3390 if (sh->dev[i].written) {
3391 dev = &sh->dev[i];
3392 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003393 (test_bit(R5_UPTODATE, &dev->flags) ||
Shaohua Lid592a992014-05-21 17:57:44 +08003394 test_bit(R5_Discard, &dev->flags) ||
3395 test_bit(R5_SkipCopy, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003396 /* We can return any write requests */
3397 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003398 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11003399 if (test_and_clear_bit(R5_Discard, &dev->flags))
3400 clear_bit(R5_UPTODATE, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08003401 if (test_and_clear_bit(R5_SkipCopy, &dev->flags)) {
3402 WARN_ON(test_bit(R5_UPTODATE, &dev->flags));
Shaohua Lid592a992014-05-21 17:57:44 +08003403 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003404 do_endio = true;
3405
3406returnbi:
3407 dev->page = dev->orig_page;
Dan Williamsa4456852007-07-09 11:56:43 -07003408 wbi = dev->written;
3409 dev->written = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003410 while (wbi && wbi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003411 dev->sector + STRIPE_SECTORS) {
3412 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003413 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003414 md_write_end(conf->mddev);
3415 wbi->bi_next = *return_bi;
3416 *return_bi = wbi;
3417 }
3418 wbi = wbi2;
3419 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003420 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3421 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07003422 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003423 0);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003424 if (head_sh->batch_head) {
3425 sh = list_first_entry(&sh->batch_list,
3426 struct stripe_head,
3427 batch_list);
3428 if (sh != head_sh) {
3429 dev = &sh->dev[i];
3430 goto returnbi;
3431 }
3432 }
3433 sh = head_sh;
3434 dev = &sh->dev[i];
NeilBrownf8dfcff2013-03-12 12:18:06 +11003435 } else if (test_bit(R5_Discard, &dev->flags))
3436 discard_pending = 1;
Shaohua Lid592a992014-05-21 17:57:44 +08003437 WARN_ON(test_bit(R5_SkipCopy, &dev->flags));
3438 WARN_ON(dev->page != dev->orig_page);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003439 }
3440 if (!discard_pending &&
3441 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
3442 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
3443 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
3444 if (sh->qd_idx >= 0) {
3445 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
3446 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
3447 }
3448 /* now that discard is done we can proceed with any sync */
3449 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08003450 /*
3451 * SCSI discard will change some bio fields and the stripe has
3452 * no updated data, so remove it from hash list and the stripe
3453 * will be reinitialized
3454 */
3455 spin_lock_irq(&conf->device_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003456unhash:
Shaohua Lid47648f2013-10-19 14:51:42 +08003457 remove_hash(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003458 if (head_sh->batch_head) {
3459 sh = list_first_entry(&sh->batch_list,
3460 struct stripe_head, batch_list);
3461 if (sh != head_sh)
3462 goto unhash;
3463 }
Shaohua Lid47648f2013-10-19 14:51:42 +08003464 spin_unlock_irq(&conf->device_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003465 sh = head_sh;
3466
NeilBrownf8dfcff2013-03-12 12:18:06 +11003467 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
3468 set_bit(STRIPE_HANDLE, &sh->state);
3469
3470 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003471
3472 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3473 if (atomic_dec_and_test(&conf->pending_full_writes))
3474 md_wakeup_thread(conf->mddev->thread);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003475
3476 if (!head_sh->batch_head || !do_endio)
3477 return;
3478 for (i = 0; i < head_sh->disks; i++) {
3479 if (test_and_clear_bit(R5_Overlap, &head_sh->dev[i].flags))
3480 wakeup_nr++;
3481 }
3482 while (!list_empty(&head_sh->batch_list)) {
3483 int i;
3484 sh = list_first_entry(&head_sh->batch_list,
3485 struct stripe_head, batch_list);
3486 list_del_init(&sh->batch_list);
3487
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003488 set_mask_bits(&sh->state, ~STRIPE_EXPAND_SYNC_FLAG,
3489 head_sh->state & ~((1 << STRIPE_ACTIVE) |
3490 (1 << STRIPE_PREREAD_ACTIVE) |
3491 STRIPE_EXPAND_SYNC_FLAG));
shli@kernel.org59fc6302014-12-15 12:57:03 +11003492 sh->check_state = head_sh->check_state;
3493 sh->reconstruct_state = head_sh->reconstruct_state;
3494 for (i = 0; i < sh->disks; i++) {
3495 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3496 wakeup_nr++;
3497 sh->dev[i].flags = head_sh->dev[i].flags;
3498 }
3499
3500 spin_lock_irq(&sh->stripe_lock);
3501 sh->batch_head = NULL;
3502 spin_unlock_irq(&sh->stripe_lock);
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003503 if (sh->state & STRIPE_EXPAND_SYNC_FLAG)
3504 set_bit(STRIPE_HANDLE, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003505 release_stripe(sh);
3506 }
3507
3508 spin_lock_irq(&head_sh->stripe_lock);
3509 head_sh->batch_head = NULL;
3510 spin_unlock_irq(&head_sh->stripe_lock);
3511 wake_up_nr(&conf->wait_for_overlap, wakeup_nr);
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003512 if (head_sh->state & STRIPE_EXPAND_SYNC_FLAG)
3513 set_bit(STRIPE_HANDLE, &head_sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003514}
3515
NeilBrownd1688a62011-10-11 16:49:52 +11003516static void handle_stripe_dirtying(struct r5conf *conf,
NeilBrownc8ac1802011-07-27 11:00:36 +10003517 struct stripe_head *sh,
3518 struct stripe_head_state *s,
3519 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003520{
3521 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11003522 sector_t recovery_cp = conf->mddev->recovery_cp;
3523
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003524 /* Check whether resync is now happening or should start.
Alexander Lyakasa7854482012-10-11 13:50:12 +11003525 * If yes, then the array is dirty (after unclean shutdown or
3526 * initial creation), so parity in some stripes might be inconsistent.
3527 * In this case, we need to always do reconstruct-write, to ensure
3528 * that in case of drive failure or read-error correction, we
3529 * generate correct data from the parity.
3530 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003531 if (conf->rmw_level == PARITY_DISABLE_RMW ||
NeilBrown26ac1072015-02-18 11:35:14 +11003532 (recovery_cp < MaxSector && sh->sector >= recovery_cp &&
3533 s->failed == 0)) {
Alexander Lyakasa7854482012-10-11 13:50:12 +11003534 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10003535 * look like rcw is cheaper
3536 */
3537 rcw = 1; rmw = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003538 pr_debug("force RCW rmw_level=%u, recovery_cp=%llu sh->sector=%llu\n",
3539 conf->rmw_level, (unsigned long long)recovery_cp,
Alexander Lyakasa7854482012-10-11 13:50:12 +11003540 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10003541 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003542 /* would I have to read this buffer for read_modify_write */
3543 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003544 if ((dev->towrite || i == sh->pd_idx || i == sh->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003545 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003546 !(test_bit(R5_UPTODATE, &dev->flags) ||
3547 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003548 if (test_bit(R5_Insync, &dev->flags))
3549 rmw++;
3550 else
3551 rmw += 2*disks; /* cannot read it */
3552 }
3553 /* Would I have to read this buffer for reconstruct_write */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003554 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
3555 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003556 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003557 !(test_bit(R5_UPTODATE, &dev->flags) ||
3558 test_bit(R5_Wantcompute, &dev->flags))) {
NeilBrown67f45542014-05-28 13:39:22 +10003559 if (test_bit(R5_Insync, &dev->flags))
3560 rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07003561 else
3562 rcw += 2*disks;
3563 }
3564 }
Dan Williams45b42332007-07-09 11:56:43 -07003565 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003566 (unsigned long long)sh->sector, rmw, rcw);
3567 set_bit(STRIPE_HANDLE, &sh->state);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003568 if ((rmw < rcw || (rmw == rcw && conf->rmw_level == PARITY_ENABLE_RMW)) && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003569 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003570 if (conf->mddev->queue)
3571 blk_add_trace_msg(conf->mddev->queue,
3572 "raid5 rmw %llu %d",
3573 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07003574 for (i = disks; i--; ) {
3575 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003576 if ((dev->towrite || i == sh->pd_idx || i == sh->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003577 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003578 !(test_bit(R5_UPTODATE, &dev->flags) ||
3579 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003580 test_bit(R5_Insync, &dev->flags)) {
NeilBrown67f45542014-05-28 13:39:22 +10003581 if (test_bit(STRIPE_PREREAD_ACTIVE,
3582 &sh->state)) {
3583 pr_debug("Read_old block %d for r-m-w\n",
3584 i);
Dan Williamsa4456852007-07-09 11:56:43 -07003585 set_bit(R5_LOCKED, &dev->flags);
3586 set_bit(R5_Wantread, &dev->flags);
3587 s->locked++;
3588 } else {
3589 set_bit(STRIPE_DELAYED, &sh->state);
3590 set_bit(STRIPE_HANDLE, &sh->state);
3591 }
3592 }
3593 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003594 }
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003595 if ((rcw < rmw || (rcw == rmw && conf->rmw_level != PARITY_ENABLE_RMW)) && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003596 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003597 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003598 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003599 for (i = disks; i--; ) {
3600 struct r5dev *dev = &sh->dev[i];
3601 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003602 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003603 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003604 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003605 test_bit(R5_Wantcompute, &dev->flags))) {
3606 rcw++;
NeilBrown67f45542014-05-28 13:39:22 +10003607 if (test_bit(R5_Insync, &dev->flags) &&
3608 test_bit(STRIPE_PREREAD_ACTIVE,
3609 &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003610 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003611 "%d for Reconstruct\n", i);
3612 set_bit(R5_LOCKED, &dev->flags);
3613 set_bit(R5_Wantread, &dev->flags);
3614 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003615 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003616 } else {
3617 set_bit(STRIPE_DELAYED, &sh->state);
3618 set_bit(STRIPE_HANDLE, &sh->state);
3619 }
3620 }
3621 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003622 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003623 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3624 (unsigned long long)sh->sector,
3625 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003626 }
NeilBrownb1b02fe2015-02-02 10:44:29 +11003627
3628 if (rcw > disks && rmw > disks &&
3629 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3630 set_bit(STRIPE_DELAYED, &sh->state);
3631
Dan Williamsa4456852007-07-09 11:56:43 -07003632 /* now if nothing is locked, and if we have enough data,
3633 * we can start a write request
3634 */
Dan Williamsf38e1212007-01-02 13:52:30 -07003635 /* since handle_stripe can be called at any time we need to handle the
3636 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07003637 * subsequent call wants to start a write request. raid_run_ops only
3638 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07003639 * simultaneously. If this is not the case then new writes need to be
3640 * held off until the compute completes.
3641 */
Dan Williams976ea8d2008-06-28 08:32:03 +10003642 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
3643 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
3644 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003645 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07003646}
3647
NeilBrownd1688a62011-10-11 16:49:52 +11003648static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003649 struct stripe_head_state *s, int disks)
3650{
Dan Williamsecc65c92008-06-28 08:31:57 +10003651 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07003652
shli@kernel.org59fc6302014-12-15 12:57:03 +11003653 BUG_ON(sh->batch_head);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003654 set_bit(STRIPE_HANDLE, &sh->state);
3655
Dan Williamsecc65c92008-06-28 08:31:57 +10003656 switch (sh->check_state) {
3657 case check_state_idle:
3658 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07003659 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07003660 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10003661 sh->check_state = check_state_run;
3662 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003663 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003664 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10003665 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07003666 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003667 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10003668 /* fall through */
3669 case check_state_compute_result:
3670 sh->check_state = check_state_idle;
3671 if (!dev)
3672 dev = &sh->dev[sh->pd_idx];
3673
3674 /* check that a write has not made the stripe insync */
3675 if (test_bit(STRIPE_INSYNC, &sh->state))
3676 break;
3677
3678 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07003679 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3680 BUG_ON(s->uptodate != disks);
3681
3682 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10003683 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07003684 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07003685
Dan Williamsa4456852007-07-09 11:56:43 -07003686 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003687 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003688 break;
3689 case check_state_run:
3690 break; /* we will be called again upon completion */
3691 case check_state_check_result:
3692 sh->check_state = check_state_idle;
3693
3694 /* if a failure occurred during the check operation, leave
3695 * STRIPE_INSYNC not set and let the stripe be handled again
3696 */
3697 if (s->failed)
3698 break;
3699
3700 /* handle a successful check operation, if parity is correct
3701 * we are done. Otherwise update the mismatch count and repair
3702 * parity if !MD_RECOVERY_CHECK
3703 */
Dan Williamsad283ea2009-08-29 19:09:26 -07003704 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10003705 /* parity is correct (on disc,
3706 * not in buffer any more)
3707 */
3708 set_bit(STRIPE_INSYNC, &sh->state);
3709 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003710 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10003711 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3712 /* don't try to repair!! */
3713 set_bit(STRIPE_INSYNC, &sh->state);
3714 else {
3715 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003716 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003717 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3718 set_bit(R5_Wantcompute,
3719 &sh->dev[sh->pd_idx].flags);
3720 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003721 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003722 s->uptodate++;
3723 }
3724 }
3725 break;
3726 case check_state_compute_run:
3727 break;
3728 default:
3729 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3730 __func__, sh->check_state,
3731 (unsigned long long) sh->sector);
3732 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003733 }
3734}
3735
NeilBrownd1688a62011-10-11 16:49:52 +11003736static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003737 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003738 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003739{
Dan Williamsa4456852007-07-09 11:56:43 -07003740 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003741 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003742 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003743
shli@kernel.org59fc6302014-12-15 12:57:03 +11003744 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003745 set_bit(STRIPE_HANDLE, &sh->state);
3746
3747 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003748
Dan Williamsa4456852007-07-09 11:56:43 -07003749 /* Want to check and possibly repair P and Q.
3750 * However there could be one 'failed' device, in which
3751 * case we can only check one of them, possibly using the
3752 * other to generate missing data
3753 */
3754
Dan Williamsd82dfee2009-07-14 13:40:57 -07003755 switch (sh->check_state) {
3756 case check_state_idle:
3757 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10003758 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003759 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07003760 * makes sense to check P (If anything else were failed,
3761 * we would have used P to recreate it).
3762 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003763 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07003764 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003765 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003766 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07003767 * anything, so it makes sense to check it
3768 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003769 if (sh->check_state == check_state_run)
3770 sh->check_state = check_state_run_pq;
3771 else
3772 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07003773 }
Dan Williams36d1c642009-07-14 11:48:22 -07003774
Dan Williamsd82dfee2009-07-14 13:40:57 -07003775 /* discard potentially stale zero_sum_result */
3776 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07003777
Dan Williamsd82dfee2009-07-14 13:40:57 -07003778 if (sh->check_state == check_state_run) {
3779 /* async_xor_zero_sum destroys the contents of P */
3780 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3781 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07003782 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003783 if (sh->check_state >= check_state_run &&
3784 sh->check_state <= check_state_run_pq) {
3785 /* async_syndrome_zero_sum preserves P and Q, so
3786 * no need to mark them !uptodate here
3787 */
3788 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3789 break;
3790 }
Dan Williams36d1c642009-07-14 11:48:22 -07003791
Dan Williamsd82dfee2009-07-14 13:40:57 -07003792 /* we have 2-disk failure */
3793 BUG_ON(s->failed != 2);
3794 /* fall through */
3795 case check_state_compute_result:
3796 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003797
Dan Williamsd82dfee2009-07-14 13:40:57 -07003798 /* check that a write has not made the stripe insync */
3799 if (test_bit(STRIPE_INSYNC, &sh->state))
3800 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003801
3802 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003803 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003804 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003805 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003806 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003807 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003808 s->locked++;
3809 set_bit(R5_LOCKED, &dev->flags);
3810 set_bit(R5_Wantwrite, &dev->flags);
3811 }
3812 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003813 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003814 s->locked++;
3815 set_bit(R5_LOCKED, &dev->flags);
3816 set_bit(R5_Wantwrite, &dev->flags);
3817 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003818 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003819 dev = &sh->dev[pd_idx];
3820 s->locked++;
3821 set_bit(R5_LOCKED, &dev->flags);
3822 set_bit(R5_Wantwrite, &dev->flags);
3823 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003824 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003825 dev = &sh->dev[qd_idx];
3826 s->locked++;
3827 set_bit(R5_LOCKED, &dev->flags);
3828 set_bit(R5_Wantwrite, &dev->flags);
3829 }
3830 clear_bit(STRIPE_DEGRADED, &sh->state);
3831
3832 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003833 break;
3834 case check_state_run:
3835 case check_state_run_q:
3836 case check_state_run_pq:
3837 break; /* we will be called again upon completion */
3838 case check_state_check_result:
3839 sh->check_state = check_state_idle;
3840
3841 /* handle a successful check operation, if parity is correct
3842 * we are done. Otherwise update the mismatch count and repair
3843 * parity if !MD_RECOVERY_CHECK
3844 */
3845 if (sh->ops.zero_sum_result == 0) {
3846 /* both parities are correct */
3847 if (!s->failed)
3848 set_bit(STRIPE_INSYNC, &sh->state);
3849 else {
3850 /* in contrast to the raid5 case we can validate
3851 * parity, but still have a failure to write
3852 * back
3853 */
3854 sh->check_state = check_state_compute_result;
3855 /* Returning at this point means that we may go
3856 * off and bring p and/or q uptodate again so
3857 * we make sure to check zero_sum_result again
3858 * to verify if p or q need writeback
3859 */
3860 }
3861 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003862 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003863 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3864 /* don't try to repair!! */
3865 set_bit(STRIPE_INSYNC, &sh->state);
3866 else {
3867 int *target = &sh->ops.target;
3868
3869 sh->ops.target = -1;
3870 sh->ops.target2 = -1;
3871 sh->check_state = check_state_compute_run;
3872 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3873 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3874 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3875 set_bit(R5_Wantcompute,
3876 &sh->dev[pd_idx].flags);
3877 *target = pd_idx;
3878 target = &sh->ops.target2;
3879 s->uptodate++;
3880 }
3881 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3882 set_bit(R5_Wantcompute,
3883 &sh->dev[qd_idx].flags);
3884 *target = qd_idx;
3885 s->uptodate++;
3886 }
3887 }
3888 }
3889 break;
3890 case check_state_compute_run:
3891 break;
3892 default:
3893 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3894 __func__, sh->check_state,
3895 (unsigned long long) sh->sector);
3896 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003897 }
3898}
3899
NeilBrownd1688a62011-10-11 16:49:52 +11003900static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07003901{
3902 int i;
3903
3904 /* We have read all the blocks in this stripe and now we need to
3905 * copy some of them into a target stripe for expand.
3906 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07003907 struct dma_async_tx_descriptor *tx = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003908 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003909 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3910 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11003911 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11003912 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07003913 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07003914 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07003915
NeilBrown784052e2009-03-31 15:19:07 +11003916 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11003917 sector_t s = raid5_compute_sector(conf, bn, 0,
3918 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10003919 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07003920 if (sh2 == NULL)
3921 /* so far only the early blocks of this stripe
3922 * have been requested. When later blocks
3923 * get requested, we will try again
3924 */
3925 continue;
3926 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
3927 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
3928 /* must have already done this block */
3929 release_stripe(sh2);
3930 continue;
3931 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003932
3933 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07003934 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003935 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07003936 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07003937 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003938
Dan Williamsa4456852007-07-09 11:56:43 -07003939 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
3940 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
3941 for (j = 0; j < conf->raid_disks; j++)
3942 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10003943 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003944 !test_bit(R5_Expanded, &sh2->dev[j].flags))
3945 break;
3946 if (j == conf->raid_disks) {
3947 set_bit(STRIPE_EXPAND_READY, &sh2->state);
3948 set_bit(STRIPE_HANDLE, &sh2->state);
3949 }
3950 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003951
Dan Williamsa4456852007-07-09 11:56:43 -07003952 }
NeilBrowna2e08552007-09-11 15:23:36 -07003953 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11003954 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07003955}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
3957/*
3958 * handle_stripe - do things to a stripe.
3959 *
NeilBrown9a3e1102011-12-23 10:17:53 +11003960 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
3961 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11003963 * return some read requests which now have data
3964 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 * schedule a read on some buffers
3966 * schedule a write of some buffers
3967 * return confirmation of parity correctness
3968 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 */
Dan Williamsa4456852007-07-09 11:56:43 -07003970
NeilBrownacfe7262011-07-27 11:00:36 +10003971static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07003972{
NeilBrownd1688a62011-10-11 16:49:52 +11003973 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003974 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003975 struct r5dev *dev;
3976 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11003977 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003978
NeilBrownacfe7262011-07-27 11:00:36 +10003979 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003980
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003981 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state) && !sh->batch_head;
3982 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state) && !sh->batch_head;
NeilBrownacfe7262011-07-27 11:00:36 +10003983 s->failed_num[0] = -1;
3984 s->failed_num[1] = -1;
3985
3986 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07003987 rcu_read_lock();
3988 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003989 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10003990 sector_t first_bad;
3991 int bad_sectors;
3992 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10003993
NeilBrown16a53ec2006-06-26 00:27:38 -07003994 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07003995
Dan Williams45b42332007-07-09 11:56:43 -07003996 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11003997 i, dev->flags,
3998 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003999 /* maybe we can reply to a read
4000 *
4001 * new wantfill requests are only permitted while
4002 * ops_complete_biofill is guaranteed to be inactive
4003 */
4004 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
4005 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
4006 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07004007
4008 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10004009 if (test_bit(R5_LOCKED, &dev->flags))
4010 s->locked++;
4011 if (test_bit(R5_UPTODATE, &dev->flags))
4012 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004013 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004014 s->compute++;
4015 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004016 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004017
NeilBrownacfe7262011-07-27 11:00:36 +10004018 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004019 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10004020 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10004021 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004022 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10004023 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004024 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004025 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004026 }
Dan Williamsa4456852007-07-09 11:56:43 -07004027 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10004028 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11004029 /* Prefer to use the replacement for reads, but only
4030 * if it is recovered enough and has no bad blocks.
4031 */
4032 rdev = rcu_dereference(conf->disks[i].replacement);
4033 if (rdev && !test_bit(Faulty, &rdev->flags) &&
4034 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
4035 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4036 &first_bad, &bad_sectors))
4037 set_bit(R5_ReadRepl, &dev->flags);
4038 else {
NeilBrown9a3e1102011-12-23 10:17:53 +11004039 if (rdev)
4040 set_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11004041 rdev = rcu_dereference(conf->disks[i].rdev);
4042 clear_bit(R5_ReadRepl, &dev->flags);
4043 }
NeilBrown9283d8c2011-12-08 16:27:57 +11004044 if (rdev && test_bit(Faulty, &rdev->flags))
4045 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10004046 if (rdev) {
4047 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4048 &first_bad, &bad_sectors);
4049 if (s->blocked_rdev == NULL
4050 && (test_bit(Blocked, &rdev->flags)
4051 || is_bad < 0)) {
4052 if (is_bad < 0)
4053 set_bit(BlockedBadBlocks,
4054 &rdev->flags);
4055 s->blocked_rdev = rdev;
4056 atomic_inc(&rdev->nr_pending);
4057 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004058 }
NeilBrown415e72d2010-06-17 17:25:21 +10004059 clear_bit(R5_Insync, &dev->flags);
4060 if (!rdev)
4061 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10004062 else if (is_bad) {
4063 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10004064 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
4065 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10004066 /* treat as in-sync, but with a read error
4067 * which we can now try to correct
4068 */
4069 set_bit(R5_Insync, &dev->flags);
4070 set_bit(R5_ReadError, &dev->flags);
4071 }
4072 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10004073 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11004074 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10004075 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11004076 set_bit(R5_Insync, &dev->flags);
4077 else if (test_bit(R5_UPTODATE, &dev->flags) &&
4078 test_bit(R5_Expanded, &dev->flags))
4079 /* If we've reshaped into here, we assume it is Insync.
4080 * We will shortly update recovery_offset to make
4081 * it official.
4082 */
4083 set_bit(R5_Insync, &dev->flags);
4084
NeilBrown1cc03eb2014-01-06 13:19:42 +11004085 if (test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004086 /* This flag does not apply to '.replacement'
4087 * only to .rdev, so make sure to check that*/
4088 struct md_rdev *rdev2 = rcu_dereference(
4089 conf->disks[i].rdev);
4090 if (rdev2 == rdev)
4091 clear_bit(R5_Insync, &dev->flags);
4092 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004093 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004094 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10004095 } else
4096 clear_bit(R5_WriteError, &dev->flags);
4097 }
NeilBrown1cc03eb2014-01-06 13:19:42 +11004098 if (test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004099 /* This flag does not apply to '.replacement'
4100 * only to .rdev, so make sure to check that*/
4101 struct md_rdev *rdev2 = rcu_dereference(
4102 conf->disks[i].rdev);
4103 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10004104 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004105 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10004106 } else
4107 clear_bit(R5_MadeGood, &dev->flags);
4108 }
NeilBrown977df362011-12-23 10:17:53 +11004109 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
4110 struct md_rdev *rdev2 = rcu_dereference(
4111 conf->disks[i].replacement);
4112 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
4113 s->handle_bad_blocks = 1;
4114 atomic_inc(&rdev2->nr_pending);
4115 } else
4116 clear_bit(R5_MadeGoodRepl, &dev->flags);
4117 }
NeilBrown415e72d2010-06-17 17:25:21 +10004118 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004119 /* The ReadError flag will just be confusing now */
4120 clear_bit(R5_ReadError, &dev->flags);
4121 clear_bit(R5_ReWrite, &dev->flags);
4122 }
NeilBrown415e72d2010-06-17 17:25:21 +10004123 if (test_bit(R5_ReadError, &dev->flags))
4124 clear_bit(R5_Insync, &dev->flags);
4125 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004126 if (s->failed < 2)
4127 s->failed_num[s->failed] = i;
4128 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11004129 if (rdev && !test_bit(Faulty, &rdev->flags))
4130 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10004131 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004132 }
NeilBrown9a3e1102011-12-23 10:17:53 +11004133 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4134 /* If there is a failed device being replaced,
4135 * we must be recovering.
4136 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10004137 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11004138 * else we can only be replacing
4139 * sync and recovery both need to read all devices, and so
4140 * use the same flag.
4141 */
4142 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10004143 sh->sector >= conf->mddev->recovery_cp ||
4144 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11004145 s->syncing = 1;
4146 else
4147 s->replacing = 1;
4148 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004149 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10004150}
NeilBrownf4168852007-02-28 20:11:53 -08004151
shli@kernel.org59fc6302014-12-15 12:57:03 +11004152static int clear_batch_ready(struct stripe_head *sh)
4153{
4154 struct stripe_head *tmp;
4155 if (!test_and_clear_bit(STRIPE_BATCH_READY, &sh->state))
4156 return 0;
4157 spin_lock(&sh->stripe_lock);
4158 if (!sh->batch_head) {
4159 spin_unlock(&sh->stripe_lock);
4160 return 0;
4161 }
4162
4163 /*
4164 * this stripe could be added to a batch list before we check
4165 * BATCH_READY, skips it
4166 */
4167 if (sh->batch_head != sh) {
4168 spin_unlock(&sh->stripe_lock);
4169 return 1;
4170 }
4171 spin_lock(&sh->batch_lock);
4172 list_for_each_entry(tmp, &sh->batch_list, batch_list)
4173 clear_bit(STRIPE_BATCH_READY, &tmp->state);
4174 spin_unlock(&sh->batch_lock);
4175 spin_unlock(&sh->stripe_lock);
4176
4177 /*
4178 * BATCH_READY is cleared, no new stripes can be added.
4179 * batch_list can be accessed without lock
4180 */
4181 return 0;
4182}
4183
shli@kernel.org72ac7332014-12-15 12:57:03 +11004184static void check_break_stripe_batch_list(struct stripe_head *sh)
4185{
4186 struct stripe_head *head_sh, *next;
4187 int i;
4188
4189 if (!test_and_clear_bit(STRIPE_BATCH_ERR, &sh->state))
4190 return;
4191
4192 head_sh = sh;
4193 do {
4194 sh = list_first_entry(&sh->batch_list,
4195 struct stripe_head, batch_list);
4196 BUG_ON(sh == head_sh);
4197 } while (!test_bit(STRIPE_DEGRADED, &sh->state));
4198
4199 while (sh != head_sh) {
4200 next = list_first_entry(&sh->batch_list,
4201 struct stripe_head, batch_list);
4202 list_del_init(&sh->batch_list);
4203
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004204 set_mask_bits(&sh->state, ~STRIPE_EXPAND_SYNC_FLAG,
4205 head_sh->state & ~((1 << STRIPE_ACTIVE) |
4206 (1 << STRIPE_PREREAD_ACTIVE) |
4207 (1 << STRIPE_DEGRADED) |
4208 STRIPE_EXPAND_SYNC_FLAG));
shli@kernel.org72ac7332014-12-15 12:57:03 +11004209 sh->check_state = head_sh->check_state;
4210 sh->reconstruct_state = head_sh->reconstruct_state;
4211 for (i = 0; i < sh->disks; i++)
4212 sh->dev[i].flags = head_sh->dev[i].flags &
4213 (~((1 << R5_WriteError) | (1 << R5_Overlap)));
4214
4215 spin_lock_irq(&sh->stripe_lock);
4216 sh->batch_head = NULL;
4217 spin_unlock_irq(&sh->stripe_lock);
4218
4219 set_bit(STRIPE_HANDLE, &sh->state);
4220 release_stripe(sh);
4221
4222 sh = next;
4223 }
4224}
4225
NeilBrowncc940152011-07-26 11:35:35 +10004226static void handle_stripe(struct stripe_head *sh)
4227{
4228 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11004229 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10004230 int i;
NeilBrown84789552011-07-27 11:00:36 +10004231 int prexor;
4232 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004233 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10004234
4235 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11004236 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10004237 /* already being handled, ensure it gets handled
4238 * again when current action finishes */
4239 set_bit(STRIPE_HANDLE, &sh->state);
4240 return;
4241 }
4242
shli@kernel.org59fc6302014-12-15 12:57:03 +11004243 if (clear_batch_ready(sh) ) {
4244 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
4245 return;
4246 }
4247
shli@kernel.org72ac7332014-12-15 12:57:03 +11004248 check_break_stripe_batch_list(sh);
4249
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004250 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state) && !sh->batch_head) {
NeilBrownf8dfcff2013-03-12 12:18:06 +11004251 spin_lock(&sh->stripe_lock);
4252 /* Cannot process 'sync' concurrently with 'discard' */
4253 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
4254 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4255 set_bit(STRIPE_SYNCING, &sh->state);
4256 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10004257 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004258 }
4259 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10004260 }
4261 clear_bit(STRIPE_DELAYED, &sh->state);
4262
4263 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
4264 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
4265 (unsigned long long)sh->sector, sh->state,
4266 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
4267 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10004268
NeilBrownacfe7262011-07-27 11:00:36 +10004269 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10004270
NeilBrownbc2607f2011-07-28 11:39:22 +10004271 if (s.handle_bad_blocks) {
4272 set_bit(STRIPE_HANDLE, &sh->state);
4273 goto finish;
4274 }
4275
NeilBrown474af965fe2011-07-27 11:00:36 +10004276 if (unlikely(s.blocked_rdev)) {
4277 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11004278 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10004279 set_bit(STRIPE_HANDLE, &sh->state);
4280 goto finish;
4281 }
4282 /* There is nothing for the blocked_rdev to block */
4283 rdev_dec_pending(s.blocked_rdev, conf->mddev);
4284 s.blocked_rdev = NULL;
4285 }
4286
4287 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
4288 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
4289 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
4290 }
4291
4292 pr_debug("locked=%d uptodate=%d to_read=%d"
4293 " to_write=%d failed=%d failed_num=%d,%d\n",
4294 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
4295 s.failed_num[0], s.failed_num[1]);
4296 /* check if the array has lost more than max_degraded devices and,
4297 * if so, some requests might need to be failed.
4298 */
NeilBrown9a3f5302011-11-08 16:22:01 +11004299 if (s.failed > conf->max_degraded) {
4300 sh->check_state = 0;
4301 sh->reconstruct_state = 0;
4302 if (s.to_read+s.to_write+s.written)
4303 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11004304 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11004305 handle_failed_sync(conf, sh, &s);
4306 }
NeilBrown474af965fe2011-07-27 11:00:36 +10004307
NeilBrown84789552011-07-27 11:00:36 +10004308 /* Now we check to see if any write operations have recently
4309 * completed
4310 */
4311 prexor = 0;
4312 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
4313 prexor = 1;
4314 if (sh->reconstruct_state == reconstruct_state_drain_result ||
4315 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
4316 sh->reconstruct_state = reconstruct_state_idle;
4317
4318 /* All the 'written' buffers and the parity block are ready to
4319 * be written back to disk
4320 */
Shaohua Li9e4447682012-10-11 13:49:49 +11004321 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
4322 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004323 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11004324 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
4325 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004326 for (i = disks; i--; ) {
4327 struct r5dev *dev = &sh->dev[i];
4328 if (test_bit(R5_LOCKED, &dev->flags) &&
4329 (i == sh->pd_idx || i == sh->qd_idx ||
4330 dev->written)) {
4331 pr_debug("Writing block %d\n", i);
4332 set_bit(R5_Wantwrite, &dev->flags);
4333 if (prexor)
4334 continue;
NeilBrown9c4bdf62014-08-13 09:57:07 +10004335 if (s.failed > 1)
4336 continue;
NeilBrown84789552011-07-27 11:00:36 +10004337 if (!test_bit(R5_Insync, &dev->flags) ||
4338 ((i == sh->pd_idx || i == sh->qd_idx) &&
4339 s.failed == 0))
4340 set_bit(STRIPE_INSYNC, &sh->state);
4341 }
4342 }
4343 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4344 s.dec_preread_active = 1;
4345 }
4346
NeilBrownef5b7c62012-11-22 09:13:36 +11004347 /*
4348 * might be able to return some write requests if the parity blocks
4349 * are safe, or on a failed drive
4350 */
4351 pdev = &sh->dev[sh->pd_idx];
4352 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
4353 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
4354 qdev = &sh->dev[sh->qd_idx];
4355 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
4356 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
4357 || conf->level < 6;
4358
4359 if (s.written &&
4360 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
4361 && !test_bit(R5_LOCKED, &pdev->flags)
4362 && (test_bit(R5_UPTODATE, &pdev->flags) ||
4363 test_bit(R5_Discard, &pdev->flags))))) &&
4364 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
4365 && !test_bit(R5_LOCKED, &qdev->flags)
4366 && (test_bit(R5_UPTODATE, &qdev->flags) ||
4367 test_bit(R5_Discard, &qdev->flags))))))
4368 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
4369
4370 /* Now we might consider reading some blocks, either to check/generate
4371 * parity, or to satisfy requests
4372 * or to load a block that is being partially written.
4373 */
4374 if (s.to_read || s.non_overwrite
4375 || (conf->level == 6 && s.to_write && s.failed)
4376 || (s.syncing && (s.uptodate + s.compute < disks))
4377 || s.replacing
4378 || s.expanding)
4379 handle_stripe_fill(sh, &s, disks);
4380
NeilBrown84789552011-07-27 11:00:36 +10004381 /* Now to consider new write requests and what else, if anything
4382 * should be read. We do not handle new writes when:
4383 * 1/ A 'write' operation (copy+xor) is already in flight.
4384 * 2/ A 'check' operation is in flight, as it may clobber the parity
4385 * block.
4386 */
4387 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
4388 handle_stripe_dirtying(conf, sh, &s, disks);
4389
4390 /* maybe we need to check and possibly fix the parity for this stripe
4391 * Any reads will already have been scheduled, so we just see if enough
4392 * data is available. The parity check is held off while parity
4393 * dependent operations are in flight.
4394 */
4395 if (sh->check_state ||
4396 (s.syncing && s.locked == 0 &&
4397 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
4398 !test_bit(STRIPE_INSYNC, &sh->state))) {
4399 if (conf->level == 6)
4400 handle_parity_checks6(conf, sh, &s, disks);
4401 else
4402 handle_parity_checks5(conf, sh, &s, disks);
4403 }
NeilBrownc5a31002011-07-27 11:00:36 +10004404
NeilBrownf94c0b62013-07-22 12:57:21 +10004405 if ((s.replacing || s.syncing) && s.locked == 0
4406 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
4407 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11004408 /* Write out to replacement devices where possible */
4409 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10004410 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
4411 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11004412 set_bit(R5_WantReplace, &sh->dev[i].flags);
4413 set_bit(R5_LOCKED, &sh->dev[i].flags);
4414 s.locked++;
4415 }
NeilBrownf94c0b62013-07-22 12:57:21 +10004416 if (s.replacing)
4417 set_bit(STRIPE_INSYNC, &sh->state);
4418 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11004419 }
4420 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10004421 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11004422 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10004423 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4424 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004425 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
4426 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10004427 }
4428
4429 /* If the failed drives are just a ReadError, then we might need
4430 * to progress the repair/check process
4431 */
4432 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
4433 for (i = 0; i < s.failed; i++) {
4434 struct r5dev *dev = &sh->dev[s.failed_num[i]];
4435 if (test_bit(R5_ReadError, &dev->flags)
4436 && !test_bit(R5_LOCKED, &dev->flags)
4437 && test_bit(R5_UPTODATE, &dev->flags)
4438 ) {
4439 if (!test_bit(R5_ReWrite, &dev->flags)) {
4440 set_bit(R5_Wantwrite, &dev->flags);
4441 set_bit(R5_ReWrite, &dev->flags);
4442 set_bit(R5_LOCKED, &dev->flags);
4443 s.locked++;
4444 } else {
4445 /* let's read it back */
4446 set_bit(R5_Wantread, &dev->flags);
4447 set_bit(R5_LOCKED, &dev->flags);
4448 s.locked++;
4449 }
4450 }
4451 }
4452
NeilBrown3687c062011-07-27 11:00:36 +10004453 /* Finish reconstruct operations initiated by the expansion process */
4454 if (sh->reconstruct_state == reconstruct_state_result) {
4455 struct stripe_head *sh_src
4456 = get_active_stripe(conf, sh->sector, 1, 1, 1);
4457 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
4458 /* sh cannot be written until sh_src has been read.
4459 * so arrange for sh to be delayed a little
4460 */
4461 set_bit(STRIPE_DELAYED, &sh->state);
4462 set_bit(STRIPE_HANDLE, &sh->state);
4463 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
4464 &sh_src->state))
4465 atomic_inc(&conf->preread_active_stripes);
4466 release_stripe(sh_src);
4467 goto finish;
4468 }
4469 if (sh_src)
4470 release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07004471
NeilBrown3687c062011-07-27 11:00:36 +10004472 sh->reconstruct_state = reconstruct_state_idle;
4473 clear_bit(STRIPE_EXPANDING, &sh->state);
4474 for (i = conf->raid_disks; i--; ) {
4475 set_bit(R5_Wantwrite, &sh->dev[i].flags);
4476 set_bit(R5_LOCKED, &sh->dev[i].flags);
4477 s.locked++;
4478 }
4479 }
4480
4481 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
4482 !sh->reconstruct_state) {
4483 /* Need to write out all blocks after computing parity */
4484 sh->disks = conf->raid_disks;
4485 stripe_set_idx(sh->sector, conf, 0, sh);
4486 schedule_reconstruction(sh, &s, 1, 1);
4487 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
4488 clear_bit(STRIPE_EXPAND_READY, &sh->state);
4489 atomic_dec(&conf->reshape_stripes);
4490 wake_up(&conf->wait_for_overlap);
4491 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4492 }
4493
4494 if (s.expanding && s.locked == 0 &&
4495 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
4496 handle_stripe_expansion(conf, sh);
4497
4498finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07004499 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10004500 if (unlikely(s.blocked_rdev)) {
4501 if (conf->mddev->external)
4502 md_wait_for_blocked_rdev(s.blocked_rdev,
4503 conf->mddev);
4504 else
4505 /* Internal metadata will immediately
4506 * be written by raid5d, so we don't
4507 * need to wait here.
4508 */
4509 rdev_dec_pending(s.blocked_rdev,
4510 conf->mddev);
4511 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004512
NeilBrownbc2607f2011-07-28 11:39:22 +10004513 if (s.handle_bad_blocks)
4514 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004515 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10004516 struct r5dev *dev = &sh->dev[i];
4517 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
4518 /* We own a safe reference to the rdev */
4519 rdev = conf->disks[i].rdev;
4520 if (!rdev_set_badblocks(rdev, sh->sector,
4521 STRIPE_SECTORS, 0))
4522 md_error(conf->mddev, rdev);
4523 rdev_dec_pending(rdev, conf->mddev);
4524 }
NeilBrownb84db562011-07-28 11:39:23 +10004525 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
4526 rdev = conf->disks[i].rdev;
4527 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004528 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10004529 rdev_dec_pending(rdev, conf->mddev);
4530 }
NeilBrown977df362011-12-23 10:17:53 +11004531 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
4532 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11004533 if (!rdev)
4534 /* rdev have been moved down */
4535 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11004536 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004537 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11004538 rdev_dec_pending(rdev, conf->mddev);
4539 }
NeilBrownbc2607f2011-07-28 11:39:22 +10004540 }
4541
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004542 if (s.ops_request)
4543 raid_run_ops(sh, s.ops_request);
4544
Dan Williamsf0e43bc2008-06-28 08:31:55 +10004545 ops_run_io(sh, &s);
4546
NeilBrownc5709ef2011-07-26 11:35:20 +10004547 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11004548 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02004549 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11004550 * have actually been submitted.
4551 */
4552 atomic_dec(&conf->preread_active_stripes);
4553 if (atomic_read(&conf->preread_active_stripes) <
4554 IO_THRESHOLD)
4555 md_wakeup_thread(conf->mddev->thread);
4556 }
4557
NeilBrownc5709ef2011-07-26 11:35:20 +10004558 return_io(s.return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07004559
Dan Williams257a4b42011-11-08 16:22:06 +11004560 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07004561}
4562
NeilBrownd1688a62011-10-11 16:49:52 +11004563static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564{
4565 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
4566 while (!list_empty(&conf->delayed_list)) {
4567 struct list_head *l = conf->delayed_list.next;
4568 struct stripe_head *sh;
4569 sh = list_entry(l, struct stripe_head, lru);
4570 list_del_init(l);
4571 clear_bit(STRIPE_DELAYED, &sh->state);
4572 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4573 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004574 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08004575 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 }
NeilBrown482c0832011-04-18 18:25:42 +10004577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578}
4579
Shaohua Li566c09c2013-11-14 15:16:17 +11004580static void activate_bit_delay(struct r5conf *conf,
4581 struct list_head *temp_inactive_list)
NeilBrown72626682005-09-09 16:23:54 -07004582{
4583 /* device_lock is held */
4584 struct list_head head;
4585 list_add(&head, &conf->bitmap_list);
4586 list_del_init(&conf->bitmap_list);
4587 while (!list_empty(&head)) {
4588 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
Shaohua Li566c09c2013-11-14 15:16:17 +11004589 int hash;
NeilBrown72626682005-09-09 16:23:54 -07004590 list_del_init(&sh->lru);
4591 atomic_inc(&sh->count);
Shaohua Li566c09c2013-11-14 15:16:17 +11004592 hash = sh->hash_lock_index;
4593 __release_stripe(conf, sh, &temp_inactive_list[hash]);
NeilBrown72626682005-09-09 16:23:54 -07004594 }
4595}
4596
NeilBrown5c675f82014-12-15 12:56:56 +11004597static int raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07004598{
NeilBrownd1688a62011-10-11 16:49:52 +11004599 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07004600
4601 /* No difference between reads and writes. Just check
4602 * how busy the stripe_cache is
4603 */
NeilBrown3fa841d2009-09-23 18:10:29 +10004604
NeilBrownf022b2f2006-10-03 01:15:56 -07004605 if (conf->inactive_blocked)
4606 return 1;
4607 if (conf->quiesce)
4608 return 1;
Shaohua Li4bda5562013-11-14 15:16:17 +11004609 if (atomic_read(&conf->empty_inactive_list_nr))
NeilBrownf022b2f2006-10-03 01:15:56 -07004610 return 1;
4611
4612 return 0;
4613}
4614
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004615/* We want read requests to align with chunks where possible,
4616 * but write requests don't need to.
4617 */
NeilBrown64590f42014-12-15 12:56:57 +11004618static int raid5_mergeable_bvec(struct mddev *mddev,
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004619 struct bvec_merge_data *bvm,
4620 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004621{
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004622 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004623 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10004624 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004625 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004626
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004627 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004628 return biovec->bv_len; /* always allow writes to be mergeable */
4629
Andre Noll664e7c42009-06-18 08:45:27 +10004630 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
4631 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004632 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
4633 if (max < 0) max = 0;
4634 if (max <= biovec->bv_len && bio_sectors == 0)
4635 return biovec->bv_len;
4636 else
4637 return max;
4638}
4639
NeilBrownfd01b882011-10-11 16:47:53 +11004640static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004641{
Kent Overstreet4f024f32013-10-11 15:44:27 -07004642 sector_t sector = bio->bi_iter.bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10004643 unsigned int chunk_sectors = mddev->chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004644 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004645
Andre Noll664e7c42009-06-18 08:45:27 +10004646 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
4647 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004648 return chunk_sectors >=
4649 ((sector & (chunk_sectors - 1)) + bio_sectors);
4650}
4651
4652/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004653 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
4654 * later sampled by raid5d.
4655 */
NeilBrownd1688a62011-10-11 16:49:52 +11004656static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004657{
4658 unsigned long flags;
4659
4660 spin_lock_irqsave(&conf->device_lock, flags);
4661
4662 bi->bi_next = conf->retry_read_aligned_list;
4663 conf->retry_read_aligned_list = bi;
4664
4665 spin_unlock_irqrestore(&conf->device_lock, flags);
4666 md_wakeup_thread(conf->mddev->thread);
4667}
4668
NeilBrownd1688a62011-10-11 16:49:52 +11004669static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004670{
4671 struct bio *bi;
4672
4673 bi = conf->retry_read_aligned;
4674 if (bi) {
4675 conf->retry_read_aligned = NULL;
4676 return bi;
4677 }
4678 bi = conf->retry_read_aligned_list;
4679 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08004680 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004681 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02004682 /*
4683 * this sets the active strip count to 1 and the processed
4684 * strip count to zero (upper 8 bits)
4685 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004686 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004687 }
4688
4689 return bi;
4690}
4691
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004692/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004693 * The "raid5_align_endio" should check if the read succeeded and if it
4694 * did, call bio_endio on the original bio (having bio_put the new bio
4695 * first).
4696 * If the read failed..
4697 */
NeilBrown6712ecf2007-09-27 12:47:43 +02004698static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004699{
4700 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11004701 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11004702 struct r5conf *conf;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004703 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrown3cb03002011-10-11 16:45:26 +11004704 struct md_rdev *rdev;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004705
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004706 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004707
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004708 rdev = (void*)raid_bi->bi_next;
4709 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11004710 mddev = rdev->mddev;
4711 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004712
4713 rdev_dec_pending(rdev, conf->mddev);
4714
4715 if (!error && uptodate) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004716 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
4717 raid_bi, 0);
NeilBrown6712ecf2007-09-27 12:47:43 +02004718 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004719 if (atomic_dec_and_test(&conf->active_aligned_reads))
4720 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02004721 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004722 }
4723
Dan Williams45b42332007-07-09 11:56:43 -07004724 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004725
4726 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004727}
4728
Neil Brown387bb172007-02-08 14:20:29 -08004729static int bio_fits_rdev(struct bio *bi)
4730{
Jens Axboe165125e2007-07-24 09:28:11 +02004731 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08004732
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004733 if (bio_sectors(bi) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08004734 return 0;
4735 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05004736 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08004737 return 0;
4738
4739 if (q->merge_bvec_fn)
4740 /* it's too hard to apply the merge_bvec_fn at this stage,
4741 * just just give up
4742 */
4743 return 0;
4744
4745 return 1;
4746}
4747
NeilBrownfd01b882011-10-11 16:47:53 +11004748static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004749{
NeilBrownd1688a62011-10-11 16:49:52 +11004750 struct r5conf *conf = mddev->private;
NeilBrown8553fe72009-12-14 12:49:47 +11004751 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004752 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11004753 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11004754 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004755
4756 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07004757 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004758 return 0;
4759 }
4760 /*
NeilBrowna167f662010-10-26 18:31:13 +11004761 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004762 */
NeilBrowna167f662010-10-26 18:31:13 +11004763 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004764 if (!align_bi)
4765 return 0;
4766 /*
4767 * set bi_end_io to a new function, and set bi_private to the
4768 * original bio.
4769 */
4770 align_bi->bi_end_io = raid5_align_endio;
4771 align_bi->bi_private = raid_bio;
4772 /*
4773 * compute position
4774 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004775 align_bi->bi_iter.bi_sector =
4776 raid5_compute_sector(conf, raid_bio->bi_iter.bi_sector,
4777 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004778
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004779 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004780 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11004781 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
4782 if (!rdev || test_bit(Faulty, &rdev->flags) ||
4783 rdev->recovery_offset < end_sector) {
4784 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
4785 if (rdev &&
4786 (test_bit(Faulty, &rdev->flags) ||
4787 !(test_bit(In_sync, &rdev->flags) ||
4788 rdev->recovery_offset >= end_sector)))
4789 rdev = NULL;
4790 }
4791 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10004792 sector_t first_bad;
4793 int bad_sectors;
4794
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004795 atomic_inc(&rdev->nr_pending);
4796 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004797 raid_bio->bi_next = (void*)rdev;
4798 align_bi->bi_bdev = rdev->bdev;
NeilBrown3fd83712014-08-23 20:19:26 +10004799 __clear_bit(BIO_SEG_VALID, &align_bi->bi_flags);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004800
NeilBrown31c176e2011-07-28 11:39:22 +10004801 if (!bio_fits_rdev(align_bi) ||
Kent Overstreet4f024f32013-10-11 15:44:27 -07004802 is_badblock(rdev, align_bi->bi_iter.bi_sector,
4803 bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10004804 &first_bad, &bad_sectors)) {
4805 /* too big in some way, or has a known bad block */
Neil Brown387bb172007-02-08 14:20:29 -08004806 bio_put(align_bi);
4807 rdev_dec_pending(rdev, mddev);
4808 return 0;
4809 }
4810
majianpeng6c0544e2012-06-12 08:31:10 +08004811 /* No reshape active, so we can trust rdev->data_offset */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004812 align_bi->bi_iter.bi_sector += rdev->data_offset;
majianpeng6c0544e2012-06-12 08:31:10 +08004813
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004814 spin_lock_irq(&conf->device_lock);
4815 wait_event_lock_irq(conf->wait_for_stripe,
4816 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01004817 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004818 atomic_inc(&conf->active_aligned_reads);
4819 spin_unlock_irq(&conf->device_lock);
4820
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004821 if (mddev->gendisk)
4822 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4823 align_bi, disk_devt(mddev->gendisk),
Kent Overstreet4f024f32013-10-11 15:44:27 -07004824 raid_bio->bi_iter.bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004825 generic_make_request(align_bi);
4826 return 1;
4827 } else {
4828 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004829 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004830 return 0;
4831 }
4832}
4833
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004834/* __get_priority_stripe - get the next stripe to process
4835 *
4836 * Full stripe writes are allowed to pass preread active stripes up until
4837 * the bypass_threshold is exceeded. In general the bypass_count
4838 * increments when the handle_list is handled before the hold_list; however, it
4839 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
4840 * stripe with in flight i/o. The bypass_count will be reset when the
4841 * head of the hold_list has changed, i.e. the head was promoted to the
4842 * handle_list.
4843 */
Shaohua Li851c30c2013-08-28 14:30:16 +08004844static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004845{
Shaohua Li851c30c2013-08-28 14:30:16 +08004846 struct stripe_head *sh = NULL, *tmp;
4847 struct list_head *handle_list = NULL;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004848 struct r5worker_group *wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004849
4850 if (conf->worker_cnt_per_group == 0) {
4851 handle_list = &conf->handle_list;
4852 } else if (group != ANY_GROUP) {
4853 handle_list = &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004854 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08004855 } else {
4856 int i;
4857 for (i = 0; i < conf->group_cnt; i++) {
4858 handle_list = &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004859 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08004860 if (!list_empty(handle_list))
4861 break;
4862 }
4863 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004864
4865 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
4866 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08004867 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004868 list_empty(&conf->hold_list) ? "empty" : "busy",
4869 atomic_read(&conf->pending_full_writes), conf->bypass_count);
4870
Shaohua Li851c30c2013-08-28 14:30:16 +08004871 if (!list_empty(handle_list)) {
4872 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004873
4874 if (list_empty(&conf->hold_list))
4875 conf->bypass_count = 0;
4876 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
4877 if (conf->hold_list.next == conf->last_hold)
4878 conf->bypass_count++;
4879 else {
4880 conf->last_hold = conf->hold_list.next;
4881 conf->bypass_count -= conf->bypass_threshold;
4882 if (conf->bypass_count < 0)
4883 conf->bypass_count = 0;
4884 }
4885 }
4886 } else if (!list_empty(&conf->hold_list) &&
4887 ((conf->bypass_threshold &&
4888 conf->bypass_count > conf->bypass_threshold) ||
4889 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08004890
4891 list_for_each_entry(tmp, &conf->hold_list, lru) {
4892 if (conf->worker_cnt_per_group == 0 ||
4893 group == ANY_GROUP ||
4894 !cpu_online(tmp->cpu) ||
4895 cpu_to_group(tmp->cpu) == group) {
4896 sh = tmp;
4897 break;
4898 }
4899 }
4900
4901 if (sh) {
4902 conf->bypass_count -= conf->bypass_threshold;
4903 if (conf->bypass_count < 0)
4904 conf->bypass_count = 0;
4905 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08004906 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004907 }
4908
4909 if (!sh)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004910 return NULL;
4911
Shaohua Libfc90cb2013-08-29 15:40:32 +08004912 if (wg) {
4913 wg->stripes_cnt--;
4914 sh->group = NULL;
4915 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004916 list_del_init(&sh->lru);
Shaohua Lic7a6d352014-04-15 09:12:54 +08004917 BUG_ON(atomic_inc_return(&sh->count) != 1);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004918 return sh;
4919}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004920
Shaohua Li8811b592012-08-02 08:33:00 +10004921struct raid5_plug_cb {
4922 struct blk_plug_cb cb;
4923 struct list_head list;
Shaohua Li566c09c2013-11-14 15:16:17 +11004924 struct list_head temp_inactive_list[NR_STRIPE_HASH_LOCKS];
Shaohua Li8811b592012-08-02 08:33:00 +10004925};
4926
4927static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
4928{
4929 struct raid5_plug_cb *cb = container_of(
4930 blk_cb, struct raid5_plug_cb, cb);
4931 struct stripe_head *sh;
4932 struct mddev *mddev = cb->cb.data;
4933 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11004934 int cnt = 0;
Shaohua Li566c09c2013-11-14 15:16:17 +11004935 int hash;
Shaohua Li8811b592012-08-02 08:33:00 +10004936
4937 if (cb->list.next && !list_empty(&cb->list)) {
4938 spin_lock_irq(&conf->device_lock);
4939 while (!list_empty(&cb->list)) {
4940 sh = list_first_entry(&cb->list, struct stripe_head, lru);
4941 list_del_init(&sh->lru);
4942 /*
4943 * avoid race release_stripe_plug() sees
4944 * STRIPE_ON_UNPLUG_LIST clear but the stripe
4945 * is still in our list
4946 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004947 smp_mb__before_atomic();
Shaohua Li8811b592012-08-02 08:33:00 +10004948 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08004949 /*
4950 * STRIPE_ON_RELEASE_LIST could be set here. In that
4951 * case, the count is always > 1 here
4952 */
Shaohua Li566c09c2013-11-14 15:16:17 +11004953 hash = sh->hash_lock_index;
4954 __release_stripe(conf, sh, &cb->temp_inactive_list[hash]);
NeilBrowna9add5d2012-10-31 11:59:09 +11004955 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10004956 }
4957 spin_unlock_irq(&conf->device_lock);
4958 }
Shaohua Li566c09c2013-11-14 15:16:17 +11004959 release_inactive_stripe_list(conf, cb->temp_inactive_list,
4960 NR_STRIPE_HASH_LOCKS);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004961 if (mddev->queue)
4962 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10004963 kfree(cb);
4964}
4965
4966static void release_stripe_plug(struct mddev *mddev,
4967 struct stripe_head *sh)
4968{
4969 struct blk_plug_cb *blk_cb = blk_check_plugged(
4970 raid5_unplug, mddev,
4971 sizeof(struct raid5_plug_cb));
4972 struct raid5_plug_cb *cb;
4973
4974 if (!blk_cb) {
4975 release_stripe(sh);
4976 return;
4977 }
4978
4979 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
4980
Shaohua Li566c09c2013-11-14 15:16:17 +11004981 if (cb->list.next == NULL) {
4982 int i;
Shaohua Li8811b592012-08-02 08:33:00 +10004983 INIT_LIST_HEAD(&cb->list);
Shaohua Li566c09c2013-11-14 15:16:17 +11004984 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
4985 INIT_LIST_HEAD(cb->temp_inactive_list + i);
4986 }
Shaohua Li8811b592012-08-02 08:33:00 +10004987
4988 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
4989 list_add_tail(&sh->lru, &cb->list);
4990 else
4991 release_stripe(sh);
4992}
4993
Shaohua Li620125f2012-10-11 13:49:05 +11004994static void make_discard_request(struct mddev *mddev, struct bio *bi)
4995{
4996 struct r5conf *conf = mddev->private;
4997 sector_t logical_sector, last_sector;
4998 struct stripe_head *sh;
4999 int remaining;
5000 int stripe_sectors;
5001
5002 if (mddev->reshape_position != MaxSector)
5003 /* Skip discard while reshape is happening */
5004 return;
5005
Kent Overstreet4f024f32013-10-11 15:44:27 -07005006 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
5007 last_sector = bi->bi_iter.bi_sector + (bi->bi_iter.bi_size>>9);
Shaohua Li620125f2012-10-11 13:49:05 +11005008
5009 bi->bi_next = NULL;
5010 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
5011
5012 stripe_sectors = conf->chunk_sectors *
5013 (conf->raid_disks - conf->max_degraded);
5014 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
5015 stripe_sectors);
5016 sector_div(last_sector, stripe_sectors);
5017
5018 logical_sector *= conf->chunk_sectors;
5019 last_sector *= conf->chunk_sectors;
5020
5021 for (; logical_sector < last_sector;
5022 logical_sector += STRIPE_SECTORS) {
5023 DEFINE_WAIT(w);
5024 int d;
5025 again:
5026 sh = get_active_stripe(conf, logical_sector, 0, 0, 0);
5027 prepare_to_wait(&conf->wait_for_overlap, &w,
5028 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005029 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
5030 if (test_bit(STRIPE_SYNCING, &sh->state)) {
5031 release_stripe(sh);
5032 schedule();
5033 goto again;
5034 }
5035 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11005036 spin_lock_irq(&sh->stripe_lock);
5037 for (d = 0; d < conf->raid_disks; d++) {
5038 if (d == sh->pd_idx || d == sh->qd_idx)
5039 continue;
5040 if (sh->dev[d].towrite || sh->dev[d].toread) {
5041 set_bit(R5_Overlap, &sh->dev[d].flags);
5042 spin_unlock_irq(&sh->stripe_lock);
5043 release_stripe(sh);
5044 schedule();
5045 goto again;
5046 }
5047 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11005048 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11005049 finish_wait(&conf->wait_for_overlap, &w);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005050 sh->overwrite_disks = 0;
Shaohua Li620125f2012-10-11 13:49:05 +11005051 for (d = 0; d < conf->raid_disks; d++) {
5052 if (d == sh->pd_idx || d == sh->qd_idx)
5053 continue;
5054 sh->dev[d].towrite = bi;
5055 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
5056 raid5_inc_bi_active_stripes(bi);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005057 sh->overwrite_disks++;
Shaohua Li620125f2012-10-11 13:49:05 +11005058 }
5059 spin_unlock_irq(&sh->stripe_lock);
5060 if (conf->mddev->bitmap) {
5061 for (d = 0;
5062 d < conf->raid_disks - conf->max_degraded;
5063 d++)
5064 bitmap_startwrite(mddev->bitmap,
5065 sh->sector,
5066 STRIPE_SECTORS,
5067 0);
5068 sh->bm_seq = conf->seq_flush + 1;
5069 set_bit(STRIPE_BIT_DELAY, &sh->state);
5070 }
5071
5072 set_bit(STRIPE_HANDLE, &sh->state);
5073 clear_bit(STRIPE_DELAYED, &sh->state);
5074 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5075 atomic_inc(&conf->preread_active_stripes);
5076 release_stripe_plug(mddev, sh);
5077 }
5078
5079 remaining = raid5_dec_bi_active_stripes(bi);
5080 if (remaining == 0) {
5081 md_write_end(mddev);
5082 bio_endio(bi, 0);
5083 }
5084}
5085
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07005086static void make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087{
NeilBrownd1688a62011-10-11 16:49:52 +11005088 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11005089 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090 sector_t new_sector;
5091 sector_t logical_sector, last_sector;
5092 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01005093 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11005094 int remaining;
Shaohua Li27c0f682014-04-09 11:25:47 +08005095 DEFINE_WAIT(w);
5096 bool do_prepare;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097
Tejun Heoe9c74692010-09-03 11:56:18 +02005098 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
5099 md_flush_request(mddev, bi);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02005100 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07005101 }
5102
NeilBrown3d310eb2005-06-21 17:17:26 -07005103 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07005104
NeilBrown802ba062006-12-13 00:34:13 -08005105 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005106 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11005107 chunk_aligned_read(mddev,bi))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02005108 return;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005109
Shaohua Li620125f2012-10-11 13:49:05 +11005110 if (unlikely(bi->bi_rw & REQ_DISCARD)) {
5111 make_discard_request(mddev, bi);
5112 return;
5113 }
5114
Kent Overstreet4f024f32013-10-11 15:44:27 -07005115 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005116 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 bi->bi_next = NULL;
5118 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07005119
Shaohua Li27c0f682014-04-09 11:25:47 +08005120 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005122 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10005123 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08005124
Shaohua Li27c0f682014-04-09 11:25:47 +08005125 do_prepare = false;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005126 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10005127 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11005128 previous = 0;
Shaohua Li27c0f682014-04-09 11:25:47 +08005129 if (do_prepare)
5130 prepare_to_wait(&conf->wait_for_overlap, &w,
5131 TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005132 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11005133 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08005134 * 64bit on a 32bit platform, and so it might be
5135 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02005136 * Of course reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08005137 * the lock is dropped, so once we get a reference
5138 * to the stripe that we think it is, we will have
5139 * to check again.
5140 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005141 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005142 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005143 ? logical_sector < conf->reshape_progress
5144 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005145 previous = 1;
5146 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10005147 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005148 ? logical_sector < conf->reshape_safe
5149 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08005150 spin_unlock_irq(&conf->device_lock);
5151 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005152 do_prepare = true;
NeilBrownb578d552006-03-27 01:18:12 -08005153 goto retry;
5154 }
5155 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005156 spin_unlock_irq(&conf->device_lock);
5157 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005158
NeilBrown112bf892009-03-31 14:39:38 +11005159 new_sector = raid5_compute_sector(conf, logical_sector,
5160 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11005161 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10005162 pr_debug("raid456: make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10005163 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 (unsigned long long)logical_sector);
5165
NeilBrownb5663ba2009-03-31 14:39:38 +11005166 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10005167 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11005169 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005170 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08005171 * stripe, so we must do the range check again.
5172 * Expansion could still move past after this
5173 * test, but as we are holding a reference to
5174 * 'sh', we know that if that happens,
5175 * STRIPE_EXPANDING will get set and the expansion
5176 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005177 */
5178 int must_retry = 0;
5179 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005180 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11005181 ? logical_sector >= conf->reshape_progress
5182 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005183 /* mismatch, need to try again */
5184 must_retry = 1;
5185 spin_unlock_irq(&conf->device_lock);
5186 if (must_retry) {
5187 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07005188 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005189 do_prepare = true;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005190 goto retry;
5191 }
5192 }
NeilBrownc46501b2013-08-27 15:52:13 +10005193 if (read_seqcount_retry(&conf->gen_lock, seq)) {
5194 /* Might have got the wrong stripe_head
5195 * by accident
5196 */
5197 release_stripe(sh);
5198 goto retry;
5199 }
NeilBrowne62e58a2009-07-01 13:15:35 +10005200
Namhyung Kimffd96e32011-07-18 17:38:51 +10005201 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10005202 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08005203 logical_sector < mddev->suspend_hi) {
5204 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10005205 /* As the suspend_* range is controlled by
5206 * userspace, we want an interruptible
5207 * wait.
5208 */
5209 flush_signals(current);
5210 prepare_to_wait(&conf->wait_for_overlap,
5211 &w, TASK_INTERRUPTIBLE);
5212 if (logical_sector >= mddev->suspend_lo &&
Shaohua Li27c0f682014-04-09 11:25:47 +08005213 logical_sector < mddev->suspend_hi) {
NeilBrowne62e58a2009-07-01 13:15:35 +10005214 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005215 do_prepare = true;
5216 }
NeilBrowne464eaf2006-03-27 01:18:14 -08005217 goto retry;
5218 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005219
5220 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005221 !add_stripe_bio(sh, bi, dd_idx, rw, previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005222 /* Stripe is busy expanding or
5223 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 * and wait a while
5225 */
NeilBrown482c0832011-04-18 18:25:42 +10005226 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 release_stripe(sh);
5228 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005229 do_prepare = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230 goto retry;
5231 }
NeilBrown6ed30032008-02-06 01:40:00 -08005232 set_bit(STRIPE_HANDLE, &sh->state);
5233 clear_bit(STRIPE_DELAYED, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11005234 if ((!sh->batch_head || sh == sh->batch_head) &&
5235 (bi->bi_rw & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11005236 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5237 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10005238 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 } else {
5240 /* cannot get stripe for read-ahead, just give-up */
5241 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 break;
5243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244 }
Shaohua Li27c0f682014-04-09 11:25:47 +08005245 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown7c13edc2011-04-18 18:25:43 +10005246
Shaohua Lie7836bd62012-07-19 16:01:31 +10005247 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08005248 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249
NeilBrown16a53ec2006-06-26 00:27:38 -07005250 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02005252
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005253 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
5254 bi, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10005255 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257}
5258
NeilBrownfd01b882011-10-11 16:47:53 +11005259static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11005260
NeilBrownfd01b882011-10-11 16:47:53 +11005261static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262{
NeilBrown52c03292006-06-26 00:27:43 -07005263 /* reshaping is quite different to recovery/resync so it is
5264 * handled quite separately ... here.
5265 *
5266 * On each call to sync_request, we gather one chunk worth of
5267 * destination stripes and flag them as expanding.
5268 * Then we find all the source stripes and request reads.
5269 * As the reads complete, handle_stripe will copy the data
5270 * into the destination stripe and release that stripe.
5271 */
NeilBrownd1688a62011-10-11 16:49:52 +11005272 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08005274 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08005275 int raid_disks = conf->previous_raid_disks;
5276 int data_disks = raid_disks - conf->max_degraded;
5277 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07005278 int i;
5279 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11005280 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11005281 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11005282 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11005283 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07005284
NeilBrownfef9c612009-03-31 15:16:46 +11005285 if (sector_nr == 0) {
5286 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10005287 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005288 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
5289 sector_nr = raid5_size(mddev, 0, 0)
5290 - conf->reshape_progress;
NeilBrown2c810cd2012-05-21 09:27:00 +10005291 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005292 conf->reshape_progress > 0)
5293 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005294 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005295 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11005296 mddev->curr_resync_completed = sector_nr;
5297 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11005298 *skipped = 1;
5299 return sector_nr;
5300 }
NeilBrown52c03292006-06-26 00:27:43 -07005301 }
5302
NeilBrown7a661382009-03-31 15:21:40 +11005303 /* We need to process a full chunk at a time.
5304 * If old and new chunk sizes differ, we need to process the
5305 * largest of these
5306 */
Andre Noll664e7c42009-06-18 08:45:27 +10005307 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
5308 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005309 else
Andre Noll9d8f0362009-06-18 08:45:01 +10005310 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005311
NeilBrownb5254dd2012-05-21 09:27:01 +10005312 /* We update the metadata at least every 10 seconds, or when
5313 * the data about to be copied would over-write the source of
5314 * the data at the front of the range. i.e. one new_stripe
5315 * along from reshape_progress new_maps to after where
5316 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07005317 */
NeilBrownfef9c612009-03-31 15:16:46 +11005318 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005319 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11005320 readpos = conf->reshape_progress;
5321 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005322 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08005323 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10005324 if (mddev->reshape_backwards) {
NeilBrowned37d832009-05-27 21:39:05 +10005325 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11005326 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005327 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11005328 } else {
NeilBrown7a661382009-03-31 15:21:40 +11005329 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10005330 readpos -= min_t(sector_t, reshape_sectors, readpos);
5331 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11005332 }
NeilBrown52c03292006-06-26 00:27:43 -07005333
NeilBrownb5254dd2012-05-21 09:27:01 +10005334 /* Having calculated the 'writepos' possibly use it
5335 * to set 'stripe_addr' which is where we will write to.
5336 */
5337 if (mddev->reshape_backwards) {
5338 BUG_ON(conf->reshape_progress == 0);
5339 stripe_addr = writepos;
5340 BUG_ON((mddev->dev_sectors &
5341 ~((sector_t)reshape_sectors - 1))
5342 - reshape_sectors - stripe_addr
5343 != sector_nr);
5344 } else {
5345 BUG_ON(writepos != sector_nr + reshape_sectors);
5346 stripe_addr = sector_nr;
5347 }
5348
NeilBrownc8f517c2009-03-31 15:28:40 +11005349 /* 'writepos' is the most advanced device address we might write.
5350 * 'readpos' is the least advanced device address we might read.
5351 * 'safepos' is the least address recorded in the metadata as having
5352 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10005353 * If there is a min_offset_diff, these are adjusted either by
5354 * increasing the safepos/readpos if diff is negative, or
5355 * increasing writepos if diff is positive.
5356 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11005357 * ensure safety in the face of a crash - that must be done by userspace
5358 * making a backup of the data. So in that case there is no particular
5359 * rush to update metadata.
5360 * Otherwise if 'safepos' is behind 'writepos', then we really need to
5361 * update the metadata to advance 'safepos' to match 'readpos' so that
5362 * we can be safe in the event of a crash.
5363 * So we insist on updating metadata if safepos is behind writepos and
5364 * readpos is beyond writepos.
5365 * In any case, update the metadata every 10 seconds.
5366 * Maybe that number should be configurable, but I'm not sure it is
5367 * worth it.... maybe it could be a multiple of safemode_delay???
5368 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005369 if (conf->min_offset_diff < 0) {
5370 safepos += -conf->min_offset_diff;
5371 readpos += -conf->min_offset_diff;
5372 } else
5373 writepos += conf->min_offset_diff;
5374
NeilBrown2c810cd2012-05-21 09:27:00 +10005375 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11005376 ? (safepos > writepos && readpos < writepos)
5377 : (safepos < writepos && readpos > writepos)) ||
5378 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07005379 /* Cannot proceed until we've updated the superblock... */
5380 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005381 atomic_read(&conf->reshape_stripes)==0
5382 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5383 if (atomic_read(&conf->reshape_stripes) != 0)
5384 return 0;
NeilBrownfef9c612009-03-31 15:16:46 +11005385 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005386 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005387 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07005388 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07005389 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07005390 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrownc91abf52013-11-19 12:02:01 +11005391 test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5392 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5393 return 0;
NeilBrown52c03292006-06-26 00:27:43 -07005394 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005395 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07005396 spin_unlock_irq(&conf->device_lock);
5397 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005398 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07005399 }
5400
NeilBrownab69ae12009-03-31 15:26:47 +11005401 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11005402 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07005403 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10005404 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10005405 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005406 set_bit(STRIPE_EXPANDING, &sh->state);
5407 atomic_inc(&conf->reshape_stripes);
5408 /* If any of this stripe is beyond the end of the old
5409 * array, then we need to zero those blocks
5410 */
5411 for (j=sh->disks; j--;) {
5412 sector_t s;
5413 if (j == sh->pd_idx)
5414 continue;
NeilBrownf4168852007-02-28 20:11:53 -08005415 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11005416 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08005417 continue;
NeilBrown784052e2009-03-31 15:19:07 +11005418 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11005419 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10005420 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07005421 continue;
5422 }
5423 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
5424 set_bit(R5_Expanded, &sh->dev[j].flags);
5425 set_bit(R5_UPTODATE, &sh->dev[j].flags);
5426 }
NeilBrowna9f326e2009-09-23 18:06:41 +10005427 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07005428 set_bit(STRIPE_EXPAND_READY, &sh->state);
5429 set_bit(STRIPE_HANDLE, &sh->state);
5430 }
NeilBrownab69ae12009-03-31 15:26:47 +11005431 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07005432 }
5433 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005434 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11005435 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005436 else
NeilBrown7a661382009-03-31 15:21:40 +11005437 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07005438 spin_unlock_irq(&conf->device_lock);
5439 /* Ok, those stripe are ready. We can start scheduling
5440 * reads on the source stripes.
5441 * The source stripes are determined by mapping the first and last
5442 * block on the destination stripes.
5443 */
NeilBrown52c03292006-06-26 00:27:43 -07005444 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11005445 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11005446 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07005447 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10005448 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10005449 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11005450 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11005451 if (last_sector >= mddev->dev_sectors)
5452 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07005453 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10005454 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005455 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
5456 set_bit(STRIPE_HANDLE, &sh->state);
5457 release_stripe(sh);
5458 first_sector += STRIPE_SECTORS;
5459 }
NeilBrownab69ae12009-03-31 15:26:47 +11005460 /* Now that the sources are clearly marked, we can release
5461 * the destination stripes
5462 */
5463 while (!list_empty(&stripes)) {
5464 sh = list_entry(stripes.next, struct stripe_head, lru);
5465 list_del_init(&sh->lru);
5466 release_stripe(sh);
5467 }
NeilBrownc6207272008-02-06 01:39:52 -08005468 /* If this takes us to the resync_max point where we have to pause,
5469 * then we need to write out the superblock.
5470 */
NeilBrown7a661382009-03-31 15:21:40 +11005471 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10005472 if ((sector_nr - mddev->curr_resync_completed) * 2
5473 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08005474 /* Cannot proceed until we've updated the superblock... */
5475 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005476 atomic_read(&conf->reshape_stripes) == 0
5477 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5478 if (atomic_read(&conf->reshape_stripes) != 0)
5479 goto ret;
NeilBrownfef9c612009-03-31 15:16:46 +11005480 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005481 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005482 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08005483 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5484 md_wakeup_thread(mddev->thread);
5485 wait_event(mddev->sb_wait,
5486 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
NeilBrownc91abf52013-11-19 12:02:01 +11005487 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5488 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5489 goto ret;
NeilBrownc6207272008-02-06 01:39:52 -08005490 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005491 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08005492 spin_unlock_irq(&conf->device_lock);
5493 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005494 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08005495 }
NeilBrownc91abf52013-11-19 12:02:01 +11005496ret:
NeilBrown7a661382009-03-31 15:21:40 +11005497 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07005498}
5499
NeilBrown09314792015-02-19 16:04:40 +11005500static inline sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
NeilBrown52c03292006-06-26 00:27:43 -07005501{
NeilBrownd1688a62011-10-11 16:49:52 +11005502 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07005503 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11005504 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11005505 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07005506 int still_degraded = 0;
5507 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508
NeilBrown72626682005-09-09 16:23:54 -07005509 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11005511
NeilBrown29269552006-03-27 01:18:10 -08005512 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
5513 end_reshape(conf);
5514 return 0;
5515 }
NeilBrown72626682005-09-09 16:23:54 -07005516
5517 if (mddev->curr_resync < max_sector) /* aborted */
5518 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
5519 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07005520 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07005521 conf->fullsync = 0;
5522 bitmap_close_sync(mddev->bitmap);
5523
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524 return 0;
5525 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08005526
NeilBrown64bd6602009-08-03 10:59:58 +10005527 /* Allow raid5_quiesce to complete */
5528 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
5529
NeilBrown52c03292006-06-26 00:27:43 -07005530 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
5531 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08005532
NeilBrownc6207272008-02-06 01:39:52 -08005533 /* No need to check resync_max as we never do more than one
5534 * stripe, and as resync_max will always be on a chunk boundary,
5535 * if the check in md_do_sync didn't fire, there is no chance
5536 * of overstepping resync_max here
5537 */
5538
NeilBrown16a53ec2006-06-26 00:27:38 -07005539 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540 * to resync, then assert that we are finished, because there is
5541 * nothing we can do.
5542 */
NeilBrown3285edf2006-06-26 00:27:55 -07005543 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005544 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11005545 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07005546 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547 return rv;
5548 }
majianpeng6f608042013-04-24 11:42:41 +10005549 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
5550 !conf->fullsync &&
5551 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
5552 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07005553 /* we can skip this block, and probably more */
5554 sync_blocks /= STRIPE_SECTORS;
5555 *skipped = 1;
5556 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
5557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558
NeilBrownb47490c2008-02-06 01:39:50 -08005559 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
5560
NeilBrowna8c906c2009-06-09 14:39:59 +10005561 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10005563 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07005565 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08005567 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005569 /* Need to check if array will still be degraded after recovery/resync
Eric Mei16d9cfa2015-01-06 09:35:02 -08005570 * Note in case of > 1 drive failures it's possible we're rebuilding
5571 * one drive while leaving another faulty drive in array.
NeilBrown16a53ec2006-06-26 00:27:38 -07005572 */
Eric Mei16d9cfa2015-01-06 09:35:02 -08005573 rcu_read_lock();
5574 for (i = 0; i < conf->raid_disks; i++) {
5575 struct md_rdev *rdev = ACCESS_ONCE(conf->disks[i].rdev);
5576
5577 if (rdev == NULL || test_bit(Faulty, &rdev->flags))
NeilBrown16a53ec2006-06-26 00:27:38 -07005578 still_degraded = 1;
Eric Mei16d9cfa2015-01-06 09:35:02 -08005579 }
5580 rcu_read_unlock();
NeilBrown16a53ec2006-06-26 00:27:38 -07005581
5582 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
5583
NeilBrown83206d62011-07-26 11:19:49 +10005584 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Eivind Sarto053f5b62014-06-09 17:06:19 -07005585 set_bit(STRIPE_HANDLE, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587 release_stripe(sh);
5588
5589 return STRIPE_SECTORS;
5590}
5591
NeilBrownd1688a62011-10-11 16:49:52 +11005592static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005593{
5594 /* We may not be able to submit a whole bio at once as there
5595 * may not be enough stripe_heads available.
5596 * We cannot pre-allocate enough stripe_heads as we may need
5597 * more than exist in the cache (if we allow ever large chunks).
5598 * So we do one stripe head at a time and record in
5599 * ->bi_hw_segments how many have been done.
5600 *
5601 * We *know* that this entire raid_bio is in one chunk, so
5602 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
5603 */
5604 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11005605 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005606 sector_t sector, logical_sector, last_sector;
5607 int scnt = 0;
5608 int remaining;
5609 int handled = 0;
5610
Kent Overstreet4f024f32013-10-11 15:44:27 -07005611 logical_sector = raid_bio->bi_iter.bi_sector &
5612 ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11005613 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11005614 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005615 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005616
5617 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08005618 logical_sector += STRIPE_SECTORS,
5619 sector += STRIPE_SECTORS,
5620 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005621
Shaohua Lie7836bd62012-07-19 16:01:31 +10005622 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005623 /* already done this stripe */
5624 continue;
5625
hui jiao2844dc32014-06-05 11:34:24 +08005626 sh = get_active_stripe(conf, sector, 0, 1, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005627
5628 if (!sh) {
5629 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10005630 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005631 conf->retry_read_aligned = raid_bio;
5632 return handled;
5633 }
5634
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005635 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0, 0)) {
Neil Brown387bb172007-02-08 14:20:29 -08005636 release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10005637 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08005638 conf->retry_read_aligned = raid_bio;
5639 return handled;
5640 }
5641
majianpeng3f9e7c12012-07-31 10:04:21 +10005642 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07005643 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005644 release_stripe(sh);
5645 handled++;
5646 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10005647 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005648 if (remaining == 0) {
5649 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
5650 raid_bio, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10005651 bio_endio(raid_bio, 0);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005652 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005653 if (atomic_dec_and_test(&conf->active_aligned_reads))
5654 wake_up(&conf->wait_for_stripe);
5655 return handled;
5656}
5657
Shaohua Libfc90cb2013-08-29 15:40:32 +08005658static int handle_active_stripes(struct r5conf *conf, int group,
Shaohua Li566c09c2013-11-14 15:16:17 +11005659 struct r5worker *worker,
5660 struct list_head *temp_inactive_list)
Shaohua Li46a06402012-08-02 08:33:15 +10005661{
5662 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +11005663 int i, batch_size = 0, hash;
5664 bool release_inactive = false;
Shaohua Li46a06402012-08-02 08:33:15 +10005665
5666 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08005667 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10005668 batch[batch_size++] = sh;
5669
Shaohua Li566c09c2013-11-14 15:16:17 +11005670 if (batch_size == 0) {
5671 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5672 if (!list_empty(temp_inactive_list + i))
5673 break;
5674 if (i == NR_STRIPE_HASH_LOCKS)
5675 return batch_size;
5676 release_inactive = true;
5677 }
Shaohua Li46a06402012-08-02 08:33:15 +10005678 spin_unlock_irq(&conf->device_lock);
5679
Shaohua Li566c09c2013-11-14 15:16:17 +11005680 release_inactive_stripe_list(conf, temp_inactive_list,
5681 NR_STRIPE_HASH_LOCKS);
5682
5683 if (release_inactive) {
5684 spin_lock_irq(&conf->device_lock);
5685 return 0;
5686 }
5687
Shaohua Li46a06402012-08-02 08:33:15 +10005688 for (i = 0; i < batch_size; i++)
5689 handle_stripe(batch[i]);
5690
5691 cond_resched();
5692
5693 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11005694 for (i = 0; i < batch_size; i++) {
5695 hash = batch[i]->hash_lock_index;
5696 __release_stripe(conf, batch[i], &temp_inactive_list[hash]);
5697 }
Shaohua Li46a06402012-08-02 08:33:15 +10005698 return batch_size;
5699}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005700
Shaohua Li851c30c2013-08-28 14:30:16 +08005701static void raid5_do_work(struct work_struct *work)
5702{
5703 struct r5worker *worker = container_of(work, struct r5worker, work);
5704 struct r5worker_group *group = worker->group;
5705 struct r5conf *conf = group->conf;
5706 int group_id = group - conf->worker_groups;
5707 int handled;
5708 struct blk_plug plug;
5709
5710 pr_debug("+++ raid5worker active\n");
5711
5712 blk_start_plug(&plug);
5713 handled = 0;
5714 spin_lock_irq(&conf->device_lock);
5715 while (1) {
5716 int batch_size, released;
5717
Shaohua Li566c09c2013-11-14 15:16:17 +11005718 released = release_stripe_list(conf, worker->temp_inactive_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08005719
Shaohua Li566c09c2013-11-14 15:16:17 +11005720 batch_size = handle_active_stripes(conf, group_id, worker,
5721 worker->temp_inactive_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +08005722 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08005723 if (!batch_size && !released)
5724 break;
5725 handled += batch_size;
5726 }
5727 pr_debug("%d stripes handled\n", handled);
5728
5729 spin_unlock_irq(&conf->device_lock);
5730 blk_finish_plug(&plug);
5731
5732 pr_debug("--- raid5worker inactive\n");
5733}
5734
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735/*
5736 * This is our raid5 kernel thread.
5737 *
5738 * We scan the hash table for stripes which can be handled now.
5739 * During the scan, completed stripes are saved for us by the interrupt
5740 * handler, so that they will not have to wait for our next wakeup.
5741 */
Shaohua Li4ed87312012-10-11 13:34:00 +11005742static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743{
Shaohua Li4ed87312012-10-11 13:34:00 +11005744 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005745 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005747 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748
Dan Williams45b42332007-07-09 11:56:43 -07005749 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
5751 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005753 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754 handled = 0;
5755 spin_lock_irq(&conf->device_lock);
5756 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005757 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08005758 int batch_size, released;
5759
Shaohua Li566c09c2013-11-14 15:16:17 +11005760 released = release_stripe_list(conf, conf->temp_inactive_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761
NeilBrown0021b7b2012-07-31 09:08:14 +02005762 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10005763 !list_empty(&conf->bitmap_list)) {
5764 /* Now is a good time to flush some bitmap updates */
5765 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08005766 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07005767 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08005768 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10005769 conf->seq_write = conf->seq_flush;
Shaohua Li566c09c2013-11-14 15:16:17 +11005770 activate_bit_delay(conf, conf->temp_inactive_list);
NeilBrown72626682005-09-09 16:23:54 -07005771 }
NeilBrown0021b7b2012-07-31 09:08:14 +02005772 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07005773
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005774 while ((bio = remove_bio_from_retry(conf))) {
5775 int ok;
5776 spin_unlock_irq(&conf->device_lock);
5777 ok = retry_aligned_read(conf, bio);
5778 spin_lock_irq(&conf->device_lock);
5779 if (!ok)
5780 break;
5781 handled++;
5782 }
5783
Shaohua Li566c09c2013-11-14 15:16:17 +11005784 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL,
5785 conf->temp_inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08005786 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787 break;
Shaohua Li46a06402012-08-02 08:33:15 +10005788 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789
Shaohua Li46a06402012-08-02 08:33:15 +10005790 if (mddev->flags & ~(1<<MD_CHANGE_PENDING)) {
5791 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10005792 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10005793 spin_lock_irq(&conf->device_lock);
5794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 }
Dan Williams45b42332007-07-09 11:56:43 -07005796 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797
5798 spin_unlock_irq(&conf->device_lock);
5799
Dan Williamsc9f21aa2008-07-23 12:05:51 -07005800 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005801 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802
Dan Williams45b42332007-07-09 11:56:43 -07005803 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804}
5805
NeilBrown3f294f42005-11-08 21:39:25 -08005806static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005807raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08005808{
NeilBrown7b1485b2014-12-15 12:56:59 +11005809 struct r5conf *conf;
5810 int ret = 0;
5811 spin_lock(&mddev->lock);
5812 conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08005813 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11005814 ret = sprintf(page, "%d\n", conf->max_nr_stripes);
5815 spin_unlock(&mddev->lock);
5816 return ret;
NeilBrown3f294f42005-11-08 21:39:25 -08005817}
5818
NeilBrownc41d4ac2010-06-01 19:37:24 +10005819int
NeilBrownfd01b882011-10-11 16:47:53 +11005820raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10005821{
NeilBrownd1688a62011-10-11 16:49:52 +11005822 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005823 int err;
5824
5825 if (size <= 16 || size > 32768)
5826 return -EINVAL;
NeilBrown486f0642015-02-25 12:10:35 +11005827
5828 while (size < conf->max_nr_stripes &&
5829 drop_one_stripe(conf))
5830 ;
5831
NeilBrownc41d4ac2010-06-01 19:37:24 +10005832 err = md_allow_write(mddev);
5833 if (err)
5834 return err;
NeilBrown486f0642015-02-25 12:10:35 +11005835
5836 while (size > conf->max_nr_stripes)
5837 if (!grow_one_stripe(conf, GFP_KERNEL))
5838 break;
5839
NeilBrownc41d4ac2010-06-01 19:37:24 +10005840 return 0;
5841}
5842EXPORT_SYMBOL(raid5_set_cache_size);
5843
NeilBrown3f294f42005-11-08 21:39:25 -08005844static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005845raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08005846{
NeilBrown67918752014-12-15 12:57:01 +11005847 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07005848 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07005849 int err;
5850
NeilBrown3f294f42005-11-08 21:39:25 -08005851 if (len >= PAGE_SIZE)
5852 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005853 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08005854 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11005855 err = mddev_lock(mddev);
Dan Williamsb5470dc2008-06-27 21:44:04 -07005856 if (err)
5857 return err;
NeilBrown67918752014-12-15 12:57:01 +11005858 conf = mddev->private;
5859 if (!conf)
5860 err = -ENODEV;
5861 else
5862 err = raid5_set_cache_size(mddev, new);
5863 mddev_unlock(mddev);
5864
5865 return err ?: len;
NeilBrown3f294f42005-11-08 21:39:25 -08005866}
NeilBrown007583c2005-11-08 21:39:30 -08005867
NeilBrown96de1e62005-11-08 21:39:39 -08005868static struct md_sysfs_entry
5869raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
5870 raid5_show_stripe_cache_size,
5871 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08005872
5873static ssize_t
Markus Stockhausend06f1912014-12-15 12:57:05 +11005874raid5_show_rmw_level(struct mddev *mddev, char *page)
5875{
5876 struct r5conf *conf = mddev->private;
5877 if (conf)
5878 return sprintf(page, "%d\n", conf->rmw_level);
5879 else
5880 return 0;
5881}
5882
5883static ssize_t
5884raid5_store_rmw_level(struct mddev *mddev, const char *page, size_t len)
5885{
5886 struct r5conf *conf = mddev->private;
5887 unsigned long new;
5888
5889 if (!conf)
5890 return -ENODEV;
5891
5892 if (len >= PAGE_SIZE)
5893 return -EINVAL;
5894
5895 if (kstrtoul(page, 10, &new))
5896 return -EINVAL;
5897
5898 if (new != PARITY_DISABLE_RMW && !raid6_call.xor_syndrome)
5899 return -EINVAL;
5900
5901 if (new != PARITY_DISABLE_RMW &&
5902 new != PARITY_ENABLE_RMW &&
5903 new != PARITY_PREFER_RMW)
5904 return -EINVAL;
5905
5906 conf->rmw_level = new;
5907 return len;
5908}
5909
5910static struct md_sysfs_entry
5911raid5_rmw_level = __ATTR(rmw_level, S_IRUGO | S_IWUSR,
5912 raid5_show_rmw_level,
5913 raid5_store_rmw_level);
5914
5915
5916static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005917raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005918{
NeilBrown7b1485b2014-12-15 12:56:59 +11005919 struct r5conf *conf;
5920 int ret = 0;
5921 spin_lock(&mddev->lock);
5922 conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005923 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11005924 ret = sprintf(page, "%d\n", conf->bypass_threshold);
5925 spin_unlock(&mddev->lock);
5926 return ret;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005927}
5928
5929static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005930raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005931{
NeilBrown67918752014-12-15 12:57:01 +11005932 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07005933 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11005934 int err;
5935
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005936 if (len >= PAGE_SIZE)
5937 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005938 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005939 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11005940
5941 err = mddev_lock(mddev);
5942 if (err)
5943 return err;
5944 conf = mddev->private;
5945 if (!conf)
5946 err = -ENODEV;
5947 else if (new > conf->max_nr_stripes)
5948 err = -EINVAL;
5949 else
5950 conf->bypass_threshold = new;
5951 mddev_unlock(mddev);
5952 return err ?: len;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005953}
5954
5955static struct md_sysfs_entry
5956raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
5957 S_IRUGO | S_IWUSR,
5958 raid5_show_preread_threshold,
5959 raid5_store_preread_threshold);
5960
5961static ssize_t
Shaohua Lid592a992014-05-21 17:57:44 +08005962raid5_show_skip_copy(struct mddev *mddev, char *page)
5963{
NeilBrown7b1485b2014-12-15 12:56:59 +11005964 struct r5conf *conf;
5965 int ret = 0;
5966 spin_lock(&mddev->lock);
5967 conf = mddev->private;
Shaohua Lid592a992014-05-21 17:57:44 +08005968 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11005969 ret = sprintf(page, "%d\n", conf->skip_copy);
5970 spin_unlock(&mddev->lock);
5971 return ret;
Shaohua Lid592a992014-05-21 17:57:44 +08005972}
5973
5974static ssize_t
5975raid5_store_skip_copy(struct mddev *mddev, const char *page, size_t len)
5976{
NeilBrown67918752014-12-15 12:57:01 +11005977 struct r5conf *conf;
Shaohua Lid592a992014-05-21 17:57:44 +08005978 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11005979 int err;
5980
Shaohua Lid592a992014-05-21 17:57:44 +08005981 if (len >= PAGE_SIZE)
5982 return -EINVAL;
Shaohua Lid592a992014-05-21 17:57:44 +08005983 if (kstrtoul(page, 10, &new))
5984 return -EINVAL;
5985 new = !!new;
Shaohua Lid592a992014-05-21 17:57:44 +08005986
NeilBrown67918752014-12-15 12:57:01 +11005987 err = mddev_lock(mddev);
5988 if (err)
5989 return err;
5990 conf = mddev->private;
5991 if (!conf)
5992 err = -ENODEV;
5993 else if (new != conf->skip_copy) {
5994 mddev_suspend(mddev);
5995 conf->skip_copy = new;
5996 if (new)
5997 mddev->queue->backing_dev_info.capabilities |=
5998 BDI_CAP_STABLE_WRITES;
5999 else
6000 mddev->queue->backing_dev_info.capabilities &=
6001 ~BDI_CAP_STABLE_WRITES;
6002 mddev_resume(mddev);
6003 }
6004 mddev_unlock(mddev);
6005 return err ?: len;
Shaohua Lid592a992014-05-21 17:57:44 +08006006}
6007
6008static struct md_sysfs_entry
6009raid5_skip_copy = __ATTR(skip_copy, S_IRUGO | S_IWUSR,
6010 raid5_show_skip_copy,
6011 raid5_store_skip_copy);
6012
Shaohua Lid592a992014-05-21 17:57:44 +08006013static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006014stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006015{
NeilBrownd1688a62011-10-11 16:49:52 +11006016 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006017 if (conf)
6018 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
6019 else
6020 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08006021}
6022
NeilBrown96de1e62005-11-08 21:39:39 -08006023static struct md_sysfs_entry
6024raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08006025
Shaohua Lib7214202013-08-27 17:50:42 +08006026static ssize_t
6027raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
6028{
NeilBrown7b1485b2014-12-15 12:56:59 +11006029 struct r5conf *conf;
6030 int ret = 0;
6031 spin_lock(&mddev->lock);
6032 conf = mddev->private;
Shaohua Lib7214202013-08-27 17:50:42 +08006033 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006034 ret = sprintf(page, "%d\n", conf->worker_cnt_per_group);
6035 spin_unlock(&mddev->lock);
6036 return ret;
Shaohua Lib7214202013-08-27 17:50:42 +08006037}
6038
majianpeng60aaf932013-11-14 15:16:20 +11006039static int alloc_thread_groups(struct r5conf *conf, int cnt,
6040 int *group_cnt,
6041 int *worker_cnt_per_group,
6042 struct r5worker_group **worker_groups);
Shaohua Lib7214202013-08-27 17:50:42 +08006043static ssize_t
6044raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
6045{
NeilBrown67918752014-12-15 12:57:01 +11006046 struct r5conf *conf;
Shaohua Lib7214202013-08-27 17:50:42 +08006047 unsigned long new;
6048 int err;
majianpeng60aaf932013-11-14 15:16:20 +11006049 struct r5worker_group *new_groups, *old_groups;
6050 int group_cnt, worker_cnt_per_group;
Shaohua Lib7214202013-08-27 17:50:42 +08006051
6052 if (len >= PAGE_SIZE)
6053 return -EINVAL;
Shaohua Lib7214202013-08-27 17:50:42 +08006054 if (kstrtoul(page, 10, &new))
6055 return -EINVAL;
6056
NeilBrown67918752014-12-15 12:57:01 +11006057 err = mddev_lock(mddev);
Shaohua Lib7214202013-08-27 17:50:42 +08006058 if (err)
6059 return err;
NeilBrown67918752014-12-15 12:57:01 +11006060 conf = mddev->private;
6061 if (!conf)
6062 err = -ENODEV;
6063 else if (new != conf->worker_cnt_per_group) {
6064 mddev_suspend(mddev);
6065
6066 old_groups = conf->worker_groups;
6067 if (old_groups)
6068 flush_workqueue(raid5_wq);
6069
6070 err = alloc_thread_groups(conf, new,
6071 &group_cnt, &worker_cnt_per_group,
6072 &new_groups);
6073 if (!err) {
6074 spin_lock_irq(&conf->device_lock);
6075 conf->group_cnt = group_cnt;
6076 conf->worker_cnt_per_group = worker_cnt_per_group;
6077 conf->worker_groups = new_groups;
6078 spin_unlock_irq(&conf->device_lock);
6079
6080 if (old_groups)
6081 kfree(old_groups[0].workers);
6082 kfree(old_groups);
6083 }
6084 mddev_resume(mddev);
6085 }
6086 mddev_unlock(mddev);
6087
6088 return err ?: len;
Shaohua Lib7214202013-08-27 17:50:42 +08006089}
6090
6091static struct md_sysfs_entry
6092raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
6093 raid5_show_group_thread_cnt,
6094 raid5_store_group_thread_cnt);
6095
NeilBrown007583c2005-11-08 21:39:30 -08006096static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08006097 &raid5_stripecache_size.attr,
6098 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006099 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08006100 &raid5_group_thread_cnt.attr,
Shaohua Lid592a992014-05-21 17:57:44 +08006101 &raid5_skip_copy.attr,
Markus Stockhausend06f1912014-12-15 12:57:05 +11006102 &raid5_rmw_level.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08006103 NULL,
6104};
NeilBrown007583c2005-11-08 21:39:30 -08006105static struct attribute_group raid5_attrs_group = {
6106 .name = NULL,
6107 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08006108};
6109
majianpeng60aaf932013-11-14 15:16:20 +11006110static int alloc_thread_groups(struct r5conf *conf, int cnt,
6111 int *group_cnt,
6112 int *worker_cnt_per_group,
6113 struct r5worker_group **worker_groups)
Shaohua Li851c30c2013-08-28 14:30:16 +08006114{
Shaohua Li566c09c2013-11-14 15:16:17 +11006115 int i, j, k;
Shaohua Li851c30c2013-08-28 14:30:16 +08006116 ssize_t size;
6117 struct r5worker *workers;
6118
majianpeng60aaf932013-11-14 15:16:20 +11006119 *worker_cnt_per_group = cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +08006120 if (cnt == 0) {
majianpeng60aaf932013-11-14 15:16:20 +11006121 *group_cnt = 0;
6122 *worker_groups = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08006123 return 0;
6124 }
majianpeng60aaf932013-11-14 15:16:20 +11006125 *group_cnt = num_possible_nodes();
Shaohua Li851c30c2013-08-28 14:30:16 +08006126 size = sizeof(struct r5worker) * cnt;
majianpeng60aaf932013-11-14 15:16:20 +11006127 workers = kzalloc(size * *group_cnt, GFP_NOIO);
6128 *worker_groups = kzalloc(sizeof(struct r5worker_group) *
6129 *group_cnt, GFP_NOIO);
6130 if (!*worker_groups || !workers) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006131 kfree(workers);
majianpeng60aaf932013-11-14 15:16:20 +11006132 kfree(*worker_groups);
Shaohua Li851c30c2013-08-28 14:30:16 +08006133 return -ENOMEM;
6134 }
6135
majianpeng60aaf932013-11-14 15:16:20 +11006136 for (i = 0; i < *group_cnt; i++) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006137 struct r5worker_group *group;
6138
NeilBrown0c775d52013-11-25 11:12:43 +11006139 group = &(*worker_groups)[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08006140 INIT_LIST_HEAD(&group->handle_list);
6141 group->conf = conf;
6142 group->workers = workers + i * cnt;
6143
6144 for (j = 0; j < cnt; j++) {
Shaohua Li566c09c2013-11-14 15:16:17 +11006145 struct r5worker *worker = group->workers + j;
6146 worker->group = group;
6147 INIT_WORK(&worker->work, raid5_do_work);
6148
6149 for (k = 0; k < NR_STRIPE_HASH_LOCKS; k++)
6150 INIT_LIST_HEAD(worker->temp_inactive_list + k);
Shaohua Li851c30c2013-08-28 14:30:16 +08006151 }
6152 }
6153
6154 return 0;
6155}
6156
6157static void free_thread_groups(struct r5conf *conf)
6158{
6159 if (conf->worker_groups)
6160 kfree(conf->worker_groups[0].workers);
6161 kfree(conf->worker_groups);
6162 conf->worker_groups = NULL;
6163}
6164
Dan Williams80c3a6c2009-03-17 18:10:40 -07006165static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11006166raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07006167{
NeilBrownd1688a62011-10-11 16:49:52 +11006168 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006169
6170 if (!sectors)
6171 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006172 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11006173 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11006174 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006175
Andre Noll9d8f0362009-06-18 08:45:01 +10006176 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10006177 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006178 return sectors * (raid_disks - conf->max_degraded);
6179}
6180
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306181static void free_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6182{
6183 safe_put_page(percpu->spare_page);
shli@kernel.org46d5b782014-12-15 12:57:02 +11006184 if (percpu->scribble)
6185 flex_array_free(percpu->scribble);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306186 percpu->spare_page = NULL;
6187 percpu->scribble = NULL;
6188}
6189
6190static int alloc_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6191{
6192 if (conf->level == 6 && !percpu->spare_page)
6193 percpu->spare_page = alloc_page(GFP_KERNEL);
6194 if (!percpu->scribble)
shli@kernel.org46d5b782014-12-15 12:57:02 +11006195 percpu->scribble = scribble_alloc(max(conf->raid_disks,
6196 conf->previous_raid_disks), conf->chunk_sectors /
6197 STRIPE_SECTORS, GFP_KERNEL);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306198
6199 if (!percpu->scribble || (conf->level == 6 && !percpu->spare_page)) {
6200 free_scratch_buffer(conf, percpu);
6201 return -ENOMEM;
6202 }
6203
6204 return 0;
6205}
6206
NeilBrownd1688a62011-10-11 16:49:52 +11006207static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006208{
Dan Williams36d1c642009-07-14 11:48:22 -07006209 unsigned long cpu;
6210
6211 if (!conf->percpu)
6212 return;
6213
Dan Williams36d1c642009-07-14 11:48:22 -07006214#ifdef CONFIG_HOTPLUG_CPU
6215 unregister_cpu_notifier(&conf->cpu_notify);
6216#endif
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306217
6218 get_online_cpus();
6219 for_each_possible_cpu(cpu)
6220 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
Dan Williams36d1c642009-07-14 11:48:22 -07006221 put_online_cpus();
6222
6223 free_percpu(conf->percpu);
6224}
6225
NeilBrownd1688a62011-10-11 16:49:52 +11006226static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10006227{
Shaohua Li851c30c2013-08-28 14:30:16 +08006228 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006229 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07006230 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006231 kfree(conf->disks);
6232 kfree(conf->stripe_hashtbl);
6233 kfree(conf);
6234}
6235
Dan Williams36d1c642009-07-14 11:48:22 -07006236#ifdef CONFIG_HOTPLUG_CPU
6237static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
6238 void *hcpu)
6239{
NeilBrownd1688a62011-10-11 16:49:52 +11006240 struct r5conf *conf = container_of(nfb, struct r5conf, cpu_notify);
Dan Williams36d1c642009-07-14 11:48:22 -07006241 long cpu = (long)hcpu;
6242 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
6243
6244 switch (action) {
6245 case CPU_UP_PREPARE:
6246 case CPU_UP_PREPARE_FROZEN:
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306247 if (alloc_scratch_buffer(conf, percpu)) {
Dan Williams36d1c642009-07-14 11:48:22 -07006248 pr_err("%s: failed memory allocation for cpu%ld\n",
6249 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07006250 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07006251 }
6252 break;
6253 case CPU_DEAD:
6254 case CPU_DEAD_FROZEN:
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306255 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
Dan Williams36d1c642009-07-14 11:48:22 -07006256 break;
6257 default:
6258 break;
6259 }
6260 return NOTIFY_OK;
6261}
6262#endif
6263
NeilBrownd1688a62011-10-11 16:49:52 +11006264static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006265{
6266 unsigned long cpu;
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306267 int err = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006268
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306269 conf->percpu = alloc_percpu(struct raid5_percpu);
6270 if (!conf->percpu)
Dan Williams36d1c642009-07-14 11:48:22 -07006271 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006272
Dan Williams36d1c642009-07-14 11:48:22 -07006273#ifdef CONFIG_HOTPLUG_CPU
6274 conf->cpu_notify.notifier_call = raid456_cpu_notify;
6275 conf->cpu_notify.priority = 0;
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306276 err = register_cpu_notifier(&conf->cpu_notify);
6277 if (err)
6278 return err;
Dan Williams36d1c642009-07-14 11:48:22 -07006279#endif
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306280
6281 get_online_cpus();
6282 for_each_present_cpu(cpu) {
6283 err = alloc_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
6284 if (err) {
6285 pr_err("%s: failed memory allocation for cpu%ld\n",
6286 __func__, cpu);
6287 break;
6288 }
6289 }
Dan Williams36d1c642009-07-14 11:48:22 -07006290 put_online_cpus();
6291
6292 return err;
6293}
6294
NeilBrownd1688a62011-10-11 16:49:52 +11006295static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296{
NeilBrownd1688a62011-10-11 16:49:52 +11006297 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006298 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11006299 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10006301 char pers_name[6];
Shaohua Li566c09c2013-11-14 15:16:17 +11006302 int i;
majianpeng60aaf932013-11-14 15:16:20 +11006303 int group_cnt, worker_cnt_per_group;
6304 struct r5worker_group *new_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305
NeilBrown91adb562009-03-31 14:39:39 +11006306 if (mddev->new_level != 5
6307 && mddev->new_level != 4
6308 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10006309 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11006310 mdname(mddev), mddev->new_level);
6311 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312 }
NeilBrown91adb562009-03-31 14:39:39 +11006313 if ((mddev->new_level == 5
6314 && !algorithm_valid_raid5(mddev->new_layout)) ||
6315 (mddev->new_level == 6
6316 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10006317 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11006318 mdname(mddev), mddev->new_layout);
6319 return ERR_PTR(-EIO);
6320 }
6321 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10006322 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11006323 mdname(mddev), mddev->raid_disks);
6324 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11006325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326
Andre Noll664e7c42009-06-18 08:45:27 +10006327 if (!mddev->new_chunk_sectors ||
6328 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
6329 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10006330 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
6331 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11006332 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11006333 }
6334
NeilBrownd1688a62011-10-11 16:49:52 +11006335 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11006336 if (conf == NULL)
6337 goto abort;
Shaohua Li851c30c2013-08-28 14:30:16 +08006338 /* Don't enable multi-threading by default*/
majianpeng60aaf932013-11-14 15:16:20 +11006339 if (!alloc_thread_groups(conf, 0, &group_cnt, &worker_cnt_per_group,
6340 &new_group)) {
6341 conf->group_cnt = group_cnt;
6342 conf->worker_cnt_per_group = worker_cnt_per_group;
6343 conf->worker_groups = new_group;
6344 } else
Shaohua Li851c30c2013-08-28 14:30:16 +08006345 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11006346 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006347 seqcount_init(&conf->gen_lock);
Dan Williamsf5efd452009-10-16 15:55:38 +11006348 init_waitqueue_head(&conf->wait_for_stripe);
6349 init_waitqueue_head(&conf->wait_for_overlap);
6350 INIT_LIST_HEAD(&conf->handle_list);
6351 INIT_LIST_HEAD(&conf->hold_list);
6352 INIT_LIST_HEAD(&conf->delayed_list);
6353 INIT_LIST_HEAD(&conf->bitmap_list);
Shaohua Li773ca822013-08-27 17:50:39 +08006354 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11006355 atomic_set(&conf->active_stripes, 0);
6356 atomic_set(&conf->preread_active_stripes, 0);
6357 atomic_set(&conf->active_aligned_reads, 0);
6358 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11006359 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11006360
6361 conf->raid_disks = mddev->raid_disks;
6362 if (mddev->reshape_position == MaxSector)
6363 conf->previous_raid_disks = mddev->raid_disks;
6364 else
6365 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006366 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006367
NeilBrown5e5e3e72009-10-16 16:35:30 +11006368 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11006369 GFP_KERNEL);
6370 if (!conf->disks)
6371 goto abort;
6372
6373 conf->mddev = mddev;
6374
6375 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
6376 goto abort;
6377
Shaohua Li566c09c2013-11-14 15:16:17 +11006378 /* We init hash_locks[0] separately to that it can be used
6379 * as the reference lock in the spin_lock_nest_lock() call
6380 * in lock_all_device_hash_locks_irq in order to convince
6381 * lockdep that we know what we are doing.
6382 */
6383 spin_lock_init(conf->hash_locks);
6384 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
6385 spin_lock_init(conf->hash_locks + i);
6386
6387 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6388 INIT_LIST_HEAD(conf->inactive_list + i);
6389
6390 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6391 INIT_LIST_HEAD(conf->temp_inactive_list + i);
6392
Dan Williams36d1c642009-07-14 11:48:22 -07006393 conf->level = mddev->new_level;
shli@kernel.org46d5b782014-12-15 12:57:02 +11006394 conf->chunk_sectors = mddev->new_chunk_sectors;
Dan Williams36d1c642009-07-14 11:48:22 -07006395 if (raid5_alloc_percpu(conf) != 0)
6396 goto abort;
6397
NeilBrown0c55e022010-05-03 14:09:02 +10006398 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006399
NeilBrowndafb20f2012-03-19 12:46:39 +11006400 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11006401 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006402 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11006403 || raid_disk < 0)
6404 continue;
6405 disk = conf->disks + raid_disk;
6406
NeilBrown17045f52011-12-23 10:17:53 +11006407 if (test_bit(Replacement, &rdev->flags)) {
6408 if (disk->replacement)
6409 goto abort;
6410 disk->replacement = rdev;
6411 } else {
6412 if (disk->rdev)
6413 goto abort;
6414 disk->rdev = rdev;
6415 }
NeilBrown91adb562009-03-31 14:39:39 +11006416
6417 if (test_bit(In_sync, &rdev->flags)) {
6418 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10006419 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
6420 " disk %d\n",
6421 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05006422 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11006423 /* Cannot rely on bitmap to complete recovery */
6424 conf->fullsync = 1;
6425 }
6426
NeilBrown91adb562009-03-31 14:39:39 +11006427 conf->level = mddev->new_level;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006428 if (conf->level == 6) {
NeilBrown91adb562009-03-31 14:39:39 +11006429 conf->max_degraded = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006430 if (raid6_call.xor_syndrome)
6431 conf->rmw_level = PARITY_ENABLE_RMW;
6432 else
6433 conf->rmw_level = PARITY_DISABLE_RMW;
6434 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006435 conf->max_degraded = 1;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006436 conf->rmw_level = PARITY_ENABLE_RMW;
6437 }
NeilBrown91adb562009-03-31 14:39:39 +11006438 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11006439 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11006440 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10006441 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11006442 conf->prev_algo = mddev->layout;
6443 }
NeilBrown91adb562009-03-31 14:39:39 +11006444
NeilBrown486f0642015-02-25 12:10:35 +11006445 memory = NR_STRIPES * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11006446 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
Shaohua Li4bda5562013-11-14 15:16:17 +11006447 atomic_set(&conf->empty_inactive_list_nr, NR_STRIPE_HASH_LOCKS);
Shaohua Li566c09c2013-11-14 15:16:17 +11006448 if (grow_stripes(conf, NR_STRIPES)) {
NeilBrown91adb562009-03-31 14:39:39 +11006449 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006450 "md/raid:%s: couldn't allocate %dkB for buffers\n",
6451 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11006452 goto abort;
6453 } else
NeilBrown0c55e022010-05-03 14:09:02 +10006454 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
6455 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11006456
NeilBrown02326052012-07-03 15:56:52 +10006457 sprintf(pers_name, "raid%d", mddev->new_level);
6458 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11006459 if (!conf->thread) {
6460 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006461 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11006462 mdname(mddev));
6463 goto abort;
6464 }
6465
6466 return conf;
6467
6468 abort:
6469 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10006470 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11006471 return ERR_PTR(-EIO);
6472 } else
6473 return ERR_PTR(-ENOMEM);
6474}
6475
NeilBrownc148ffd2009-11-13 17:47:00 +11006476static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
6477{
6478 switch (algo) {
6479 case ALGORITHM_PARITY_0:
6480 if (raid_disk < max_degraded)
6481 return 1;
6482 break;
6483 case ALGORITHM_PARITY_N:
6484 if (raid_disk >= raid_disks - max_degraded)
6485 return 1;
6486 break;
6487 case ALGORITHM_PARITY_0_6:
NeilBrownf72ffdd2014-09-30 14:23:59 +10006488 if (raid_disk == 0 ||
NeilBrownc148ffd2009-11-13 17:47:00 +11006489 raid_disk == raid_disks - 1)
6490 return 1;
6491 break;
6492 case ALGORITHM_LEFT_ASYMMETRIC_6:
6493 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6494 case ALGORITHM_LEFT_SYMMETRIC_6:
6495 case ALGORITHM_RIGHT_SYMMETRIC_6:
6496 if (raid_disk == raid_disks - 1)
6497 return 1;
6498 }
6499 return 0;
6500}
6501
NeilBrownfd01b882011-10-11 16:47:53 +11006502static int run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11006503{
NeilBrownd1688a62011-10-11 16:49:52 +11006504 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10006505 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11006506 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11006507 struct md_rdev *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11006508 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11006509 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10006510 long long min_offset_diff = 0;
6511 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11006512
Andre Noll8c6ac862009-06-18 08:48:06 +10006513 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10006514 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10006515 " -- starting background reconstruction\n",
6516 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10006517
6518 rdev_for_each(rdev, mddev) {
6519 long long diff;
6520 if (rdev->raid_disk < 0)
6521 continue;
6522 diff = (rdev->new_data_offset - rdev->data_offset);
6523 if (first) {
6524 min_offset_diff = diff;
6525 first = 0;
6526 } else if (mddev->reshape_backwards &&
6527 diff < min_offset_diff)
6528 min_offset_diff = diff;
6529 else if (!mddev->reshape_backwards &&
6530 diff > min_offset_diff)
6531 min_offset_diff = diff;
6532 }
6533
NeilBrownf6705572006-03-27 01:18:11 -08006534 if (mddev->reshape_position != MaxSector) {
6535 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10006536 * Difficulties arise if the stripe we would write to
6537 * next is at or after the stripe we would read from next.
6538 * For a reshape that changes the number of devices, this
6539 * is only possible for a very short time, and mdadm makes
6540 * sure that time appears to have past before assembling
6541 * the array. So we fail if that time hasn't passed.
6542 * For a reshape that keeps the number of devices the same
6543 * mdadm must be monitoring the reshape can keeping the
6544 * critical areas read-only and backed up. It will start
6545 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08006546 */
6547 sector_t here_new, here_old;
6548 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11006549 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08006550
NeilBrown88ce4932009-03-31 15:24:23 +11006551 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10006552 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08006553 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08006554 mdname(mddev));
6555 return -EINVAL;
6556 }
NeilBrownf6705572006-03-27 01:18:11 -08006557 old_disks = mddev->raid_disks - mddev->delta_disks;
6558 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08006559 * further up in new geometry must map after here in old
6560 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08006561 */
6562 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10006563 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08006564 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10006565 printk(KERN_ERR "md/raid:%s: reshape_position not "
6566 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006567 return -EINVAL;
6568 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006569 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08006570 /* here_new is the stripe we will write to */
6571 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10006572 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08006573 (old_disks-max_degraded));
6574 /* here_old is the first stripe that we might need to read
6575 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10006576 if (mddev->delta_disks == 0) {
NeilBrownb5254dd2012-05-21 09:27:01 +10006577 if ((here_new * mddev->new_chunk_sectors !=
6578 here_old * mddev->chunk_sectors)) {
6579 printk(KERN_ERR "md/raid:%s: reshape position is"
6580 " confused - aborting\n", mdname(mddev));
6581 return -EINVAL;
6582 }
NeilBrown67ac6012009-08-13 10:06:24 +10006583 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10006584 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10006585 * and taking constant backups.
6586 * mdadm always starts a situation like this in
6587 * readonly mode so it can take control before
6588 * allowing any writes. So just check for that.
6589 */
NeilBrownb5254dd2012-05-21 09:27:01 +10006590 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
6591 abs(min_offset_diff) >= mddev->new_chunk_sectors)
6592 /* not really in-place - so OK */;
6593 else if (mddev->ro == 0) {
6594 printk(KERN_ERR "md/raid:%s: in-place reshape "
6595 "must be started in read-only mode "
6596 "- aborting\n",
NeilBrown0c55e022010-05-03 14:09:02 +10006597 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10006598 return -EINVAL;
6599 }
NeilBrown2c810cd2012-05-21 09:27:00 +10006600 } else if (mddev->reshape_backwards
NeilBrownb5254dd2012-05-21 09:27:01 +10006601 ? (here_new * mddev->new_chunk_sectors + min_offset_diff <=
NeilBrown67ac6012009-08-13 10:06:24 +10006602 here_old * mddev->chunk_sectors)
6603 : (here_new * mddev->new_chunk_sectors >=
NeilBrownb5254dd2012-05-21 09:27:01 +10006604 here_old * mddev->chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08006605 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10006606 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
6607 "auto-recovery - aborting.\n",
6608 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006609 return -EINVAL;
6610 }
NeilBrown0c55e022010-05-03 14:09:02 +10006611 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
6612 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006613 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08006614 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006615 BUG_ON(mddev->level != mddev->new_level);
6616 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10006617 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11006618 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08006619 }
6620
NeilBrown245f46c2009-03-31 14:39:39 +11006621 if (mddev->private == NULL)
6622 conf = setup_conf(mddev);
6623 else
6624 conf = mddev->private;
6625
NeilBrown91adb562009-03-31 14:39:39 +11006626 if (IS_ERR(conf))
6627 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08006628
NeilBrownb5254dd2012-05-21 09:27:01 +10006629 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11006630 mddev->thread = conf->thread;
6631 conf->thread = NULL;
6632 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633
NeilBrown17045f52011-12-23 10:17:53 +11006634 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
6635 i++) {
6636 rdev = conf->disks[i].rdev;
6637 if (!rdev && conf->disks[i].replacement) {
6638 /* The replacement is all we have yet */
6639 rdev = conf->disks[i].replacement;
6640 conf->disks[i].replacement = NULL;
6641 clear_bit(Replacement, &rdev->flags);
6642 conf->disks[i].rdev = rdev;
6643 }
6644 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11006645 continue;
NeilBrown17045f52011-12-23 10:17:53 +11006646 if (conf->disks[i].replacement &&
6647 conf->reshape_progress != MaxSector) {
6648 /* replacements and reshape simply do not mix. */
6649 printk(KERN_ERR "md: cannot handle concurrent "
6650 "replacement and reshape.\n");
6651 goto abort;
6652 }
NeilBrown2f115882010-06-17 17:41:03 +10006653 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11006654 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10006655 continue;
6656 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006657 /* This disc is not fully in-sync. However if it
6658 * just stored parity (beyond the recovery_offset),
6659 * when we don't need to be concerned about the
6660 * array being dirty.
6661 * When reshape goes 'backwards', we never have
6662 * partially completed devices, so we only need
6663 * to worry about reshape going forwards.
6664 */
6665 /* Hack because v0.91 doesn't store recovery_offset properly. */
6666 if (mddev->major_version == 0 &&
6667 mddev->minor_version > 90)
6668 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07006669
NeilBrownc148ffd2009-11-13 17:47:00 +11006670 if (rdev->recovery_offset < reshape_offset) {
6671 /* We need to check old and new layout */
6672 if (!only_parity(rdev->raid_disk,
6673 conf->algorithm,
6674 conf->raid_disks,
6675 conf->max_degraded))
6676 continue;
6677 }
6678 if (!only_parity(rdev->raid_disk,
6679 conf->prev_algo,
6680 conf->previous_raid_disks,
6681 conf->max_degraded))
6682 continue;
6683 dirty_parity_disks++;
6684 }
NeilBrown91adb562009-03-31 14:39:39 +11006685
NeilBrown17045f52011-12-23 10:17:53 +11006686 /*
6687 * 0 for a fully functional array, 1 or 2 for a degraded array.
6688 */
NeilBrown908f4fb2011-12-23 10:17:50 +11006689 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690
NeilBrown674806d2010-06-16 17:17:53 +10006691 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10006692 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07006694 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695 goto abort;
6696 }
6697
NeilBrown91adb562009-03-31 14:39:39 +11006698 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10006699 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11006700 mddev->resync_max_sectors = mddev->dev_sectors;
6701
NeilBrownc148ffd2009-11-13 17:47:00 +11006702 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006704 if (mddev->ok_start_degraded)
6705 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10006706 "md/raid:%s: starting dirty degraded array"
6707 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006708 mdname(mddev));
6709 else {
6710 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006711 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006712 mdname(mddev));
6713 goto abort;
6714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715 }
6716
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10006718 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
6719 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11006720 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
6721 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722 else
NeilBrown0c55e022010-05-03 14:09:02 +10006723 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
6724 " out of %d devices, algorithm %d\n",
6725 mdname(mddev), conf->level,
6726 mddev->raid_disks - mddev->degraded,
6727 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728
6729 print_raid5_conf(conf);
6730
NeilBrownfef9c612009-03-31 15:16:46 +11006731 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11006732 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08006733 atomic_set(&conf->reshape_stripes, 0);
6734 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
6735 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
6736 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
6737 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
6738 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10006739 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08006740 }
6741
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10006743 if (mddev->to_remove == &raid5_attrs_group)
6744 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10006745 else if (mddev->kobj.sd &&
6746 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08006747 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10006748 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08006749 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10006750 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
6751
6752 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10006753 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11006754 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10006755 /* read-ahead size must cover two whole stripes, which
6756 * is 2 * (datadisks) * chunksize where 'n' is the
6757 * number of raid devices
6758 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759 int data_disks = conf->previous_raid_disks - conf->max_degraded;
6760 int stripe = data_disks *
6761 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
6762 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
6763 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10006764
NeilBrown9f7c2222010-07-26 12:04:13 +10006765 chunk_size = mddev->chunk_sectors << 9;
6766 blk_queue_io_min(mddev->queue, chunk_size);
6767 blk_queue_io_opt(mddev->queue, chunk_size *
6768 (conf->raid_disks - conf->max_degraded));
Kent Overstreetc78afc62013-07-11 22:39:53 -07006769 mddev->queue->limits.raid_partial_stripes_expensive = 1;
Shaohua Li620125f2012-10-11 13:49:05 +11006770 /*
6771 * We can only discard a whole stripe. It doesn't make sense to
6772 * discard data disk but write parity disk
6773 */
6774 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11006775 /* Round up to power of 2, as discard handling
6776 * currently assumes that */
6777 while ((stripe-1) & stripe)
6778 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11006779 mddev->queue->limits.discard_alignment = stripe;
6780 mddev->queue->limits.discard_granularity = stripe;
6781 /*
6782 * unaligned part of discard request will be ignored, so can't
NeilBrown8e0e99b2014-10-02 13:45:00 +10006783 * guarantee discard_zeroes_data
Shaohua Li620125f2012-10-11 13:49:05 +11006784 */
6785 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10006786
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07006787 blk_queue_max_write_same_sectors(mddev->queue, 0);
6788
NeilBrown05616be2012-05-21 09:27:00 +10006789 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10006790 disk_stack_limits(mddev->gendisk, rdev->bdev,
6791 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10006792 disk_stack_limits(mddev->gendisk, rdev->bdev,
6793 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11006794 /*
6795 * discard_zeroes_data is required, otherwise data
6796 * could be lost. Consider a scenario: discard a stripe
6797 * (the stripe could be inconsistent if
6798 * discard_zeroes_data is 0); write one disk of the
6799 * stripe (the stripe could be inconsistent again
6800 * depending on which disks are used to calculate
6801 * parity); the disk is broken; The stripe data of this
6802 * disk is lost.
6803 */
6804 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
6805 !bdev_get_queue(rdev->bdev)->
6806 limits.discard_zeroes_data)
6807 discard_supported = false;
NeilBrown8e0e99b2014-10-02 13:45:00 +10006808 /* Unfortunately, discard_zeroes_data is not currently
6809 * a guarantee - just a hint. So we only allow DISCARD
6810 * if the sysadmin has confirmed that only safe devices
6811 * are in use by setting a module parameter.
6812 */
6813 if (!devices_handle_discard_safely) {
6814 if (discard_supported) {
6815 pr_info("md/raid456: discard support disabled due to uncertainty.\n");
6816 pr_info("Set raid456.devices_handle_discard_safely=Y to override.\n");
6817 }
6818 discard_supported = false;
6819 }
NeilBrown05616be2012-05-21 09:27:00 +10006820 }
Shaohua Li620125f2012-10-11 13:49:05 +11006821
6822 if (discard_supported &&
6823 mddev->queue->limits.max_discard_sectors >= stripe &&
6824 mddev->queue->limits.discard_granularity >= stripe)
6825 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
6826 mddev->queue);
6827 else
6828 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
6829 mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006830 }
6831
Linus Torvalds1da177e2005-04-16 15:20:36 -07006832 return 0;
6833abort:
NeilBrown01f96c02011-09-21 15:30:20 +10006834 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11006835 print_raid5_conf(conf);
6836 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10006838 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839 return -EIO;
6840}
6841
NeilBrownafa0f552014-12-15 12:56:58 +11006842static void raid5_free(struct mddev *mddev, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843{
NeilBrownafa0f552014-12-15 12:56:58 +11006844 struct r5conf *conf = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845
Dan Williams95fc17a2009-07-31 12:39:15 +10006846 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10006847 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848}
6849
NeilBrownfd01b882011-10-11 16:47:53 +11006850static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851{
NeilBrownd1688a62011-10-11 16:49:52 +11006852 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006853 int i;
6854
Andre Noll9d8f0362009-06-18 08:45:01 +10006855 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
6856 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07006857 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858 for (i = 0; i < conf->raid_disks; i++)
6859 seq_printf (seq, "%s",
6860 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08006861 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863}
6864
NeilBrownd1688a62011-10-11 16:49:52 +11006865static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866{
6867 int i;
6868 struct disk_info *tmp;
6869
NeilBrown0c55e022010-05-03 14:09:02 +10006870 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871 if (!conf) {
6872 printk("(conf==NULL)\n");
6873 return;
6874 }
NeilBrown0c55e022010-05-03 14:09:02 +10006875 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
6876 conf->raid_disks,
6877 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878
6879 for (i = 0; i < conf->raid_disks; i++) {
6880 char b[BDEVNAME_SIZE];
6881 tmp = conf->disks + i;
6882 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10006883 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
6884 i, !test_bit(Faulty, &tmp->rdev->flags),
6885 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886 }
6887}
6888
NeilBrownfd01b882011-10-11 16:47:53 +11006889static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890{
6891 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11006892 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10006894 int count = 0;
6895 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896
6897 for (i = 0; i < conf->raid_disks; i++) {
6898 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11006899 if (tmp->replacement
6900 && tmp->replacement->recovery_offset == MaxSector
6901 && !test_bit(Faulty, &tmp->replacement->flags)
6902 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
6903 /* Replacement has just become active. */
6904 if (!tmp->rdev
6905 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
6906 count++;
6907 if (tmp->rdev) {
6908 /* Replaced device not technically faulty,
6909 * but we need to be sure it gets removed
6910 * and never re-added.
6911 */
6912 set_bit(Faulty, &tmp->rdev->flags);
6913 sysfs_notify_dirent_safe(
6914 tmp->rdev->sysfs_state);
6915 }
6916 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
6917 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10006918 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08006919 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07006920 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10006921 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11006922 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006923 }
6924 }
NeilBrown6b965622010-08-18 11:56:59 +10006925 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11006926 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10006927 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10006929 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930}
6931
NeilBrownb8321b62011-12-23 10:17:51 +11006932static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933{
NeilBrownd1688a62011-10-11 16:49:52 +11006934 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11006936 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11006937 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938 struct disk_info *p = conf->disks + number;
6939
6940 print_raid5_conf(conf);
NeilBrown657e3e42011-12-23 10:17:52 +11006941 if (rdev == p->rdev)
6942 rdevp = &p->rdev;
6943 else if (rdev == p->replacement)
6944 rdevp = &p->replacement;
6945 else
6946 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11006947
NeilBrown657e3e42011-12-23 10:17:52 +11006948 if (number >= conf->raid_disks &&
6949 conf->reshape_progress == MaxSector)
6950 clear_bit(In_sync, &rdev->flags);
6951
6952 if (test_bit(In_sync, &rdev->flags) ||
6953 atomic_read(&rdev->nr_pending)) {
6954 err = -EBUSY;
6955 goto abort;
6956 }
6957 /* Only remove non-faulty devices if recovery
6958 * isn't possible.
6959 */
6960 if (!test_bit(Faulty, &rdev->flags) &&
6961 mddev->recovery_disabled != conf->recovery_disabled &&
6962 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11006963 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11006964 number < conf->raid_disks) {
6965 err = -EBUSY;
6966 goto abort;
6967 }
6968 *rdevp = NULL;
6969 synchronize_rcu();
6970 if (atomic_read(&rdev->nr_pending)) {
6971 /* lost the race, try later */
6972 err = -EBUSY;
6973 *rdevp = rdev;
NeilBrowndd054fc2011-12-23 10:17:53 +11006974 } else if (p->replacement) {
6975 /* We must have just cleared 'rdev' */
6976 p->rdev = p->replacement;
6977 clear_bit(Replacement, &p->replacement->flags);
6978 smp_mb(); /* Make sure other CPUs may see both as identical
6979 * but will never see neither - if they are careful
6980 */
6981 p->replacement = NULL;
6982 clear_bit(WantReplacement, &rdev->flags);
6983 } else
6984 /* We might have just removed the Replacement as faulty-
6985 * clear the bit just in case
6986 */
6987 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006988abort:
6989
6990 print_raid5_conf(conf);
6991 return err;
6992}
6993
NeilBrownfd01b882011-10-11 16:47:53 +11006994static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995{
NeilBrownd1688a62011-10-11 16:49:52 +11006996 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10006997 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998 int disk;
6999 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10007000 int first = 0;
7001 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002
NeilBrown7f0da592011-07-28 11:39:22 +10007003 if (mddev->recovery_disabled == conf->recovery_disabled)
7004 return -EBUSY;
7005
NeilBrowndc10c642012-03-19 12:46:37 +11007006 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10007008 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009
Neil Brown6c2fce22008-06-28 08:31:31 +10007010 if (rdev->raid_disk >= 0)
7011 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012
7013 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07007014 * find the disk ... but prefer rdev->saved_raid_disk
7015 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007016 */
NeilBrown16a53ec2006-06-26 00:27:38 -07007017 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10007018 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07007019 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10007020 first = rdev->saved_raid_disk;
7021
7022 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11007023 p = conf->disks + disk;
7024 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08007025 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10007027 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07007028 if (rdev->saved_raid_disk != disk)
7029 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08007030 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10007031 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007033 }
7034 for (disk = first; disk <= last; disk++) {
7035 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11007036 if (test_bit(WantReplacement, &p->rdev->flags) &&
7037 p->replacement == NULL) {
7038 clear_bit(In_sync, &rdev->flags);
7039 set_bit(Replacement, &rdev->flags);
7040 rdev->raid_disk = disk;
7041 err = 0;
7042 conf->fullsync = 1;
7043 rcu_assign_pointer(p->replacement, rdev);
7044 break;
7045 }
7046 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007047out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10007049 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050}
7051
NeilBrownfd01b882011-10-11 16:47:53 +11007052static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053{
7054 /* no resync is happening, and there is enough space
7055 * on all devices, so we can resize.
7056 * We need to make sure resync covers any new space.
7057 * If the array is shrinking we should possibly wait until
7058 * any io in the removed space completes, but it hardly seems
7059 * worth it.
7060 */
NeilBrowna4a61252012-05-22 13:55:27 +10007061 sector_t newsize;
Andre Noll9d8f0362009-06-18 08:45:01 +10007062 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10007063 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
7064 if (mddev->external_size &&
7065 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11007066 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10007067 if (mddev->bitmap) {
7068 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
7069 if (ret)
7070 return ret;
7071 }
7072 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10007073 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007074 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10007075 if (sectors > mddev->dev_sectors &&
7076 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11007077 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
7079 }
Andre Noll58c0fed2009-03-31 14:33:13 +11007080 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07007081 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082 return 0;
7083}
7084
NeilBrownfd01b882011-10-11 16:47:53 +11007085static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10007086{
7087 /* Can only proceed if there are plenty of stripe_heads.
7088 * We need a minimum of one full stripe,, and for sensible progress
7089 * it is best to have about 4 times that.
7090 * If we require 4 times, then the default 256 4K stripe_heads will
7091 * allow for chunk sizes up to 256K, which is probably OK.
7092 * If the chunk size is greater, user-space should request more
7093 * stripe_heads first.
7094 */
NeilBrownd1688a62011-10-11 16:49:52 +11007095 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10007096 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
7097 > conf->max_nr_stripes ||
7098 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
7099 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10007100 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
7101 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10007102 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
7103 / STRIPE_SIZE)*4);
7104 return 0;
7105 }
7106 return 1;
7107}
7108
NeilBrownfd01b882011-10-11 16:47:53 +11007109static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08007110{
NeilBrownd1688a62011-10-11 16:49:52 +11007111 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08007112
NeilBrown88ce4932009-03-31 15:24:23 +11007113 if (mddev->delta_disks == 0 &&
7114 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10007115 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10007116 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10007117 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11007118 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10007119 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11007120 /* We might be able to shrink, but the devices must
7121 * be made bigger first.
7122 * For raid6, 4 is the minimum size.
7123 * Otherwise 2 is the minimum
7124 */
7125 int min = 2;
7126 if (mddev->level == 6)
7127 min = 4;
7128 if (mddev->raid_disks + mddev->delta_disks < min)
7129 return -EINVAL;
7130 }
NeilBrown29269552006-03-27 01:18:10 -08007131
NeilBrown01ee22b2009-06-18 08:47:20 +10007132 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08007133 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08007134
NeilBrowne56108d62012-10-11 14:24:13 +11007135 return resize_stripes(conf, (conf->previous_raid_disks
7136 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08007137}
7138
NeilBrownfd01b882011-10-11 16:47:53 +11007139static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08007140{
NeilBrownd1688a62011-10-11 16:49:52 +11007141 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11007142 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08007143 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07007144 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08007145
NeilBrownf4168852007-02-28 20:11:53 -08007146 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08007147 return -EBUSY;
7148
NeilBrown01ee22b2009-06-18 08:47:20 +10007149 if (!check_stripe_cache(mddev))
7150 return -ENOSPC;
7151
NeilBrown30b67642012-05-22 13:55:28 +10007152 if (has_failed(conf))
7153 return -EINVAL;
7154
NeilBrownc6563a82012-05-21 09:27:00 +10007155 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11007156 if (!test_bit(In_sync, &rdev->flags)
7157 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08007158 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10007159 }
NeilBrown63c70c42006-03-27 01:18:13 -08007160
NeilBrownf4168852007-02-28 20:11:53 -08007161 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08007162 /* Not enough devices even to make a degraded array
7163 * of that size
7164 */
7165 return -EINVAL;
7166
NeilBrownec32a2b2009-03-31 15:17:38 +11007167 /* Refuse to reduce size of the array. Any reductions in
7168 * array size must be through explicit setting of array_size
7169 * attribute.
7170 */
7171 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
7172 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10007173 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11007174 "before number of disks\n", mdname(mddev));
7175 return -EINVAL;
7176 }
7177
NeilBrownf6705572006-03-27 01:18:11 -08007178 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08007179 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10007180 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007181 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08007182 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007183 conf->prev_chunk_sectors = conf->chunk_sectors;
7184 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11007185 conf->prev_algo = conf->algorithm;
7186 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10007187 conf->generation++;
7188 /* Code that selects data_offset needs to see the generation update
7189 * if reshape_progress has been set - so a memory barrier needed.
7190 */
7191 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10007192 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11007193 conf->reshape_progress = raid5_size(mddev, 0, 0);
7194 else
7195 conf->reshape_progress = 0;
7196 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10007197 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007198 spin_unlock_irq(&conf->device_lock);
7199
NeilBrown4d77e3b2013-08-27 15:57:47 +10007200 /* Now make sure any requests that proceeded on the assumption
7201 * the reshape wasn't running - like Discard or Read - have
7202 * completed.
7203 */
7204 mddev_suspend(mddev);
7205 mddev_resume(mddev);
7206
NeilBrown29269552006-03-27 01:18:10 -08007207 /* Add some new drives, as many as will fit.
7208 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10007209 * Don't add devices if we are reducing the number of
7210 * devices in the array. This is because it is not possible
7211 * to correctly record the "partially reconstructed" state of
7212 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08007213 */
NeilBrown87a8dec2011-01-31 11:57:43 +11007214 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11007215 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11007216 if (rdev->raid_disk < 0 &&
7217 !test_bit(Faulty, &rdev->flags)) {
7218 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11007219 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11007220 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11007221 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11007222 else
NeilBrown87a8dec2011-01-31 11:57:43 +11007223 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10007224
7225 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11007226 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11007227 }
NeilBrown87a8dec2011-01-31 11:57:43 +11007228 } else if (rdev->raid_disk >= conf->previous_raid_disks
7229 && !test_bit(Faulty, &rdev->flags)) {
7230 /* This is a spare that was manually added */
7231 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11007232 }
NeilBrown29269552006-03-27 01:18:10 -08007233
NeilBrown87a8dec2011-01-31 11:57:43 +11007234 /* When a reshape changes the number of devices,
7235 * ->degraded is measured against the larger of the
7236 * pre and post number of devices.
7237 */
NeilBrownec32a2b2009-03-31 15:17:38 +11007238 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007239 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11007240 spin_unlock_irqrestore(&conf->device_lock, flags);
7241 }
NeilBrown63c70c42006-03-27 01:18:13 -08007242 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10007243 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07007244 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08007245
NeilBrown29269552006-03-27 01:18:10 -08007246 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7247 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
7248 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7249 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7250 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007251 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08007252 if (!mddev->sync_thread) {
7253 mddev->recovery = 0;
7254 spin_lock_irq(&conf->device_lock);
NeilBrownba8805b2013-11-14 15:16:15 +11007255 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007256 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownba8805b2013-11-14 15:16:15 +11007257 mddev->new_chunk_sectors =
7258 conf->chunk_sectors = conf->prev_chunk_sectors;
7259 mddev->new_layout = conf->algorithm = conf->prev_algo;
NeilBrown05616be2012-05-21 09:27:00 +10007260 rdev_for_each(rdev, mddev)
7261 rdev->new_data_offset = rdev->data_offset;
7262 smp_wmb();
NeilBrownba8805b2013-11-14 15:16:15 +11007263 conf->generation --;
NeilBrownfef9c612009-03-31 15:16:46 +11007264 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11007265 mddev->reshape_position = MaxSector;
NeilBrownba8805b2013-11-14 15:16:15 +11007266 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007267 spin_unlock_irq(&conf->device_lock);
7268 return -EAGAIN;
7269 }
NeilBrownc8f517c2009-03-31 15:28:40 +11007270 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08007271 md_wakeup_thread(mddev->sync_thread);
7272 md_new_event(mddev);
7273 return 0;
7274}
NeilBrown29269552006-03-27 01:18:10 -08007275
NeilBrownec32a2b2009-03-31 15:17:38 +11007276/* This is called from the reshape thread and should make any
7277 * changes needed in 'conf'
7278 */
NeilBrownd1688a62011-10-11 16:49:52 +11007279static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08007280{
NeilBrown29269552006-03-27 01:18:10 -08007281
NeilBrownf6705572006-03-27 01:18:11 -08007282 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10007283 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07007284
NeilBrownf6705572006-03-27 01:18:11 -08007285 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11007286 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10007287 rdev_for_each(rdev, conf->mddev)
7288 rdev->data_offset = rdev->new_data_offset;
7289 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11007290 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08007291 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11007292 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07007293
7294 /* read-ahead size must cover two whole stripes, which is
7295 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
7296 */
NeilBrown4a5add42010-06-01 19:37:28 +10007297 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11007298 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007299 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11007300 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07007301 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
7302 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
7303 }
NeilBrown29269552006-03-27 01:18:10 -08007304 }
NeilBrown29269552006-03-27 01:18:10 -08007305}
7306
NeilBrownec32a2b2009-03-31 15:17:38 +11007307/* This is called from the raid5d thread with mddev_lock held.
7308 * It makes config changes to the device.
7309 */
NeilBrownfd01b882011-10-11 16:47:53 +11007310static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11007311{
NeilBrownd1688a62011-10-11 16:49:52 +11007312 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11007313
7314 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
7315
NeilBrownec32a2b2009-03-31 15:17:38 +11007316 if (mddev->delta_disks > 0) {
7317 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7318 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007319 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11007320 } else {
7321 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11007322 spin_lock_irq(&conf->device_lock);
7323 mddev->degraded = calc_degraded(conf);
7324 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11007325 for (d = conf->raid_disks ;
7326 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10007327 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11007328 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10007329 if (rdev)
7330 clear_bit(In_sync, &rdev->flags);
7331 rdev = conf->disks[d].replacement;
7332 if (rdev)
7333 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10007334 }
NeilBrowncea9c222009-03-31 15:15:05 +11007335 }
NeilBrown88ce4932009-03-31 15:24:23 +11007336 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007337 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11007338 mddev->reshape_position = MaxSector;
7339 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10007340 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11007341 }
7342}
7343
NeilBrownfd01b882011-10-11 16:47:53 +11007344static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07007345{
NeilBrownd1688a62011-10-11 16:49:52 +11007346 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07007347
7348 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08007349 case 2: /* resume for a suspend */
7350 wake_up(&conf->wait_for_overlap);
7351 break;
7352
NeilBrown72626682005-09-09 16:23:54 -07007353 case 1: /* stop all writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007354 lock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007355 /* '2' tells resync/reshape to pause so that all
7356 * active stripes can drain
7357 */
7358 conf->quiesce = 2;
Shaohua Li566c09c2013-11-14 15:16:17 +11007359 wait_event_cmd(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08007360 atomic_read(&conf->active_stripes) == 0 &&
7361 atomic_read(&conf->active_aligned_reads) == 0,
Shaohua Li566c09c2013-11-14 15:16:17 +11007362 unlock_all_device_hash_locks_irq(conf),
7363 lock_all_device_hash_locks_irq(conf));
NeilBrown64bd6602009-08-03 10:59:58 +10007364 conf->quiesce = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11007365 unlock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007366 /* allow reshape to continue */
7367 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07007368 break;
7369
7370 case 0: /* re-enable writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007371 lock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007372 conf->quiesce = 0;
7373 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08007374 wake_up(&conf->wait_for_overlap);
Shaohua Li566c09c2013-11-14 15:16:17 +11007375 unlock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007376 break;
7377 }
NeilBrown72626682005-09-09 16:23:54 -07007378}
NeilBrownb15c2e52006-01-06 00:20:16 -08007379
NeilBrownfd01b882011-10-11 16:47:53 +11007380static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11007381{
NeilBrowne373ab12011-10-11 16:48:59 +11007382 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07007383 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11007384
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007385 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11007386 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10007387 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
7388 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007389 return ERR_PTR(-EINVAL);
7390 }
7391
NeilBrowne373ab12011-10-11 16:48:59 +11007392 sectors = raid0_conf->strip_zone[0].zone_end;
7393 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10007394 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007395 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11007396 mddev->new_layout = ALGORITHM_PARITY_N;
7397 mddev->new_chunk_sectors = mddev->chunk_sectors;
7398 mddev->raid_disks += 1;
7399 mddev->delta_disks = 1;
7400 /* make sure it will be not marked as dirty */
7401 mddev->recovery_cp = MaxSector;
7402
7403 return setup_conf(mddev);
7404}
7405
NeilBrownfd01b882011-10-11 16:47:53 +11007406static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007407{
7408 int chunksect;
7409
7410 if (mddev->raid_disks != 2 ||
7411 mddev->degraded > 1)
7412 return ERR_PTR(-EINVAL);
7413
7414 /* Should check if there are write-behind devices? */
7415
7416 chunksect = 64*2; /* 64K by default */
7417
7418 /* The array must be an exact multiple of chunksize */
7419 while (chunksect && (mddev->array_sectors & (chunksect-1)))
7420 chunksect >>= 1;
7421
7422 if ((chunksect<<9) < STRIPE_SIZE)
7423 /* array size does not allow a suitable chunk size */
7424 return ERR_PTR(-EINVAL);
7425
7426 mddev->new_level = 5;
7427 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10007428 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11007429
7430 return setup_conf(mddev);
7431}
7432
NeilBrownfd01b882011-10-11 16:47:53 +11007433static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11007434{
7435 int new_layout;
7436
7437 switch (mddev->layout) {
7438 case ALGORITHM_LEFT_ASYMMETRIC_6:
7439 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
7440 break;
7441 case ALGORITHM_RIGHT_ASYMMETRIC_6:
7442 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
7443 break;
7444 case ALGORITHM_LEFT_SYMMETRIC_6:
7445 new_layout = ALGORITHM_LEFT_SYMMETRIC;
7446 break;
7447 case ALGORITHM_RIGHT_SYMMETRIC_6:
7448 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
7449 break;
7450 case ALGORITHM_PARITY_0_6:
7451 new_layout = ALGORITHM_PARITY_0;
7452 break;
7453 case ALGORITHM_PARITY_N:
7454 new_layout = ALGORITHM_PARITY_N;
7455 break;
7456 default:
7457 return ERR_PTR(-EINVAL);
7458 }
7459 mddev->new_level = 5;
7460 mddev->new_layout = new_layout;
7461 mddev->delta_disks = -1;
7462 mddev->raid_disks -= 1;
7463 return setup_conf(mddev);
7464}
7465
NeilBrownfd01b882011-10-11 16:47:53 +11007466static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11007467{
NeilBrown88ce4932009-03-31 15:24:23 +11007468 /* For a 2-drive array, the layout and chunk size can be changed
7469 * immediately as not restriping is needed.
7470 * For larger arrays we record the new value - after validation
7471 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11007472 */
NeilBrownd1688a62011-10-11 16:49:52 +11007473 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10007474 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11007475
NeilBrown597a7112009-06-18 08:47:42 +10007476 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11007477 return -EINVAL;
7478 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007479 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11007480 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007481 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11007482 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007483 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11007484 /* not factor of array size */
7485 return -EINVAL;
7486 }
7487
7488 /* They look valid */
7489
NeilBrown88ce4932009-03-31 15:24:23 +11007490 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10007491 /* can make the change immediately */
7492 if (mddev->new_layout >= 0) {
7493 conf->algorithm = mddev->new_layout;
7494 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11007495 }
7496 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10007497 conf->chunk_sectors = new_chunk ;
7498 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11007499 }
7500 set_bit(MD_CHANGE_DEVS, &mddev->flags);
7501 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11007502 }
NeilBrown50ac1682009-06-18 08:47:55 +10007503 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11007504}
7505
NeilBrownfd01b882011-10-11 16:47:53 +11007506static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11007507{
NeilBrown597a7112009-06-18 08:47:42 +10007508 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10007509
NeilBrown597a7112009-06-18 08:47:42 +10007510 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11007511 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007512 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007513 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11007514 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007515 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11007516 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007517 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11007518 /* not factor of array size */
7519 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007520 }
NeilBrown88ce4932009-03-31 15:24:23 +11007521
7522 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10007523 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11007524}
7525
NeilBrownfd01b882011-10-11 16:47:53 +11007526static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007527{
7528 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007529 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007530 * raid1 - if there are two drives. We need to know the chunk size
7531 * raid4 - trivial - just use a raid4 layout.
7532 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007533 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007534 if (mddev->level == 0)
7535 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11007536 if (mddev->level == 1)
7537 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11007538 if (mddev->level == 4) {
7539 mddev->new_layout = ALGORITHM_PARITY_N;
7540 mddev->new_level = 5;
7541 return setup_conf(mddev);
7542 }
NeilBrownfc9739c2009-03-31 14:57:20 +11007543 if (mddev->level == 6)
7544 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11007545
7546 return ERR_PTR(-EINVAL);
7547}
7548
NeilBrownfd01b882011-10-11 16:47:53 +11007549static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11007550{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007551 /* raid4 can take over:
7552 * raid0 - if there is only one strip zone
7553 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11007554 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007555 if (mddev->level == 0)
7556 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11007557 if (mddev->level == 5 &&
7558 mddev->layout == ALGORITHM_PARITY_N) {
7559 mddev->new_layout = 0;
7560 mddev->new_level = 4;
7561 return setup_conf(mddev);
7562 }
7563 return ERR_PTR(-EINVAL);
7564}
NeilBrownd562b0c2009-03-31 14:39:39 +11007565
NeilBrown84fc4b52011-10-11 16:49:58 +11007566static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11007567
NeilBrownfd01b882011-10-11 16:47:53 +11007568static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11007569{
7570 /* Currently can only take over a raid5. We map the
7571 * personality to an equivalent raid6 personality
7572 * with the Q block at the end.
7573 */
7574 int new_layout;
7575
7576 if (mddev->pers != &raid5_personality)
7577 return ERR_PTR(-EINVAL);
7578 if (mddev->degraded > 1)
7579 return ERR_PTR(-EINVAL);
7580 if (mddev->raid_disks > 253)
7581 return ERR_PTR(-EINVAL);
7582 if (mddev->raid_disks < 3)
7583 return ERR_PTR(-EINVAL);
7584
7585 switch (mddev->layout) {
7586 case ALGORITHM_LEFT_ASYMMETRIC:
7587 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
7588 break;
7589 case ALGORITHM_RIGHT_ASYMMETRIC:
7590 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
7591 break;
7592 case ALGORITHM_LEFT_SYMMETRIC:
7593 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
7594 break;
7595 case ALGORITHM_RIGHT_SYMMETRIC:
7596 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
7597 break;
7598 case ALGORITHM_PARITY_0:
7599 new_layout = ALGORITHM_PARITY_0_6;
7600 break;
7601 case ALGORITHM_PARITY_N:
7602 new_layout = ALGORITHM_PARITY_N;
7603 break;
7604 default:
7605 return ERR_PTR(-EINVAL);
7606 }
7607 mddev->new_level = 6;
7608 mddev->new_layout = new_layout;
7609 mddev->delta_disks = 1;
7610 mddev->raid_disks += 1;
7611 return setup_conf(mddev);
7612}
7613
NeilBrown84fc4b52011-10-11 16:49:58 +11007614static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07007615{
7616 .name = "raid6",
7617 .level = 6,
7618 .owner = THIS_MODULE,
7619 .make_request = make_request,
7620 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007621 .free = raid5_free,
NeilBrown16a53ec2006-06-26 00:27:38 -07007622 .status = status,
7623 .error_handler = error,
7624 .hot_add_disk = raid5_add_disk,
7625 .hot_remove_disk= raid5_remove_disk,
7626 .spare_active = raid5_spare_active,
7627 .sync_request = sync_request,
7628 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007629 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10007630 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08007631 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007632 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07007633 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11007634 .takeover = raid6_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007635 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007636 .mergeable_bvec = raid5_mergeable_bvec,
NeilBrown16a53ec2006-06-26 00:27:38 -07007637};
NeilBrown84fc4b52011-10-11 16:49:58 +11007638static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639{
7640 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08007641 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642 .owner = THIS_MODULE,
7643 .make_request = make_request,
7644 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007645 .free = raid5_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646 .status = status,
7647 .error_handler = error,
7648 .hot_add_disk = raid5_add_disk,
7649 .hot_remove_disk= raid5_remove_disk,
7650 .spare_active = raid5_spare_active,
7651 .sync_request = sync_request,
7652 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007653 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08007654 .check_reshape = raid5_check_reshape,
7655 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007656 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07007657 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11007658 .takeover = raid5_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007659 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007660 .mergeable_bvec = raid5_mergeable_bvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007661};
7662
NeilBrown84fc4b52011-10-11 16:49:58 +11007663static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664{
NeilBrown2604b702006-01-06 00:20:36 -08007665 .name = "raid4",
7666 .level = 4,
7667 .owner = THIS_MODULE,
7668 .make_request = make_request,
7669 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007670 .free = raid5_free,
NeilBrown2604b702006-01-06 00:20:36 -08007671 .status = status,
7672 .error_handler = error,
7673 .hot_add_disk = raid5_add_disk,
7674 .hot_remove_disk= raid5_remove_disk,
7675 .spare_active = raid5_spare_active,
7676 .sync_request = sync_request,
7677 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007678 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08007679 .check_reshape = raid5_check_reshape,
7680 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007681 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08007682 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11007683 .takeover = raid4_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007684 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007685 .mergeable_bvec = raid5_mergeable_bvec,
NeilBrown2604b702006-01-06 00:20:36 -08007686};
7687
7688static int __init raid5_init(void)
7689{
Shaohua Li851c30c2013-08-28 14:30:16 +08007690 raid5_wq = alloc_workqueue("raid5wq",
7691 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
7692 if (!raid5_wq)
7693 return -ENOMEM;
NeilBrown16a53ec2006-06-26 00:27:38 -07007694 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08007695 register_md_personality(&raid5_personality);
7696 register_md_personality(&raid4_personality);
7697 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698}
7699
NeilBrown2604b702006-01-06 00:20:36 -08007700static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701{
NeilBrown16a53ec2006-06-26 00:27:38 -07007702 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08007703 unregister_md_personality(&raid5_personality);
7704 unregister_md_personality(&raid4_personality);
Shaohua Li851c30c2013-08-28 14:30:16 +08007705 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706}
7707
7708module_init(raid5_init);
7709module_exit(raid5_exit);
7710MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11007711MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007712MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08007713MODULE_ALIAS("md-raid5");
7714MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08007715MODULE_ALIAS("md-level-5");
7716MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07007717MODULE_ALIAS("md-personality-8"); /* RAID6 */
7718MODULE_ALIAS("md-raid6");
7719MODULE_ALIAS("md-level-6");
7720
7721/* This used to be two separate modules, they were: */
7722MODULE_ALIAS("raid5");
7723MODULE_ALIAS("raid6");