blob: 3873eaa6fa2e9efe7dede0a5ec2cc6cd43d26a3f [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) {
NeilBrownedbe83a2015-02-26 12:47:56 +1100675 if (!test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100676 sh = get_free_stripe(conf, hash);
NeilBrownedbe83a2015-02-26 12:47:56 +1100677 if (!sh && llist_empty(&conf->released_stripes) &&
678 !test_bit(R5_DID_ALLOC, &conf->cache_state))
679 set_bit(R5_ALLOC_MORE,
680 &conf->cache_state);
681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (noblock && sh == NULL)
683 break;
684 if (!sh) {
NeilBrown54233992015-02-26 12:21:04 +1100685 set_bit(R5_INACTIVE_BLOCKED,
686 &conf->cache_state);
Shaohua Li566c09c2013-11-14 15:16:17 +1100687 wait_event_lock_irq(
688 conf->wait_for_stripe,
689 !list_empty(conf->inactive_list + hash) &&
690 (atomic_read(&conf->active_stripes)
691 < (conf->max_nr_stripes * 3 / 4)
NeilBrown54233992015-02-26 12:21:04 +1100692 || !test_bit(R5_INACTIVE_BLOCKED,
693 &conf->cache_state)),
Shaohua Li566c09c2013-11-14 15:16:17 +1100694 *(conf->hash_locks + hash));
NeilBrown54233992015-02-26 12:21:04 +1100695 clear_bit(R5_INACTIVE_BLOCKED,
696 &conf->cache_state);
NeilBrown7da9d452014-01-22 11:45:03 +1100697 } else {
NeilBrownb5663ba2009-03-31 14:39:38 +1100698 init_stripe(sh, sector, previous);
NeilBrown7da9d452014-01-22 11:45:03 +1100699 atomic_inc(&sh->count);
700 }
Shaohua Lie240c182014-04-09 11:27:42 +0800701 } else if (!atomic_inc_not_zero(&sh->count)) {
NeilBrown6d183de2013-11-28 10:55:27 +1100702 spin_lock(&conf->device_lock);
Shaohua Lie240c182014-04-09 11:27:42 +0800703 if (!atomic_read(&sh->count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (!test_bit(STRIPE_HANDLE, &sh->state))
705 atomic_inc(&conf->active_stripes);
NeilBrown5af9bef2014-01-14 15:16:10 +1100706 BUG_ON(list_empty(&sh->lru) &&
707 !test_bit(STRIPE_EXPANDING, &sh->state));
NeilBrown16a53ec2006-06-26 00:27:38 -0700708 list_del_init(&sh->lru);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800709 if (sh->group) {
710 sh->group->stripes_cnt--;
711 sh->group = NULL;
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
NeilBrown7da9d452014-01-22 11:45:03 +1100714 atomic_inc(&sh->count);
NeilBrown6d183de2013-11-28 10:55:27 +1100715 spin_unlock(&conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717 } while (sh == NULL);
718
Shaohua Li566c09c2013-11-14 15:16:17 +1100719 spin_unlock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return sh;
721}
722
shli@kernel.org7a87f432014-12-15 12:57:03 +1100723static bool is_full_stripe_write(struct stripe_head *sh)
724{
725 BUG_ON(sh->overwrite_disks > (sh->disks - sh->raid_conf->max_degraded));
726 return sh->overwrite_disks == (sh->disks - sh->raid_conf->max_degraded);
727}
728
shli@kernel.org59fc6302014-12-15 12:57:03 +1100729static void lock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
730{
731 local_irq_disable();
732 if (sh1 > sh2) {
733 spin_lock(&sh2->stripe_lock);
734 spin_lock_nested(&sh1->stripe_lock, 1);
735 } else {
736 spin_lock(&sh1->stripe_lock);
737 spin_lock_nested(&sh2->stripe_lock, 1);
738 }
739}
740
741static void unlock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
742{
743 spin_unlock(&sh1->stripe_lock);
744 spin_unlock(&sh2->stripe_lock);
745 local_irq_enable();
746}
747
748/* Only freshly new full stripe normal write stripe can be added to a batch list */
749static bool stripe_can_batch(struct stripe_head *sh)
750{
751 return test_bit(STRIPE_BATCH_READY, &sh->state) &&
752 is_full_stripe_write(sh);
753}
754
755/* we only do back search */
756static void stripe_add_to_batch_list(struct r5conf *conf, struct stripe_head *sh)
757{
758 struct stripe_head *head;
759 sector_t head_sector, tmp_sec;
760 int hash;
761 int dd_idx;
762
763 if (!stripe_can_batch(sh))
764 return;
765 /* Don't cross chunks, so stripe pd_idx/qd_idx is the same */
766 tmp_sec = sh->sector;
767 if (!sector_div(tmp_sec, conf->chunk_sectors))
768 return;
769 head_sector = sh->sector - STRIPE_SECTORS;
770
771 hash = stripe_hash_locks_hash(head_sector);
772 spin_lock_irq(conf->hash_locks + hash);
773 head = __find_stripe(conf, head_sector, conf->generation);
774 if (head && !atomic_inc_not_zero(&head->count)) {
775 spin_lock(&conf->device_lock);
776 if (!atomic_read(&head->count)) {
777 if (!test_bit(STRIPE_HANDLE, &head->state))
778 atomic_inc(&conf->active_stripes);
779 BUG_ON(list_empty(&head->lru) &&
780 !test_bit(STRIPE_EXPANDING, &head->state));
781 list_del_init(&head->lru);
782 if (head->group) {
783 head->group->stripes_cnt--;
784 head->group = NULL;
785 }
786 }
787 atomic_inc(&head->count);
788 spin_unlock(&conf->device_lock);
789 }
790 spin_unlock_irq(conf->hash_locks + hash);
791
792 if (!head)
793 return;
794 if (!stripe_can_batch(head))
795 goto out;
796
797 lock_two_stripes(head, sh);
798 /* clear_batch_ready clear the flag */
799 if (!stripe_can_batch(head) || !stripe_can_batch(sh))
800 goto unlock_out;
801
802 if (sh->batch_head)
803 goto unlock_out;
804
805 dd_idx = 0;
806 while (dd_idx == sh->pd_idx || dd_idx == sh->qd_idx)
807 dd_idx++;
808 if (head->dev[dd_idx].towrite->bi_rw != sh->dev[dd_idx].towrite->bi_rw)
809 goto unlock_out;
810
811 if (head->batch_head) {
812 spin_lock(&head->batch_head->batch_lock);
813 /* This batch list is already running */
814 if (!stripe_can_batch(head)) {
815 spin_unlock(&head->batch_head->batch_lock);
816 goto unlock_out;
817 }
818
819 /*
820 * at this point, head's BATCH_READY could be cleared, but we
821 * can still add the stripe to batch list
822 */
823 list_add(&sh->batch_list, &head->batch_list);
824 spin_unlock(&head->batch_head->batch_lock);
825
826 sh->batch_head = head->batch_head;
827 } else {
828 head->batch_head = head;
829 sh->batch_head = head->batch_head;
830 spin_lock(&head->batch_lock);
831 list_add_tail(&sh->batch_list, &head->batch_list);
832 spin_unlock(&head->batch_lock);
833 }
834
835 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
836 if (atomic_dec_return(&conf->preread_active_stripes)
837 < IO_THRESHOLD)
838 md_wakeup_thread(conf->mddev->thread);
839
840 atomic_inc(&sh->count);
841unlock_out:
842 unlock_two_stripes(head, sh);
843out:
844 release_stripe(head);
845}
846
NeilBrown05616be2012-05-21 09:27:00 +1000847/* Determine if 'data_offset' or 'new_data_offset' should be used
848 * in this stripe_head.
849 */
850static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
851{
852 sector_t progress = conf->reshape_progress;
853 /* Need a memory barrier to make sure we see the value
854 * of conf->generation, or ->data_offset that was set before
855 * reshape_progress was updated.
856 */
857 smp_rmb();
858 if (progress == MaxSector)
859 return 0;
860 if (sh->generation == conf->generation - 1)
861 return 0;
862 /* We are in a reshape, and this is a new-generation stripe,
863 * so use new_data_offset.
864 */
865 return 1;
866}
867
NeilBrown6712ecf2007-09-27 12:47:43 +0200868static void
869raid5_end_read_request(struct bio *bi, int error);
870static void
871raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700872
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000873static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700874{
NeilBrownd1688a62011-10-11 16:49:52 +1100875 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -0700876 int i, disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100877 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -0700878
879 might_sleep();
880
881 for (i = disks; i--; ) {
882 int rw;
NeilBrown9a3e1102011-12-23 10:17:53 +1100883 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +1100884 struct bio *bi, *rbi;
885 struct md_rdev *rdev, *rrdev = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100886
887 sh = head_sh;
Tejun Heoe9c74692010-09-03 11:56:18 +0200888 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
889 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
890 rw = WRITE_FUA;
891 else
892 rw = WRITE;
Shaohua Li9e4447682012-10-11 13:49:49 +1100893 if (test_bit(R5_Discard, &sh->dev[i].flags))
Shaohua Li620125f2012-10-11 13:49:05 +1100894 rw |= REQ_DISCARD;
Tejun Heoe9c74692010-09-03 11:56:18 +0200895 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -0700896 rw = READ;
NeilBrown9a3e1102011-12-23 10:17:53 +1100897 else if (test_and_clear_bit(R5_WantReplace,
898 &sh->dev[i].flags)) {
899 rw = WRITE;
900 replace_only = 1;
901 } else
Dan Williams91c00922007-01-02 13:52:30 -0700902 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +1000903 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
904 rw |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -0700905
shli@kernel.org59fc6302014-12-15 12:57:03 +1100906again:
Dan Williams91c00922007-01-02 13:52:30 -0700907 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +1100908 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -0700909
Dan Williams91c00922007-01-02 13:52:30 -0700910 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +1100911 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +1100912 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
913 rdev = rcu_dereference(conf->disks[i].rdev);
914 if (!rdev) {
915 rdev = rrdev;
916 rrdev = NULL;
917 }
NeilBrown9a3e1102011-12-23 10:17:53 +1100918 if (rw & WRITE) {
919 if (replace_only)
920 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +1100921 if (rdev == rrdev)
922 /* We raced and saw duplicates */
923 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +1100924 } else {
shli@kernel.org59fc6302014-12-15 12:57:03 +1100925 if (test_bit(R5_ReadRepl, &head_sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +1100926 rdev = rrdev;
927 rrdev = NULL;
928 }
NeilBrown977df362011-12-23 10:17:53 +1100929
Dan Williams91c00922007-01-02 13:52:30 -0700930 if (rdev && test_bit(Faulty, &rdev->flags))
931 rdev = NULL;
932 if (rdev)
933 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +1100934 if (rrdev && test_bit(Faulty, &rrdev->flags))
935 rrdev = NULL;
936 if (rrdev)
937 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -0700938 rcu_read_unlock();
939
NeilBrown73e92e52011-07-28 11:39:22 +1000940 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +1100941 * need to check for writes. We never accept write errors
942 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +1000943 */
944 while ((rw & WRITE) && rdev &&
945 test_bit(WriteErrorSeen, &rdev->flags)) {
946 sector_t first_bad;
947 int bad_sectors;
948 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
949 &first_bad, &bad_sectors);
950 if (!bad)
951 break;
952
953 if (bad < 0) {
954 set_bit(BlockedBadBlocks, &rdev->flags);
955 if (!conf->mddev->external &&
956 conf->mddev->flags) {
957 /* It is very unlikely, but we might
958 * still need to write out the
959 * bad block log - better give it
960 * a chance*/
961 md_check_recovery(conf->mddev);
962 }
majianpeng18507532012-07-03 12:11:54 +1000963 /*
964 * Because md_wait_for_blocked_rdev
965 * will dec nr_pending, we must
966 * increment it first.
967 */
968 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +1000969 md_wait_for_blocked_rdev(rdev, conf->mddev);
970 } else {
971 /* Acknowledged bad block - skip the write */
972 rdev_dec_pending(rdev, conf->mddev);
973 rdev = NULL;
974 }
975 }
976
Dan Williams91c00922007-01-02 13:52:30 -0700977 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100978 if (s->syncing || s->expanding || s->expanded
979 || s->replacing)
Dan Williams91c00922007-01-02 13:52:30 -0700980 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
981
Dan Williams2b7497f2008-06-28 08:31:52 +1000982 set_bit(STRIPE_IO_STARTED, &sh->state);
983
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700984 bio_reset(bi);
Dan Williams91c00922007-01-02 13:52:30 -0700985 bi->bi_bdev = rdev->bdev;
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700986 bi->bi_rw = rw;
987 bi->bi_end_io = (rw & WRITE)
988 ? raid5_end_write_request
989 : raid5_end_read_request;
990 bi->bi_private = sh;
991
Dan Williams91c00922007-01-02 13:52:30 -0700992 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700993 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700994 bi->bi_rw, i);
995 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100996 if (sh != head_sh)
997 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +1000998 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700999 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001000 + rdev->new_data_offset);
1001 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001002 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001003 + rdev->data_offset);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001004 if (test_bit(R5_ReadNoMerge, &head_sh->dev[i].flags))
majianpenge59aa232013-11-14 15:16:19 +11001005 bi->bi_rw |= REQ_NOMERGE;
majianpeng3f9e7c12012-07-31 10:04:21 +10001006
Shaohua Lid592a992014-05-21 17:57:44 +08001007 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1008 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1009 sh->dev[i].vec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001010 bi->bi_vcnt = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001011 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1012 bi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001013 bi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001014 /*
1015 * If this is discard request, set bi_vcnt 0. We don't
1016 * want to confuse SCSI because SCSI will replace payload
1017 */
1018 if (rw & REQ_DISCARD)
1019 bi->bi_vcnt = 0;
NeilBrown977df362011-12-23 10:17:53 +11001020 if (rrdev)
1021 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001022
1023 if (conf->mddev->gendisk)
1024 trace_block_bio_remap(bdev_get_queue(bi->bi_bdev),
1025 bi, disk_devt(conf->mddev->gendisk),
1026 sh->dev[i].sector);
Dan Williams91c00922007-01-02 13:52:30 -07001027 generic_make_request(bi);
NeilBrown977df362011-12-23 10:17:53 +11001028 }
1029 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001030 if (s->syncing || s->expanding || s->expanded
1031 || s->replacing)
NeilBrown977df362011-12-23 10:17:53 +11001032 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
1033
1034 set_bit(STRIPE_IO_STARTED, &sh->state);
1035
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001036 bio_reset(rbi);
NeilBrown977df362011-12-23 10:17:53 +11001037 rbi->bi_bdev = rrdev->bdev;
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001038 rbi->bi_rw = rw;
1039 BUG_ON(!(rw & WRITE));
1040 rbi->bi_end_io = raid5_end_write_request;
1041 rbi->bi_private = sh;
1042
NeilBrown977df362011-12-23 10:17:53 +11001043 pr_debug("%s: for %llu schedule op %ld on "
1044 "replacement disc %d\n",
1045 __func__, (unsigned long long)sh->sector,
1046 rbi->bi_rw, i);
1047 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001048 if (sh != head_sh)
1049 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001050 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001051 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001052 + rrdev->new_data_offset);
1053 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001054 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001055 + rrdev->data_offset);
Shaohua Lid592a992014-05-21 17:57:44 +08001056 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1057 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1058 sh->dev[i].rvec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001059 rbi->bi_vcnt = 1;
NeilBrown977df362011-12-23 10:17:53 +11001060 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1061 rbi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001062 rbi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001063 /*
1064 * If this is discard request, set bi_vcnt 0. We don't
1065 * want to confuse SCSI because SCSI will replace payload
1066 */
1067 if (rw & REQ_DISCARD)
1068 rbi->bi_vcnt = 0;
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001069 if (conf->mddev->gendisk)
1070 trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev),
1071 rbi, disk_devt(conf->mddev->gendisk),
1072 sh->dev[i].sector);
NeilBrown977df362011-12-23 10:17:53 +11001073 generic_make_request(rbi);
1074 }
1075 if (!rdev && !rrdev) {
Namhyung Kimb0629622011-06-14 14:20:19 +10001076 if (rw & WRITE)
Dan Williams91c00922007-01-02 13:52:30 -07001077 set_bit(STRIPE_DEGRADED, &sh->state);
1078 pr_debug("skip op %ld on disc %d for sector %llu\n",
1079 bi->bi_rw, i, (unsigned long long)sh->sector);
1080 clear_bit(R5_LOCKED, &sh->dev[i].flags);
shli@kernel.org72ac7332014-12-15 12:57:03 +11001081 if (sh->batch_head)
1082 set_bit(STRIPE_BATCH_ERR,
1083 &sh->batch_head->state);
Dan Williams91c00922007-01-02 13:52:30 -07001084 set_bit(STRIPE_HANDLE, &sh->state);
1085 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001086
1087 if (!head_sh->batch_head)
1088 continue;
1089 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1090 batch_list);
1091 if (sh != head_sh)
1092 goto again;
Dan Williams91c00922007-01-02 13:52:30 -07001093 }
1094}
1095
1096static struct dma_async_tx_descriptor *
Shaohua Lid592a992014-05-21 17:57:44 +08001097async_copy_data(int frombio, struct bio *bio, struct page **page,
1098 sector_t sector, struct dma_async_tx_descriptor *tx,
1099 struct stripe_head *sh)
Dan Williams91c00922007-01-02 13:52:30 -07001100{
Kent Overstreet79886132013-11-23 17:19:00 -08001101 struct bio_vec bvl;
1102 struct bvec_iter iter;
Dan Williams91c00922007-01-02 13:52:30 -07001103 struct page *bio_page;
Dan Williams91c00922007-01-02 13:52:30 -07001104 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -07001105 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -07001106 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001107
Kent Overstreet4f024f32013-10-11 15:44:27 -07001108 if (bio->bi_iter.bi_sector >= sector)
1109 page_offset = (signed)(bio->bi_iter.bi_sector - sector) * 512;
Dan Williams91c00922007-01-02 13:52:30 -07001110 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001111 page_offset = (signed)(sector - bio->bi_iter.bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -07001112
Dan Williams0403e382009-09-08 17:42:50 -07001113 if (frombio)
1114 flags |= ASYNC_TX_FENCE;
1115 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
1116
Kent Overstreet79886132013-11-23 17:19:00 -08001117 bio_for_each_segment(bvl, bio, iter) {
1118 int len = bvl.bv_len;
Dan Williams91c00922007-01-02 13:52:30 -07001119 int clen;
1120 int b_offset = 0;
1121
1122 if (page_offset < 0) {
1123 b_offset = -page_offset;
1124 page_offset += b_offset;
1125 len -= b_offset;
1126 }
1127
1128 if (len > 0 && page_offset + len > STRIPE_SIZE)
1129 clen = STRIPE_SIZE - page_offset;
1130 else
1131 clen = len;
1132
1133 if (clen > 0) {
Kent Overstreet79886132013-11-23 17:19:00 -08001134 b_offset += bvl.bv_offset;
1135 bio_page = bvl.bv_page;
Shaohua Lid592a992014-05-21 17:57:44 +08001136 if (frombio) {
1137 if (sh->raid_conf->skip_copy &&
1138 b_offset == 0 && page_offset == 0 &&
1139 clen == STRIPE_SIZE)
1140 *page = bio_page;
1141 else
1142 tx = async_memcpy(*page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001143 b_offset, clen, &submit);
Shaohua Lid592a992014-05-21 17:57:44 +08001144 } else
1145 tx = async_memcpy(bio_page, *page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001146 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001147 }
Dan Williamsa08abd82009-06-03 11:43:59 -07001148 /* chain the operations */
1149 submit.depend_tx = tx;
1150
Dan Williams91c00922007-01-02 13:52:30 -07001151 if (clen < len) /* hit end of page */
1152 break;
1153 page_offset += len;
1154 }
1155
1156 return tx;
1157}
1158
1159static void ops_complete_biofill(void *stripe_head_ref)
1160{
1161 struct stripe_head *sh = stripe_head_ref;
1162 struct bio *return_bi = NULL;
Dan Williamse4d84902007-09-24 10:06:13 -07001163 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001164
Harvey Harrisone46b2722008-04-28 02:15:50 -07001165 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001166 (unsigned long long)sh->sector);
1167
1168 /* clear completed biofills */
1169 for (i = sh->disks; i--; ) {
1170 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -07001171
1172 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -07001173 /* and check if we need to reply to a read request,
1174 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +10001175 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -07001176 */
1177 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001178 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -07001179
Dan Williams91c00922007-01-02 13:52:30 -07001180 BUG_ON(!dev->read);
1181 rbi = dev->read;
1182 dev->read = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001183 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001184 dev->sector + STRIPE_SECTORS) {
1185 rbi2 = r5_next_bio(rbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10001186 if (!raid5_dec_bi_active_stripes(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -07001187 rbi->bi_next = return_bi;
1188 return_bi = rbi;
1189 }
Dan Williams91c00922007-01-02 13:52:30 -07001190 rbi = rbi2;
1191 }
1192 }
1193 }
Dan Williams83de75c2008-06-28 08:31:58 +10001194 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001195
1196 return_io(return_bi);
1197
Dan Williamse4d84902007-09-24 10:06:13 -07001198 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001199 release_stripe(sh);
1200}
1201
1202static void ops_run_biofill(struct stripe_head *sh)
1203{
1204 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -07001205 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001206 int i;
1207
shli@kernel.org59fc6302014-12-15 12:57:03 +11001208 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001209 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001210 (unsigned long long)sh->sector);
1211
1212 for (i = sh->disks; i--; ) {
1213 struct r5dev *dev = &sh->dev[i];
1214 if (test_bit(R5_Wantfill, &dev->flags)) {
1215 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +10001216 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001217 dev->read = rbi = dev->toread;
1218 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10001219 spin_unlock_irq(&sh->stripe_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001220 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001221 dev->sector + STRIPE_SECTORS) {
Shaohua Lid592a992014-05-21 17:57:44 +08001222 tx = async_copy_data(0, rbi, &dev->page,
1223 dev->sector, tx, sh);
Dan Williams91c00922007-01-02 13:52:30 -07001224 rbi = r5_next_bio(rbi, dev->sector);
1225 }
1226 }
1227 }
1228
1229 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001230 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
1231 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001232}
1233
Dan Williams4e7d2c02009-08-29 19:13:11 -07001234static void mark_target_uptodate(struct stripe_head *sh, int target)
1235{
1236 struct r5dev *tgt;
1237
1238 if (target < 0)
1239 return;
1240
1241 tgt = &sh->dev[target];
1242 set_bit(R5_UPTODATE, &tgt->flags);
1243 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1244 clear_bit(R5_Wantcompute, &tgt->flags);
1245}
1246
Dan Williamsac6b53b2009-07-14 13:40:19 -07001247static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001248{
1249 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001250
Harvey Harrisone46b2722008-04-28 02:15:50 -07001251 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001252 (unsigned long long)sh->sector);
1253
Dan Williamsac6b53b2009-07-14 13:40:19 -07001254 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -07001255 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001256 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -07001257
Dan Williamsecc65c92008-06-28 08:31:57 +10001258 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
1259 if (sh->check_state == check_state_compute_run)
1260 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -07001261 set_bit(STRIPE_HANDLE, &sh->state);
1262 release_stripe(sh);
1263}
1264
Dan Williamsd6f38f32009-07-14 11:50:52 -07001265/* return a pointer to the address conversion region of the scribble buffer */
1266static addr_conv_t *to_addr_conv(struct stripe_head *sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001267 struct raid5_percpu *percpu, int i)
Dan Williams91c00922007-01-02 13:52:30 -07001268{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001269 void *addr;
1270
1271 addr = flex_array_get(percpu->scribble, i);
1272 return addr + sizeof(struct page *) * (sh->disks + 2);
1273}
1274
1275/* return a pointer to the address conversion region of the scribble buffer */
1276static struct page **to_addr_page(struct raid5_percpu *percpu, int i)
1277{
1278 void *addr;
1279
1280 addr = flex_array_get(percpu->scribble, i);
1281 return addr;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001282}
1283
1284static struct dma_async_tx_descriptor *
1285ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
1286{
Dan Williams91c00922007-01-02 13:52:30 -07001287 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001288 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001289 int target = sh->ops.target;
1290 struct r5dev *tgt = &sh->dev[target];
1291 struct page *xor_dest = tgt->page;
1292 int count = 0;
1293 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001294 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001295 int i;
1296
shli@kernel.org59fc6302014-12-15 12:57:03 +11001297 BUG_ON(sh->batch_head);
1298
Dan Williams91c00922007-01-02 13:52:30 -07001299 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001300 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -07001301 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1302
1303 for (i = disks; i--; )
1304 if (i != target)
1305 xor_srcs[count++] = sh->dev[i].page;
1306
1307 atomic_inc(&sh->count);
1308
Dan Williams0403e382009-09-08 17:42:50 -07001309 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001310 ops_complete_compute, sh, to_addr_conv(sh, percpu, 0));
Dan Williams91c00922007-01-02 13:52:30 -07001311 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -07001312 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001313 else
Dan Williamsa08abd82009-06-03 11:43:59 -07001314 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001315
Dan Williams91c00922007-01-02 13:52:30 -07001316 return tx;
1317}
1318
Dan Williamsac6b53b2009-07-14 13:40:19 -07001319/* set_syndrome_sources - populate source buffers for gen_syndrome
1320 * @srcs - (struct page *) array of size sh->disks
1321 * @sh - stripe_head to parse
1322 *
1323 * Populates srcs in proper layout order for the stripe and returns the
1324 * 'count' of sources to be used in a call to async_gen_syndrome. The P
1325 * destination buffer is recorded in srcs[count] and the Q destination
1326 * is recorded in srcs[count+1]].
1327 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001328static int set_syndrome_sources(struct page **srcs,
1329 struct stripe_head *sh,
1330 int srctype)
Dan Williamsac6b53b2009-07-14 13:40:19 -07001331{
1332 int disks = sh->disks;
1333 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1334 int d0_idx = raid6_d0(sh);
1335 int count;
1336 int i;
1337
1338 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001339 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001340
1341 count = 0;
1342 i = d0_idx;
1343 do {
1344 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001345 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001346
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001347 if (i == sh->qd_idx || i == sh->pd_idx ||
1348 (srctype == SYNDROME_SRC_ALL) ||
1349 (srctype == SYNDROME_SRC_WANT_DRAIN &&
1350 test_bit(R5_Wantdrain, &dev->flags)) ||
1351 (srctype == SYNDROME_SRC_WRITTEN &&
1352 dev->written))
1353 srcs[slot] = sh->dev[i].page;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001354 i = raid6_next_disk(i, disks);
1355 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001356
NeilBrowne4424fe2009-10-16 16:27:34 +11001357 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001358}
1359
1360static struct dma_async_tx_descriptor *
1361ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1362{
1363 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001364 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001365 int target;
1366 int qd_idx = sh->qd_idx;
1367 struct dma_async_tx_descriptor *tx;
1368 struct async_submit_ctl submit;
1369 struct r5dev *tgt;
1370 struct page *dest;
1371 int i;
1372 int count;
1373
shli@kernel.org59fc6302014-12-15 12:57:03 +11001374 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001375 if (sh->ops.target < 0)
1376 target = sh->ops.target2;
1377 else if (sh->ops.target2 < 0)
1378 target = sh->ops.target;
1379 else
1380 /* we should only have one valid target */
1381 BUG();
1382 BUG_ON(target < 0);
1383 pr_debug("%s: stripe %llu block: %d\n",
1384 __func__, (unsigned long long)sh->sector, target);
1385
1386 tgt = &sh->dev[target];
1387 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1388 dest = tgt->page;
1389
1390 atomic_inc(&sh->count);
1391
1392 if (target == qd_idx) {
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001393 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001394 blocks[count] = NULL; /* regenerating p is not necessary */
1395 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001396 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1397 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001398 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001399 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1400 } else {
1401 /* Compute any data- or p-drive using XOR */
1402 count = 0;
1403 for (i = disks; i-- ; ) {
1404 if (i == target || i == qd_idx)
1405 continue;
1406 blocks[count++] = sh->dev[i].page;
1407 }
1408
Dan Williams0403e382009-09-08 17:42:50 -07001409 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1410 NULL, ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001411 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001412 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1413 }
1414
1415 return tx;
1416}
1417
1418static struct dma_async_tx_descriptor *
1419ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1420{
1421 int i, count, disks = sh->disks;
1422 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1423 int d0_idx = raid6_d0(sh);
1424 int faila = -1, failb = -1;
1425 int target = sh->ops.target;
1426 int target2 = sh->ops.target2;
1427 struct r5dev *tgt = &sh->dev[target];
1428 struct r5dev *tgt2 = &sh->dev[target2];
1429 struct dma_async_tx_descriptor *tx;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001430 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001431 struct async_submit_ctl submit;
1432
shli@kernel.org59fc6302014-12-15 12:57:03 +11001433 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001434 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1435 __func__, (unsigned long long)sh->sector, target, target2);
1436 BUG_ON(target < 0 || target2 < 0);
1437 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1438 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1439
Dan Williams6c910a72009-09-16 12:24:54 -07001440 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001441 * slot number conversion for 'faila' and 'failb'
1442 */
1443 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001444 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001445 count = 0;
1446 i = d0_idx;
1447 do {
1448 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1449
1450 blocks[slot] = sh->dev[i].page;
1451
1452 if (i == target)
1453 faila = slot;
1454 if (i == target2)
1455 failb = slot;
1456 i = raid6_next_disk(i, disks);
1457 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001458
1459 BUG_ON(faila == failb);
1460 if (failb < faila)
1461 swap(faila, failb);
1462 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1463 __func__, (unsigned long long)sh->sector, faila, failb);
1464
1465 atomic_inc(&sh->count);
1466
1467 if (failb == syndrome_disks+1) {
1468 /* Q disk is one of the missing disks */
1469 if (faila == syndrome_disks) {
1470 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001471 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1472 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001473 to_addr_conv(sh, percpu, 0));
NeilBrowne4424fe2009-10-16 16:27:34 +11001474 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001475 STRIPE_SIZE, &submit);
1476 } else {
1477 struct page *dest;
1478 int data_target;
1479 int qd_idx = sh->qd_idx;
1480
1481 /* Missing D+Q: recompute D from P, then recompute Q */
1482 if (target == qd_idx)
1483 data_target = target2;
1484 else
1485 data_target = target;
1486
1487 count = 0;
1488 for (i = disks; i-- ; ) {
1489 if (i == data_target || i == qd_idx)
1490 continue;
1491 blocks[count++] = sh->dev[i].page;
1492 }
1493 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001494 init_async_submit(&submit,
1495 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1496 NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001497 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001498 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1499 &submit);
1500
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001501 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williams0403e382009-09-08 17:42:50 -07001502 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1503 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001504 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001505 return async_gen_syndrome(blocks, 0, count+2,
1506 STRIPE_SIZE, &submit);
1507 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001508 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001509 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1510 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001511 to_addr_conv(sh, percpu, 0));
Dan Williams6c910a72009-09-16 12:24:54 -07001512 if (failb == syndrome_disks) {
1513 /* We're missing D+P. */
1514 return async_raid6_datap_recov(syndrome_disks+2,
1515 STRIPE_SIZE, faila,
1516 blocks, &submit);
1517 } else {
1518 /* We're missing D+D. */
1519 return async_raid6_2data_recov(syndrome_disks+2,
1520 STRIPE_SIZE, faila, failb,
1521 blocks, &submit);
1522 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001523 }
1524}
1525
Dan Williams91c00922007-01-02 13:52:30 -07001526static void ops_complete_prexor(void *stripe_head_ref)
1527{
1528 struct stripe_head *sh = stripe_head_ref;
1529
Harvey Harrisone46b2722008-04-28 02:15:50 -07001530 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001531 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001532}
1533
1534static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001535ops_run_prexor5(struct stripe_head *sh, struct raid5_percpu *percpu,
1536 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001537{
Dan Williams91c00922007-01-02 13:52:30 -07001538 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001539 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001540 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001541 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001542
1543 /* existing parity data subtracted */
1544 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1545
shli@kernel.org59fc6302014-12-15 12:57:03 +11001546 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001547 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001548 (unsigned long long)sh->sector);
1549
1550 for (i = disks; i--; ) {
1551 struct r5dev *dev = &sh->dev[i];
1552 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001553 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001554 xor_srcs[count++] = dev->page;
1555 }
1556
Dan Williams0403e382009-09-08 17:42:50 -07001557 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001558 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Dan Williamsa08abd82009-06-03 11:43:59 -07001559 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001560
1561 return tx;
1562}
1563
1564static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001565ops_run_prexor6(struct stripe_head *sh, struct raid5_percpu *percpu,
1566 struct dma_async_tx_descriptor *tx)
1567{
1568 struct page **blocks = to_addr_page(percpu, 0);
1569 int count;
1570 struct async_submit_ctl submit;
1571
1572 pr_debug("%s: stripe %llu\n", __func__,
1573 (unsigned long long)sh->sector);
1574
1575 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_WANT_DRAIN);
1576
1577 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_PQ_XOR_DST, tx,
1578 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
1579 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1580
1581 return tx;
1582}
1583
1584static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001585ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001586{
1587 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001588 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001589 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -07001590
Harvey Harrisone46b2722008-04-28 02:15:50 -07001591 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001592 (unsigned long long)sh->sector);
1593
1594 for (i = disks; i--; ) {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001595 struct r5dev *dev;
Dan Williams91c00922007-01-02 13:52:30 -07001596 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001597
shli@kernel.org59fc6302014-12-15 12:57:03 +11001598 sh = head_sh;
1599 if (test_and_clear_bit(R5_Wantdrain, &head_sh->dev[i].flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001600 struct bio *wbi;
1601
shli@kernel.org59fc6302014-12-15 12:57:03 +11001602again:
1603 dev = &sh->dev[i];
Shaohua Lib17459c2012-07-19 16:01:31 +10001604 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001605 chosen = dev->towrite;
1606 dev->towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11001607 sh->overwrite_disks = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001608 BUG_ON(dev->written);
1609 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001610 spin_unlock_irq(&sh->stripe_lock);
Shaohua Lid592a992014-05-21 17:57:44 +08001611 WARN_ON(dev->page != dev->orig_page);
Dan Williams91c00922007-01-02 13:52:30 -07001612
Kent Overstreet4f024f32013-10-11 15:44:27 -07001613 while (wbi && wbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001614 dev->sector + STRIPE_SECTORS) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001615 if (wbi->bi_rw & REQ_FUA)
1616 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001617 if (wbi->bi_rw & REQ_SYNC)
1618 set_bit(R5_SyncIO, &dev->flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001619 if (wbi->bi_rw & REQ_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001620 set_bit(R5_Discard, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08001621 else {
1622 tx = async_copy_data(1, wbi, &dev->page,
1623 dev->sector, tx, sh);
1624 if (dev->page != dev->orig_page) {
1625 set_bit(R5_SkipCopy, &dev->flags);
1626 clear_bit(R5_UPTODATE, &dev->flags);
1627 clear_bit(R5_OVERWRITE, &dev->flags);
1628 }
1629 }
Dan Williams91c00922007-01-02 13:52:30 -07001630 wbi = r5_next_bio(wbi, dev->sector);
1631 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001632
1633 if (head_sh->batch_head) {
1634 sh = list_first_entry(&sh->batch_list,
1635 struct stripe_head,
1636 batch_list);
1637 if (sh == head_sh)
1638 continue;
1639 goto again;
1640 }
Dan Williams91c00922007-01-02 13:52:30 -07001641 }
1642 }
1643
1644 return tx;
1645}
1646
Dan Williamsac6b53b2009-07-14 13:40:19 -07001647static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001648{
1649 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001650 int disks = sh->disks;
1651 int pd_idx = sh->pd_idx;
1652 int qd_idx = sh->qd_idx;
1653 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001654 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001655
Harvey Harrisone46b2722008-04-28 02:15:50 -07001656 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001657 (unsigned long long)sh->sector);
1658
Shaohua Libc0934f2012-05-22 13:55:05 +10001659 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001660 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001661 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001662 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001663 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001664
Dan Williams91c00922007-01-02 13:52:30 -07001665 for (i = disks; i--; ) {
1666 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001667
Tejun Heoe9c74692010-09-03 11:56:18 +02001668 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Lid592a992014-05-21 17:57:44 +08001669 if (!discard && !test_bit(R5_SkipCopy, &dev->flags))
Shaohua Li9e4447682012-10-11 13:49:49 +11001670 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001671 if (fua)
1672 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001673 if (sync)
1674 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001675 }
Dan Williams91c00922007-01-02 13:52:30 -07001676 }
1677
Dan Williamsd8ee0722008-06-28 08:32:06 +10001678 if (sh->reconstruct_state == reconstruct_state_drain_run)
1679 sh->reconstruct_state = reconstruct_state_drain_result;
1680 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1681 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1682 else {
1683 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1684 sh->reconstruct_state = reconstruct_state_result;
1685 }
Dan Williams91c00922007-01-02 13:52:30 -07001686
1687 set_bit(STRIPE_HANDLE, &sh->state);
1688 release_stripe(sh);
1689}
1690
1691static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001692ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1693 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001694{
Dan Williams91c00922007-01-02 13:52:30 -07001695 int disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001696 struct page **xor_srcs;
Dan Williamsa08abd82009-06-03 11:43:59 -07001697 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001698 int count, pd_idx = sh->pd_idx, i;
Dan Williams91c00922007-01-02 13:52:30 -07001699 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001700 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001701 unsigned long flags;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001702 int j = 0;
1703 struct stripe_head *head_sh = sh;
1704 int last_stripe;
Dan Williams91c00922007-01-02 13:52:30 -07001705
Harvey Harrisone46b2722008-04-28 02:15:50 -07001706 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001707 (unsigned long long)sh->sector);
1708
Shaohua Li620125f2012-10-11 13:49:05 +11001709 for (i = 0; i < sh->disks; i++) {
1710 if (pd_idx == i)
1711 continue;
1712 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1713 break;
1714 }
1715 if (i >= sh->disks) {
1716 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001717 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1718 ops_complete_reconstruct(sh);
1719 return;
1720 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001721again:
1722 count = 0;
1723 xor_srcs = to_addr_page(percpu, j);
Dan Williams91c00922007-01-02 13:52:30 -07001724 /* check if prexor is active which means only process blocks
1725 * that are part of a read-modify-write (written)
1726 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001727 if (head_sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001728 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001729 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1730 for (i = disks; i--; ) {
1731 struct r5dev *dev = &sh->dev[i];
shli@kernel.org59fc6302014-12-15 12:57:03 +11001732 if (head_sh->dev[i].written)
Dan Williams91c00922007-01-02 13:52:30 -07001733 xor_srcs[count++] = dev->page;
1734 }
1735 } else {
1736 xor_dest = sh->dev[pd_idx].page;
1737 for (i = disks; i--; ) {
1738 struct r5dev *dev = &sh->dev[i];
1739 if (i != pd_idx)
1740 xor_srcs[count++] = dev->page;
1741 }
1742 }
1743
Dan Williams91c00922007-01-02 13:52:30 -07001744 /* 1/ if we prexor'd then the dest is reused as a source
1745 * 2/ if we did not prexor then we are redoing the parity
1746 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1747 * for the synchronous xor case
1748 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001749 last_stripe = !head_sh->batch_head ||
1750 list_first_entry(&sh->batch_list,
1751 struct stripe_head, batch_list) == head_sh;
1752 if (last_stripe) {
1753 flags = ASYNC_TX_ACK |
1754 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
Dan Williams91c00922007-01-02 13:52:30 -07001755
shli@kernel.org59fc6302014-12-15 12:57:03 +11001756 atomic_inc(&head_sh->count);
1757 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, head_sh,
1758 to_addr_conv(sh, percpu, j));
1759 } else {
1760 flags = prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST;
1761 init_async_submit(&submit, flags, tx, NULL, NULL,
1762 to_addr_conv(sh, percpu, j));
1763 }
Dan Williams91c00922007-01-02 13:52:30 -07001764
Dan Williamsa08abd82009-06-03 11:43:59 -07001765 if (unlikely(count == 1))
1766 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1767 else
1768 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001769 if (!last_stripe) {
1770 j++;
1771 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1772 batch_list);
1773 goto again;
1774 }
Dan Williams91c00922007-01-02 13:52:30 -07001775}
1776
Dan Williamsac6b53b2009-07-14 13:40:19 -07001777static void
1778ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1779 struct dma_async_tx_descriptor *tx)
1780{
1781 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001782 struct page **blocks;
1783 int count, i, j = 0;
1784 struct stripe_head *head_sh = sh;
1785 int last_stripe;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001786 int synflags;
1787 unsigned long txflags;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001788
1789 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1790
Shaohua Li620125f2012-10-11 13:49:05 +11001791 for (i = 0; i < sh->disks; i++) {
1792 if (sh->pd_idx == i || sh->qd_idx == i)
1793 continue;
1794 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1795 break;
1796 }
1797 if (i >= sh->disks) {
1798 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001799 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1800 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1801 ops_complete_reconstruct(sh);
1802 return;
1803 }
1804
shli@kernel.org59fc6302014-12-15 12:57:03 +11001805again:
1806 blocks = to_addr_page(percpu, j);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001807
1808 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1809 synflags = SYNDROME_SRC_WRITTEN;
1810 txflags = ASYNC_TX_ACK | ASYNC_TX_PQ_XOR_DST;
1811 } else {
1812 synflags = SYNDROME_SRC_ALL;
1813 txflags = ASYNC_TX_ACK;
1814 }
1815
1816 count = set_syndrome_sources(blocks, sh, synflags);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001817 last_stripe = !head_sh->batch_head ||
1818 list_first_entry(&sh->batch_list,
1819 struct stripe_head, batch_list) == head_sh;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001820
shli@kernel.org59fc6302014-12-15 12:57:03 +11001821 if (last_stripe) {
1822 atomic_inc(&head_sh->count);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001823 init_async_submit(&submit, txflags, tx, ops_complete_reconstruct,
shli@kernel.org59fc6302014-12-15 12:57:03 +11001824 head_sh, to_addr_conv(sh, percpu, j));
1825 } else
1826 init_async_submit(&submit, 0, tx, NULL, NULL,
1827 to_addr_conv(sh, percpu, j));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001828 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001829 if (!last_stripe) {
1830 j++;
1831 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1832 batch_list);
1833 goto again;
1834 }
Dan Williams91c00922007-01-02 13:52:30 -07001835}
1836
1837static void ops_complete_check(void *stripe_head_ref)
1838{
1839 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001840
Harvey Harrisone46b2722008-04-28 02:15:50 -07001841 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001842 (unsigned long long)sh->sector);
1843
Dan Williamsecc65c92008-06-28 08:31:57 +10001844 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001845 set_bit(STRIPE_HANDLE, &sh->state);
1846 release_stripe(sh);
1847}
1848
Dan Williamsac6b53b2009-07-14 13:40:19 -07001849static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001850{
Dan Williams91c00922007-01-02 13:52:30 -07001851 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001852 int pd_idx = sh->pd_idx;
1853 int qd_idx = sh->qd_idx;
1854 struct page *xor_dest;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001855 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001856 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001857 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001858 int count;
1859 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001860
Harvey Harrisone46b2722008-04-28 02:15:50 -07001861 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001862 (unsigned long long)sh->sector);
1863
shli@kernel.org59fc6302014-12-15 12:57:03 +11001864 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001865 count = 0;
1866 xor_dest = sh->dev[pd_idx].page;
1867 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001868 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001869 if (i == pd_idx || i == qd_idx)
1870 continue;
1871 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001872 }
1873
Dan Williamsd6f38f32009-07-14 11:50:52 -07001874 init_async_submit(&submit, 0, NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001875 to_addr_conv(sh, percpu, 0));
Dan Williams099f53c2009-04-08 14:28:37 -07001876 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001877 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001878
Dan Williams91c00922007-01-02 13:52:30 -07001879 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001880 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1881 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001882}
1883
Dan Williamsac6b53b2009-07-14 13:40:19 -07001884static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1885{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001886 struct page **srcs = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001887 struct async_submit_ctl submit;
1888 int count;
1889
1890 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1891 (unsigned long long)sh->sector, checkp);
1892
shli@kernel.org59fc6302014-12-15 12:57:03 +11001893 BUG_ON(sh->batch_head);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001894 count = set_syndrome_sources(srcs, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001895 if (!checkp)
1896 srcs[count] = NULL;
1897
1898 atomic_inc(&sh->count);
1899 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001900 sh, to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001901 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1902 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1903}
1904
NeilBrown51acbce2013-02-28 09:08:34 +11001905static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001906{
1907 int overlap_clear = 0, i, disks = sh->disks;
1908 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001909 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001910 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001911 struct raid5_percpu *percpu;
1912 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001913
Dan Williamsd6f38f32009-07-14 11:50:52 -07001914 cpu = get_cpu();
1915 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001916 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001917 ops_run_biofill(sh);
1918 overlap_clear++;
1919 }
1920
Dan Williams7b3a8712008-06-28 08:32:09 +10001921 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001922 if (level < 6)
1923 tx = ops_run_compute5(sh, percpu);
1924 else {
1925 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1926 tx = ops_run_compute6_1(sh, percpu);
1927 else
1928 tx = ops_run_compute6_2(sh, percpu);
1929 }
1930 /* terminate the chain if reconstruct is not set to be run */
1931 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001932 async_tx_ack(tx);
1933 }
Dan Williams91c00922007-01-02 13:52:30 -07001934
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001935 if (test_bit(STRIPE_OP_PREXOR, &ops_request)) {
1936 if (level < 6)
1937 tx = ops_run_prexor5(sh, percpu, tx);
1938 else
1939 tx = ops_run_prexor6(sh, percpu, tx);
1940 }
Dan Williams91c00922007-01-02 13:52:30 -07001941
Dan Williams600aa102008-06-28 08:32:05 +10001942 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001943 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001944 overlap_clear++;
1945 }
1946
Dan Williamsac6b53b2009-07-14 13:40:19 -07001947 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1948 if (level < 6)
1949 ops_run_reconstruct5(sh, percpu, tx);
1950 else
1951 ops_run_reconstruct6(sh, percpu, tx);
1952 }
Dan Williams91c00922007-01-02 13:52:30 -07001953
Dan Williamsac6b53b2009-07-14 13:40:19 -07001954 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1955 if (sh->check_state == check_state_run)
1956 ops_run_check_p(sh, percpu);
1957 else if (sh->check_state == check_state_run_q)
1958 ops_run_check_pq(sh, percpu, 0);
1959 else if (sh->check_state == check_state_run_pq)
1960 ops_run_check_pq(sh, percpu, 1);
1961 else
1962 BUG();
1963 }
Dan Williams91c00922007-01-02 13:52:30 -07001964
shli@kernel.org59fc6302014-12-15 12:57:03 +11001965 if (overlap_clear && !sh->batch_head)
Dan Williams91c00922007-01-02 13:52:30 -07001966 for (i = disks; i--; ) {
1967 struct r5dev *dev = &sh->dev[i];
1968 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1969 wake_up(&sh->raid_conf->wait_for_overlap);
1970 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001971 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001972}
1973
NeilBrownf18c1a32015-05-08 18:19:04 +10001974static struct stripe_head *alloc_stripe(struct kmem_cache *sc, gfp_t gfp)
1975{
1976 struct stripe_head *sh;
1977
1978 sh = kmem_cache_zalloc(sc, gfp);
1979 if (sh) {
1980 spin_lock_init(&sh->stripe_lock);
1981 spin_lock_init(&sh->batch_lock);
1982 INIT_LIST_HEAD(&sh->batch_list);
1983 INIT_LIST_HEAD(&sh->lru);
1984 atomic_set(&sh->count, 1);
1985 }
1986 return sh;
1987}
NeilBrown486f0642015-02-25 12:10:35 +11001988static int grow_one_stripe(struct r5conf *conf, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989{
1990 struct stripe_head *sh;
NeilBrownf18c1a32015-05-08 18:19:04 +10001991
1992 sh = alloc_stripe(conf->slab_cache, gfp);
NeilBrown3f294f42005-11-08 21:39:25 -08001993 if (!sh)
1994 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001995
NeilBrown3f294f42005-11-08 21:39:25 -08001996 sh->raid_conf = conf;
NeilBrown3f294f42005-11-08 21:39:25 -08001997
NeilBrowna9683a72015-02-25 12:02:51 +11001998 if (grow_buffers(sh, gfp)) {
NeilBrowne4e11e32010-06-16 16:45:16 +10001999 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002000 kmem_cache_free(conf->slab_cache, sh);
2001 return 0;
2002 }
NeilBrown486f0642015-02-25 12:10:35 +11002003 sh->hash_lock_index =
2004 conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
NeilBrown3f294f42005-11-08 21:39:25 -08002005 /* we just created an active stripe so... */
NeilBrown3f294f42005-11-08 21:39:25 -08002006 atomic_inc(&conf->active_stripes);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002007
NeilBrown3f294f42005-11-08 21:39:25 -08002008 release_stripe(sh);
NeilBrown486f0642015-02-25 12:10:35 +11002009 conf->max_nr_stripes++;
NeilBrown3f294f42005-11-08 21:39:25 -08002010 return 1;
2011}
2012
NeilBrownd1688a62011-10-11 16:49:52 +11002013static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08002014{
Christoph Lametere18b8902006-12-06 20:33:20 -08002015 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11002016 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
NeilBrownf4be6b42010-06-01 19:37:25 +10002018 if (conf->mddev->gendisk)
2019 sprintf(conf->cache_name[0],
2020 "raid%d-%s", conf->level, mdname(conf->mddev));
2021 else
2022 sprintf(conf->cache_name[0],
2023 "raid%d-%p", conf->level, conf->mddev);
2024 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
2025
NeilBrownad01c9e2006-03-27 01:18:07 -08002026 conf->active_name = 0;
2027 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002029 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (!sc)
2031 return 1;
2032 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002033 conf->pool_size = devs;
NeilBrown486f0642015-02-25 12:10:35 +11002034 while (num--)
2035 if (!grow_one_stripe(conf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 return 1;
NeilBrown486f0642015-02-25 12:10:35 +11002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 return 0;
2039}
NeilBrown29269552006-03-27 01:18:10 -08002040
Dan Williamsd6f38f32009-07-14 11:50:52 -07002041/**
2042 * scribble_len - return the required size of the scribble region
2043 * @num - total number of disks in the array
2044 *
2045 * The size must be enough to contain:
2046 * 1/ a struct page pointer for each device in the array +2
2047 * 2/ room to convert each entry in (1) to its corresponding dma
2048 * (dma_map_page()) or page (page_address()) address.
2049 *
2050 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
2051 * calculate over all devices (not just the data blocks), using zeros in place
2052 * of the P and Q blocks.
2053 */
shli@kernel.org46d5b782014-12-15 12:57:02 +11002054static struct flex_array *scribble_alloc(int num, int cnt, gfp_t flags)
Dan Williamsd6f38f32009-07-14 11:50:52 -07002055{
shli@kernel.org46d5b782014-12-15 12:57:02 +11002056 struct flex_array *ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002057 size_t len;
2058
2059 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002060 ret = flex_array_alloc(len, cnt, flags);
2061 if (!ret)
2062 return NULL;
2063 /* always prealloc all elements, so no locking is required */
2064 if (flex_array_prealloc(ret, 0, cnt, flags)) {
2065 flex_array_free(ret);
2066 return NULL;
2067 }
2068 return ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002069}
2070
NeilBrown738a2732015-05-08 18:19:39 +10002071static int resize_chunks(struct r5conf *conf, int new_disks, int new_sectors)
2072{
2073 unsigned long cpu;
2074 int err = 0;
2075
2076 mddev_suspend(conf->mddev);
2077 get_online_cpus();
2078 for_each_present_cpu(cpu) {
2079 struct raid5_percpu *percpu;
2080 struct flex_array *scribble;
2081
2082 percpu = per_cpu_ptr(conf->percpu, cpu);
2083 scribble = scribble_alloc(new_disks,
2084 new_sectors / STRIPE_SECTORS,
2085 GFP_NOIO);
2086
2087 if (scribble) {
2088 flex_array_free(percpu->scribble);
2089 percpu->scribble = scribble;
2090 } else {
2091 err = -ENOMEM;
2092 break;
2093 }
2094 }
2095 put_online_cpus();
2096 mddev_resume(conf->mddev);
2097 return err;
2098}
2099
NeilBrownd1688a62011-10-11 16:49:52 +11002100static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08002101{
2102 /* Make all the stripes able to hold 'newsize' devices.
2103 * New slots in each stripe get 'page' set to a new page.
2104 *
2105 * This happens in stages:
2106 * 1/ create a new kmem_cache and allocate the required number of
2107 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09002108 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08002109 * to the new stripe_heads. This will have the side effect of
2110 * freezing the array as once all stripe_heads have been collected,
2111 * no IO will be possible. Old stripe heads are freed once their
2112 * pages have been transferred over, and the old kmem_cache is
2113 * freed when all stripes are done.
2114 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
2115 * we simple return a failre status - no need to clean anything up.
2116 * 4/ allocate new pages for the new slots in the new stripe_heads.
2117 * If this fails, we don't bother trying the shrink the
2118 * stripe_heads down again, we just leave them as they are.
2119 * As each stripe_head is processed the new one is released into
2120 * active service.
2121 *
2122 * Once step2 is started, we cannot afford to wait for a write,
2123 * so we use GFP_NOIO allocations.
2124 */
2125 struct stripe_head *osh, *nsh;
2126 LIST_HEAD(newstripes);
2127 struct disk_info *ndisks;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002128 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08002129 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002130 int i;
Shaohua Li566c09c2013-11-14 15:16:17 +11002131 int hash, cnt;
NeilBrownad01c9e2006-03-27 01:18:07 -08002132
2133 if (newsize <= conf->pool_size)
2134 return 0; /* never bother to shrink */
2135
Dan Williamsb5470dc2008-06-27 21:44:04 -07002136 err = md_allow_write(conf->mddev);
2137 if (err)
2138 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002139
NeilBrownad01c9e2006-03-27 01:18:07 -08002140 /* Step 1 */
2141 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
2142 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002143 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002144 if (!sc)
2145 return -ENOMEM;
2146
2147 for (i = conf->max_nr_stripes; i; i--) {
NeilBrownf18c1a32015-05-08 18:19:04 +10002148 nsh = alloc_stripe(sc, GFP_KERNEL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002149 if (!nsh)
2150 break;
2151
NeilBrownad01c9e2006-03-27 01:18:07 -08002152 nsh->raid_conf = conf;
NeilBrownad01c9e2006-03-27 01:18:07 -08002153 list_add(&nsh->lru, &newstripes);
2154 }
2155 if (i) {
2156 /* didn't get enough, give up */
2157 while (!list_empty(&newstripes)) {
2158 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2159 list_del(&nsh->lru);
2160 kmem_cache_free(sc, nsh);
2161 }
2162 kmem_cache_destroy(sc);
2163 return -ENOMEM;
2164 }
2165 /* Step 2 - Must use GFP_NOIO now.
2166 * OK, we have enough stripes, start collecting inactive
2167 * stripes and copying them over
2168 */
Shaohua Li566c09c2013-11-14 15:16:17 +11002169 hash = 0;
2170 cnt = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002171 list_for_each_entry(nsh, &newstripes, lru) {
Shaohua Li566c09c2013-11-14 15:16:17 +11002172 lock_device_hash_lock(conf, hash);
2173 wait_event_cmd(conf->wait_for_stripe,
2174 !list_empty(conf->inactive_list + hash),
2175 unlock_device_hash_lock(conf, hash),
2176 lock_device_hash_lock(conf, hash));
2177 osh = get_free_stripe(conf, hash);
2178 unlock_device_hash_lock(conf, hash);
NeilBrownf18c1a32015-05-08 18:19:04 +10002179
Shaohua Lid592a992014-05-21 17:57:44 +08002180 for(i=0; i<conf->pool_size; i++) {
NeilBrownad01c9e2006-03-27 01:18:07 -08002181 nsh->dev[i].page = osh->dev[i].page;
Shaohua Lid592a992014-05-21 17:57:44 +08002182 nsh->dev[i].orig_page = osh->dev[i].page;
2183 }
Shaohua Li566c09c2013-11-14 15:16:17 +11002184 nsh->hash_lock_index = hash;
NeilBrownad01c9e2006-03-27 01:18:07 -08002185 kmem_cache_free(conf->slab_cache, osh);
Shaohua Li566c09c2013-11-14 15:16:17 +11002186 cnt++;
2187 if (cnt >= conf->max_nr_stripes / NR_STRIPE_HASH_LOCKS +
2188 !!((conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS) > hash)) {
2189 hash++;
2190 cnt = 0;
2191 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002192 }
2193 kmem_cache_destroy(conf->slab_cache);
2194
2195 /* Step 3.
2196 * At this point, we are holding all the stripes so the array
2197 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07002198 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08002199 */
2200 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
2201 if (ndisks) {
2202 for (i=0; i<conf->raid_disks; i++)
2203 ndisks[i] = conf->disks[i];
2204 kfree(conf->disks);
2205 conf->disks = ndisks;
2206 } else
2207 err = -ENOMEM;
2208
2209 /* Step 4, return new stripes to service */
2210 while(!list_empty(&newstripes)) {
2211 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2212 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002213
NeilBrownad01c9e2006-03-27 01:18:07 -08002214 for (i=conf->raid_disks; i < newsize; i++)
2215 if (nsh->dev[i].page == NULL) {
2216 struct page *p = alloc_page(GFP_NOIO);
2217 nsh->dev[i].page = p;
Shaohua Lid592a992014-05-21 17:57:44 +08002218 nsh->dev[i].orig_page = p;
NeilBrownad01c9e2006-03-27 01:18:07 -08002219 if (!p)
2220 err = -ENOMEM;
2221 }
2222 release_stripe(nsh);
2223 }
2224 /* critical section pass, GFP_NOIO no longer needed */
2225
2226 conf->slab_cache = sc;
2227 conf->active_name = 1-conf->active_name;
NeilBrown6e9eac22015-05-08 18:19:34 +10002228 if (!err)
2229 conf->pool_size = newsize;
NeilBrownad01c9e2006-03-27 01:18:07 -08002230 return err;
2231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
NeilBrown486f0642015-02-25 12:10:35 +11002233static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
2235 struct stripe_head *sh;
NeilBrown486f0642015-02-25 12:10:35 +11002236 int hash = (conf->max_nr_stripes - 1) % NR_STRIPE_HASH_LOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Shaohua Li566c09c2013-11-14 15:16:17 +11002238 spin_lock_irq(conf->hash_locks + hash);
2239 sh = get_free_stripe(conf, hash);
2240 spin_unlock_irq(conf->hash_locks + hash);
NeilBrown3f294f42005-11-08 21:39:25 -08002241 if (!sh)
2242 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002243 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10002244 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002245 kmem_cache_free(conf->slab_cache, sh);
2246 atomic_dec(&conf->active_stripes);
NeilBrown486f0642015-02-25 12:10:35 +11002247 conf->max_nr_stripes--;
NeilBrown3f294f42005-11-08 21:39:25 -08002248 return 1;
2249}
2250
NeilBrownd1688a62011-10-11 16:49:52 +11002251static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08002252{
NeilBrown486f0642015-02-25 12:10:35 +11002253 while (conf->max_nr_stripes &&
2254 drop_one_stripe(conf))
2255 ;
NeilBrown3f294f42005-11-08 21:39:25 -08002256
NeilBrown29fc7e32006-02-03 03:03:41 -08002257 if (conf->slab_cache)
2258 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 conf->slab_cache = NULL;
2260}
2261
NeilBrown6712ecf2007-09-27 12:47:43 +02002262static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263{
NeilBrown99c0fb52009-03-31 14:39:38 +11002264 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002265 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002266 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07002268 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11002269 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10002270 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272 for (i=0 ; i<disks; i++)
2273 if (bi == &sh->dev[i].req)
2274 break;
2275
Dan Williams45b42332007-07-09 11:56:43 -07002276 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
2277 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 uptodate);
2279 if (i == disks) {
2280 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002281 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
NeilBrown14a75d32011-12-23 10:17:52 +11002283 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11002284 /* If replacement finished while this request was outstanding,
2285 * 'replacement' might be NULL already.
2286 * In that case it moved down to 'rdev'.
2287 * rdev is not removed until all requests are finished.
2288 */
NeilBrown14a75d32011-12-23 10:17:52 +11002289 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002290 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11002291 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
NeilBrown05616be2012-05-21 09:27:00 +10002293 if (use_new_offset(conf, sh))
2294 s = sh->sector + rdev->new_data_offset;
2295 else
2296 s = sh->sector + rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08002299 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11002300 /* Note that this cannot happen on a
2301 * replacement device. We just fail those on
2302 * any error
2303 */
Christian Dietrich8bda4702011-07-27 11:00:36 +10002304 printk_ratelimited(
2305 KERN_INFO
2306 "md/raid:%s: read error corrected"
2307 " (%lu sectors at %llu on %s)\n",
2308 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10002309 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002310 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10002311 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08002312 clear_bit(R5_ReadError, &sh->dev[i].flags);
2313 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10002314 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2315 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2316
NeilBrown14a75d32011-12-23 10:17:52 +11002317 if (atomic_read(&rdev->read_errors))
2318 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11002320 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08002321 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10002322 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07002323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07002325 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11002326 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
2327 printk_ratelimited(
2328 KERN_WARNING
2329 "md/raid:%s: read error on replacement device "
2330 "(sector %llu on %s).\n",
2331 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002332 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11002333 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002334 else if (conf->mddev->degraded >= conf->max_degraded) {
2335 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10002336 printk_ratelimited(
2337 KERN_WARNING
2338 "md/raid:%s: read error not correctable "
2339 "(sector %llu on %s).\n",
2340 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002341 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002342 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002343 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08002344 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10002345 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10002346 printk_ratelimited(
2347 KERN_WARNING
2348 "md/raid:%s: read error NOT corrected!! "
2349 "(sector %llu on %s).\n",
2350 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002351 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002352 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002353 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08002354 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08002355 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10002356 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07002357 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08002358 else
2359 retry = 1;
Bian Yuedfa1f62013-11-14 15:16:17 +11002360 if (set_bad && test_bit(In_sync, &rdev->flags)
2361 && !test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2362 retry = 1;
NeilBrownba22dcb2005-11-08 21:39:31 -08002363 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10002364 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
2365 set_bit(R5_ReadError, &sh->dev[i].flags);
2366 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2367 } else
2368 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08002369 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08002370 clear_bit(R5_ReadError, &sh->dev[i].flags);
2371 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10002372 if (!(set_bad
2373 && test_bit(In_sync, &rdev->flags)
2374 && rdev_set_badblocks(
2375 rdev, sh->sector, STRIPE_SECTORS, 0)))
2376 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08002377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
NeilBrown14a75d32011-12-23 10:17:52 +11002379 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2381 set_bit(STRIPE_HANDLE, &sh->state);
2382 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383}
2384
NeilBrownd710e132008-10-13 11:55:12 +11002385static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
NeilBrown99c0fb52009-03-31 14:39:38 +11002387 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002388 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002389 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11002390 struct md_rdev *uninitialized_var(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownb84db562011-07-28 11:39:23 +10002392 sector_t first_bad;
2393 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11002394 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
NeilBrown977df362011-12-23 10:17:53 +11002396 for (i = 0 ; i < disks; i++) {
2397 if (bi == &sh->dev[i].req) {
2398 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 break;
NeilBrown977df362011-12-23 10:17:53 +11002400 }
2401 if (bi == &sh->dev[i].rreq) {
2402 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002403 if (rdev)
2404 replacement = 1;
2405 else
2406 /* rdev was removed and 'replacement'
2407 * replaced it. rdev is not removed
2408 * until all requests are finished.
2409 */
2410 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11002411 break;
2412 }
2413 }
Dan Williams45b42332007-07-09 11:56:43 -07002414 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
2416 uptodate);
2417 if (i == disks) {
2418 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002419 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 }
2421
NeilBrown977df362011-12-23 10:17:53 +11002422 if (replacement) {
2423 if (!uptodate)
2424 md_error(conf->mddev, rdev);
2425 else if (is_badblock(rdev, sh->sector,
2426 STRIPE_SECTORS,
2427 &first_bad, &bad_sectors))
2428 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2429 } else {
2430 if (!uptodate) {
NeilBrown9f97e4b2014-01-16 09:35:38 +11002431 set_bit(STRIPE_DEGRADED, &sh->state);
NeilBrown977df362011-12-23 10:17:53 +11002432 set_bit(WriteErrorSeen, &rdev->flags);
2433 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002434 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2435 set_bit(MD_RECOVERY_NEEDED,
2436 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002437 } else if (is_badblock(rdev, sh->sector,
2438 STRIPE_SECTORS,
NeilBrownc0b32972013-04-24 11:42:42 +10002439 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002440 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002441 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2442 /* That was a successful write so make
2443 * sure it looks like we already did
2444 * a re-write.
2445 */
2446 set_bit(R5_ReWrite, &sh->dev[i].flags);
2447 }
NeilBrown977df362011-12-23 10:17:53 +11002448 }
2449 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
shli@kernel.org72ac7332014-12-15 12:57:03 +11002451 if (sh->batch_head && !uptodate)
2452 set_bit(STRIPE_BATCH_ERR, &sh->batch_head->state);
2453
NeilBrown977df362011-12-23 10:17:53 +11002454 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2455 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07002457 release_stripe(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002458
2459 if (sh->batch_head && sh != sh->batch_head)
2460 release_stripe(sh->batch_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
NeilBrown784052e2009-03-31 15:19:07 +11002463static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Shaohua Lid592a992014-05-21 17:57:44 +08002464
NeilBrown784052e2009-03-31 15:19:07 +11002465static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
2467 struct r5dev *dev = &sh->dev[i];
2468
2469 bio_init(&dev->req);
2470 dev->req.bi_io_vec = &dev->vec;
Shaohua Lid592a992014-05-21 17:57:44 +08002471 dev->req.bi_max_vecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 dev->req.bi_private = sh;
2473
NeilBrown977df362011-12-23 10:17:53 +11002474 bio_init(&dev->rreq);
2475 dev->rreq.bi_io_vec = &dev->rvec;
Shaohua Lid592a992014-05-21 17:57:44 +08002476 dev->rreq.bi_max_vecs = 1;
NeilBrown977df362011-12-23 10:17:53 +11002477 dev->rreq.bi_private = sh;
NeilBrown977df362011-12-23 10:17:53 +11002478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11002480 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481}
2482
NeilBrownfd01b882011-10-11 16:47:53 +11002483static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484{
2485 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002486 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002487 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002488 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
NeilBrown908f4fb2011-12-23 10:17:50 +11002490 spin_lock_irqsave(&conf->device_lock, flags);
2491 clear_bit(In_sync, &rdev->flags);
2492 mddev->degraded = calc_degraded(conf);
2493 spin_unlock_irqrestore(&conf->device_lock, flags);
2494 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2495
NeilBrownde393cd2011-07-28 11:31:48 +10002496 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10002497 set_bit(Faulty, &rdev->flags);
2498 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2499 printk(KERN_ALERT
2500 "md/raid:%s: Disk failure on %s, disabling device.\n"
2501 "md/raid:%s: Operation continuing on %d devices.\n",
2502 mdname(mddev),
2503 bdevname(rdev->bdev, b),
2504 mdname(mddev),
2505 conf->raid_disks - mddev->degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07002506}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508/*
2509 * Input: a 'big' sector number,
2510 * Output: index of the data and parity disk, and the sector # in them.
2511 */
NeilBrownd1688a62011-10-11 16:49:52 +11002512static sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11002513 int previous, int *dd_idx,
2514 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002516 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002517 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002519 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002520 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002522 int algorithm = previous ? conf->prev_algo
2523 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002524 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2525 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002526 int raid_disks = previous ? conf->previous_raid_disks
2527 : conf->raid_disks;
2528 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530 /* First compute the information on this sector */
2531
2532 /*
2533 * Compute the chunk number and the sector offset inside the chunk
2534 */
2535 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2536 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538 /*
2539 * Compute the stripe number
2540 */
NeilBrown35f2a592010-04-20 14:13:34 +10002541 stripe = chunk_number;
2542 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002543 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 /*
2545 * Select the parity disk based on the user selected algorithm.
2546 */
NeilBrown84789552011-07-27 11:00:36 +10002547 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002548 switch(conf->level) {
2549 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002550 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002551 break;
2552 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002553 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002555 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002556 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 (*dd_idx)++;
2558 break;
2559 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002560 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002561 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 (*dd_idx)++;
2563 break;
2564 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002565 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002566 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 break;
2568 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002569 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002570 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002572 case ALGORITHM_PARITY_0:
2573 pd_idx = 0;
2574 (*dd_idx)++;
2575 break;
2576 case ALGORITHM_PARITY_N:
2577 pd_idx = data_disks;
2578 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002580 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002581 }
2582 break;
2583 case 6:
2584
NeilBrowne183eae2009-03-31 15:20:22 +11002585 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002586 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002587 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002588 qd_idx = pd_idx + 1;
2589 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002590 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002591 qd_idx = 0;
2592 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002593 (*dd_idx) += 2; /* D D P Q D */
2594 break;
2595 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002596 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002597 qd_idx = pd_idx + 1;
2598 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002599 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002600 qd_idx = 0;
2601 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002602 (*dd_idx) += 2; /* D D P Q D */
2603 break;
2604 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002605 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002606 qd_idx = (pd_idx + 1) % raid_disks;
2607 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002608 break;
2609 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002610 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002611 qd_idx = (pd_idx + 1) % raid_disks;
2612 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002613 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002614
2615 case ALGORITHM_PARITY_0:
2616 pd_idx = 0;
2617 qd_idx = 1;
2618 (*dd_idx) += 2;
2619 break;
2620 case ALGORITHM_PARITY_N:
2621 pd_idx = data_disks;
2622 qd_idx = data_disks + 1;
2623 break;
2624
2625 case ALGORITHM_ROTATING_ZERO_RESTART:
2626 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2627 * of blocks for computing Q is different.
2628 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002629 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002630 qd_idx = pd_idx + 1;
2631 if (pd_idx == raid_disks-1) {
2632 (*dd_idx)++; /* Q D D D P */
2633 qd_idx = 0;
2634 } else if (*dd_idx >= pd_idx)
2635 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002636 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002637 break;
2638
2639 case ALGORITHM_ROTATING_N_RESTART:
2640 /* Same a left_asymmetric, by first stripe is
2641 * D D D P Q rather than
2642 * Q D D D P
2643 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002644 stripe2 += 1;
2645 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002646 qd_idx = pd_idx + 1;
2647 if (pd_idx == raid_disks-1) {
2648 (*dd_idx)++; /* Q D D D P */
2649 qd_idx = 0;
2650 } else if (*dd_idx >= pd_idx)
2651 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002652 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002653 break;
2654
2655 case ALGORITHM_ROTATING_N_CONTINUE:
2656 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002657 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002658 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2659 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002660 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002661 break;
2662
2663 case ALGORITHM_LEFT_ASYMMETRIC_6:
2664 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002665 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002666 if (*dd_idx >= pd_idx)
2667 (*dd_idx)++;
2668 qd_idx = raid_disks - 1;
2669 break;
2670
2671 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002672 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002673 if (*dd_idx >= pd_idx)
2674 (*dd_idx)++;
2675 qd_idx = raid_disks - 1;
2676 break;
2677
2678 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002679 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002680 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2681 qd_idx = raid_disks - 1;
2682 break;
2683
2684 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002685 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002686 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2687 qd_idx = raid_disks - 1;
2688 break;
2689
2690 case ALGORITHM_PARITY_0_6:
2691 pd_idx = 0;
2692 (*dd_idx)++;
2693 qd_idx = raid_disks - 1;
2694 break;
2695
NeilBrown16a53ec2006-06-26 00:27:38 -07002696 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002697 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002698 }
2699 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 }
2701
NeilBrown911d4ee2009-03-31 14:39:38 +11002702 if (sh) {
2703 sh->pd_idx = pd_idx;
2704 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002705 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /*
2708 * Finally, compute the new sector number
2709 */
2710 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2711 return new_sector;
2712}
2713
NeilBrown784052e2009-03-31 15:19:07 +11002714static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715{
NeilBrownd1688a62011-10-11 16:49:52 +11002716 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002717 int raid_disks = sh->disks;
2718 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002720 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2721 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002722 int algorithm = previous ? conf->prev_algo
2723 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 sector_t stripe;
2725 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002726 sector_t chunk_number;
2727 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002729 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
2731 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2732 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
NeilBrown16a53ec2006-06-26 00:27:38 -07002734 if (i == sh->pd_idx)
2735 return 0;
2736 switch(conf->level) {
2737 case 4: break;
2738 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002739 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 case ALGORITHM_LEFT_ASYMMETRIC:
2741 case ALGORITHM_RIGHT_ASYMMETRIC:
2742 if (i > sh->pd_idx)
2743 i--;
2744 break;
2745 case ALGORITHM_LEFT_SYMMETRIC:
2746 case ALGORITHM_RIGHT_SYMMETRIC:
2747 if (i < sh->pd_idx)
2748 i += raid_disks;
2749 i -= (sh->pd_idx + 1);
2750 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002751 case ALGORITHM_PARITY_0:
2752 i -= 1;
2753 break;
2754 case ALGORITHM_PARITY_N:
2755 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002757 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002758 }
2759 break;
2760 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002761 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002762 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002763 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002764 case ALGORITHM_LEFT_ASYMMETRIC:
2765 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002766 case ALGORITHM_ROTATING_ZERO_RESTART:
2767 case ALGORITHM_ROTATING_N_RESTART:
2768 if (sh->pd_idx == raid_disks-1)
2769 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002770 else if (i > sh->pd_idx)
2771 i -= 2; /* D D P Q D */
2772 break;
2773 case ALGORITHM_LEFT_SYMMETRIC:
2774 case ALGORITHM_RIGHT_SYMMETRIC:
2775 if (sh->pd_idx == raid_disks-1)
2776 i--; /* Q D D D P */
2777 else {
2778 /* D D P Q D */
2779 if (i < sh->pd_idx)
2780 i += raid_disks;
2781 i -= (sh->pd_idx + 2);
2782 }
2783 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002784 case ALGORITHM_PARITY_0:
2785 i -= 2;
2786 break;
2787 case ALGORITHM_PARITY_N:
2788 break;
2789 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002790 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002791 if (sh->pd_idx == 0)
2792 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002793 else {
2794 /* D D Q P D */
2795 if (i < sh->pd_idx)
2796 i += raid_disks;
2797 i -= (sh->pd_idx + 1);
2798 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002799 break;
2800 case ALGORITHM_LEFT_ASYMMETRIC_6:
2801 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2802 if (i > sh->pd_idx)
2803 i--;
2804 break;
2805 case ALGORITHM_LEFT_SYMMETRIC_6:
2806 case ALGORITHM_RIGHT_SYMMETRIC_6:
2807 if (i < sh->pd_idx)
2808 i += data_disks + 1;
2809 i -= (sh->pd_idx + 1);
2810 break;
2811 case ALGORITHM_PARITY_0_6:
2812 i -= 1;
2813 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002814 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002815 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002816 }
2817 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 }
2819
2820 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002821 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
NeilBrown112bf892009-03-31 14:39:38 +11002823 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002824 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002825 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2826 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002827 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2828 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 return 0;
2830 }
2831 return r_sector;
2832}
2833
Dan Williams600aa102008-06-28 08:32:05 +10002834static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002835schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002836 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002837{
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002838 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002839 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002840 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002841
Dan Williamse33129d2007-01-02 13:52:30 -07002842 if (rcw) {
Dan Williamse33129d2007-01-02 13:52:30 -07002843
2844 for (i = disks; i--; ) {
2845 struct r5dev *dev = &sh->dev[i];
2846
2847 if (dev->towrite) {
2848 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002849 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002850 if (!expand)
2851 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002852 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002853 }
2854 }
NeilBrownce7d3632013-03-04 12:37:14 +11002855 /* if we are not expanding this is a proper write request, and
2856 * there will be bios with new data to be drained into the
2857 * stripe cache
2858 */
2859 if (!expand) {
2860 if (!s->locked)
2861 /* False alarm, nothing to do */
2862 return;
2863 sh->reconstruct_state = reconstruct_state_drain_run;
2864 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2865 } else
2866 sh->reconstruct_state = reconstruct_state_run;
2867
2868 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
2869
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002870 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002871 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002872 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002873 } else {
2874 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2875 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002876 BUG_ON(level == 6 &&
2877 (!(test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags) ||
2878 test_bit(R5_Wantcompute, &sh->dev[qd_idx].flags))));
Dan Williamse33129d2007-01-02 13:52:30 -07002879
Dan Williamse33129d2007-01-02 13:52:30 -07002880 for (i = disks; i--; ) {
2881 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002882 if (i == pd_idx || i == qd_idx)
Dan Williamse33129d2007-01-02 13:52:30 -07002883 continue;
2884
Dan Williamse33129d2007-01-02 13:52:30 -07002885 if (dev->towrite &&
2886 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002887 test_bit(R5_Wantcompute, &dev->flags))) {
2888 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002889 set_bit(R5_LOCKED, &dev->flags);
2890 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002891 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002892 }
2893 }
NeilBrownce7d3632013-03-04 12:37:14 +11002894 if (!s->locked)
2895 /* False alarm - nothing to do */
2896 return;
2897 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
2898 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2899 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2900 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002901 }
2902
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002903 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002904 * are in flight
2905 */
2906 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2907 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002908 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002909
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002910 if (level == 6) {
2911 int qd_idx = sh->qd_idx;
2912 struct r5dev *dev = &sh->dev[qd_idx];
2913
2914 set_bit(R5_LOCKED, &dev->flags);
2915 clear_bit(R5_UPTODATE, &dev->flags);
2916 s->locked++;
2917 }
2918
Dan Williams600aa102008-06-28 08:32:05 +10002919 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07002920 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002921 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002922}
NeilBrown16a53ec2006-06-26 00:27:38 -07002923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924/*
2925 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002926 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 * The bi_next chain must be in order.
2928 */
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002929static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx,
2930 int forwrite, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931{
2932 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11002933 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002934 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
NeilBrowncbe47ec2011-07-26 11:20:35 +10002936 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002937 (unsigned long long)bi->bi_iter.bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 (unsigned long long)sh->sector);
2939
Shaohua Lib17459c2012-07-19 16:01:31 +10002940 /*
2941 * If several bio share a stripe. The bio bi_phys_segments acts as a
2942 * reference count to avoid race. The reference count should already be
2943 * increased before this function is called (for example, in
2944 * make_request()), so other bio sharing this stripe will not free the
2945 * stripe. If a stripe is owned by one stripe, the stripe lock will
2946 * protect it.
2947 */
2948 spin_lock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002949 /* Don't allow new IO added to stripes in batch list */
2950 if (sh->batch_head)
2951 goto overlap;
NeilBrown72626682005-09-09 16:23:54 -07002952 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002954 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07002955 firstwrite = 1;
2956 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 bip = &sh->dev[dd_idx].toread;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002958 while (*bip && (*bip)->bi_iter.bi_sector < bi->bi_iter.bi_sector) {
2959 if (bio_end_sector(*bip) > bi->bi_iter.bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 goto overlap;
2961 bip = & (*bip)->bi_next;
2962 }
Kent Overstreet4f024f32013-10-11 15:44:27 -07002963 if (*bip && (*bip)->bi_iter.bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 goto overlap;
2965
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002966 if (!forwrite || previous)
2967 clear_bit(STRIPE_BATCH_READY, &sh->state);
2968
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002969 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 if (*bip)
2971 bi->bi_next = *bip;
2972 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10002973 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07002974
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 if (forwrite) {
2976 /* check if page is covered */
2977 sector_t sector = sh->dev[dd_idx].sector;
2978 for (bi=sh->dev[dd_idx].towrite;
2979 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07002980 bi && bi->bi_iter.bi_sector <= sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002982 if (bio_end_sector(bi) >= sector)
2983 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 }
2985 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
shli@kernel.org7a87f432014-12-15 12:57:03 +11002986 if (!test_and_set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags))
2987 sh->overwrite_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10002989
2990 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002991 (unsigned long long)(*bip)->bi_iter.bi_sector,
NeilBrowncbe47ec2011-07-26 11:20:35 +10002992 (unsigned long long)sh->sector, dd_idx);
NeilBrownb97390a2012-10-11 13:50:12 +11002993 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10002994
2995 if (conf->mddev->bitmap && firstwrite) {
2996 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2997 STRIPE_SECTORS, 0);
2998 sh->bm_seq = conf->seq_flush+1;
2999 set_bit(STRIPE_BIT_DELAY, &sh->state);
3000 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003001
3002 if (stripe_can_batch(sh))
3003 stripe_add_to_batch_list(conf, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 return 1;
3005
3006 overlap:
3007 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10003008 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 return 0;
3010}
3011
NeilBrownd1688a62011-10-11 16:49:52 +11003012static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08003013
NeilBrownd1688a62011-10-11 16:49:52 +11003014static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003015 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08003016{
NeilBrown784052e2009-03-31 15:19:07 +11003017 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10003018 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11003019 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003020 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11003021 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003022
NeilBrown112bf892009-03-31 14:39:38 +11003023 raid5_compute_sector(conf,
3024 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08003025 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11003026 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003027 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003028}
3029
Dan Williamsa4456852007-07-09 11:56:43 -07003030static void
NeilBrownd1688a62011-10-11 16:49:52 +11003031handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003032 struct stripe_head_state *s, int disks,
3033 struct bio **return_bi)
3034{
3035 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003036 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003037 for (i = disks; i--; ) {
3038 struct bio *bi;
3039 int bitmap_end = 0;
3040
3041 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11003042 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07003043 rcu_read_lock();
3044 rdev = rcu_dereference(conf->disks[i].rdev);
3045 if (rdev && test_bit(In_sync, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10003046 atomic_inc(&rdev->nr_pending);
3047 else
3048 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003049 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10003050 if (rdev) {
3051 if (!rdev_set_badblocks(
3052 rdev,
3053 sh->sector,
3054 STRIPE_SECTORS, 0))
3055 md_error(conf->mddev, rdev);
3056 rdev_dec_pending(rdev, conf->mddev);
3057 }
Dan Williamsa4456852007-07-09 11:56:43 -07003058 }
Shaohua Lib17459c2012-07-19 16:01:31 +10003059 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003060 /* fail all writes first */
3061 bi = sh->dev[i].towrite;
3062 sh->dev[i].towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11003063 sh->overwrite_disks = 0;
Shaohua Lib17459c2012-07-19 16:01:31 +10003064 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11003065 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003066 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07003067
3068 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3069 wake_up(&conf->wait_for_overlap);
3070
Kent Overstreet4f024f32013-10-11 15:44:27 -07003071 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003072 sh->dev[i].sector + STRIPE_SECTORS) {
3073 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
3074 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003075 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003076 md_write_end(conf->mddev);
3077 bi->bi_next = *return_bi;
3078 *return_bi = bi;
3079 }
3080 bi = nextbi;
3081 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003082 if (bitmap_end)
3083 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3084 STRIPE_SECTORS, 0, 0);
3085 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003086 /* and fail all 'written' */
3087 bi = sh->dev[i].written;
3088 sh->dev[i].written = NULL;
Shaohua Lid592a992014-05-21 17:57:44 +08003089 if (test_and_clear_bit(R5_SkipCopy, &sh->dev[i].flags)) {
3090 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
3091 sh->dev[i].page = sh->dev[i].orig_page;
3092 }
3093
Dan Williamsa4456852007-07-09 11:56:43 -07003094 if (bi) bitmap_end = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003095 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003096 sh->dev[i].sector + STRIPE_SECTORS) {
3097 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
3098 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003099 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003100 md_write_end(conf->mddev);
3101 bi->bi_next = *return_bi;
3102 *return_bi = bi;
3103 }
3104 bi = bi2;
3105 }
3106
Dan Williamsb5e98d62007-01-02 13:52:31 -07003107 /* fail any reads if this device is non-operational and
3108 * the data has not reached the cache yet.
3109 */
3110 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
3111 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
3112 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11003113 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003114 bi = sh->dev[i].toread;
3115 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11003116 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003117 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3118 wake_up(&conf->wait_for_overlap);
Kent Overstreet4f024f32013-10-11 15:44:27 -07003119 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003120 sh->dev[i].sector + STRIPE_SECTORS) {
3121 struct bio *nextbi =
3122 r5_next_bio(bi, sh->dev[i].sector);
3123 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003124 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003125 bi->bi_next = *return_bi;
3126 *return_bi = bi;
3127 }
3128 bi = nextbi;
3129 }
3130 }
Dan Williamsa4456852007-07-09 11:56:43 -07003131 if (bitmap_end)
3132 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3133 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10003134 /* If we were in the middle of a write the parity block might
3135 * still be locked - so just clear all R5_LOCKED flags
3136 */
3137 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003138 }
3139
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003140 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3141 if (atomic_dec_and_test(&conf->pending_full_writes))
3142 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07003143}
3144
NeilBrown7f0da592011-07-28 11:39:22 +10003145static void
NeilBrownd1688a62011-10-11 16:49:52 +11003146handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10003147 struct stripe_head_state *s)
3148{
3149 int abort = 0;
3150 int i;
3151
shli@kernel.org59fc6302014-12-15 12:57:03 +11003152 BUG_ON(sh->batch_head);
NeilBrown7f0da592011-07-28 11:39:22 +10003153 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003154 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3155 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10003156 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11003157 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10003158 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10003159 * Don't even need to abort as that is handled elsewhere
3160 * if needed, and not always wanted e.g. if there is a known
3161 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11003162 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10003163 * non-sync devices, or abort the recovery
3164 */
NeilBrown18b98372012-04-01 23:48:38 +10003165 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
3166 /* During recovery devices cannot be removed, so
3167 * locking and refcounting of rdevs is not needed
3168 */
3169 for (i = 0; i < conf->raid_disks; i++) {
3170 struct md_rdev *rdev = conf->disks[i].rdev;
3171 if (rdev
3172 && !test_bit(Faulty, &rdev->flags)
3173 && !test_bit(In_sync, &rdev->flags)
3174 && !rdev_set_badblocks(rdev, sh->sector,
3175 STRIPE_SECTORS, 0))
3176 abort = 1;
3177 rdev = conf->disks[i].replacement;
3178 if (rdev
3179 && !test_bit(Faulty, &rdev->flags)
3180 && !test_bit(In_sync, &rdev->flags)
3181 && !rdev_set_badblocks(rdev, sh->sector,
3182 STRIPE_SECTORS, 0))
3183 abort = 1;
3184 }
3185 if (abort)
3186 conf->recovery_disabled =
3187 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10003188 }
NeilBrown18b98372012-04-01 23:48:38 +10003189 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10003190}
3191
NeilBrown9a3e1102011-12-23 10:17:53 +11003192static int want_replace(struct stripe_head *sh, int disk_idx)
3193{
3194 struct md_rdev *rdev;
3195 int rv = 0;
3196 /* Doing recovery so rcu locking not required */
3197 rdev = sh->raid_conf->disks[disk_idx].replacement;
3198 if (rdev
3199 && !test_bit(Faulty, &rdev->flags)
3200 && !test_bit(In_sync, &rdev->flags)
3201 && (rdev->recovery_offset <= sh->sector
3202 || rdev->mddev->recovery_cp <= sh->sector))
3203 rv = 1;
3204
3205 return rv;
3206}
3207
NeilBrown93b3dbc2011-07-27 11:00:36 +10003208/* fetch_block - checks the given member device to see if its data needs
Dan Williams1fe797e2008-06-28 09:16:30 +10003209 * to be read or computed to satisfy a request.
3210 *
3211 * Returns 1 when no more member devices need to be checked, otherwise returns
NeilBrown93b3dbc2011-07-27 11:00:36 +10003212 * 0 to tell the loop in handle_stripe_fill to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07003213 */
NeilBrown2c58f062015-02-02 11:32:23 +11003214
3215static int need_this_block(struct stripe_head *sh, struct stripe_head_state *s,
3216 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07003217{
3218 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10003219 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
3220 &sh->dev[s->failed_num[1]] };
NeilBrownea664c82015-02-02 14:03:28 +11003221 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07003222
NeilBrowna79cfe12015-02-02 11:37:59 +11003223
3224 if (test_bit(R5_LOCKED, &dev->flags) ||
3225 test_bit(R5_UPTODATE, &dev->flags))
3226 /* No point reading this as we already have it or have
3227 * decided to get it.
3228 */
3229 return 0;
3230
3231 if (dev->toread ||
3232 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)))
3233 /* We need this block to directly satisfy a request */
3234 return 1;
3235
3236 if (s->syncing || s->expanding ||
3237 (s->replacing && want_replace(sh, disk_idx)))
3238 /* When syncing, or expanding we read everything.
3239 * When replacing, we need the replaced block.
3240 */
3241 return 1;
3242
3243 if ((s->failed >= 1 && fdev[0]->toread) ||
3244 (s->failed >= 2 && fdev[1]->toread))
3245 /* If we want to read from a failed device, then
3246 * we need to actually read every other device.
3247 */
3248 return 1;
3249
NeilBrowna9d56952015-02-02 11:49:10 +11003250 /* Sometimes neither read-modify-write nor reconstruct-write
3251 * cycles can work. In those cases we read every block we
3252 * can. Then the parity-update is certain to have enough to
3253 * work with.
3254 * This can only be a problem when we need to write something,
3255 * and some device has failed. If either of those tests
3256 * fail we need look no further.
3257 */
3258 if (!s->failed || !s->to_write)
3259 return 0;
3260
3261 if (test_bit(R5_Insync, &dev->flags) &&
3262 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3263 /* Pre-reads at not permitted until after short delay
3264 * to gather multiple requests. However if this
3265 * device is no Insync, the block could only be be computed
3266 * and there is no need to delay that.
3267 */
3268 return 0;
NeilBrownea664c82015-02-02 14:03:28 +11003269
3270 for (i = 0; i < s->failed; i++) {
3271 if (fdev[i]->towrite &&
3272 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3273 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3274 /* If we have a partial write to a failed
3275 * device, then we will need to reconstruct
3276 * the content of that device, so all other
3277 * devices must be read.
3278 */
3279 return 1;
3280 }
3281
3282 /* If we are forced to do a reconstruct-write, either because
3283 * the current RAID6 implementation only supports that, or
3284 * or because parity cannot be trusted and we are currently
3285 * recovering it, there is extra need to be careful.
3286 * If one of the devices that we would need to read, because
3287 * it is not being overwritten (and maybe not written at all)
3288 * is missing/faulty, then we need to read everything we can.
3289 */
3290 if (sh->raid_conf->level != 6 &&
3291 sh->sector < sh->raid_conf->mddev->recovery_cp)
3292 /* reconstruct-write isn't being forced */
3293 return 0;
3294 for (i = 0; i < s->failed; i++) {
NeilBrown10d82c52015-05-08 18:19:33 +10003295 if (s->failed_num[i] != sh->pd_idx &&
3296 s->failed_num[i] != sh->qd_idx &&
3297 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
NeilBrownea664c82015-02-02 14:03:28 +11003298 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3299 return 1;
3300 }
3301
NeilBrown2c58f062015-02-02 11:32:23 +11003302 return 0;
3303}
3304
3305static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
3306 int disk_idx, int disks)
3307{
3308 struct r5dev *dev = &sh->dev[disk_idx];
3309
3310 /* is the data in this block needed, and can we get it? */
3311 if (need_this_block(sh, s, disk_idx, disks)) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003312 /* we would like to get this block, possibly by computing it,
3313 * otherwise read it if the backing disk is insync
3314 */
3315 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
3316 BUG_ON(test_bit(R5_Wantread, &dev->flags));
NeilBrownb0c783b2015-05-08 18:19:32 +10003317 BUG_ON(sh->batch_head);
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003318 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10003319 (s->failed && (disk_idx == s->failed_num[0] ||
3320 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003321 /* have disk failed, and we're requested to fetch it;
3322 * do compute it
3323 */
3324 pr_debug("Computing stripe %llu block %d\n",
3325 (unsigned long long)sh->sector, disk_idx);
3326 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3327 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3328 set_bit(R5_Wantcompute, &dev->flags);
3329 sh->ops.target = disk_idx;
3330 sh->ops.target2 = -1; /* no 2nd target */
3331 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10003332 /* Careful: from this point on 'uptodate' is in the eye
3333 * of raid_run_ops which services 'compute' operations
3334 * before writes. R5_Wantcompute flags a block that will
3335 * be R5_UPTODATE by the time it is needed for a
3336 * subsequent operation.
3337 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003338 s->uptodate++;
3339 return 1;
3340 } else if (s->uptodate == disks-2 && s->failed >= 2) {
3341 /* Computing 2-failure is *very* expensive; only
3342 * do it if failed >= 2
3343 */
3344 int other;
3345 for (other = disks; other--; ) {
3346 if (other == disk_idx)
3347 continue;
3348 if (!test_bit(R5_UPTODATE,
3349 &sh->dev[other].flags))
3350 break;
3351 }
3352 BUG_ON(other < 0);
3353 pr_debug("Computing stripe %llu blocks %d,%d\n",
3354 (unsigned long long)sh->sector,
3355 disk_idx, other);
3356 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3357 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3358 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
3359 set_bit(R5_Wantcompute, &sh->dev[other].flags);
3360 sh->ops.target = disk_idx;
3361 sh->ops.target2 = other;
3362 s->uptodate += 2;
3363 s->req_compute = 1;
3364 return 1;
3365 } else if (test_bit(R5_Insync, &dev->flags)) {
3366 set_bit(R5_LOCKED, &dev->flags);
3367 set_bit(R5_Wantread, &dev->flags);
3368 s->locked++;
3369 pr_debug("Reading block %d (sync=%d)\n",
3370 disk_idx, s->syncing);
3371 }
3372 }
3373
3374 return 0;
3375}
3376
3377/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10003378 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003379 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10003380static void handle_stripe_fill(struct stripe_head *sh,
3381 struct stripe_head_state *s,
3382 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003383{
3384 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003385
3386 /* look for blocks to read/compute, skip this if a compute
3387 * is already in flight, or if the stripe contents are in the
3388 * midst of changing due to a write
3389 */
3390 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
3391 !sh->reconstruct_state)
3392 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10003393 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003394 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003395 set_bit(STRIPE_HANDLE, &sh->state);
3396}
3397
Dan Williams1fe797e2008-06-28 09:16:30 +10003398/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07003399 * any written block on an uptodate or failed drive can be returned.
3400 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
3401 * never LOCKED, so we don't need to test 'failed' directly.
3402 */
NeilBrownd1688a62011-10-11 16:49:52 +11003403static void handle_stripe_clean_event(struct r5conf *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07003404 struct stripe_head *sh, int disks, struct bio **return_bi)
3405{
3406 int i;
3407 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003408 int discard_pending = 0;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003409 struct stripe_head *head_sh = sh;
3410 bool do_endio = false;
3411 int wakeup_nr = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003412
3413 for (i = disks; i--; )
3414 if (sh->dev[i].written) {
3415 dev = &sh->dev[i];
3416 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003417 (test_bit(R5_UPTODATE, &dev->flags) ||
Shaohua Lid592a992014-05-21 17:57:44 +08003418 test_bit(R5_Discard, &dev->flags) ||
3419 test_bit(R5_SkipCopy, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003420 /* We can return any write requests */
3421 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003422 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11003423 if (test_and_clear_bit(R5_Discard, &dev->flags))
3424 clear_bit(R5_UPTODATE, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08003425 if (test_and_clear_bit(R5_SkipCopy, &dev->flags)) {
3426 WARN_ON(test_bit(R5_UPTODATE, &dev->flags));
Shaohua Lid592a992014-05-21 17:57:44 +08003427 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003428 do_endio = true;
3429
3430returnbi:
3431 dev->page = dev->orig_page;
Dan Williamsa4456852007-07-09 11:56:43 -07003432 wbi = dev->written;
3433 dev->written = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003434 while (wbi && wbi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003435 dev->sector + STRIPE_SECTORS) {
3436 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003437 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003438 md_write_end(conf->mddev);
3439 wbi->bi_next = *return_bi;
3440 *return_bi = wbi;
3441 }
3442 wbi = wbi2;
3443 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003444 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3445 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07003446 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003447 0);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003448 if (head_sh->batch_head) {
3449 sh = list_first_entry(&sh->batch_list,
3450 struct stripe_head,
3451 batch_list);
3452 if (sh != head_sh) {
3453 dev = &sh->dev[i];
3454 goto returnbi;
3455 }
3456 }
3457 sh = head_sh;
3458 dev = &sh->dev[i];
NeilBrownf8dfcff2013-03-12 12:18:06 +11003459 } else if (test_bit(R5_Discard, &dev->flags))
3460 discard_pending = 1;
Shaohua Lid592a992014-05-21 17:57:44 +08003461 WARN_ON(test_bit(R5_SkipCopy, &dev->flags));
3462 WARN_ON(dev->page != dev->orig_page);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003463 }
3464 if (!discard_pending &&
3465 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
3466 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
3467 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
3468 if (sh->qd_idx >= 0) {
3469 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
3470 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
3471 }
3472 /* now that discard is done we can proceed with any sync */
3473 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08003474 /*
3475 * SCSI discard will change some bio fields and the stripe has
3476 * no updated data, so remove it from hash list and the stripe
3477 * will be reinitialized
3478 */
3479 spin_lock_irq(&conf->device_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003480unhash:
Shaohua Lid47648f2013-10-19 14:51:42 +08003481 remove_hash(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003482 if (head_sh->batch_head) {
3483 sh = list_first_entry(&sh->batch_list,
3484 struct stripe_head, batch_list);
3485 if (sh != head_sh)
3486 goto unhash;
3487 }
Shaohua Lid47648f2013-10-19 14:51:42 +08003488 spin_unlock_irq(&conf->device_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003489 sh = head_sh;
3490
NeilBrownf8dfcff2013-03-12 12:18:06 +11003491 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
3492 set_bit(STRIPE_HANDLE, &sh->state);
3493
3494 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003495
3496 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3497 if (atomic_dec_and_test(&conf->pending_full_writes))
3498 md_wakeup_thread(conf->mddev->thread);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003499
3500 if (!head_sh->batch_head || !do_endio)
3501 return;
3502 for (i = 0; i < head_sh->disks; i++) {
3503 if (test_and_clear_bit(R5_Overlap, &head_sh->dev[i].flags))
3504 wakeup_nr++;
3505 }
3506 while (!list_empty(&head_sh->batch_list)) {
3507 int i;
3508 sh = list_first_entry(&head_sh->batch_list,
3509 struct stripe_head, batch_list);
3510 list_del_init(&sh->batch_list);
3511
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003512 set_mask_bits(&sh->state, ~STRIPE_EXPAND_SYNC_FLAG,
3513 head_sh->state & ~((1 << STRIPE_ACTIVE) |
3514 (1 << STRIPE_PREREAD_ACTIVE) |
3515 STRIPE_EXPAND_SYNC_FLAG));
shli@kernel.org59fc6302014-12-15 12:57:03 +11003516 sh->check_state = head_sh->check_state;
3517 sh->reconstruct_state = head_sh->reconstruct_state;
3518 for (i = 0; i < sh->disks; i++) {
3519 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3520 wakeup_nr++;
3521 sh->dev[i].flags = head_sh->dev[i].flags;
3522 }
3523
3524 spin_lock_irq(&sh->stripe_lock);
3525 sh->batch_head = NULL;
3526 spin_unlock_irq(&sh->stripe_lock);
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003527 if (sh->state & STRIPE_EXPAND_SYNC_FLAG)
3528 set_bit(STRIPE_HANDLE, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003529 release_stripe(sh);
3530 }
3531
3532 spin_lock_irq(&head_sh->stripe_lock);
3533 head_sh->batch_head = NULL;
3534 spin_unlock_irq(&head_sh->stripe_lock);
3535 wake_up_nr(&conf->wait_for_overlap, wakeup_nr);
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003536 if (head_sh->state & STRIPE_EXPAND_SYNC_FLAG)
3537 set_bit(STRIPE_HANDLE, &head_sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003538}
3539
NeilBrownd1688a62011-10-11 16:49:52 +11003540static void handle_stripe_dirtying(struct r5conf *conf,
NeilBrownc8ac1802011-07-27 11:00:36 +10003541 struct stripe_head *sh,
3542 struct stripe_head_state *s,
3543 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003544{
3545 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11003546 sector_t recovery_cp = conf->mddev->recovery_cp;
3547
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003548 /* Check whether resync is now happening or should start.
Alexander Lyakasa7854482012-10-11 13:50:12 +11003549 * If yes, then the array is dirty (after unclean shutdown or
3550 * initial creation), so parity in some stripes might be inconsistent.
3551 * In this case, we need to always do reconstruct-write, to ensure
3552 * that in case of drive failure or read-error correction, we
3553 * generate correct data from the parity.
3554 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003555 if (conf->rmw_level == PARITY_DISABLE_RMW ||
NeilBrown26ac1072015-02-18 11:35:14 +11003556 (recovery_cp < MaxSector && sh->sector >= recovery_cp &&
3557 s->failed == 0)) {
Alexander Lyakasa7854482012-10-11 13:50:12 +11003558 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10003559 * look like rcw is cheaper
3560 */
3561 rcw = 1; rmw = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003562 pr_debug("force RCW rmw_level=%u, recovery_cp=%llu sh->sector=%llu\n",
3563 conf->rmw_level, (unsigned long long)recovery_cp,
Alexander Lyakasa7854482012-10-11 13:50:12 +11003564 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10003565 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003566 /* would I have to read this buffer for read_modify_write */
3567 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003568 if ((dev->towrite || i == sh->pd_idx || i == sh->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003569 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003570 !(test_bit(R5_UPTODATE, &dev->flags) ||
3571 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003572 if (test_bit(R5_Insync, &dev->flags))
3573 rmw++;
3574 else
3575 rmw += 2*disks; /* cannot read it */
3576 }
3577 /* Would I have to read this buffer for reconstruct_write */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003578 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
3579 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003580 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003581 !(test_bit(R5_UPTODATE, &dev->flags) ||
3582 test_bit(R5_Wantcompute, &dev->flags))) {
NeilBrown67f45542014-05-28 13:39:22 +10003583 if (test_bit(R5_Insync, &dev->flags))
3584 rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07003585 else
3586 rcw += 2*disks;
3587 }
3588 }
Dan Williams45b42332007-07-09 11:56:43 -07003589 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003590 (unsigned long long)sh->sector, rmw, rcw);
3591 set_bit(STRIPE_HANDLE, &sh->state);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003592 if ((rmw < rcw || (rmw == rcw && conf->rmw_level == PARITY_ENABLE_RMW)) && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003593 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003594 if (conf->mddev->queue)
3595 blk_add_trace_msg(conf->mddev->queue,
3596 "raid5 rmw %llu %d",
3597 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07003598 for (i = disks; i--; ) {
3599 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003600 if ((dev->towrite || i == sh->pd_idx || i == sh->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003601 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003602 !(test_bit(R5_UPTODATE, &dev->flags) ||
3603 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003604 test_bit(R5_Insync, &dev->flags)) {
NeilBrown67f45542014-05-28 13:39:22 +10003605 if (test_bit(STRIPE_PREREAD_ACTIVE,
3606 &sh->state)) {
3607 pr_debug("Read_old block %d for r-m-w\n",
3608 i);
Dan Williamsa4456852007-07-09 11:56:43 -07003609 set_bit(R5_LOCKED, &dev->flags);
3610 set_bit(R5_Wantread, &dev->flags);
3611 s->locked++;
3612 } else {
3613 set_bit(STRIPE_DELAYED, &sh->state);
3614 set_bit(STRIPE_HANDLE, &sh->state);
3615 }
3616 }
3617 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003618 }
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003619 if ((rcw < rmw || (rcw == rmw && conf->rmw_level != PARITY_ENABLE_RMW)) && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003620 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003621 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003622 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003623 for (i = disks; i--; ) {
3624 struct r5dev *dev = &sh->dev[i];
3625 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003626 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003627 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003628 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003629 test_bit(R5_Wantcompute, &dev->flags))) {
3630 rcw++;
NeilBrown67f45542014-05-28 13:39:22 +10003631 if (test_bit(R5_Insync, &dev->flags) &&
3632 test_bit(STRIPE_PREREAD_ACTIVE,
3633 &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003634 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003635 "%d for Reconstruct\n", i);
3636 set_bit(R5_LOCKED, &dev->flags);
3637 set_bit(R5_Wantread, &dev->flags);
3638 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003639 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003640 } else {
3641 set_bit(STRIPE_DELAYED, &sh->state);
3642 set_bit(STRIPE_HANDLE, &sh->state);
3643 }
3644 }
3645 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003646 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003647 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3648 (unsigned long long)sh->sector,
3649 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003650 }
NeilBrownb1b02fe2015-02-02 10:44:29 +11003651
3652 if (rcw > disks && rmw > disks &&
3653 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3654 set_bit(STRIPE_DELAYED, &sh->state);
3655
Dan Williamsa4456852007-07-09 11:56:43 -07003656 /* now if nothing is locked, and if we have enough data,
3657 * we can start a write request
3658 */
Dan Williamsf38e1212007-01-02 13:52:30 -07003659 /* since handle_stripe can be called at any time we need to handle the
3660 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07003661 * subsequent call wants to start a write request. raid_run_ops only
3662 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07003663 * simultaneously. If this is not the case then new writes need to be
3664 * held off until the compute completes.
3665 */
Dan Williams976ea8d2008-06-28 08:32:03 +10003666 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
3667 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
3668 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003669 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07003670}
3671
NeilBrownd1688a62011-10-11 16:49:52 +11003672static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003673 struct stripe_head_state *s, int disks)
3674{
Dan Williamsecc65c92008-06-28 08:31:57 +10003675 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07003676
shli@kernel.org59fc6302014-12-15 12:57:03 +11003677 BUG_ON(sh->batch_head);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003678 set_bit(STRIPE_HANDLE, &sh->state);
3679
Dan Williamsecc65c92008-06-28 08:31:57 +10003680 switch (sh->check_state) {
3681 case check_state_idle:
3682 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07003683 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07003684 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10003685 sh->check_state = check_state_run;
3686 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003687 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003688 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10003689 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07003690 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003691 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10003692 /* fall through */
3693 case check_state_compute_result:
3694 sh->check_state = check_state_idle;
3695 if (!dev)
3696 dev = &sh->dev[sh->pd_idx];
3697
3698 /* check that a write has not made the stripe insync */
3699 if (test_bit(STRIPE_INSYNC, &sh->state))
3700 break;
3701
3702 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07003703 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3704 BUG_ON(s->uptodate != disks);
3705
3706 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10003707 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07003708 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07003709
Dan Williamsa4456852007-07-09 11:56:43 -07003710 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003711 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003712 break;
3713 case check_state_run:
3714 break; /* we will be called again upon completion */
3715 case check_state_check_result:
3716 sh->check_state = check_state_idle;
3717
3718 /* if a failure occurred during the check operation, leave
3719 * STRIPE_INSYNC not set and let the stripe be handled again
3720 */
3721 if (s->failed)
3722 break;
3723
3724 /* handle a successful check operation, if parity is correct
3725 * we are done. Otherwise update the mismatch count and repair
3726 * parity if !MD_RECOVERY_CHECK
3727 */
Dan Williamsad283ea2009-08-29 19:09:26 -07003728 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10003729 /* parity is correct (on disc,
3730 * not in buffer any more)
3731 */
3732 set_bit(STRIPE_INSYNC, &sh->state);
3733 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003734 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10003735 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3736 /* don't try to repair!! */
3737 set_bit(STRIPE_INSYNC, &sh->state);
3738 else {
3739 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003740 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003741 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3742 set_bit(R5_Wantcompute,
3743 &sh->dev[sh->pd_idx].flags);
3744 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003745 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003746 s->uptodate++;
3747 }
3748 }
3749 break;
3750 case check_state_compute_run:
3751 break;
3752 default:
3753 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3754 __func__, sh->check_state,
3755 (unsigned long long) sh->sector);
3756 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003757 }
3758}
3759
NeilBrownd1688a62011-10-11 16:49:52 +11003760static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003761 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003762 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003763{
Dan Williamsa4456852007-07-09 11:56:43 -07003764 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003765 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003766 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003767
shli@kernel.org59fc6302014-12-15 12:57:03 +11003768 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003769 set_bit(STRIPE_HANDLE, &sh->state);
3770
3771 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003772
Dan Williamsa4456852007-07-09 11:56:43 -07003773 /* Want to check and possibly repair P and Q.
3774 * However there could be one 'failed' device, in which
3775 * case we can only check one of them, possibly using the
3776 * other to generate missing data
3777 */
3778
Dan Williamsd82dfee2009-07-14 13:40:57 -07003779 switch (sh->check_state) {
3780 case check_state_idle:
3781 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10003782 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003783 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07003784 * makes sense to check P (If anything else were failed,
3785 * we would have used P to recreate it).
3786 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003787 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07003788 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003789 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003790 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07003791 * anything, so it makes sense to check it
3792 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003793 if (sh->check_state == check_state_run)
3794 sh->check_state = check_state_run_pq;
3795 else
3796 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07003797 }
Dan Williams36d1c642009-07-14 11:48:22 -07003798
Dan Williamsd82dfee2009-07-14 13:40:57 -07003799 /* discard potentially stale zero_sum_result */
3800 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07003801
Dan Williamsd82dfee2009-07-14 13:40:57 -07003802 if (sh->check_state == check_state_run) {
3803 /* async_xor_zero_sum destroys the contents of P */
3804 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3805 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07003806 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003807 if (sh->check_state >= check_state_run &&
3808 sh->check_state <= check_state_run_pq) {
3809 /* async_syndrome_zero_sum preserves P and Q, so
3810 * no need to mark them !uptodate here
3811 */
3812 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3813 break;
3814 }
Dan Williams36d1c642009-07-14 11:48:22 -07003815
Dan Williamsd82dfee2009-07-14 13:40:57 -07003816 /* we have 2-disk failure */
3817 BUG_ON(s->failed != 2);
3818 /* fall through */
3819 case check_state_compute_result:
3820 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003821
Dan Williamsd82dfee2009-07-14 13:40:57 -07003822 /* check that a write has not made the stripe insync */
3823 if (test_bit(STRIPE_INSYNC, &sh->state))
3824 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003825
3826 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003827 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003828 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003829 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003830 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003831 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003832 s->locked++;
3833 set_bit(R5_LOCKED, &dev->flags);
3834 set_bit(R5_Wantwrite, &dev->flags);
3835 }
3836 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003837 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003838 s->locked++;
3839 set_bit(R5_LOCKED, &dev->flags);
3840 set_bit(R5_Wantwrite, &dev->flags);
3841 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003842 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003843 dev = &sh->dev[pd_idx];
3844 s->locked++;
3845 set_bit(R5_LOCKED, &dev->flags);
3846 set_bit(R5_Wantwrite, &dev->flags);
3847 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003848 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003849 dev = &sh->dev[qd_idx];
3850 s->locked++;
3851 set_bit(R5_LOCKED, &dev->flags);
3852 set_bit(R5_Wantwrite, &dev->flags);
3853 }
3854 clear_bit(STRIPE_DEGRADED, &sh->state);
3855
3856 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003857 break;
3858 case check_state_run:
3859 case check_state_run_q:
3860 case check_state_run_pq:
3861 break; /* we will be called again upon completion */
3862 case check_state_check_result:
3863 sh->check_state = check_state_idle;
3864
3865 /* handle a successful check operation, if parity is correct
3866 * we are done. Otherwise update the mismatch count and repair
3867 * parity if !MD_RECOVERY_CHECK
3868 */
3869 if (sh->ops.zero_sum_result == 0) {
3870 /* both parities are correct */
3871 if (!s->failed)
3872 set_bit(STRIPE_INSYNC, &sh->state);
3873 else {
3874 /* in contrast to the raid5 case we can validate
3875 * parity, but still have a failure to write
3876 * back
3877 */
3878 sh->check_state = check_state_compute_result;
3879 /* Returning at this point means that we may go
3880 * off and bring p and/or q uptodate again so
3881 * we make sure to check zero_sum_result again
3882 * to verify if p or q need writeback
3883 */
3884 }
3885 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003886 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003887 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3888 /* don't try to repair!! */
3889 set_bit(STRIPE_INSYNC, &sh->state);
3890 else {
3891 int *target = &sh->ops.target;
3892
3893 sh->ops.target = -1;
3894 sh->ops.target2 = -1;
3895 sh->check_state = check_state_compute_run;
3896 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3897 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3898 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3899 set_bit(R5_Wantcompute,
3900 &sh->dev[pd_idx].flags);
3901 *target = pd_idx;
3902 target = &sh->ops.target2;
3903 s->uptodate++;
3904 }
3905 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3906 set_bit(R5_Wantcompute,
3907 &sh->dev[qd_idx].flags);
3908 *target = qd_idx;
3909 s->uptodate++;
3910 }
3911 }
3912 }
3913 break;
3914 case check_state_compute_run:
3915 break;
3916 default:
3917 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3918 __func__, sh->check_state,
3919 (unsigned long long) sh->sector);
3920 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003921 }
3922}
3923
NeilBrownd1688a62011-10-11 16:49:52 +11003924static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07003925{
3926 int i;
3927
3928 /* We have read all the blocks in this stripe and now we need to
3929 * copy some of them into a target stripe for expand.
3930 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07003931 struct dma_async_tx_descriptor *tx = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003932 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003933 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3934 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11003935 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11003936 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07003937 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07003938 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07003939
NeilBrown784052e2009-03-31 15:19:07 +11003940 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11003941 sector_t s = raid5_compute_sector(conf, bn, 0,
3942 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10003943 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07003944 if (sh2 == NULL)
3945 /* so far only the early blocks of this stripe
3946 * have been requested. When later blocks
3947 * get requested, we will try again
3948 */
3949 continue;
3950 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
3951 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
3952 /* must have already done this block */
3953 release_stripe(sh2);
3954 continue;
3955 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003956
3957 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07003958 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003959 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07003960 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07003961 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003962
Dan Williamsa4456852007-07-09 11:56:43 -07003963 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
3964 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
3965 for (j = 0; j < conf->raid_disks; j++)
3966 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10003967 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003968 !test_bit(R5_Expanded, &sh2->dev[j].flags))
3969 break;
3970 if (j == conf->raid_disks) {
3971 set_bit(STRIPE_EXPAND_READY, &sh2->state);
3972 set_bit(STRIPE_HANDLE, &sh2->state);
3973 }
3974 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003975
Dan Williamsa4456852007-07-09 11:56:43 -07003976 }
NeilBrowna2e08552007-09-11 15:23:36 -07003977 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11003978 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07003979}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
3981/*
3982 * handle_stripe - do things to a stripe.
3983 *
NeilBrown9a3e1102011-12-23 10:17:53 +11003984 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
3985 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11003987 * return some read requests which now have data
3988 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 * schedule a read on some buffers
3990 * schedule a write of some buffers
3991 * return confirmation of parity correctness
3992 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 */
Dan Williamsa4456852007-07-09 11:56:43 -07003994
NeilBrownacfe7262011-07-27 11:00:36 +10003995static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07003996{
NeilBrownd1688a62011-10-11 16:49:52 +11003997 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003998 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003999 struct r5dev *dev;
4000 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11004001 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07004002
NeilBrownacfe7262011-07-27 11:00:36 +10004003 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07004004
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004005 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state) && !sh->batch_head;
4006 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state) && !sh->batch_head;
NeilBrownacfe7262011-07-27 11:00:36 +10004007 s->failed_num[0] = -1;
4008 s->failed_num[1] = -1;
4009
4010 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07004011 rcu_read_lock();
4012 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004013 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10004014 sector_t first_bad;
4015 int bad_sectors;
4016 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10004017
NeilBrown16a53ec2006-06-26 00:27:38 -07004018 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07004019
Dan Williams45b42332007-07-09 11:56:43 -07004020 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11004021 i, dev->flags,
4022 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004023 /* maybe we can reply to a read
4024 *
4025 * new wantfill requests are only permitted while
4026 * ops_complete_biofill is guaranteed to be inactive
4027 */
4028 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
4029 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
4030 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07004031
4032 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10004033 if (test_bit(R5_LOCKED, &dev->flags))
4034 s->locked++;
4035 if (test_bit(R5_UPTODATE, &dev->flags))
4036 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004037 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004038 s->compute++;
4039 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004040 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004041
NeilBrownacfe7262011-07-27 11:00:36 +10004042 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004043 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10004044 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10004045 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004046 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10004047 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004048 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004049 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004050 }
Dan Williamsa4456852007-07-09 11:56:43 -07004051 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10004052 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11004053 /* Prefer to use the replacement for reads, but only
4054 * if it is recovered enough and has no bad blocks.
4055 */
4056 rdev = rcu_dereference(conf->disks[i].replacement);
4057 if (rdev && !test_bit(Faulty, &rdev->flags) &&
4058 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
4059 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4060 &first_bad, &bad_sectors))
4061 set_bit(R5_ReadRepl, &dev->flags);
4062 else {
NeilBrown9a3e1102011-12-23 10:17:53 +11004063 if (rdev)
4064 set_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11004065 rdev = rcu_dereference(conf->disks[i].rdev);
4066 clear_bit(R5_ReadRepl, &dev->flags);
4067 }
NeilBrown9283d8c2011-12-08 16:27:57 +11004068 if (rdev && test_bit(Faulty, &rdev->flags))
4069 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10004070 if (rdev) {
4071 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4072 &first_bad, &bad_sectors);
4073 if (s->blocked_rdev == NULL
4074 && (test_bit(Blocked, &rdev->flags)
4075 || is_bad < 0)) {
4076 if (is_bad < 0)
4077 set_bit(BlockedBadBlocks,
4078 &rdev->flags);
4079 s->blocked_rdev = rdev;
4080 atomic_inc(&rdev->nr_pending);
4081 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004082 }
NeilBrown415e72d2010-06-17 17:25:21 +10004083 clear_bit(R5_Insync, &dev->flags);
4084 if (!rdev)
4085 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10004086 else if (is_bad) {
4087 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10004088 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
4089 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10004090 /* treat as in-sync, but with a read error
4091 * which we can now try to correct
4092 */
4093 set_bit(R5_Insync, &dev->flags);
4094 set_bit(R5_ReadError, &dev->flags);
4095 }
4096 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10004097 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11004098 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10004099 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11004100 set_bit(R5_Insync, &dev->flags);
4101 else if (test_bit(R5_UPTODATE, &dev->flags) &&
4102 test_bit(R5_Expanded, &dev->flags))
4103 /* If we've reshaped into here, we assume it is Insync.
4104 * We will shortly update recovery_offset to make
4105 * it official.
4106 */
4107 set_bit(R5_Insync, &dev->flags);
4108
NeilBrown1cc03eb2014-01-06 13:19:42 +11004109 if (test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004110 /* This flag does not apply to '.replacement'
4111 * only to .rdev, so make sure to check that*/
4112 struct md_rdev *rdev2 = rcu_dereference(
4113 conf->disks[i].rdev);
4114 if (rdev2 == rdev)
4115 clear_bit(R5_Insync, &dev->flags);
4116 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004117 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004118 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10004119 } else
4120 clear_bit(R5_WriteError, &dev->flags);
4121 }
NeilBrown1cc03eb2014-01-06 13:19:42 +11004122 if (test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004123 /* This flag does not apply to '.replacement'
4124 * only to .rdev, so make sure to check that*/
4125 struct md_rdev *rdev2 = rcu_dereference(
4126 conf->disks[i].rdev);
4127 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10004128 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004129 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10004130 } else
4131 clear_bit(R5_MadeGood, &dev->flags);
4132 }
NeilBrown977df362011-12-23 10:17:53 +11004133 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
4134 struct md_rdev *rdev2 = rcu_dereference(
4135 conf->disks[i].replacement);
4136 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
4137 s->handle_bad_blocks = 1;
4138 atomic_inc(&rdev2->nr_pending);
4139 } else
4140 clear_bit(R5_MadeGoodRepl, &dev->flags);
4141 }
NeilBrown415e72d2010-06-17 17:25:21 +10004142 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004143 /* The ReadError flag will just be confusing now */
4144 clear_bit(R5_ReadError, &dev->flags);
4145 clear_bit(R5_ReWrite, &dev->flags);
4146 }
NeilBrown415e72d2010-06-17 17:25:21 +10004147 if (test_bit(R5_ReadError, &dev->flags))
4148 clear_bit(R5_Insync, &dev->flags);
4149 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004150 if (s->failed < 2)
4151 s->failed_num[s->failed] = i;
4152 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11004153 if (rdev && !test_bit(Faulty, &rdev->flags))
4154 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10004155 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004156 }
NeilBrown9a3e1102011-12-23 10:17:53 +11004157 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4158 /* If there is a failed device being replaced,
4159 * we must be recovering.
4160 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10004161 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11004162 * else we can only be replacing
4163 * sync and recovery both need to read all devices, and so
4164 * use the same flag.
4165 */
4166 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10004167 sh->sector >= conf->mddev->recovery_cp ||
4168 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11004169 s->syncing = 1;
4170 else
4171 s->replacing = 1;
4172 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004173 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10004174}
NeilBrownf4168852007-02-28 20:11:53 -08004175
shli@kernel.org59fc6302014-12-15 12:57:03 +11004176static int clear_batch_ready(struct stripe_head *sh)
4177{
4178 struct stripe_head *tmp;
4179 if (!test_and_clear_bit(STRIPE_BATCH_READY, &sh->state))
4180 return 0;
4181 spin_lock(&sh->stripe_lock);
4182 if (!sh->batch_head) {
4183 spin_unlock(&sh->stripe_lock);
4184 return 0;
4185 }
4186
4187 /*
4188 * this stripe could be added to a batch list before we check
4189 * BATCH_READY, skips it
4190 */
4191 if (sh->batch_head != sh) {
4192 spin_unlock(&sh->stripe_lock);
4193 return 1;
4194 }
4195 spin_lock(&sh->batch_lock);
4196 list_for_each_entry(tmp, &sh->batch_list, batch_list)
4197 clear_bit(STRIPE_BATCH_READY, &tmp->state);
4198 spin_unlock(&sh->batch_lock);
4199 spin_unlock(&sh->stripe_lock);
4200
4201 /*
4202 * BATCH_READY is cleared, no new stripes can be added.
4203 * batch_list can be accessed without lock
4204 */
4205 return 0;
4206}
4207
shli@kernel.org72ac7332014-12-15 12:57:03 +11004208static void check_break_stripe_batch_list(struct stripe_head *sh)
4209{
4210 struct stripe_head *head_sh, *next;
4211 int i;
4212
4213 if (!test_and_clear_bit(STRIPE_BATCH_ERR, &sh->state))
4214 return;
4215
4216 head_sh = sh;
4217 do {
4218 sh = list_first_entry(&sh->batch_list,
4219 struct stripe_head, batch_list);
4220 BUG_ON(sh == head_sh);
4221 } while (!test_bit(STRIPE_DEGRADED, &sh->state));
4222
4223 while (sh != head_sh) {
4224 next = list_first_entry(&sh->batch_list,
4225 struct stripe_head, batch_list);
4226 list_del_init(&sh->batch_list);
4227
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004228 set_mask_bits(&sh->state, ~STRIPE_EXPAND_SYNC_FLAG,
4229 head_sh->state & ~((1 << STRIPE_ACTIVE) |
4230 (1 << STRIPE_PREREAD_ACTIVE) |
4231 (1 << STRIPE_DEGRADED) |
4232 STRIPE_EXPAND_SYNC_FLAG));
shli@kernel.org72ac7332014-12-15 12:57:03 +11004233 sh->check_state = head_sh->check_state;
4234 sh->reconstruct_state = head_sh->reconstruct_state;
4235 for (i = 0; i < sh->disks; i++)
4236 sh->dev[i].flags = head_sh->dev[i].flags &
4237 (~((1 << R5_WriteError) | (1 << R5_Overlap)));
4238
4239 spin_lock_irq(&sh->stripe_lock);
4240 sh->batch_head = NULL;
4241 spin_unlock_irq(&sh->stripe_lock);
4242
4243 set_bit(STRIPE_HANDLE, &sh->state);
4244 release_stripe(sh);
4245
4246 sh = next;
4247 }
4248}
4249
NeilBrowncc940152011-07-26 11:35:35 +10004250static void handle_stripe(struct stripe_head *sh)
4251{
4252 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11004253 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10004254 int i;
NeilBrown84789552011-07-27 11:00:36 +10004255 int prexor;
4256 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004257 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10004258
4259 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11004260 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10004261 /* already being handled, ensure it gets handled
4262 * again when current action finishes */
4263 set_bit(STRIPE_HANDLE, &sh->state);
4264 return;
4265 }
4266
shli@kernel.org59fc6302014-12-15 12:57:03 +11004267 if (clear_batch_ready(sh) ) {
4268 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
4269 return;
4270 }
4271
shli@kernel.org72ac7332014-12-15 12:57:03 +11004272 check_break_stripe_batch_list(sh);
4273
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004274 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state) && !sh->batch_head) {
NeilBrownf8dfcff2013-03-12 12:18:06 +11004275 spin_lock(&sh->stripe_lock);
4276 /* Cannot process 'sync' concurrently with 'discard' */
4277 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
4278 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4279 set_bit(STRIPE_SYNCING, &sh->state);
4280 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10004281 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004282 }
4283 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10004284 }
4285 clear_bit(STRIPE_DELAYED, &sh->state);
4286
4287 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
4288 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
4289 (unsigned long long)sh->sector, sh->state,
4290 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
4291 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10004292
NeilBrownacfe7262011-07-27 11:00:36 +10004293 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10004294
NeilBrownbc2607f2011-07-28 11:39:22 +10004295 if (s.handle_bad_blocks) {
4296 set_bit(STRIPE_HANDLE, &sh->state);
4297 goto finish;
4298 }
4299
NeilBrown474af965fe2011-07-27 11:00:36 +10004300 if (unlikely(s.blocked_rdev)) {
4301 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11004302 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10004303 set_bit(STRIPE_HANDLE, &sh->state);
4304 goto finish;
4305 }
4306 /* There is nothing for the blocked_rdev to block */
4307 rdev_dec_pending(s.blocked_rdev, conf->mddev);
4308 s.blocked_rdev = NULL;
4309 }
4310
4311 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
4312 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
4313 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
4314 }
4315
4316 pr_debug("locked=%d uptodate=%d to_read=%d"
4317 " to_write=%d failed=%d failed_num=%d,%d\n",
4318 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
4319 s.failed_num[0], s.failed_num[1]);
4320 /* check if the array has lost more than max_degraded devices and,
4321 * if so, some requests might need to be failed.
4322 */
NeilBrown9a3f5302011-11-08 16:22:01 +11004323 if (s.failed > conf->max_degraded) {
4324 sh->check_state = 0;
4325 sh->reconstruct_state = 0;
4326 if (s.to_read+s.to_write+s.written)
4327 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11004328 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11004329 handle_failed_sync(conf, sh, &s);
4330 }
NeilBrown474af965fe2011-07-27 11:00:36 +10004331
NeilBrown84789552011-07-27 11:00:36 +10004332 /* Now we check to see if any write operations have recently
4333 * completed
4334 */
4335 prexor = 0;
4336 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
4337 prexor = 1;
4338 if (sh->reconstruct_state == reconstruct_state_drain_result ||
4339 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
4340 sh->reconstruct_state = reconstruct_state_idle;
4341
4342 /* All the 'written' buffers and the parity block are ready to
4343 * be written back to disk
4344 */
Shaohua Li9e4447682012-10-11 13:49:49 +11004345 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
4346 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004347 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11004348 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
4349 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004350 for (i = disks; i--; ) {
4351 struct r5dev *dev = &sh->dev[i];
4352 if (test_bit(R5_LOCKED, &dev->flags) &&
4353 (i == sh->pd_idx || i == sh->qd_idx ||
4354 dev->written)) {
4355 pr_debug("Writing block %d\n", i);
4356 set_bit(R5_Wantwrite, &dev->flags);
4357 if (prexor)
4358 continue;
NeilBrown9c4bdf62014-08-13 09:57:07 +10004359 if (s.failed > 1)
4360 continue;
NeilBrown84789552011-07-27 11:00:36 +10004361 if (!test_bit(R5_Insync, &dev->flags) ||
4362 ((i == sh->pd_idx || i == sh->qd_idx) &&
4363 s.failed == 0))
4364 set_bit(STRIPE_INSYNC, &sh->state);
4365 }
4366 }
4367 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4368 s.dec_preread_active = 1;
4369 }
4370
NeilBrownef5b7c62012-11-22 09:13:36 +11004371 /*
4372 * might be able to return some write requests if the parity blocks
4373 * are safe, or on a failed drive
4374 */
4375 pdev = &sh->dev[sh->pd_idx];
4376 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
4377 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
4378 qdev = &sh->dev[sh->qd_idx];
4379 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
4380 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
4381 || conf->level < 6;
4382
4383 if (s.written &&
4384 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
4385 && !test_bit(R5_LOCKED, &pdev->flags)
4386 && (test_bit(R5_UPTODATE, &pdev->flags) ||
4387 test_bit(R5_Discard, &pdev->flags))))) &&
4388 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
4389 && !test_bit(R5_LOCKED, &qdev->flags)
4390 && (test_bit(R5_UPTODATE, &qdev->flags) ||
4391 test_bit(R5_Discard, &qdev->flags))))))
4392 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
4393
4394 /* Now we might consider reading some blocks, either to check/generate
4395 * parity, or to satisfy requests
4396 * or to load a block that is being partially written.
4397 */
4398 if (s.to_read || s.non_overwrite
4399 || (conf->level == 6 && s.to_write && s.failed)
4400 || (s.syncing && (s.uptodate + s.compute < disks))
4401 || s.replacing
4402 || s.expanding)
4403 handle_stripe_fill(sh, &s, disks);
4404
NeilBrown84789552011-07-27 11:00:36 +10004405 /* Now to consider new write requests and what else, if anything
4406 * should be read. We do not handle new writes when:
4407 * 1/ A 'write' operation (copy+xor) is already in flight.
4408 * 2/ A 'check' operation is in flight, as it may clobber the parity
4409 * block.
4410 */
4411 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
4412 handle_stripe_dirtying(conf, sh, &s, disks);
4413
4414 /* maybe we need to check and possibly fix the parity for this stripe
4415 * Any reads will already have been scheduled, so we just see if enough
4416 * data is available. The parity check is held off while parity
4417 * dependent operations are in flight.
4418 */
4419 if (sh->check_state ||
4420 (s.syncing && s.locked == 0 &&
4421 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
4422 !test_bit(STRIPE_INSYNC, &sh->state))) {
4423 if (conf->level == 6)
4424 handle_parity_checks6(conf, sh, &s, disks);
4425 else
4426 handle_parity_checks5(conf, sh, &s, disks);
4427 }
NeilBrownc5a31002011-07-27 11:00:36 +10004428
NeilBrownf94c0b62013-07-22 12:57:21 +10004429 if ((s.replacing || s.syncing) && s.locked == 0
4430 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
4431 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11004432 /* Write out to replacement devices where possible */
4433 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10004434 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
4435 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11004436 set_bit(R5_WantReplace, &sh->dev[i].flags);
4437 set_bit(R5_LOCKED, &sh->dev[i].flags);
4438 s.locked++;
4439 }
NeilBrownf94c0b62013-07-22 12:57:21 +10004440 if (s.replacing)
4441 set_bit(STRIPE_INSYNC, &sh->state);
4442 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11004443 }
4444 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10004445 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11004446 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10004447 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4448 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004449 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
4450 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10004451 }
4452
4453 /* If the failed drives are just a ReadError, then we might need
4454 * to progress the repair/check process
4455 */
4456 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
4457 for (i = 0; i < s.failed; i++) {
4458 struct r5dev *dev = &sh->dev[s.failed_num[i]];
4459 if (test_bit(R5_ReadError, &dev->flags)
4460 && !test_bit(R5_LOCKED, &dev->flags)
4461 && test_bit(R5_UPTODATE, &dev->flags)
4462 ) {
4463 if (!test_bit(R5_ReWrite, &dev->flags)) {
4464 set_bit(R5_Wantwrite, &dev->flags);
4465 set_bit(R5_ReWrite, &dev->flags);
4466 set_bit(R5_LOCKED, &dev->flags);
4467 s.locked++;
4468 } else {
4469 /* let's read it back */
4470 set_bit(R5_Wantread, &dev->flags);
4471 set_bit(R5_LOCKED, &dev->flags);
4472 s.locked++;
4473 }
4474 }
4475 }
4476
NeilBrown3687c062011-07-27 11:00:36 +10004477 /* Finish reconstruct operations initiated by the expansion process */
4478 if (sh->reconstruct_state == reconstruct_state_result) {
4479 struct stripe_head *sh_src
4480 = get_active_stripe(conf, sh->sector, 1, 1, 1);
4481 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
4482 /* sh cannot be written until sh_src has been read.
4483 * so arrange for sh to be delayed a little
4484 */
4485 set_bit(STRIPE_DELAYED, &sh->state);
4486 set_bit(STRIPE_HANDLE, &sh->state);
4487 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
4488 &sh_src->state))
4489 atomic_inc(&conf->preread_active_stripes);
4490 release_stripe(sh_src);
4491 goto finish;
4492 }
4493 if (sh_src)
4494 release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07004495
NeilBrown3687c062011-07-27 11:00:36 +10004496 sh->reconstruct_state = reconstruct_state_idle;
4497 clear_bit(STRIPE_EXPANDING, &sh->state);
4498 for (i = conf->raid_disks; i--; ) {
4499 set_bit(R5_Wantwrite, &sh->dev[i].flags);
4500 set_bit(R5_LOCKED, &sh->dev[i].flags);
4501 s.locked++;
4502 }
4503 }
4504
4505 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
4506 !sh->reconstruct_state) {
4507 /* Need to write out all blocks after computing parity */
4508 sh->disks = conf->raid_disks;
4509 stripe_set_idx(sh->sector, conf, 0, sh);
4510 schedule_reconstruction(sh, &s, 1, 1);
4511 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
4512 clear_bit(STRIPE_EXPAND_READY, &sh->state);
4513 atomic_dec(&conf->reshape_stripes);
4514 wake_up(&conf->wait_for_overlap);
4515 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4516 }
4517
4518 if (s.expanding && s.locked == 0 &&
4519 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
4520 handle_stripe_expansion(conf, sh);
4521
4522finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07004523 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10004524 if (unlikely(s.blocked_rdev)) {
4525 if (conf->mddev->external)
4526 md_wait_for_blocked_rdev(s.blocked_rdev,
4527 conf->mddev);
4528 else
4529 /* Internal metadata will immediately
4530 * be written by raid5d, so we don't
4531 * need to wait here.
4532 */
4533 rdev_dec_pending(s.blocked_rdev,
4534 conf->mddev);
4535 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004536
NeilBrownbc2607f2011-07-28 11:39:22 +10004537 if (s.handle_bad_blocks)
4538 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004539 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10004540 struct r5dev *dev = &sh->dev[i];
4541 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
4542 /* We own a safe reference to the rdev */
4543 rdev = conf->disks[i].rdev;
4544 if (!rdev_set_badblocks(rdev, sh->sector,
4545 STRIPE_SECTORS, 0))
4546 md_error(conf->mddev, rdev);
4547 rdev_dec_pending(rdev, conf->mddev);
4548 }
NeilBrownb84db562011-07-28 11:39:23 +10004549 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
4550 rdev = conf->disks[i].rdev;
4551 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004552 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10004553 rdev_dec_pending(rdev, conf->mddev);
4554 }
NeilBrown977df362011-12-23 10:17:53 +11004555 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
4556 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11004557 if (!rdev)
4558 /* rdev have been moved down */
4559 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11004560 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004561 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11004562 rdev_dec_pending(rdev, conf->mddev);
4563 }
NeilBrownbc2607f2011-07-28 11:39:22 +10004564 }
4565
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004566 if (s.ops_request)
4567 raid_run_ops(sh, s.ops_request);
4568
Dan Williamsf0e43bc2008-06-28 08:31:55 +10004569 ops_run_io(sh, &s);
4570
NeilBrownc5709ef2011-07-26 11:35:20 +10004571 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11004572 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02004573 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11004574 * have actually been submitted.
4575 */
4576 atomic_dec(&conf->preread_active_stripes);
4577 if (atomic_read(&conf->preread_active_stripes) <
4578 IO_THRESHOLD)
4579 md_wakeup_thread(conf->mddev->thread);
4580 }
4581
NeilBrownc5709ef2011-07-26 11:35:20 +10004582 return_io(s.return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07004583
Dan Williams257a4b42011-11-08 16:22:06 +11004584 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07004585}
4586
NeilBrownd1688a62011-10-11 16:49:52 +11004587static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588{
4589 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
4590 while (!list_empty(&conf->delayed_list)) {
4591 struct list_head *l = conf->delayed_list.next;
4592 struct stripe_head *sh;
4593 sh = list_entry(l, struct stripe_head, lru);
4594 list_del_init(l);
4595 clear_bit(STRIPE_DELAYED, &sh->state);
4596 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4597 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004598 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08004599 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 }
NeilBrown482c0832011-04-18 18:25:42 +10004601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602}
4603
Shaohua Li566c09c2013-11-14 15:16:17 +11004604static void activate_bit_delay(struct r5conf *conf,
4605 struct list_head *temp_inactive_list)
NeilBrown72626682005-09-09 16:23:54 -07004606{
4607 /* device_lock is held */
4608 struct list_head head;
4609 list_add(&head, &conf->bitmap_list);
4610 list_del_init(&conf->bitmap_list);
4611 while (!list_empty(&head)) {
4612 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
Shaohua Li566c09c2013-11-14 15:16:17 +11004613 int hash;
NeilBrown72626682005-09-09 16:23:54 -07004614 list_del_init(&sh->lru);
4615 atomic_inc(&sh->count);
Shaohua Li566c09c2013-11-14 15:16:17 +11004616 hash = sh->hash_lock_index;
4617 __release_stripe(conf, sh, &temp_inactive_list[hash]);
NeilBrown72626682005-09-09 16:23:54 -07004618 }
4619}
4620
NeilBrown5c675f82014-12-15 12:56:56 +11004621static int raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07004622{
NeilBrownd1688a62011-10-11 16:49:52 +11004623 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07004624
4625 /* No difference between reads and writes. Just check
4626 * how busy the stripe_cache is
4627 */
NeilBrown3fa841d2009-09-23 18:10:29 +10004628
NeilBrown54233992015-02-26 12:21:04 +11004629 if (test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state))
NeilBrownf022b2f2006-10-03 01:15:56 -07004630 return 1;
4631 if (conf->quiesce)
4632 return 1;
Shaohua Li4bda5562013-11-14 15:16:17 +11004633 if (atomic_read(&conf->empty_inactive_list_nr))
NeilBrownf022b2f2006-10-03 01:15:56 -07004634 return 1;
4635
4636 return 0;
4637}
4638
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004639/* We want read requests to align with chunks where possible,
4640 * but write requests don't need to.
4641 */
NeilBrown64590f42014-12-15 12:56:57 +11004642static int raid5_mergeable_bvec(struct mddev *mddev,
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004643 struct bvec_merge_data *bvm,
4644 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004645{
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004646 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004647 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10004648 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004649 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004650
Eric Mei9ffc8f72015-03-18 23:39:11 -06004651 /*
4652 * always allow writes to be mergeable, read as well if array
4653 * is degraded as we'll go through stripe cache anyway.
4654 */
4655 if ((bvm->bi_rw & 1) == WRITE || mddev->degraded)
4656 return biovec->bv_len;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004657
Andre Noll664e7c42009-06-18 08:45:27 +10004658 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
4659 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004660 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
4661 if (max < 0) max = 0;
4662 if (max <= biovec->bv_len && bio_sectors == 0)
4663 return biovec->bv_len;
4664 else
4665 return max;
4666}
4667
NeilBrownfd01b882011-10-11 16:47:53 +11004668static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004669{
Kent Overstreet4f024f32013-10-11 15:44:27 -07004670 sector_t sector = bio->bi_iter.bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10004671 unsigned int chunk_sectors = mddev->chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004672 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004673
Andre Noll664e7c42009-06-18 08:45:27 +10004674 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
4675 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004676 return chunk_sectors >=
4677 ((sector & (chunk_sectors - 1)) + bio_sectors);
4678}
4679
4680/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004681 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
4682 * later sampled by raid5d.
4683 */
NeilBrownd1688a62011-10-11 16:49:52 +11004684static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004685{
4686 unsigned long flags;
4687
4688 spin_lock_irqsave(&conf->device_lock, flags);
4689
4690 bi->bi_next = conf->retry_read_aligned_list;
4691 conf->retry_read_aligned_list = bi;
4692
4693 spin_unlock_irqrestore(&conf->device_lock, flags);
4694 md_wakeup_thread(conf->mddev->thread);
4695}
4696
NeilBrownd1688a62011-10-11 16:49:52 +11004697static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004698{
4699 struct bio *bi;
4700
4701 bi = conf->retry_read_aligned;
4702 if (bi) {
4703 conf->retry_read_aligned = NULL;
4704 return bi;
4705 }
4706 bi = conf->retry_read_aligned_list;
4707 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08004708 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004709 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02004710 /*
4711 * this sets the active strip count to 1 and the processed
4712 * strip count to zero (upper 8 bits)
4713 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004714 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004715 }
4716
4717 return bi;
4718}
4719
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004720/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004721 * The "raid5_align_endio" should check if the read succeeded and if it
4722 * did, call bio_endio on the original bio (having bio_put the new bio
4723 * first).
4724 * If the read failed..
4725 */
NeilBrown6712ecf2007-09-27 12:47:43 +02004726static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004727{
4728 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11004729 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11004730 struct r5conf *conf;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004731 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrown3cb03002011-10-11 16:45:26 +11004732 struct md_rdev *rdev;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004733
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004734 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004735
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004736 rdev = (void*)raid_bi->bi_next;
4737 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11004738 mddev = rdev->mddev;
4739 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004740
4741 rdev_dec_pending(rdev, conf->mddev);
4742
4743 if (!error && uptodate) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004744 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
4745 raid_bi, 0);
NeilBrown6712ecf2007-09-27 12:47:43 +02004746 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004747 if (atomic_dec_and_test(&conf->active_aligned_reads))
4748 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02004749 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004750 }
4751
Dan Williams45b42332007-07-09 11:56:43 -07004752 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004753
4754 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004755}
4756
Neil Brown387bb172007-02-08 14:20:29 -08004757static int bio_fits_rdev(struct bio *bi)
4758{
Jens Axboe165125e2007-07-24 09:28:11 +02004759 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08004760
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004761 if (bio_sectors(bi) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08004762 return 0;
4763 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05004764 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08004765 return 0;
4766
4767 if (q->merge_bvec_fn)
4768 /* it's too hard to apply the merge_bvec_fn at this stage,
4769 * just just give up
4770 */
4771 return 0;
4772
4773 return 1;
4774}
4775
NeilBrownfd01b882011-10-11 16:47:53 +11004776static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004777{
NeilBrownd1688a62011-10-11 16:49:52 +11004778 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11004779 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004780 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11004781 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11004782 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004783
4784 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07004785 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004786 return 0;
4787 }
4788 /*
NeilBrowna167f662010-10-26 18:31:13 +11004789 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004790 */
NeilBrowna167f662010-10-26 18:31:13 +11004791 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004792 if (!align_bi)
4793 return 0;
4794 /*
4795 * set bi_end_io to a new function, and set bi_private to the
4796 * original bio.
4797 */
4798 align_bi->bi_end_io = raid5_align_endio;
4799 align_bi->bi_private = raid_bio;
4800 /*
4801 * compute position
4802 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004803 align_bi->bi_iter.bi_sector =
4804 raid5_compute_sector(conf, raid_bio->bi_iter.bi_sector,
4805 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004806
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004807 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004808 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11004809 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
4810 if (!rdev || test_bit(Faulty, &rdev->flags) ||
4811 rdev->recovery_offset < end_sector) {
4812 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
4813 if (rdev &&
4814 (test_bit(Faulty, &rdev->flags) ||
4815 !(test_bit(In_sync, &rdev->flags) ||
4816 rdev->recovery_offset >= end_sector)))
4817 rdev = NULL;
4818 }
4819 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10004820 sector_t first_bad;
4821 int bad_sectors;
4822
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004823 atomic_inc(&rdev->nr_pending);
4824 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004825 raid_bio->bi_next = (void*)rdev;
4826 align_bi->bi_bdev = rdev->bdev;
NeilBrown3fd83712014-08-23 20:19:26 +10004827 __clear_bit(BIO_SEG_VALID, &align_bi->bi_flags);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004828
NeilBrown31c176e2011-07-28 11:39:22 +10004829 if (!bio_fits_rdev(align_bi) ||
Kent Overstreet4f024f32013-10-11 15:44:27 -07004830 is_badblock(rdev, align_bi->bi_iter.bi_sector,
4831 bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10004832 &first_bad, &bad_sectors)) {
4833 /* too big in some way, or has a known bad block */
Neil Brown387bb172007-02-08 14:20:29 -08004834 bio_put(align_bi);
4835 rdev_dec_pending(rdev, mddev);
4836 return 0;
4837 }
4838
majianpeng6c0544e2012-06-12 08:31:10 +08004839 /* No reshape active, so we can trust rdev->data_offset */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004840 align_bi->bi_iter.bi_sector += rdev->data_offset;
majianpeng6c0544e2012-06-12 08:31:10 +08004841
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004842 spin_lock_irq(&conf->device_lock);
4843 wait_event_lock_irq(conf->wait_for_stripe,
4844 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01004845 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004846 atomic_inc(&conf->active_aligned_reads);
4847 spin_unlock_irq(&conf->device_lock);
4848
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004849 if (mddev->gendisk)
4850 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4851 align_bi, disk_devt(mddev->gendisk),
Kent Overstreet4f024f32013-10-11 15:44:27 -07004852 raid_bio->bi_iter.bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004853 generic_make_request(align_bi);
4854 return 1;
4855 } else {
4856 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004857 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004858 return 0;
4859 }
4860}
4861
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004862/* __get_priority_stripe - get the next stripe to process
4863 *
4864 * Full stripe writes are allowed to pass preread active stripes up until
4865 * the bypass_threshold is exceeded. In general the bypass_count
4866 * increments when the handle_list is handled before the hold_list; however, it
4867 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
4868 * stripe with in flight i/o. The bypass_count will be reset when the
4869 * head of the hold_list has changed, i.e. the head was promoted to the
4870 * handle_list.
4871 */
Shaohua Li851c30c2013-08-28 14:30:16 +08004872static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004873{
Shaohua Li851c30c2013-08-28 14:30:16 +08004874 struct stripe_head *sh = NULL, *tmp;
4875 struct list_head *handle_list = NULL;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004876 struct r5worker_group *wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004877
4878 if (conf->worker_cnt_per_group == 0) {
4879 handle_list = &conf->handle_list;
4880 } else if (group != ANY_GROUP) {
4881 handle_list = &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004882 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08004883 } else {
4884 int i;
4885 for (i = 0; i < conf->group_cnt; i++) {
4886 handle_list = &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004887 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08004888 if (!list_empty(handle_list))
4889 break;
4890 }
4891 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004892
4893 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
4894 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08004895 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004896 list_empty(&conf->hold_list) ? "empty" : "busy",
4897 atomic_read(&conf->pending_full_writes), conf->bypass_count);
4898
Shaohua Li851c30c2013-08-28 14:30:16 +08004899 if (!list_empty(handle_list)) {
4900 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004901
4902 if (list_empty(&conf->hold_list))
4903 conf->bypass_count = 0;
4904 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
4905 if (conf->hold_list.next == conf->last_hold)
4906 conf->bypass_count++;
4907 else {
4908 conf->last_hold = conf->hold_list.next;
4909 conf->bypass_count -= conf->bypass_threshold;
4910 if (conf->bypass_count < 0)
4911 conf->bypass_count = 0;
4912 }
4913 }
4914 } else if (!list_empty(&conf->hold_list) &&
4915 ((conf->bypass_threshold &&
4916 conf->bypass_count > conf->bypass_threshold) ||
4917 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08004918
4919 list_for_each_entry(tmp, &conf->hold_list, lru) {
4920 if (conf->worker_cnt_per_group == 0 ||
4921 group == ANY_GROUP ||
4922 !cpu_online(tmp->cpu) ||
4923 cpu_to_group(tmp->cpu) == group) {
4924 sh = tmp;
4925 break;
4926 }
4927 }
4928
4929 if (sh) {
4930 conf->bypass_count -= conf->bypass_threshold;
4931 if (conf->bypass_count < 0)
4932 conf->bypass_count = 0;
4933 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08004934 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004935 }
4936
4937 if (!sh)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004938 return NULL;
4939
Shaohua Libfc90cb2013-08-29 15:40:32 +08004940 if (wg) {
4941 wg->stripes_cnt--;
4942 sh->group = NULL;
4943 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004944 list_del_init(&sh->lru);
Shaohua Lic7a6d352014-04-15 09:12:54 +08004945 BUG_ON(atomic_inc_return(&sh->count) != 1);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004946 return sh;
4947}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004948
Shaohua Li8811b592012-08-02 08:33:00 +10004949struct raid5_plug_cb {
4950 struct blk_plug_cb cb;
4951 struct list_head list;
Shaohua Li566c09c2013-11-14 15:16:17 +11004952 struct list_head temp_inactive_list[NR_STRIPE_HASH_LOCKS];
Shaohua Li8811b592012-08-02 08:33:00 +10004953};
4954
4955static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
4956{
4957 struct raid5_plug_cb *cb = container_of(
4958 blk_cb, struct raid5_plug_cb, cb);
4959 struct stripe_head *sh;
4960 struct mddev *mddev = cb->cb.data;
4961 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11004962 int cnt = 0;
Shaohua Li566c09c2013-11-14 15:16:17 +11004963 int hash;
Shaohua Li8811b592012-08-02 08:33:00 +10004964
4965 if (cb->list.next && !list_empty(&cb->list)) {
4966 spin_lock_irq(&conf->device_lock);
4967 while (!list_empty(&cb->list)) {
4968 sh = list_first_entry(&cb->list, struct stripe_head, lru);
4969 list_del_init(&sh->lru);
4970 /*
4971 * avoid race release_stripe_plug() sees
4972 * STRIPE_ON_UNPLUG_LIST clear but the stripe
4973 * is still in our list
4974 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004975 smp_mb__before_atomic();
Shaohua Li8811b592012-08-02 08:33:00 +10004976 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08004977 /*
4978 * STRIPE_ON_RELEASE_LIST could be set here. In that
4979 * case, the count is always > 1 here
4980 */
Shaohua Li566c09c2013-11-14 15:16:17 +11004981 hash = sh->hash_lock_index;
4982 __release_stripe(conf, sh, &cb->temp_inactive_list[hash]);
NeilBrowna9add5d2012-10-31 11:59:09 +11004983 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10004984 }
4985 spin_unlock_irq(&conf->device_lock);
4986 }
Shaohua Li566c09c2013-11-14 15:16:17 +11004987 release_inactive_stripe_list(conf, cb->temp_inactive_list,
4988 NR_STRIPE_HASH_LOCKS);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004989 if (mddev->queue)
4990 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10004991 kfree(cb);
4992}
4993
4994static void release_stripe_plug(struct mddev *mddev,
4995 struct stripe_head *sh)
4996{
4997 struct blk_plug_cb *blk_cb = blk_check_plugged(
4998 raid5_unplug, mddev,
4999 sizeof(struct raid5_plug_cb));
5000 struct raid5_plug_cb *cb;
5001
5002 if (!blk_cb) {
5003 release_stripe(sh);
5004 return;
5005 }
5006
5007 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
5008
Shaohua Li566c09c2013-11-14 15:16:17 +11005009 if (cb->list.next == NULL) {
5010 int i;
Shaohua Li8811b592012-08-02 08:33:00 +10005011 INIT_LIST_HEAD(&cb->list);
Shaohua Li566c09c2013-11-14 15:16:17 +11005012 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5013 INIT_LIST_HEAD(cb->temp_inactive_list + i);
5014 }
Shaohua Li8811b592012-08-02 08:33:00 +10005015
5016 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
5017 list_add_tail(&sh->lru, &cb->list);
5018 else
5019 release_stripe(sh);
5020}
5021
Shaohua Li620125f2012-10-11 13:49:05 +11005022static void make_discard_request(struct mddev *mddev, struct bio *bi)
5023{
5024 struct r5conf *conf = mddev->private;
5025 sector_t logical_sector, last_sector;
5026 struct stripe_head *sh;
5027 int remaining;
5028 int stripe_sectors;
5029
5030 if (mddev->reshape_position != MaxSector)
5031 /* Skip discard while reshape is happening */
5032 return;
5033
Kent Overstreet4f024f32013-10-11 15:44:27 -07005034 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
5035 last_sector = bi->bi_iter.bi_sector + (bi->bi_iter.bi_size>>9);
Shaohua Li620125f2012-10-11 13:49:05 +11005036
5037 bi->bi_next = NULL;
5038 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
5039
5040 stripe_sectors = conf->chunk_sectors *
5041 (conf->raid_disks - conf->max_degraded);
5042 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
5043 stripe_sectors);
5044 sector_div(last_sector, stripe_sectors);
5045
5046 logical_sector *= conf->chunk_sectors;
5047 last_sector *= conf->chunk_sectors;
5048
5049 for (; logical_sector < last_sector;
5050 logical_sector += STRIPE_SECTORS) {
5051 DEFINE_WAIT(w);
5052 int d;
5053 again:
5054 sh = get_active_stripe(conf, logical_sector, 0, 0, 0);
5055 prepare_to_wait(&conf->wait_for_overlap, &w,
5056 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005057 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
5058 if (test_bit(STRIPE_SYNCING, &sh->state)) {
5059 release_stripe(sh);
5060 schedule();
5061 goto again;
5062 }
5063 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11005064 spin_lock_irq(&sh->stripe_lock);
5065 for (d = 0; d < conf->raid_disks; d++) {
5066 if (d == sh->pd_idx || d == sh->qd_idx)
5067 continue;
5068 if (sh->dev[d].towrite || sh->dev[d].toread) {
5069 set_bit(R5_Overlap, &sh->dev[d].flags);
5070 spin_unlock_irq(&sh->stripe_lock);
5071 release_stripe(sh);
5072 schedule();
5073 goto again;
5074 }
5075 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11005076 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11005077 finish_wait(&conf->wait_for_overlap, &w);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005078 sh->overwrite_disks = 0;
Shaohua Li620125f2012-10-11 13:49:05 +11005079 for (d = 0; d < conf->raid_disks; d++) {
5080 if (d == sh->pd_idx || d == sh->qd_idx)
5081 continue;
5082 sh->dev[d].towrite = bi;
5083 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
5084 raid5_inc_bi_active_stripes(bi);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005085 sh->overwrite_disks++;
Shaohua Li620125f2012-10-11 13:49:05 +11005086 }
5087 spin_unlock_irq(&sh->stripe_lock);
5088 if (conf->mddev->bitmap) {
5089 for (d = 0;
5090 d < conf->raid_disks - conf->max_degraded;
5091 d++)
5092 bitmap_startwrite(mddev->bitmap,
5093 sh->sector,
5094 STRIPE_SECTORS,
5095 0);
5096 sh->bm_seq = conf->seq_flush + 1;
5097 set_bit(STRIPE_BIT_DELAY, &sh->state);
5098 }
5099
5100 set_bit(STRIPE_HANDLE, &sh->state);
5101 clear_bit(STRIPE_DELAYED, &sh->state);
5102 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5103 atomic_inc(&conf->preread_active_stripes);
5104 release_stripe_plug(mddev, sh);
5105 }
5106
5107 remaining = raid5_dec_bi_active_stripes(bi);
5108 if (remaining == 0) {
5109 md_write_end(mddev);
5110 bio_endio(bi, 0);
5111 }
5112}
5113
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07005114static void make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115{
NeilBrownd1688a62011-10-11 16:49:52 +11005116 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11005117 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 sector_t new_sector;
5119 sector_t logical_sector, last_sector;
5120 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01005121 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11005122 int remaining;
Shaohua Li27c0f682014-04-09 11:25:47 +08005123 DEFINE_WAIT(w);
5124 bool do_prepare;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125
Tejun Heoe9c74692010-09-03 11:56:18 +02005126 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
5127 md_flush_request(mddev, bi);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02005128 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07005129 }
5130
NeilBrown3d310eb2005-06-21 17:17:26 -07005131 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07005132
Eric Mei9ffc8f72015-03-18 23:39:11 -06005133 /*
5134 * If array is degraded, better not do chunk aligned read because
5135 * later we might have to read it again in order to reconstruct
5136 * data on failed drives.
5137 */
5138 if (rw == READ && mddev->degraded == 0 &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005139 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11005140 chunk_aligned_read(mddev,bi))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02005141 return;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005142
Shaohua Li620125f2012-10-11 13:49:05 +11005143 if (unlikely(bi->bi_rw & REQ_DISCARD)) {
5144 make_discard_request(mddev, bi);
5145 return;
5146 }
5147
Kent Overstreet4f024f32013-10-11 15:44:27 -07005148 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005149 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 bi->bi_next = NULL;
5151 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07005152
Shaohua Li27c0f682014-04-09 11:25:47 +08005153 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005155 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10005156 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08005157
Shaohua Li27c0f682014-04-09 11:25:47 +08005158 do_prepare = false;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005159 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10005160 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11005161 previous = 0;
Shaohua Li27c0f682014-04-09 11:25:47 +08005162 if (do_prepare)
5163 prepare_to_wait(&conf->wait_for_overlap, &w,
5164 TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005165 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11005166 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08005167 * 64bit on a 32bit platform, and so it might be
5168 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02005169 * Of course reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08005170 * the lock is dropped, so once we get a reference
5171 * to the stripe that we think it is, we will have
5172 * to check again.
5173 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005174 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005175 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005176 ? logical_sector < conf->reshape_progress
5177 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005178 previous = 1;
5179 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10005180 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005181 ? logical_sector < conf->reshape_safe
5182 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08005183 spin_unlock_irq(&conf->device_lock);
5184 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005185 do_prepare = true;
NeilBrownb578d552006-03-27 01:18:12 -08005186 goto retry;
5187 }
5188 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005189 spin_unlock_irq(&conf->device_lock);
5190 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005191
NeilBrown112bf892009-03-31 14:39:38 +11005192 new_sector = raid5_compute_sector(conf, logical_sector,
5193 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11005194 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10005195 pr_debug("raid456: make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10005196 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197 (unsigned long long)logical_sector);
5198
NeilBrownb5663ba2009-03-31 14:39:38 +11005199 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10005200 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11005202 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005203 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08005204 * stripe, so we must do the range check again.
5205 * Expansion could still move past after this
5206 * test, but as we are holding a reference to
5207 * 'sh', we know that if that happens,
5208 * STRIPE_EXPANDING will get set and the expansion
5209 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005210 */
5211 int must_retry = 0;
5212 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005213 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11005214 ? logical_sector >= conf->reshape_progress
5215 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005216 /* mismatch, need to try again */
5217 must_retry = 1;
5218 spin_unlock_irq(&conf->device_lock);
5219 if (must_retry) {
5220 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07005221 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005222 do_prepare = true;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005223 goto retry;
5224 }
5225 }
NeilBrownc46501b2013-08-27 15:52:13 +10005226 if (read_seqcount_retry(&conf->gen_lock, seq)) {
5227 /* Might have got the wrong stripe_head
5228 * by accident
5229 */
5230 release_stripe(sh);
5231 goto retry;
5232 }
NeilBrowne62e58a2009-07-01 13:15:35 +10005233
Namhyung Kimffd96e32011-07-18 17:38:51 +10005234 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10005235 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08005236 logical_sector < mddev->suspend_hi) {
5237 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10005238 /* As the suspend_* range is controlled by
5239 * userspace, we want an interruptible
5240 * wait.
5241 */
5242 flush_signals(current);
5243 prepare_to_wait(&conf->wait_for_overlap,
5244 &w, TASK_INTERRUPTIBLE);
5245 if (logical_sector >= mddev->suspend_lo &&
Shaohua Li27c0f682014-04-09 11:25:47 +08005246 logical_sector < mddev->suspend_hi) {
NeilBrowne62e58a2009-07-01 13:15:35 +10005247 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005248 do_prepare = true;
5249 }
NeilBrowne464eaf2006-03-27 01:18:14 -08005250 goto retry;
5251 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005252
5253 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005254 !add_stripe_bio(sh, bi, dd_idx, rw, previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005255 /* Stripe is busy expanding or
5256 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 * and wait a while
5258 */
NeilBrown482c0832011-04-18 18:25:42 +10005259 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 release_stripe(sh);
5261 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005262 do_prepare = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 goto retry;
5264 }
NeilBrown6ed30032008-02-06 01:40:00 -08005265 set_bit(STRIPE_HANDLE, &sh->state);
5266 clear_bit(STRIPE_DELAYED, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11005267 if ((!sh->batch_head || sh == sh->batch_head) &&
5268 (bi->bi_rw & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11005269 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5270 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10005271 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 } else {
5273 /* cannot get stripe for read-ahead, just give-up */
5274 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275 break;
5276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 }
Shaohua Li27c0f682014-04-09 11:25:47 +08005278 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown7c13edc2011-04-18 18:25:43 +10005279
Shaohua Lie7836bd62012-07-19 16:01:31 +10005280 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08005281 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
NeilBrown16a53ec2006-06-26 00:27:38 -07005283 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02005285
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005286 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
5287 bi, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10005288 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290}
5291
NeilBrownfd01b882011-10-11 16:47:53 +11005292static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11005293
NeilBrownfd01b882011-10-11 16:47:53 +11005294static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295{
NeilBrown52c03292006-06-26 00:27:43 -07005296 /* reshaping is quite different to recovery/resync so it is
5297 * handled quite separately ... here.
5298 *
5299 * On each call to sync_request, we gather one chunk worth of
5300 * destination stripes and flag them as expanding.
5301 * Then we find all the source stripes and request reads.
5302 * As the reads complete, handle_stripe will copy the data
5303 * into the destination stripe and release that stripe.
5304 */
NeilBrownd1688a62011-10-11 16:49:52 +11005305 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08005307 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08005308 int raid_disks = conf->previous_raid_disks;
5309 int data_disks = raid_disks - conf->max_degraded;
5310 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07005311 int i;
5312 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11005313 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11005314 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11005315 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11005316 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07005317
NeilBrownfef9c612009-03-31 15:16:46 +11005318 if (sector_nr == 0) {
5319 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10005320 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005321 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
5322 sector_nr = raid5_size(mddev, 0, 0)
5323 - conf->reshape_progress;
NeilBrown2c810cd2012-05-21 09:27:00 +10005324 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005325 conf->reshape_progress > 0)
5326 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005327 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005328 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11005329 mddev->curr_resync_completed = sector_nr;
5330 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11005331 *skipped = 1;
5332 return sector_nr;
5333 }
NeilBrown52c03292006-06-26 00:27:43 -07005334 }
5335
NeilBrown7a661382009-03-31 15:21:40 +11005336 /* We need to process a full chunk at a time.
5337 * If old and new chunk sizes differ, we need to process the
5338 * largest of these
5339 */
Andre Noll664e7c42009-06-18 08:45:27 +10005340 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
5341 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005342 else
Andre Noll9d8f0362009-06-18 08:45:01 +10005343 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005344
NeilBrownb5254dd2012-05-21 09:27:01 +10005345 /* We update the metadata at least every 10 seconds, or when
5346 * the data about to be copied would over-write the source of
5347 * the data at the front of the range. i.e. one new_stripe
5348 * along from reshape_progress new_maps to after where
5349 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07005350 */
NeilBrownfef9c612009-03-31 15:16:46 +11005351 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005352 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11005353 readpos = conf->reshape_progress;
5354 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005355 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08005356 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10005357 if (mddev->reshape_backwards) {
NeilBrowned37d832009-05-27 21:39:05 +10005358 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11005359 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005360 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11005361 } else {
NeilBrown7a661382009-03-31 15:21:40 +11005362 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10005363 readpos -= min_t(sector_t, reshape_sectors, readpos);
5364 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11005365 }
NeilBrown52c03292006-06-26 00:27:43 -07005366
NeilBrownb5254dd2012-05-21 09:27:01 +10005367 /* Having calculated the 'writepos' possibly use it
5368 * to set 'stripe_addr' which is where we will write to.
5369 */
5370 if (mddev->reshape_backwards) {
5371 BUG_ON(conf->reshape_progress == 0);
5372 stripe_addr = writepos;
5373 BUG_ON((mddev->dev_sectors &
5374 ~((sector_t)reshape_sectors - 1))
5375 - reshape_sectors - stripe_addr
5376 != sector_nr);
5377 } else {
5378 BUG_ON(writepos != sector_nr + reshape_sectors);
5379 stripe_addr = sector_nr;
5380 }
5381
NeilBrownc8f517c2009-03-31 15:28:40 +11005382 /* 'writepos' is the most advanced device address we might write.
5383 * 'readpos' is the least advanced device address we might read.
5384 * 'safepos' is the least address recorded in the metadata as having
5385 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10005386 * If there is a min_offset_diff, these are adjusted either by
5387 * increasing the safepos/readpos if diff is negative, or
5388 * increasing writepos if diff is positive.
5389 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11005390 * ensure safety in the face of a crash - that must be done by userspace
5391 * making a backup of the data. So in that case there is no particular
5392 * rush to update metadata.
5393 * Otherwise if 'safepos' is behind 'writepos', then we really need to
5394 * update the metadata to advance 'safepos' to match 'readpos' so that
5395 * we can be safe in the event of a crash.
5396 * So we insist on updating metadata if safepos is behind writepos and
5397 * readpos is beyond writepos.
5398 * In any case, update the metadata every 10 seconds.
5399 * Maybe that number should be configurable, but I'm not sure it is
5400 * worth it.... maybe it could be a multiple of safemode_delay???
5401 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005402 if (conf->min_offset_diff < 0) {
5403 safepos += -conf->min_offset_diff;
5404 readpos += -conf->min_offset_diff;
5405 } else
5406 writepos += conf->min_offset_diff;
5407
NeilBrown2c810cd2012-05-21 09:27:00 +10005408 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11005409 ? (safepos > writepos && readpos < writepos)
5410 : (safepos < writepos && readpos > writepos)) ||
5411 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07005412 /* Cannot proceed until we've updated the superblock... */
5413 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005414 atomic_read(&conf->reshape_stripes)==0
5415 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5416 if (atomic_read(&conf->reshape_stripes) != 0)
5417 return 0;
NeilBrownfef9c612009-03-31 15:16:46 +11005418 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005419 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005420 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07005421 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07005422 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07005423 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrownc91abf52013-11-19 12:02:01 +11005424 test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5425 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5426 return 0;
NeilBrown52c03292006-06-26 00:27:43 -07005427 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005428 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07005429 spin_unlock_irq(&conf->device_lock);
5430 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005431 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07005432 }
5433
NeilBrownab69ae12009-03-31 15:26:47 +11005434 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11005435 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07005436 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10005437 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10005438 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005439 set_bit(STRIPE_EXPANDING, &sh->state);
5440 atomic_inc(&conf->reshape_stripes);
5441 /* If any of this stripe is beyond the end of the old
5442 * array, then we need to zero those blocks
5443 */
5444 for (j=sh->disks; j--;) {
5445 sector_t s;
5446 if (j == sh->pd_idx)
5447 continue;
NeilBrownf4168852007-02-28 20:11:53 -08005448 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11005449 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08005450 continue;
NeilBrown784052e2009-03-31 15:19:07 +11005451 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11005452 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10005453 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07005454 continue;
5455 }
5456 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
5457 set_bit(R5_Expanded, &sh->dev[j].flags);
5458 set_bit(R5_UPTODATE, &sh->dev[j].flags);
5459 }
NeilBrowna9f326e2009-09-23 18:06:41 +10005460 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07005461 set_bit(STRIPE_EXPAND_READY, &sh->state);
5462 set_bit(STRIPE_HANDLE, &sh->state);
5463 }
NeilBrownab69ae12009-03-31 15:26:47 +11005464 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07005465 }
5466 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005467 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11005468 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005469 else
NeilBrown7a661382009-03-31 15:21:40 +11005470 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07005471 spin_unlock_irq(&conf->device_lock);
5472 /* Ok, those stripe are ready. We can start scheduling
5473 * reads on the source stripes.
5474 * The source stripes are determined by mapping the first and last
5475 * block on the destination stripes.
5476 */
NeilBrown52c03292006-06-26 00:27:43 -07005477 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11005478 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11005479 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07005480 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10005481 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10005482 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11005483 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11005484 if (last_sector >= mddev->dev_sectors)
5485 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07005486 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10005487 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005488 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
5489 set_bit(STRIPE_HANDLE, &sh->state);
5490 release_stripe(sh);
5491 first_sector += STRIPE_SECTORS;
5492 }
NeilBrownab69ae12009-03-31 15:26:47 +11005493 /* Now that the sources are clearly marked, we can release
5494 * the destination stripes
5495 */
5496 while (!list_empty(&stripes)) {
5497 sh = list_entry(stripes.next, struct stripe_head, lru);
5498 list_del_init(&sh->lru);
5499 release_stripe(sh);
5500 }
NeilBrownc6207272008-02-06 01:39:52 -08005501 /* If this takes us to the resync_max point where we have to pause,
5502 * then we need to write out the superblock.
5503 */
NeilBrown7a661382009-03-31 15:21:40 +11005504 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10005505 if ((sector_nr - mddev->curr_resync_completed) * 2
5506 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08005507 /* Cannot proceed until we've updated the superblock... */
5508 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005509 atomic_read(&conf->reshape_stripes) == 0
5510 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5511 if (atomic_read(&conf->reshape_stripes) != 0)
5512 goto ret;
NeilBrownfef9c612009-03-31 15:16:46 +11005513 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005514 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005515 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08005516 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5517 md_wakeup_thread(mddev->thread);
5518 wait_event(mddev->sb_wait,
5519 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
NeilBrownc91abf52013-11-19 12:02:01 +11005520 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5521 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5522 goto ret;
NeilBrownc6207272008-02-06 01:39:52 -08005523 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005524 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08005525 spin_unlock_irq(&conf->device_lock);
5526 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005527 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08005528 }
NeilBrownc91abf52013-11-19 12:02:01 +11005529ret:
NeilBrown7a661382009-03-31 15:21:40 +11005530 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07005531}
5532
NeilBrown09314792015-02-19 16:04:40 +11005533static inline sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
NeilBrown52c03292006-06-26 00:27:43 -07005534{
NeilBrownd1688a62011-10-11 16:49:52 +11005535 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07005536 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11005537 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11005538 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07005539 int still_degraded = 0;
5540 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541
NeilBrown72626682005-09-09 16:23:54 -07005542 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11005544
NeilBrown29269552006-03-27 01:18:10 -08005545 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
5546 end_reshape(conf);
5547 return 0;
5548 }
NeilBrown72626682005-09-09 16:23:54 -07005549
5550 if (mddev->curr_resync < max_sector) /* aborted */
5551 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
5552 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07005553 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07005554 conf->fullsync = 0;
5555 bitmap_close_sync(mddev->bitmap);
5556
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557 return 0;
5558 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08005559
NeilBrown64bd6602009-08-03 10:59:58 +10005560 /* Allow raid5_quiesce to complete */
5561 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
5562
NeilBrown52c03292006-06-26 00:27:43 -07005563 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
5564 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08005565
NeilBrownc6207272008-02-06 01:39:52 -08005566 /* No need to check resync_max as we never do more than one
5567 * stripe, and as resync_max will always be on a chunk boundary,
5568 * if the check in md_do_sync didn't fire, there is no chance
5569 * of overstepping resync_max here
5570 */
5571
NeilBrown16a53ec2006-06-26 00:27:38 -07005572 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573 * to resync, then assert that we are finished, because there is
5574 * nothing we can do.
5575 */
NeilBrown3285edf2006-06-26 00:27:55 -07005576 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005577 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11005578 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07005579 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580 return rv;
5581 }
majianpeng6f608042013-04-24 11:42:41 +10005582 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
5583 !conf->fullsync &&
5584 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
5585 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07005586 /* we can skip this block, and probably more */
5587 sync_blocks /= STRIPE_SECTORS;
5588 *skipped = 1;
5589 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
5590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
NeilBrownb47490c2008-02-06 01:39:50 -08005592 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
5593
NeilBrowna8c906c2009-06-09 14:39:59 +10005594 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10005596 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07005598 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08005600 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005602 /* Need to check if array will still be degraded after recovery/resync
Eric Mei16d9cfa2015-01-06 09:35:02 -08005603 * Note in case of > 1 drive failures it's possible we're rebuilding
5604 * one drive while leaving another faulty drive in array.
NeilBrown16a53ec2006-06-26 00:27:38 -07005605 */
Eric Mei16d9cfa2015-01-06 09:35:02 -08005606 rcu_read_lock();
5607 for (i = 0; i < conf->raid_disks; i++) {
5608 struct md_rdev *rdev = ACCESS_ONCE(conf->disks[i].rdev);
5609
5610 if (rdev == NULL || test_bit(Faulty, &rdev->flags))
NeilBrown16a53ec2006-06-26 00:27:38 -07005611 still_degraded = 1;
Eric Mei16d9cfa2015-01-06 09:35:02 -08005612 }
5613 rcu_read_unlock();
NeilBrown16a53ec2006-06-26 00:27:38 -07005614
5615 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
5616
NeilBrown83206d62011-07-26 11:19:49 +10005617 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Eivind Sarto053f5b62014-06-09 17:06:19 -07005618 set_bit(STRIPE_HANDLE, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620 release_stripe(sh);
5621
5622 return STRIPE_SECTORS;
5623}
5624
NeilBrownd1688a62011-10-11 16:49:52 +11005625static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005626{
5627 /* We may not be able to submit a whole bio at once as there
5628 * may not be enough stripe_heads available.
5629 * We cannot pre-allocate enough stripe_heads as we may need
5630 * more than exist in the cache (if we allow ever large chunks).
5631 * So we do one stripe head at a time and record in
5632 * ->bi_hw_segments how many have been done.
5633 *
5634 * We *know* that this entire raid_bio is in one chunk, so
5635 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
5636 */
5637 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11005638 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005639 sector_t sector, logical_sector, last_sector;
5640 int scnt = 0;
5641 int remaining;
5642 int handled = 0;
5643
Kent Overstreet4f024f32013-10-11 15:44:27 -07005644 logical_sector = raid_bio->bi_iter.bi_sector &
5645 ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11005646 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11005647 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005648 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005649
5650 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08005651 logical_sector += STRIPE_SECTORS,
5652 sector += STRIPE_SECTORS,
5653 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005654
Shaohua Lie7836bd62012-07-19 16:01:31 +10005655 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005656 /* already done this stripe */
5657 continue;
5658
hui jiao2844dc32014-06-05 11:34:24 +08005659 sh = get_active_stripe(conf, sector, 0, 1, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005660
5661 if (!sh) {
5662 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10005663 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005664 conf->retry_read_aligned = raid_bio;
5665 return handled;
5666 }
5667
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005668 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0, 0)) {
Neil Brown387bb172007-02-08 14:20:29 -08005669 release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10005670 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08005671 conf->retry_read_aligned = raid_bio;
5672 return handled;
5673 }
5674
majianpeng3f9e7c12012-07-31 10:04:21 +10005675 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07005676 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005677 release_stripe(sh);
5678 handled++;
5679 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10005680 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005681 if (remaining == 0) {
5682 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
5683 raid_bio, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10005684 bio_endio(raid_bio, 0);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005685 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005686 if (atomic_dec_and_test(&conf->active_aligned_reads))
5687 wake_up(&conf->wait_for_stripe);
5688 return handled;
5689}
5690
Shaohua Libfc90cb2013-08-29 15:40:32 +08005691static int handle_active_stripes(struct r5conf *conf, int group,
Shaohua Li566c09c2013-11-14 15:16:17 +11005692 struct r5worker *worker,
5693 struct list_head *temp_inactive_list)
Shaohua Li46a06402012-08-02 08:33:15 +10005694{
5695 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +11005696 int i, batch_size = 0, hash;
5697 bool release_inactive = false;
Shaohua Li46a06402012-08-02 08:33:15 +10005698
5699 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08005700 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10005701 batch[batch_size++] = sh;
5702
Shaohua Li566c09c2013-11-14 15:16:17 +11005703 if (batch_size == 0) {
5704 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5705 if (!list_empty(temp_inactive_list + i))
5706 break;
5707 if (i == NR_STRIPE_HASH_LOCKS)
5708 return batch_size;
5709 release_inactive = true;
5710 }
Shaohua Li46a06402012-08-02 08:33:15 +10005711 spin_unlock_irq(&conf->device_lock);
5712
Shaohua Li566c09c2013-11-14 15:16:17 +11005713 release_inactive_stripe_list(conf, temp_inactive_list,
5714 NR_STRIPE_HASH_LOCKS);
5715
5716 if (release_inactive) {
5717 spin_lock_irq(&conf->device_lock);
5718 return 0;
5719 }
5720
Shaohua Li46a06402012-08-02 08:33:15 +10005721 for (i = 0; i < batch_size; i++)
5722 handle_stripe(batch[i]);
5723
5724 cond_resched();
5725
5726 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11005727 for (i = 0; i < batch_size; i++) {
5728 hash = batch[i]->hash_lock_index;
5729 __release_stripe(conf, batch[i], &temp_inactive_list[hash]);
5730 }
Shaohua Li46a06402012-08-02 08:33:15 +10005731 return batch_size;
5732}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005733
Shaohua Li851c30c2013-08-28 14:30:16 +08005734static void raid5_do_work(struct work_struct *work)
5735{
5736 struct r5worker *worker = container_of(work, struct r5worker, work);
5737 struct r5worker_group *group = worker->group;
5738 struct r5conf *conf = group->conf;
5739 int group_id = group - conf->worker_groups;
5740 int handled;
5741 struct blk_plug plug;
5742
5743 pr_debug("+++ raid5worker active\n");
5744
5745 blk_start_plug(&plug);
5746 handled = 0;
5747 spin_lock_irq(&conf->device_lock);
5748 while (1) {
5749 int batch_size, released;
5750
Shaohua Li566c09c2013-11-14 15:16:17 +11005751 released = release_stripe_list(conf, worker->temp_inactive_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08005752
Shaohua Li566c09c2013-11-14 15:16:17 +11005753 batch_size = handle_active_stripes(conf, group_id, worker,
5754 worker->temp_inactive_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +08005755 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08005756 if (!batch_size && !released)
5757 break;
5758 handled += batch_size;
5759 }
5760 pr_debug("%d stripes handled\n", handled);
5761
5762 spin_unlock_irq(&conf->device_lock);
5763 blk_finish_plug(&plug);
5764
5765 pr_debug("--- raid5worker inactive\n");
5766}
5767
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768/*
5769 * This is our raid5 kernel thread.
5770 *
5771 * We scan the hash table for stripes which can be handled now.
5772 * During the scan, completed stripes are saved for us by the interrupt
5773 * handler, so that they will not have to wait for our next wakeup.
5774 */
Shaohua Li4ed87312012-10-11 13:34:00 +11005775static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776{
Shaohua Li4ed87312012-10-11 13:34:00 +11005777 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005778 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005780 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781
Dan Williams45b42332007-07-09 11:56:43 -07005782 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783
5784 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005786 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787 handled = 0;
5788 spin_lock_irq(&conf->device_lock);
5789 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005790 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08005791 int batch_size, released;
5792
Shaohua Li566c09c2013-11-14 15:16:17 +11005793 released = release_stripe_list(conf, conf->temp_inactive_list);
NeilBrownedbe83a2015-02-26 12:47:56 +11005794 if (released)
5795 clear_bit(R5_DID_ALLOC, &conf->cache_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796
NeilBrown0021b7b2012-07-31 09:08:14 +02005797 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10005798 !list_empty(&conf->bitmap_list)) {
5799 /* Now is a good time to flush some bitmap updates */
5800 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08005801 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07005802 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08005803 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10005804 conf->seq_write = conf->seq_flush;
Shaohua Li566c09c2013-11-14 15:16:17 +11005805 activate_bit_delay(conf, conf->temp_inactive_list);
NeilBrown72626682005-09-09 16:23:54 -07005806 }
NeilBrown0021b7b2012-07-31 09:08:14 +02005807 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07005808
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005809 while ((bio = remove_bio_from_retry(conf))) {
5810 int ok;
5811 spin_unlock_irq(&conf->device_lock);
5812 ok = retry_aligned_read(conf, bio);
5813 spin_lock_irq(&conf->device_lock);
5814 if (!ok)
5815 break;
5816 handled++;
5817 }
5818
Shaohua Li566c09c2013-11-14 15:16:17 +11005819 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL,
5820 conf->temp_inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08005821 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 break;
Shaohua Li46a06402012-08-02 08:33:15 +10005823 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824
Shaohua Li46a06402012-08-02 08:33:15 +10005825 if (mddev->flags & ~(1<<MD_CHANGE_PENDING)) {
5826 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10005827 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10005828 spin_lock_irq(&conf->device_lock);
5829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 }
Dan Williams45b42332007-07-09 11:56:43 -07005831 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
5833 spin_unlock_irq(&conf->device_lock);
NeilBrownedbe83a2015-02-26 12:47:56 +11005834 if (test_and_clear_bit(R5_ALLOC_MORE, &conf->cache_state)) {
5835 grow_one_stripe(conf, __GFP_NOWARN);
5836 /* Set flag even if allocation failed. This helps
5837 * slow down allocation requests when mem is short
5838 */
5839 set_bit(R5_DID_ALLOC, &conf->cache_state);
5840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841
Dan Williamsc9f21aa2008-07-23 12:05:51 -07005842 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005843 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844
Dan Williams45b42332007-07-09 11:56:43 -07005845 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846}
5847
NeilBrown3f294f42005-11-08 21:39:25 -08005848static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005849raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08005850{
NeilBrown7b1485b2014-12-15 12:56:59 +11005851 struct r5conf *conf;
5852 int ret = 0;
5853 spin_lock(&mddev->lock);
5854 conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08005855 if (conf)
NeilBrownedbe83a2015-02-26 12:47:56 +11005856 ret = sprintf(page, "%d\n", conf->min_nr_stripes);
NeilBrown7b1485b2014-12-15 12:56:59 +11005857 spin_unlock(&mddev->lock);
5858 return ret;
NeilBrown3f294f42005-11-08 21:39:25 -08005859}
5860
NeilBrownc41d4ac2010-06-01 19:37:24 +10005861int
NeilBrownfd01b882011-10-11 16:47:53 +11005862raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10005863{
NeilBrownd1688a62011-10-11 16:49:52 +11005864 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005865 int err;
5866
5867 if (size <= 16 || size > 32768)
5868 return -EINVAL;
NeilBrown486f0642015-02-25 12:10:35 +11005869
NeilBrownedbe83a2015-02-26 12:47:56 +11005870 conf->min_nr_stripes = size;
NeilBrown486f0642015-02-25 12:10:35 +11005871 while (size < conf->max_nr_stripes &&
5872 drop_one_stripe(conf))
5873 ;
5874
NeilBrownedbe83a2015-02-26 12:47:56 +11005875
NeilBrownc41d4ac2010-06-01 19:37:24 +10005876 err = md_allow_write(mddev);
5877 if (err)
5878 return err;
NeilBrown486f0642015-02-25 12:10:35 +11005879
5880 while (size > conf->max_nr_stripes)
5881 if (!grow_one_stripe(conf, GFP_KERNEL))
5882 break;
5883
NeilBrownc41d4ac2010-06-01 19:37:24 +10005884 return 0;
5885}
5886EXPORT_SYMBOL(raid5_set_cache_size);
5887
NeilBrown3f294f42005-11-08 21:39:25 -08005888static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005889raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08005890{
NeilBrown67918752014-12-15 12:57:01 +11005891 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07005892 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07005893 int err;
5894
NeilBrown3f294f42005-11-08 21:39:25 -08005895 if (len >= PAGE_SIZE)
5896 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005897 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08005898 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11005899 err = mddev_lock(mddev);
Dan Williamsb5470dc2008-06-27 21:44:04 -07005900 if (err)
5901 return err;
NeilBrown67918752014-12-15 12:57:01 +11005902 conf = mddev->private;
5903 if (!conf)
5904 err = -ENODEV;
5905 else
5906 err = raid5_set_cache_size(mddev, new);
5907 mddev_unlock(mddev);
5908
5909 return err ?: len;
NeilBrown3f294f42005-11-08 21:39:25 -08005910}
NeilBrown007583c2005-11-08 21:39:30 -08005911
NeilBrown96de1e62005-11-08 21:39:39 -08005912static struct md_sysfs_entry
5913raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
5914 raid5_show_stripe_cache_size,
5915 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08005916
5917static ssize_t
Markus Stockhausend06f1912014-12-15 12:57:05 +11005918raid5_show_rmw_level(struct mddev *mddev, char *page)
5919{
5920 struct r5conf *conf = mddev->private;
5921 if (conf)
5922 return sprintf(page, "%d\n", conf->rmw_level);
5923 else
5924 return 0;
5925}
5926
5927static ssize_t
5928raid5_store_rmw_level(struct mddev *mddev, const char *page, size_t len)
5929{
5930 struct r5conf *conf = mddev->private;
5931 unsigned long new;
5932
5933 if (!conf)
5934 return -ENODEV;
5935
5936 if (len >= PAGE_SIZE)
5937 return -EINVAL;
5938
5939 if (kstrtoul(page, 10, &new))
5940 return -EINVAL;
5941
5942 if (new != PARITY_DISABLE_RMW && !raid6_call.xor_syndrome)
5943 return -EINVAL;
5944
5945 if (new != PARITY_DISABLE_RMW &&
5946 new != PARITY_ENABLE_RMW &&
5947 new != PARITY_PREFER_RMW)
5948 return -EINVAL;
5949
5950 conf->rmw_level = new;
5951 return len;
5952}
5953
5954static struct md_sysfs_entry
5955raid5_rmw_level = __ATTR(rmw_level, S_IRUGO | S_IWUSR,
5956 raid5_show_rmw_level,
5957 raid5_store_rmw_level);
5958
5959
5960static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005961raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005962{
NeilBrown7b1485b2014-12-15 12:56:59 +11005963 struct r5conf *conf;
5964 int ret = 0;
5965 spin_lock(&mddev->lock);
5966 conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005967 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11005968 ret = sprintf(page, "%d\n", conf->bypass_threshold);
5969 spin_unlock(&mddev->lock);
5970 return ret;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005971}
5972
5973static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005974raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005975{
NeilBrown67918752014-12-15 12:57:01 +11005976 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07005977 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11005978 int err;
5979
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005980 if (len >= PAGE_SIZE)
5981 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005982 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005983 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11005984
5985 err = mddev_lock(mddev);
5986 if (err)
5987 return err;
5988 conf = mddev->private;
5989 if (!conf)
5990 err = -ENODEV;
NeilBrownedbe83a2015-02-26 12:47:56 +11005991 else if (new > conf->min_nr_stripes)
NeilBrown67918752014-12-15 12:57:01 +11005992 err = -EINVAL;
5993 else
5994 conf->bypass_threshold = new;
5995 mddev_unlock(mddev);
5996 return err ?: len;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005997}
5998
5999static struct md_sysfs_entry
6000raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
6001 S_IRUGO | S_IWUSR,
6002 raid5_show_preread_threshold,
6003 raid5_store_preread_threshold);
6004
6005static ssize_t
Shaohua Lid592a992014-05-21 17:57:44 +08006006raid5_show_skip_copy(struct mddev *mddev, char *page)
6007{
NeilBrown7b1485b2014-12-15 12:56:59 +11006008 struct r5conf *conf;
6009 int ret = 0;
6010 spin_lock(&mddev->lock);
6011 conf = mddev->private;
Shaohua Lid592a992014-05-21 17:57:44 +08006012 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006013 ret = sprintf(page, "%d\n", conf->skip_copy);
6014 spin_unlock(&mddev->lock);
6015 return ret;
Shaohua Lid592a992014-05-21 17:57:44 +08006016}
6017
6018static ssize_t
6019raid5_store_skip_copy(struct mddev *mddev, const char *page, size_t len)
6020{
NeilBrown67918752014-12-15 12:57:01 +11006021 struct r5conf *conf;
Shaohua Lid592a992014-05-21 17:57:44 +08006022 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006023 int err;
6024
Shaohua Lid592a992014-05-21 17:57:44 +08006025 if (len >= PAGE_SIZE)
6026 return -EINVAL;
Shaohua Lid592a992014-05-21 17:57:44 +08006027 if (kstrtoul(page, 10, &new))
6028 return -EINVAL;
6029 new = !!new;
Shaohua Lid592a992014-05-21 17:57:44 +08006030
NeilBrown67918752014-12-15 12:57:01 +11006031 err = mddev_lock(mddev);
6032 if (err)
6033 return err;
6034 conf = mddev->private;
6035 if (!conf)
6036 err = -ENODEV;
6037 else if (new != conf->skip_copy) {
6038 mddev_suspend(mddev);
6039 conf->skip_copy = new;
6040 if (new)
6041 mddev->queue->backing_dev_info.capabilities |=
6042 BDI_CAP_STABLE_WRITES;
6043 else
6044 mddev->queue->backing_dev_info.capabilities &=
6045 ~BDI_CAP_STABLE_WRITES;
6046 mddev_resume(mddev);
6047 }
6048 mddev_unlock(mddev);
6049 return err ?: len;
Shaohua Lid592a992014-05-21 17:57:44 +08006050}
6051
6052static struct md_sysfs_entry
6053raid5_skip_copy = __ATTR(skip_copy, S_IRUGO | S_IWUSR,
6054 raid5_show_skip_copy,
6055 raid5_store_skip_copy);
6056
Shaohua Lid592a992014-05-21 17:57:44 +08006057static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006058stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006059{
NeilBrownd1688a62011-10-11 16:49:52 +11006060 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006061 if (conf)
6062 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
6063 else
6064 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08006065}
6066
NeilBrown96de1e62005-11-08 21:39:39 -08006067static struct md_sysfs_entry
6068raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08006069
Shaohua Lib7214202013-08-27 17:50:42 +08006070static ssize_t
6071raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
6072{
NeilBrown7b1485b2014-12-15 12:56:59 +11006073 struct r5conf *conf;
6074 int ret = 0;
6075 spin_lock(&mddev->lock);
6076 conf = mddev->private;
Shaohua Lib7214202013-08-27 17:50:42 +08006077 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006078 ret = sprintf(page, "%d\n", conf->worker_cnt_per_group);
6079 spin_unlock(&mddev->lock);
6080 return ret;
Shaohua Lib7214202013-08-27 17:50:42 +08006081}
6082
majianpeng60aaf932013-11-14 15:16:20 +11006083static int alloc_thread_groups(struct r5conf *conf, int cnt,
6084 int *group_cnt,
6085 int *worker_cnt_per_group,
6086 struct r5worker_group **worker_groups);
Shaohua Lib7214202013-08-27 17:50:42 +08006087static ssize_t
6088raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
6089{
NeilBrown67918752014-12-15 12:57:01 +11006090 struct r5conf *conf;
Shaohua Lib7214202013-08-27 17:50:42 +08006091 unsigned long new;
6092 int err;
majianpeng60aaf932013-11-14 15:16:20 +11006093 struct r5worker_group *new_groups, *old_groups;
6094 int group_cnt, worker_cnt_per_group;
Shaohua Lib7214202013-08-27 17:50:42 +08006095
6096 if (len >= PAGE_SIZE)
6097 return -EINVAL;
Shaohua Lib7214202013-08-27 17:50:42 +08006098 if (kstrtoul(page, 10, &new))
6099 return -EINVAL;
6100
NeilBrown67918752014-12-15 12:57:01 +11006101 err = mddev_lock(mddev);
Shaohua Lib7214202013-08-27 17:50:42 +08006102 if (err)
6103 return err;
NeilBrown67918752014-12-15 12:57:01 +11006104 conf = mddev->private;
6105 if (!conf)
6106 err = -ENODEV;
6107 else if (new != conf->worker_cnt_per_group) {
6108 mddev_suspend(mddev);
6109
6110 old_groups = conf->worker_groups;
6111 if (old_groups)
6112 flush_workqueue(raid5_wq);
6113
6114 err = alloc_thread_groups(conf, new,
6115 &group_cnt, &worker_cnt_per_group,
6116 &new_groups);
6117 if (!err) {
6118 spin_lock_irq(&conf->device_lock);
6119 conf->group_cnt = group_cnt;
6120 conf->worker_cnt_per_group = worker_cnt_per_group;
6121 conf->worker_groups = new_groups;
6122 spin_unlock_irq(&conf->device_lock);
6123
6124 if (old_groups)
6125 kfree(old_groups[0].workers);
6126 kfree(old_groups);
6127 }
6128 mddev_resume(mddev);
6129 }
6130 mddev_unlock(mddev);
6131
6132 return err ?: len;
Shaohua Lib7214202013-08-27 17:50:42 +08006133}
6134
6135static struct md_sysfs_entry
6136raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
6137 raid5_show_group_thread_cnt,
6138 raid5_store_group_thread_cnt);
6139
NeilBrown007583c2005-11-08 21:39:30 -08006140static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08006141 &raid5_stripecache_size.attr,
6142 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006143 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08006144 &raid5_group_thread_cnt.attr,
Shaohua Lid592a992014-05-21 17:57:44 +08006145 &raid5_skip_copy.attr,
Markus Stockhausend06f1912014-12-15 12:57:05 +11006146 &raid5_rmw_level.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08006147 NULL,
6148};
NeilBrown007583c2005-11-08 21:39:30 -08006149static struct attribute_group raid5_attrs_group = {
6150 .name = NULL,
6151 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08006152};
6153
majianpeng60aaf932013-11-14 15:16:20 +11006154static int alloc_thread_groups(struct r5conf *conf, int cnt,
6155 int *group_cnt,
6156 int *worker_cnt_per_group,
6157 struct r5worker_group **worker_groups)
Shaohua Li851c30c2013-08-28 14:30:16 +08006158{
Shaohua Li566c09c2013-11-14 15:16:17 +11006159 int i, j, k;
Shaohua Li851c30c2013-08-28 14:30:16 +08006160 ssize_t size;
6161 struct r5worker *workers;
6162
majianpeng60aaf932013-11-14 15:16:20 +11006163 *worker_cnt_per_group = cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +08006164 if (cnt == 0) {
majianpeng60aaf932013-11-14 15:16:20 +11006165 *group_cnt = 0;
6166 *worker_groups = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08006167 return 0;
6168 }
majianpeng60aaf932013-11-14 15:16:20 +11006169 *group_cnt = num_possible_nodes();
Shaohua Li851c30c2013-08-28 14:30:16 +08006170 size = sizeof(struct r5worker) * cnt;
majianpeng60aaf932013-11-14 15:16:20 +11006171 workers = kzalloc(size * *group_cnt, GFP_NOIO);
6172 *worker_groups = kzalloc(sizeof(struct r5worker_group) *
6173 *group_cnt, GFP_NOIO);
6174 if (!*worker_groups || !workers) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006175 kfree(workers);
majianpeng60aaf932013-11-14 15:16:20 +11006176 kfree(*worker_groups);
Shaohua Li851c30c2013-08-28 14:30:16 +08006177 return -ENOMEM;
6178 }
6179
majianpeng60aaf932013-11-14 15:16:20 +11006180 for (i = 0; i < *group_cnt; i++) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006181 struct r5worker_group *group;
6182
NeilBrown0c775d52013-11-25 11:12:43 +11006183 group = &(*worker_groups)[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08006184 INIT_LIST_HEAD(&group->handle_list);
6185 group->conf = conf;
6186 group->workers = workers + i * cnt;
6187
6188 for (j = 0; j < cnt; j++) {
Shaohua Li566c09c2013-11-14 15:16:17 +11006189 struct r5worker *worker = group->workers + j;
6190 worker->group = group;
6191 INIT_WORK(&worker->work, raid5_do_work);
6192
6193 for (k = 0; k < NR_STRIPE_HASH_LOCKS; k++)
6194 INIT_LIST_HEAD(worker->temp_inactive_list + k);
Shaohua Li851c30c2013-08-28 14:30:16 +08006195 }
6196 }
6197
6198 return 0;
6199}
6200
6201static void free_thread_groups(struct r5conf *conf)
6202{
6203 if (conf->worker_groups)
6204 kfree(conf->worker_groups[0].workers);
6205 kfree(conf->worker_groups);
6206 conf->worker_groups = NULL;
6207}
6208
Dan Williams80c3a6c2009-03-17 18:10:40 -07006209static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11006210raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07006211{
NeilBrownd1688a62011-10-11 16:49:52 +11006212 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006213
6214 if (!sectors)
6215 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006216 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11006217 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11006218 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006219
Andre Noll9d8f0362009-06-18 08:45:01 +10006220 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10006221 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006222 return sectors * (raid_disks - conf->max_degraded);
6223}
6224
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306225static void free_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6226{
6227 safe_put_page(percpu->spare_page);
shli@kernel.org46d5b782014-12-15 12:57:02 +11006228 if (percpu->scribble)
6229 flex_array_free(percpu->scribble);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306230 percpu->spare_page = NULL;
6231 percpu->scribble = NULL;
6232}
6233
6234static int alloc_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6235{
6236 if (conf->level == 6 && !percpu->spare_page)
6237 percpu->spare_page = alloc_page(GFP_KERNEL);
6238 if (!percpu->scribble)
shli@kernel.org46d5b782014-12-15 12:57:02 +11006239 percpu->scribble = scribble_alloc(max(conf->raid_disks,
NeilBrown738a2732015-05-08 18:19:39 +10006240 conf->previous_raid_disks),
6241 max(conf->chunk_sectors,
6242 conf->prev_chunk_sectors)
6243 / STRIPE_SECTORS,
6244 GFP_KERNEL);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306245
6246 if (!percpu->scribble || (conf->level == 6 && !percpu->spare_page)) {
6247 free_scratch_buffer(conf, percpu);
6248 return -ENOMEM;
6249 }
6250
6251 return 0;
6252}
6253
NeilBrownd1688a62011-10-11 16:49:52 +11006254static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006255{
Dan Williams36d1c642009-07-14 11:48:22 -07006256 unsigned long cpu;
6257
6258 if (!conf->percpu)
6259 return;
6260
Dan Williams36d1c642009-07-14 11:48:22 -07006261#ifdef CONFIG_HOTPLUG_CPU
6262 unregister_cpu_notifier(&conf->cpu_notify);
6263#endif
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306264
6265 get_online_cpus();
6266 for_each_possible_cpu(cpu)
6267 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
Dan Williams36d1c642009-07-14 11:48:22 -07006268 put_online_cpus();
6269
6270 free_percpu(conf->percpu);
6271}
6272
NeilBrownd1688a62011-10-11 16:49:52 +11006273static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10006274{
NeilBrownedbe83a2015-02-26 12:47:56 +11006275 if (conf->shrinker.seeks)
6276 unregister_shrinker(&conf->shrinker);
Shaohua Li851c30c2013-08-28 14:30:16 +08006277 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006278 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07006279 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006280 kfree(conf->disks);
6281 kfree(conf->stripe_hashtbl);
6282 kfree(conf);
6283}
6284
Dan Williams36d1c642009-07-14 11:48:22 -07006285#ifdef CONFIG_HOTPLUG_CPU
6286static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
6287 void *hcpu)
6288{
NeilBrownd1688a62011-10-11 16:49:52 +11006289 struct r5conf *conf = container_of(nfb, struct r5conf, cpu_notify);
Dan Williams36d1c642009-07-14 11:48:22 -07006290 long cpu = (long)hcpu;
6291 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
6292
6293 switch (action) {
6294 case CPU_UP_PREPARE:
6295 case CPU_UP_PREPARE_FROZEN:
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306296 if (alloc_scratch_buffer(conf, percpu)) {
Dan Williams36d1c642009-07-14 11:48:22 -07006297 pr_err("%s: failed memory allocation for cpu%ld\n",
6298 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07006299 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07006300 }
6301 break;
6302 case CPU_DEAD:
6303 case CPU_DEAD_FROZEN:
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306304 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
Dan Williams36d1c642009-07-14 11:48:22 -07006305 break;
6306 default:
6307 break;
6308 }
6309 return NOTIFY_OK;
6310}
6311#endif
6312
NeilBrownd1688a62011-10-11 16:49:52 +11006313static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006314{
6315 unsigned long cpu;
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306316 int err = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006317
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306318 conf->percpu = alloc_percpu(struct raid5_percpu);
6319 if (!conf->percpu)
Dan Williams36d1c642009-07-14 11:48:22 -07006320 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006321
Dan Williams36d1c642009-07-14 11:48:22 -07006322#ifdef CONFIG_HOTPLUG_CPU
6323 conf->cpu_notify.notifier_call = raid456_cpu_notify;
6324 conf->cpu_notify.priority = 0;
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306325 err = register_cpu_notifier(&conf->cpu_notify);
6326 if (err)
6327 return err;
Dan Williams36d1c642009-07-14 11:48:22 -07006328#endif
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306329
6330 get_online_cpus();
6331 for_each_present_cpu(cpu) {
6332 err = alloc_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
6333 if (err) {
6334 pr_err("%s: failed memory allocation for cpu%ld\n",
6335 __func__, cpu);
6336 break;
6337 }
6338 }
Dan Williams36d1c642009-07-14 11:48:22 -07006339 put_online_cpus();
6340
6341 return err;
6342}
6343
NeilBrownedbe83a2015-02-26 12:47:56 +11006344static unsigned long raid5_cache_scan(struct shrinker *shrink,
6345 struct shrink_control *sc)
6346{
6347 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
6348 int ret = 0;
6349 while (ret < sc->nr_to_scan) {
6350 if (drop_one_stripe(conf) == 0)
6351 return SHRINK_STOP;
6352 ret++;
6353 }
6354 return ret;
6355}
6356
6357static unsigned long raid5_cache_count(struct shrinker *shrink,
6358 struct shrink_control *sc)
6359{
6360 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
6361
6362 if (conf->max_nr_stripes < conf->min_nr_stripes)
6363 /* unlikely, but not impossible */
6364 return 0;
6365 return conf->max_nr_stripes - conf->min_nr_stripes;
6366}
6367
NeilBrownd1688a62011-10-11 16:49:52 +11006368static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369{
NeilBrownd1688a62011-10-11 16:49:52 +11006370 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006371 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11006372 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10006374 char pers_name[6];
Shaohua Li566c09c2013-11-14 15:16:17 +11006375 int i;
majianpeng60aaf932013-11-14 15:16:20 +11006376 int group_cnt, worker_cnt_per_group;
6377 struct r5worker_group *new_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378
NeilBrown91adb562009-03-31 14:39:39 +11006379 if (mddev->new_level != 5
6380 && mddev->new_level != 4
6381 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10006382 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11006383 mdname(mddev), mddev->new_level);
6384 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385 }
NeilBrown91adb562009-03-31 14:39:39 +11006386 if ((mddev->new_level == 5
6387 && !algorithm_valid_raid5(mddev->new_layout)) ||
6388 (mddev->new_level == 6
6389 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10006390 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11006391 mdname(mddev), mddev->new_layout);
6392 return ERR_PTR(-EIO);
6393 }
6394 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10006395 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11006396 mdname(mddev), mddev->raid_disks);
6397 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11006398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399
Andre Noll664e7c42009-06-18 08:45:27 +10006400 if (!mddev->new_chunk_sectors ||
6401 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
6402 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10006403 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
6404 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11006405 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11006406 }
6407
NeilBrownd1688a62011-10-11 16:49:52 +11006408 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11006409 if (conf == NULL)
6410 goto abort;
Shaohua Li851c30c2013-08-28 14:30:16 +08006411 /* Don't enable multi-threading by default*/
majianpeng60aaf932013-11-14 15:16:20 +11006412 if (!alloc_thread_groups(conf, 0, &group_cnt, &worker_cnt_per_group,
6413 &new_group)) {
6414 conf->group_cnt = group_cnt;
6415 conf->worker_cnt_per_group = worker_cnt_per_group;
6416 conf->worker_groups = new_group;
6417 } else
Shaohua Li851c30c2013-08-28 14:30:16 +08006418 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11006419 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006420 seqcount_init(&conf->gen_lock);
Dan Williamsf5efd452009-10-16 15:55:38 +11006421 init_waitqueue_head(&conf->wait_for_stripe);
6422 init_waitqueue_head(&conf->wait_for_overlap);
6423 INIT_LIST_HEAD(&conf->handle_list);
6424 INIT_LIST_HEAD(&conf->hold_list);
6425 INIT_LIST_HEAD(&conf->delayed_list);
6426 INIT_LIST_HEAD(&conf->bitmap_list);
Shaohua Li773ca822013-08-27 17:50:39 +08006427 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11006428 atomic_set(&conf->active_stripes, 0);
6429 atomic_set(&conf->preread_active_stripes, 0);
6430 atomic_set(&conf->active_aligned_reads, 0);
6431 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11006432 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11006433
6434 conf->raid_disks = mddev->raid_disks;
6435 if (mddev->reshape_position == MaxSector)
6436 conf->previous_raid_disks = mddev->raid_disks;
6437 else
6438 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006439 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006440
NeilBrown5e5e3e72009-10-16 16:35:30 +11006441 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11006442 GFP_KERNEL);
6443 if (!conf->disks)
6444 goto abort;
6445
6446 conf->mddev = mddev;
6447
6448 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
6449 goto abort;
6450
Shaohua Li566c09c2013-11-14 15:16:17 +11006451 /* We init hash_locks[0] separately to that it can be used
6452 * as the reference lock in the spin_lock_nest_lock() call
6453 * in lock_all_device_hash_locks_irq in order to convince
6454 * lockdep that we know what we are doing.
6455 */
6456 spin_lock_init(conf->hash_locks);
6457 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
6458 spin_lock_init(conf->hash_locks + i);
6459
6460 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6461 INIT_LIST_HEAD(conf->inactive_list + i);
6462
6463 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6464 INIT_LIST_HEAD(conf->temp_inactive_list + i);
6465
Dan Williams36d1c642009-07-14 11:48:22 -07006466 conf->level = mddev->new_level;
shli@kernel.org46d5b782014-12-15 12:57:02 +11006467 conf->chunk_sectors = mddev->new_chunk_sectors;
Dan Williams36d1c642009-07-14 11:48:22 -07006468 if (raid5_alloc_percpu(conf) != 0)
6469 goto abort;
6470
NeilBrown0c55e022010-05-03 14:09:02 +10006471 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006472
NeilBrowndafb20f2012-03-19 12:46:39 +11006473 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11006474 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006475 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11006476 || raid_disk < 0)
6477 continue;
6478 disk = conf->disks + raid_disk;
6479
NeilBrown17045f52011-12-23 10:17:53 +11006480 if (test_bit(Replacement, &rdev->flags)) {
6481 if (disk->replacement)
6482 goto abort;
6483 disk->replacement = rdev;
6484 } else {
6485 if (disk->rdev)
6486 goto abort;
6487 disk->rdev = rdev;
6488 }
NeilBrown91adb562009-03-31 14:39:39 +11006489
6490 if (test_bit(In_sync, &rdev->flags)) {
6491 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10006492 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
6493 " disk %d\n",
6494 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05006495 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11006496 /* Cannot rely on bitmap to complete recovery */
6497 conf->fullsync = 1;
6498 }
6499
NeilBrown91adb562009-03-31 14:39:39 +11006500 conf->level = mddev->new_level;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006501 if (conf->level == 6) {
NeilBrown91adb562009-03-31 14:39:39 +11006502 conf->max_degraded = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006503 if (raid6_call.xor_syndrome)
6504 conf->rmw_level = PARITY_ENABLE_RMW;
6505 else
6506 conf->rmw_level = PARITY_DISABLE_RMW;
6507 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006508 conf->max_degraded = 1;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006509 conf->rmw_level = PARITY_ENABLE_RMW;
6510 }
NeilBrown91adb562009-03-31 14:39:39 +11006511 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11006512 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11006513 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10006514 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11006515 conf->prev_algo = mddev->layout;
6516 }
NeilBrown91adb562009-03-31 14:39:39 +11006517
NeilBrownedbe83a2015-02-26 12:47:56 +11006518 conf->min_nr_stripes = NR_STRIPES;
6519 memory = conf->min_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11006520 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
Shaohua Li4bda5562013-11-14 15:16:17 +11006521 atomic_set(&conf->empty_inactive_list_nr, NR_STRIPE_HASH_LOCKS);
NeilBrownedbe83a2015-02-26 12:47:56 +11006522 if (grow_stripes(conf, conf->min_nr_stripes)) {
NeilBrown91adb562009-03-31 14:39:39 +11006523 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006524 "md/raid:%s: couldn't allocate %dkB for buffers\n",
6525 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11006526 goto abort;
6527 } else
NeilBrown0c55e022010-05-03 14:09:02 +10006528 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
6529 mdname(mddev), memory);
NeilBrownedbe83a2015-02-26 12:47:56 +11006530 /*
6531 * Losing a stripe head costs more than the time to refill it,
6532 * it reduces the queue depth and so can hurt throughput.
6533 * So set it rather large, scaled by number of devices.
6534 */
6535 conf->shrinker.seeks = DEFAULT_SEEKS * conf->raid_disks * 4;
6536 conf->shrinker.scan_objects = raid5_cache_scan;
6537 conf->shrinker.count_objects = raid5_cache_count;
6538 conf->shrinker.batch = 128;
6539 conf->shrinker.flags = 0;
6540 register_shrinker(&conf->shrinker);
NeilBrown91adb562009-03-31 14:39:39 +11006541
NeilBrown02326052012-07-03 15:56:52 +10006542 sprintf(pers_name, "raid%d", mddev->new_level);
6543 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11006544 if (!conf->thread) {
6545 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006546 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11006547 mdname(mddev));
6548 goto abort;
6549 }
6550
6551 return conf;
6552
6553 abort:
6554 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10006555 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11006556 return ERR_PTR(-EIO);
6557 } else
6558 return ERR_PTR(-ENOMEM);
6559}
6560
NeilBrownc148ffd2009-11-13 17:47:00 +11006561static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
6562{
6563 switch (algo) {
6564 case ALGORITHM_PARITY_0:
6565 if (raid_disk < max_degraded)
6566 return 1;
6567 break;
6568 case ALGORITHM_PARITY_N:
6569 if (raid_disk >= raid_disks - max_degraded)
6570 return 1;
6571 break;
6572 case ALGORITHM_PARITY_0_6:
NeilBrownf72ffdd2014-09-30 14:23:59 +10006573 if (raid_disk == 0 ||
NeilBrownc148ffd2009-11-13 17:47:00 +11006574 raid_disk == raid_disks - 1)
6575 return 1;
6576 break;
6577 case ALGORITHM_LEFT_ASYMMETRIC_6:
6578 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6579 case ALGORITHM_LEFT_SYMMETRIC_6:
6580 case ALGORITHM_RIGHT_SYMMETRIC_6:
6581 if (raid_disk == raid_disks - 1)
6582 return 1;
6583 }
6584 return 0;
6585}
6586
NeilBrownfd01b882011-10-11 16:47:53 +11006587static int run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11006588{
NeilBrownd1688a62011-10-11 16:49:52 +11006589 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10006590 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11006591 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11006592 struct md_rdev *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11006593 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11006594 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10006595 long long min_offset_diff = 0;
6596 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11006597
Andre Noll8c6ac862009-06-18 08:48:06 +10006598 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10006599 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10006600 " -- starting background reconstruction\n",
6601 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10006602
6603 rdev_for_each(rdev, mddev) {
6604 long long diff;
6605 if (rdev->raid_disk < 0)
6606 continue;
6607 diff = (rdev->new_data_offset - rdev->data_offset);
6608 if (first) {
6609 min_offset_diff = diff;
6610 first = 0;
6611 } else if (mddev->reshape_backwards &&
6612 diff < min_offset_diff)
6613 min_offset_diff = diff;
6614 else if (!mddev->reshape_backwards &&
6615 diff > min_offset_diff)
6616 min_offset_diff = diff;
6617 }
6618
NeilBrownf6705572006-03-27 01:18:11 -08006619 if (mddev->reshape_position != MaxSector) {
6620 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10006621 * Difficulties arise if the stripe we would write to
6622 * next is at or after the stripe we would read from next.
6623 * For a reshape that changes the number of devices, this
6624 * is only possible for a very short time, and mdadm makes
6625 * sure that time appears to have past before assembling
6626 * the array. So we fail if that time hasn't passed.
6627 * For a reshape that keeps the number of devices the same
6628 * mdadm must be monitoring the reshape can keeping the
6629 * critical areas read-only and backed up. It will start
6630 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08006631 */
6632 sector_t here_new, here_old;
6633 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11006634 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08006635
NeilBrown88ce4932009-03-31 15:24:23 +11006636 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10006637 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08006638 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08006639 mdname(mddev));
6640 return -EINVAL;
6641 }
NeilBrownf6705572006-03-27 01:18:11 -08006642 old_disks = mddev->raid_disks - mddev->delta_disks;
6643 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08006644 * further up in new geometry must map after here in old
6645 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08006646 */
6647 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10006648 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08006649 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10006650 printk(KERN_ERR "md/raid:%s: reshape_position not "
6651 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006652 return -EINVAL;
6653 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006654 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08006655 /* here_new is the stripe we will write to */
6656 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10006657 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08006658 (old_disks-max_degraded));
6659 /* here_old is the first stripe that we might need to read
6660 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10006661 if (mddev->delta_disks == 0) {
NeilBrownb5254dd2012-05-21 09:27:01 +10006662 if ((here_new * mddev->new_chunk_sectors !=
6663 here_old * mddev->chunk_sectors)) {
6664 printk(KERN_ERR "md/raid:%s: reshape position is"
6665 " confused - aborting\n", mdname(mddev));
6666 return -EINVAL;
6667 }
NeilBrown67ac6012009-08-13 10:06:24 +10006668 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10006669 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10006670 * and taking constant backups.
6671 * mdadm always starts a situation like this in
6672 * readonly mode so it can take control before
6673 * allowing any writes. So just check for that.
6674 */
NeilBrownb5254dd2012-05-21 09:27:01 +10006675 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
6676 abs(min_offset_diff) >= mddev->new_chunk_sectors)
6677 /* not really in-place - so OK */;
6678 else if (mddev->ro == 0) {
6679 printk(KERN_ERR "md/raid:%s: in-place reshape "
6680 "must be started in read-only mode "
6681 "- aborting\n",
NeilBrown0c55e022010-05-03 14:09:02 +10006682 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10006683 return -EINVAL;
6684 }
NeilBrown2c810cd2012-05-21 09:27:00 +10006685 } else if (mddev->reshape_backwards
NeilBrownb5254dd2012-05-21 09:27:01 +10006686 ? (here_new * mddev->new_chunk_sectors + min_offset_diff <=
NeilBrown67ac6012009-08-13 10:06:24 +10006687 here_old * mddev->chunk_sectors)
6688 : (here_new * mddev->new_chunk_sectors >=
NeilBrownb5254dd2012-05-21 09:27:01 +10006689 here_old * mddev->chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08006690 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10006691 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
6692 "auto-recovery - aborting.\n",
6693 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006694 return -EINVAL;
6695 }
NeilBrown0c55e022010-05-03 14:09:02 +10006696 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
6697 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006698 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08006699 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006700 BUG_ON(mddev->level != mddev->new_level);
6701 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10006702 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11006703 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08006704 }
6705
NeilBrown245f46c2009-03-31 14:39:39 +11006706 if (mddev->private == NULL)
6707 conf = setup_conf(mddev);
6708 else
6709 conf = mddev->private;
6710
NeilBrown91adb562009-03-31 14:39:39 +11006711 if (IS_ERR(conf))
6712 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08006713
NeilBrownb5254dd2012-05-21 09:27:01 +10006714 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11006715 mddev->thread = conf->thread;
6716 conf->thread = NULL;
6717 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718
NeilBrown17045f52011-12-23 10:17:53 +11006719 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
6720 i++) {
6721 rdev = conf->disks[i].rdev;
6722 if (!rdev && conf->disks[i].replacement) {
6723 /* The replacement is all we have yet */
6724 rdev = conf->disks[i].replacement;
6725 conf->disks[i].replacement = NULL;
6726 clear_bit(Replacement, &rdev->flags);
6727 conf->disks[i].rdev = rdev;
6728 }
6729 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11006730 continue;
NeilBrown17045f52011-12-23 10:17:53 +11006731 if (conf->disks[i].replacement &&
6732 conf->reshape_progress != MaxSector) {
6733 /* replacements and reshape simply do not mix. */
6734 printk(KERN_ERR "md: cannot handle concurrent "
6735 "replacement and reshape.\n");
6736 goto abort;
6737 }
NeilBrown2f115882010-06-17 17:41:03 +10006738 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11006739 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10006740 continue;
6741 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006742 /* This disc is not fully in-sync. However if it
6743 * just stored parity (beyond the recovery_offset),
6744 * when we don't need to be concerned about the
6745 * array being dirty.
6746 * When reshape goes 'backwards', we never have
6747 * partially completed devices, so we only need
6748 * to worry about reshape going forwards.
6749 */
6750 /* Hack because v0.91 doesn't store recovery_offset properly. */
6751 if (mddev->major_version == 0 &&
6752 mddev->minor_version > 90)
6753 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07006754
NeilBrownc148ffd2009-11-13 17:47:00 +11006755 if (rdev->recovery_offset < reshape_offset) {
6756 /* We need to check old and new layout */
6757 if (!only_parity(rdev->raid_disk,
6758 conf->algorithm,
6759 conf->raid_disks,
6760 conf->max_degraded))
6761 continue;
6762 }
6763 if (!only_parity(rdev->raid_disk,
6764 conf->prev_algo,
6765 conf->previous_raid_disks,
6766 conf->max_degraded))
6767 continue;
6768 dirty_parity_disks++;
6769 }
NeilBrown91adb562009-03-31 14:39:39 +11006770
NeilBrown17045f52011-12-23 10:17:53 +11006771 /*
6772 * 0 for a fully functional array, 1 or 2 for a degraded array.
6773 */
NeilBrown908f4fb2011-12-23 10:17:50 +11006774 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775
NeilBrown674806d2010-06-16 17:17:53 +10006776 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10006777 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07006779 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780 goto abort;
6781 }
6782
NeilBrown91adb562009-03-31 14:39:39 +11006783 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10006784 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11006785 mddev->resync_max_sectors = mddev->dev_sectors;
6786
NeilBrownc148ffd2009-11-13 17:47:00 +11006787 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006789 if (mddev->ok_start_degraded)
6790 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10006791 "md/raid:%s: starting dirty degraded array"
6792 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006793 mdname(mddev));
6794 else {
6795 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006796 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006797 mdname(mddev));
6798 goto abort;
6799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800 }
6801
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10006803 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
6804 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11006805 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
6806 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807 else
NeilBrown0c55e022010-05-03 14:09:02 +10006808 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
6809 " out of %d devices, algorithm %d\n",
6810 mdname(mddev), conf->level,
6811 mddev->raid_disks - mddev->degraded,
6812 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813
6814 print_raid5_conf(conf);
6815
NeilBrownfef9c612009-03-31 15:16:46 +11006816 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11006817 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08006818 atomic_set(&conf->reshape_stripes, 0);
6819 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
6820 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
6821 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
6822 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
6823 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10006824 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08006825 }
6826
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10006828 if (mddev->to_remove == &raid5_attrs_group)
6829 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10006830 else if (mddev->kobj.sd &&
6831 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08006832 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10006833 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08006834 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10006835 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
6836
6837 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10006838 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11006839 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10006840 /* read-ahead size must cover two whole stripes, which
6841 * is 2 * (datadisks) * chunksize where 'n' is the
6842 * number of raid devices
6843 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844 int data_disks = conf->previous_raid_disks - conf->max_degraded;
6845 int stripe = data_disks *
6846 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
6847 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
6848 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10006849
NeilBrown9f7c2222010-07-26 12:04:13 +10006850 chunk_size = mddev->chunk_sectors << 9;
6851 blk_queue_io_min(mddev->queue, chunk_size);
6852 blk_queue_io_opt(mddev->queue, chunk_size *
6853 (conf->raid_disks - conf->max_degraded));
Kent Overstreetc78afc62013-07-11 22:39:53 -07006854 mddev->queue->limits.raid_partial_stripes_expensive = 1;
Shaohua Li620125f2012-10-11 13:49:05 +11006855 /*
6856 * We can only discard a whole stripe. It doesn't make sense to
6857 * discard data disk but write parity disk
6858 */
6859 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11006860 /* Round up to power of 2, as discard handling
6861 * currently assumes that */
6862 while ((stripe-1) & stripe)
6863 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11006864 mddev->queue->limits.discard_alignment = stripe;
6865 mddev->queue->limits.discard_granularity = stripe;
6866 /*
6867 * unaligned part of discard request will be ignored, so can't
NeilBrown8e0e99b2014-10-02 13:45:00 +10006868 * guarantee discard_zeroes_data
Shaohua Li620125f2012-10-11 13:49:05 +11006869 */
6870 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10006871
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07006872 blk_queue_max_write_same_sectors(mddev->queue, 0);
6873
NeilBrown05616be2012-05-21 09:27:00 +10006874 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10006875 disk_stack_limits(mddev->gendisk, rdev->bdev,
6876 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10006877 disk_stack_limits(mddev->gendisk, rdev->bdev,
6878 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11006879 /*
6880 * discard_zeroes_data is required, otherwise data
6881 * could be lost. Consider a scenario: discard a stripe
6882 * (the stripe could be inconsistent if
6883 * discard_zeroes_data is 0); write one disk of the
6884 * stripe (the stripe could be inconsistent again
6885 * depending on which disks are used to calculate
6886 * parity); the disk is broken; The stripe data of this
6887 * disk is lost.
6888 */
6889 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
6890 !bdev_get_queue(rdev->bdev)->
6891 limits.discard_zeroes_data)
6892 discard_supported = false;
NeilBrown8e0e99b2014-10-02 13:45:00 +10006893 /* Unfortunately, discard_zeroes_data is not currently
6894 * a guarantee - just a hint. So we only allow DISCARD
6895 * if the sysadmin has confirmed that only safe devices
6896 * are in use by setting a module parameter.
6897 */
6898 if (!devices_handle_discard_safely) {
6899 if (discard_supported) {
6900 pr_info("md/raid456: discard support disabled due to uncertainty.\n");
6901 pr_info("Set raid456.devices_handle_discard_safely=Y to override.\n");
6902 }
6903 discard_supported = false;
6904 }
NeilBrown05616be2012-05-21 09:27:00 +10006905 }
Shaohua Li620125f2012-10-11 13:49:05 +11006906
6907 if (discard_supported &&
6908 mddev->queue->limits.max_discard_sectors >= stripe &&
6909 mddev->queue->limits.discard_granularity >= stripe)
6910 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
6911 mddev->queue);
6912 else
6913 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
6914 mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915 }
6916
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917 return 0;
6918abort:
NeilBrown01f96c02011-09-21 15:30:20 +10006919 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11006920 print_raid5_conf(conf);
6921 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10006923 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924 return -EIO;
6925}
6926
NeilBrownafa0f552014-12-15 12:56:58 +11006927static void raid5_free(struct mddev *mddev, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928{
NeilBrownafa0f552014-12-15 12:56:58 +11006929 struct r5conf *conf = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930
Dan Williams95fc17a2009-07-31 12:39:15 +10006931 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10006932 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933}
6934
NeilBrownfd01b882011-10-11 16:47:53 +11006935static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936{
NeilBrownd1688a62011-10-11 16:49:52 +11006937 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938 int i;
6939
Andre Noll9d8f0362009-06-18 08:45:01 +10006940 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
6941 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07006942 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943 for (i = 0; i < conf->raid_disks; i++)
6944 seq_printf (seq, "%s",
6945 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08006946 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948}
6949
NeilBrownd1688a62011-10-11 16:49:52 +11006950static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951{
6952 int i;
6953 struct disk_info *tmp;
6954
NeilBrown0c55e022010-05-03 14:09:02 +10006955 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956 if (!conf) {
6957 printk("(conf==NULL)\n");
6958 return;
6959 }
NeilBrown0c55e022010-05-03 14:09:02 +10006960 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
6961 conf->raid_disks,
6962 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963
6964 for (i = 0; i < conf->raid_disks; i++) {
6965 char b[BDEVNAME_SIZE];
6966 tmp = conf->disks + i;
6967 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10006968 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
6969 i, !test_bit(Faulty, &tmp->rdev->flags),
6970 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971 }
6972}
6973
NeilBrownfd01b882011-10-11 16:47:53 +11006974static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975{
6976 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11006977 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10006979 int count = 0;
6980 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981
6982 for (i = 0; i < conf->raid_disks; i++) {
6983 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11006984 if (tmp->replacement
6985 && tmp->replacement->recovery_offset == MaxSector
6986 && !test_bit(Faulty, &tmp->replacement->flags)
6987 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
6988 /* Replacement has just become active. */
6989 if (!tmp->rdev
6990 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
6991 count++;
6992 if (tmp->rdev) {
6993 /* Replaced device not technically faulty,
6994 * but we need to be sure it gets removed
6995 * and never re-added.
6996 */
6997 set_bit(Faulty, &tmp->rdev->flags);
6998 sysfs_notify_dirent_safe(
6999 tmp->rdev->sysfs_state);
7000 }
7001 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
7002 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10007003 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08007004 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07007005 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10007006 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11007007 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008 }
7009 }
NeilBrown6b965622010-08-18 11:56:59 +10007010 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007011 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007012 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007013 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007014 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015}
7016
NeilBrownb8321b62011-12-23 10:17:51 +11007017static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018{
NeilBrownd1688a62011-10-11 16:49:52 +11007019 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11007021 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11007022 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023 struct disk_info *p = conf->disks + number;
7024
7025 print_raid5_conf(conf);
NeilBrown657e3e42011-12-23 10:17:52 +11007026 if (rdev == p->rdev)
7027 rdevp = &p->rdev;
7028 else if (rdev == p->replacement)
7029 rdevp = &p->replacement;
7030 else
7031 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11007032
NeilBrown657e3e42011-12-23 10:17:52 +11007033 if (number >= conf->raid_disks &&
7034 conf->reshape_progress == MaxSector)
7035 clear_bit(In_sync, &rdev->flags);
7036
7037 if (test_bit(In_sync, &rdev->flags) ||
7038 atomic_read(&rdev->nr_pending)) {
7039 err = -EBUSY;
7040 goto abort;
7041 }
7042 /* Only remove non-faulty devices if recovery
7043 * isn't possible.
7044 */
7045 if (!test_bit(Faulty, &rdev->flags) &&
7046 mddev->recovery_disabled != conf->recovery_disabled &&
7047 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11007048 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11007049 number < conf->raid_disks) {
7050 err = -EBUSY;
7051 goto abort;
7052 }
7053 *rdevp = NULL;
7054 synchronize_rcu();
7055 if (atomic_read(&rdev->nr_pending)) {
7056 /* lost the race, try later */
7057 err = -EBUSY;
7058 *rdevp = rdev;
NeilBrowndd054fc2011-12-23 10:17:53 +11007059 } else if (p->replacement) {
7060 /* We must have just cleared 'rdev' */
7061 p->rdev = p->replacement;
7062 clear_bit(Replacement, &p->replacement->flags);
7063 smp_mb(); /* Make sure other CPUs may see both as identical
7064 * but will never see neither - if they are careful
7065 */
7066 p->replacement = NULL;
7067 clear_bit(WantReplacement, &rdev->flags);
7068 } else
7069 /* We might have just removed the Replacement as faulty-
7070 * clear the bit just in case
7071 */
7072 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073abort:
7074
7075 print_raid5_conf(conf);
7076 return err;
7077}
7078
NeilBrownfd01b882011-10-11 16:47:53 +11007079static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080{
NeilBrownd1688a62011-10-11 16:49:52 +11007081 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10007082 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083 int disk;
7084 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10007085 int first = 0;
7086 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087
NeilBrown7f0da592011-07-28 11:39:22 +10007088 if (mddev->recovery_disabled == conf->recovery_disabled)
7089 return -EBUSY;
7090
NeilBrowndc10c642012-03-19 12:46:37 +11007091 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10007093 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094
Neil Brown6c2fce22008-06-28 08:31:31 +10007095 if (rdev->raid_disk >= 0)
7096 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007097
7098 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07007099 * find the disk ... but prefer rdev->saved_raid_disk
7100 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101 */
NeilBrown16a53ec2006-06-26 00:27:38 -07007102 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10007103 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07007104 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10007105 first = rdev->saved_raid_disk;
7106
7107 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11007108 p = conf->disks + disk;
7109 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08007110 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10007112 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07007113 if (rdev->saved_raid_disk != disk)
7114 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08007115 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10007116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007118 }
7119 for (disk = first; disk <= last; disk++) {
7120 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11007121 if (test_bit(WantReplacement, &p->rdev->flags) &&
7122 p->replacement == NULL) {
7123 clear_bit(In_sync, &rdev->flags);
7124 set_bit(Replacement, &rdev->flags);
7125 rdev->raid_disk = disk;
7126 err = 0;
7127 conf->fullsync = 1;
7128 rcu_assign_pointer(p->replacement, rdev);
7129 break;
7130 }
7131 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007132out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10007134 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135}
7136
NeilBrownfd01b882011-10-11 16:47:53 +11007137static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138{
7139 /* no resync is happening, and there is enough space
7140 * on all devices, so we can resize.
7141 * We need to make sure resync covers any new space.
7142 * If the array is shrinking we should possibly wait until
7143 * any io in the removed space completes, but it hardly seems
7144 * worth it.
7145 */
NeilBrowna4a61252012-05-22 13:55:27 +10007146 sector_t newsize;
Andre Noll9d8f0362009-06-18 08:45:01 +10007147 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10007148 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
7149 if (mddev->external_size &&
7150 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11007151 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10007152 if (mddev->bitmap) {
7153 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
7154 if (ret)
7155 return ret;
7156 }
7157 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10007158 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007159 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10007160 if (sectors > mddev->dev_sectors &&
7161 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11007162 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
7164 }
Andre Noll58c0fed2009-03-31 14:33:13 +11007165 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07007166 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167 return 0;
7168}
7169
NeilBrownfd01b882011-10-11 16:47:53 +11007170static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10007171{
7172 /* Can only proceed if there are plenty of stripe_heads.
7173 * We need a minimum of one full stripe,, and for sensible progress
7174 * it is best to have about 4 times that.
7175 * If we require 4 times, then the default 256 4K stripe_heads will
7176 * allow for chunk sizes up to 256K, which is probably OK.
7177 * If the chunk size is greater, user-space should request more
7178 * stripe_heads first.
7179 */
NeilBrownd1688a62011-10-11 16:49:52 +11007180 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10007181 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007182 > conf->min_nr_stripes ||
NeilBrown01ee22b2009-06-18 08:47:20 +10007183 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007184 > conf->min_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10007185 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
7186 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10007187 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
7188 / STRIPE_SIZE)*4);
7189 return 0;
7190 }
7191 return 1;
7192}
7193
NeilBrownfd01b882011-10-11 16:47:53 +11007194static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08007195{
NeilBrownd1688a62011-10-11 16:49:52 +11007196 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08007197
NeilBrown88ce4932009-03-31 15:24:23 +11007198 if (mddev->delta_disks == 0 &&
7199 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10007200 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10007201 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10007202 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11007203 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10007204 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11007205 /* We might be able to shrink, but the devices must
7206 * be made bigger first.
7207 * For raid6, 4 is the minimum size.
7208 * Otherwise 2 is the minimum
7209 */
7210 int min = 2;
7211 if (mddev->level == 6)
7212 min = 4;
7213 if (mddev->raid_disks + mddev->delta_disks < min)
7214 return -EINVAL;
7215 }
NeilBrown29269552006-03-27 01:18:10 -08007216
NeilBrown01ee22b2009-06-18 08:47:20 +10007217 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08007218 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08007219
NeilBrown738a2732015-05-08 18:19:39 +10007220 if (mddev->new_chunk_sectors > mddev->chunk_sectors ||
7221 mddev->delta_disks > 0)
7222 if (resize_chunks(conf,
7223 conf->previous_raid_disks
7224 + max(0, mddev->delta_disks),
7225 max(mddev->new_chunk_sectors,
7226 mddev->chunk_sectors)
7227 ) < 0)
7228 return -ENOMEM;
NeilBrowne56108d62012-10-11 14:24:13 +11007229 return resize_stripes(conf, (conf->previous_raid_disks
7230 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08007231}
7232
NeilBrownfd01b882011-10-11 16:47:53 +11007233static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08007234{
NeilBrownd1688a62011-10-11 16:49:52 +11007235 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11007236 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08007237 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07007238 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08007239
NeilBrownf4168852007-02-28 20:11:53 -08007240 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08007241 return -EBUSY;
7242
NeilBrown01ee22b2009-06-18 08:47:20 +10007243 if (!check_stripe_cache(mddev))
7244 return -ENOSPC;
7245
NeilBrown30b67642012-05-22 13:55:28 +10007246 if (has_failed(conf))
7247 return -EINVAL;
7248
NeilBrownc6563a82012-05-21 09:27:00 +10007249 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11007250 if (!test_bit(In_sync, &rdev->flags)
7251 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08007252 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10007253 }
NeilBrown63c70c42006-03-27 01:18:13 -08007254
NeilBrownf4168852007-02-28 20:11:53 -08007255 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08007256 /* Not enough devices even to make a degraded array
7257 * of that size
7258 */
7259 return -EINVAL;
7260
NeilBrownec32a2b2009-03-31 15:17:38 +11007261 /* Refuse to reduce size of the array. Any reductions in
7262 * array size must be through explicit setting of array_size
7263 * attribute.
7264 */
7265 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
7266 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10007267 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11007268 "before number of disks\n", mdname(mddev));
7269 return -EINVAL;
7270 }
7271
NeilBrownf6705572006-03-27 01:18:11 -08007272 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08007273 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10007274 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007275 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08007276 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007277 conf->prev_chunk_sectors = conf->chunk_sectors;
7278 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11007279 conf->prev_algo = conf->algorithm;
7280 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10007281 conf->generation++;
7282 /* Code that selects data_offset needs to see the generation update
7283 * if reshape_progress has been set - so a memory barrier needed.
7284 */
7285 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10007286 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11007287 conf->reshape_progress = raid5_size(mddev, 0, 0);
7288 else
7289 conf->reshape_progress = 0;
7290 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10007291 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007292 spin_unlock_irq(&conf->device_lock);
7293
NeilBrown4d77e3b2013-08-27 15:57:47 +10007294 /* Now make sure any requests that proceeded on the assumption
7295 * the reshape wasn't running - like Discard or Read - have
7296 * completed.
7297 */
7298 mddev_suspend(mddev);
7299 mddev_resume(mddev);
7300
NeilBrown29269552006-03-27 01:18:10 -08007301 /* Add some new drives, as many as will fit.
7302 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10007303 * Don't add devices if we are reducing the number of
7304 * devices in the array. This is because it is not possible
7305 * to correctly record the "partially reconstructed" state of
7306 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08007307 */
NeilBrown87a8dec2011-01-31 11:57:43 +11007308 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11007309 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11007310 if (rdev->raid_disk < 0 &&
7311 !test_bit(Faulty, &rdev->flags)) {
7312 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11007313 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11007314 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11007315 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11007316 else
NeilBrown87a8dec2011-01-31 11:57:43 +11007317 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10007318
7319 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11007320 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11007321 }
NeilBrown87a8dec2011-01-31 11:57:43 +11007322 } else if (rdev->raid_disk >= conf->previous_raid_disks
7323 && !test_bit(Faulty, &rdev->flags)) {
7324 /* This is a spare that was manually added */
7325 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11007326 }
NeilBrown29269552006-03-27 01:18:10 -08007327
NeilBrown87a8dec2011-01-31 11:57:43 +11007328 /* When a reshape changes the number of devices,
7329 * ->degraded is measured against the larger of the
7330 * pre and post number of devices.
7331 */
NeilBrownec32a2b2009-03-31 15:17:38 +11007332 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007333 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11007334 spin_unlock_irqrestore(&conf->device_lock, flags);
7335 }
NeilBrown63c70c42006-03-27 01:18:13 -08007336 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10007337 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07007338 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08007339
NeilBrown29269552006-03-27 01:18:10 -08007340 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7341 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
7342 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7343 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7344 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007345 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08007346 if (!mddev->sync_thread) {
7347 mddev->recovery = 0;
7348 spin_lock_irq(&conf->device_lock);
NeilBrownba8805b2013-11-14 15:16:15 +11007349 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007350 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownba8805b2013-11-14 15:16:15 +11007351 mddev->new_chunk_sectors =
7352 conf->chunk_sectors = conf->prev_chunk_sectors;
7353 mddev->new_layout = conf->algorithm = conf->prev_algo;
NeilBrown05616be2012-05-21 09:27:00 +10007354 rdev_for_each(rdev, mddev)
7355 rdev->new_data_offset = rdev->data_offset;
7356 smp_wmb();
NeilBrownba8805b2013-11-14 15:16:15 +11007357 conf->generation --;
NeilBrownfef9c612009-03-31 15:16:46 +11007358 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11007359 mddev->reshape_position = MaxSector;
NeilBrownba8805b2013-11-14 15:16:15 +11007360 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007361 spin_unlock_irq(&conf->device_lock);
7362 return -EAGAIN;
7363 }
NeilBrownc8f517c2009-03-31 15:28:40 +11007364 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08007365 md_wakeup_thread(mddev->sync_thread);
7366 md_new_event(mddev);
7367 return 0;
7368}
NeilBrown29269552006-03-27 01:18:10 -08007369
NeilBrownec32a2b2009-03-31 15:17:38 +11007370/* This is called from the reshape thread and should make any
7371 * changes needed in 'conf'
7372 */
NeilBrownd1688a62011-10-11 16:49:52 +11007373static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08007374{
NeilBrown29269552006-03-27 01:18:10 -08007375
NeilBrownf6705572006-03-27 01:18:11 -08007376 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10007377 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07007378
NeilBrownf6705572006-03-27 01:18:11 -08007379 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11007380 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10007381 rdev_for_each(rdev, conf->mddev)
7382 rdev->data_offset = rdev->new_data_offset;
7383 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11007384 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08007385 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11007386 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07007387
7388 /* read-ahead size must cover two whole stripes, which is
7389 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
7390 */
NeilBrown4a5add42010-06-01 19:37:28 +10007391 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11007392 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007393 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11007394 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07007395 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
7396 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
7397 }
NeilBrown29269552006-03-27 01:18:10 -08007398 }
NeilBrown29269552006-03-27 01:18:10 -08007399}
7400
NeilBrownec32a2b2009-03-31 15:17:38 +11007401/* This is called from the raid5d thread with mddev_lock held.
7402 * It makes config changes to the device.
7403 */
NeilBrownfd01b882011-10-11 16:47:53 +11007404static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11007405{
NeilBrownd1688a62011-10-11 16:49:52 +11007406 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11007407
7408 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
7409
NeilBrownec32a2b2009-03-31 15:17:38 +11007410 if (mddev->delta_disks > 0) {
7411 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7412 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007413 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11007414 } else {
7415 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11007416 spin_lock_irq(&conf->device_lock);
7417 mddev->degraded = calc_degraded(conf);
7418 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11007419 for (d = conf->raid_disks ;
7420 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10007421 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11007422 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10007423 if (rdev)
7424 clear_bit(In_sync, &rdev->flags);
7425 rdev = conf->disks[d].replacement;
7426 if (rdev)
7427 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10007428 }
NeilBrowncea9c222009-03-31 15:15:05 +11007429 }
NeilBrown88ce4932009-03-31 15:24:23 +11007430 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007431 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11007432 mddev->reshape_position = MaxSector;
7433 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10007434 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11007435 }
7436}
7437
NeilBrownfd01b882011-10-11 16:47:53 +11007438static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07007439{
NeilBrownd1688a62011-10-11 16:49:52 +11007440 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07007441
7442 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08007443 case 2: /* resume for a suspend */
7444 wake_up(&conf->wait_for_overlap);
7445 break;
7446
NeilBrown72626682005-09-09 16:23:54 -07007447 case 1: /* stop all writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007448 lock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007449 /* '2' tells resync/reshape to pause so that all
7450 * active stripes can drain
7451 */
7452 conf->quiesce = 2;
Shaohua Li566c09c2013-11-14 15:16:17 +11007453 wait_event_cmd(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08007454 atomic_read(&conf->active_stripes) == 0 &&
7455 atomic_read(&conf->active_aligned_reads) == 0,
Shaohua Li566c09c2013-11-14 15:16:17 +11007456 unlock_all_device_hash_locks_irq(conf),
7457 lock_all_device_hash_locks_irq(conf));
NeilBrown64bd6602009-08-03 10:59:58 +10007458 conf->quiesce = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11007459 unlock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007460 /* allow reshape to continue */
7461 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07007462 break;
7463
7464 case 0: /* re-enable writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007465 lock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007466 conf->quiesce = 0;
7467 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08007468 wake_up(&conf->wait_for_overlap);
Shaohua Li566c09c2013-11-14 15:16:17 +11007469 unlock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007470 break;
7471 }
NeilBrown72626682005-09-09 16:23:54 -07007472}
NeilBrownb15c2e52006-01-06 00:20:16 -08007473
NeilBrownfd01b882011-10-11 16:47:53 +11007474static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11007475{
NeilBrowne373ab12011-10-11 16:48:59 +11007476 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07007477 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11007478
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007479 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11007480 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10007481 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
7482 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007483 return ERR_PTR(-EINVAL);
7484 }
7485
NeilBrowne373ab12011-10-11 16:48:59 +11007486 sectors = raid0_conf->strip_zone[0].zone_end;
7487 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10007488 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007489 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11007490 mddev->new_layout = ALGORITHM_PARITY_N;
7491 mddev->new_chunk_sectors = mddev->chunk_sectors;
7492 mddev->raid_disks += 1;
7493 mddev->delta_disks = 1;
7494 /* make sure it will be not marked as dirty */
7495 mddev->recovery_cp = MaxSector;
7496
7497 return setup_conf(mddev);
7498}
7499
NeilBrownfd01b882011-10-11 16:47:53 +11007500static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007501{
7502 int chunksect;
7503
7504 if (mddev->raid_disks != 2 ||
7505 mddev->degraded > 1)
7506 return ERR_PTR(-EINVAL);
7507
7508 /* Should check if there are write-behind devices? */
7509
7510 chunksect = 64*2; /* 64K by default */
7511
7512 /* The array must be an exact multiple of chunksize */
7513 while (chunksect && (mddev->array_sectors & (chunksect-1)))
7514 chunksect >>= 1;
7515
7516 if ((chunksect<<9) < STRIPE_SIZE)
7517 /* array size does not allow a suitable chunk size */
7518 return ERR_PTR(-EINVAL);
7519
7520 mddev->new_level = 5;
7521 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10007522 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11007523
7524 return setup_conf(mddev);
7525}
7526
NeilBrownfd01b882011-10-11 16:47:53 +11007527static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11007528{
7529 int new_layout;
7530
7531 switch (mddev->layout) {
7532 case ALGORITHM_LEFT_ASYMMETRIC_6:
7533 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
7534 break;
7535 case ALGORITHM_RIGHT_ASYMMETRIC_6:
7536 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
7537 break;
7538 case ALGORITHM_LEFT_SYMMETRIC_6:
7539 new_layout = ALGORITHM_LEFT_SYMMETRIC;
7540 break;
7541 case ALGORITHM_RIGHT_SYMMETRIC_6:
7542 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
7543 break;
7544 case ALGORITHM_PARITY_0_6:
7545 new_layout = ALGORITHM_PARITY_0;
7546 break;
7547 case ALGORITHM_PARITY_N:
7548 new_layout = ALGORITHM_PARITY_N;
7549 break;
7550 default:
7551 return ERR_PTR(-EINVAL);
7552 }
7553 mddev->new_level = 5;
7554 mddev->new_layout = new_layout;
7555 mddev->delta_disks = -1;
7556 mddev->raid_disks -= 1;
7557 return setup_conf(mddev);
7558}
7559
NeilBrownfd01b882011-10-11 16:47:53 +11007560static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11007561{
NeilBrown88ce4932009-03-31 15:24:23 +11007562 /* For a 2-drive array, the layout and chunk size can be changed
7563 * immediately as not restriping is needed.
7564 * For larger arrays we record the new value - after validation
7565 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11007566 */
NeilBrownd1688a62011-10-11 16:49:52 +11007567 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10007568 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11007569
NeilBrown597a7112009-06-18 08:47:42 +10007570 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11007571 return -EINVAL;
7572 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007573 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11007574 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007575 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11007576 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007577 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11007578 /* not factor of array size */
7579 return -EINVAL;
7580 }
7581
7582 /* They look valid */
7583
NeilBrown88ce4932009-03-31 15:24:23 +11007584 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10007585 /* can make the change immediately */
7586 if (mddev->new_layout >= 0) {
7587 conf->algorithm = mddev->new_layout;
7588 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11007589 }
7590 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10007591 conf->chunk_sectors = new_chunk ;
7592 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11007593 }
7594 set_bit(MD_CHANGE_DEVS, &mddev->flags);
7595 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11007596 }
NeilBrown50ac1682009-06-18 08:47:55 +10007597 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11007598}
7599
NeilBrownfd01b882011-10-11 16:47:53 +11007600static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11007601{
NeilBrown597a7112009-06-18 08:47:42 +10007602 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10007603
NeilBrown597a7112009-06-18 08:47:42 +10007604 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11007605 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007606 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007607 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11007608 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007609 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11007610 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007611 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11007612 /* not factor of array size */
7613 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007614 }
NeilBrown88ce4932009-03-31 15:24:23 +11007615
7616 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10007617 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11007618}
7619
NeilBrownfd01b882011-10-11 16:47:53 +11007620static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007621{
7622 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007623 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007624 * raid1 - if there are two drives. We need to know the chunk size
7625 * raid4 - trivial - just use a raid4 layout.
7626 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007627 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007628 if (mddev->level == 0)
7629 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11007630 if (mddev->level == 1)
7631 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11007632 if (mddev->level == 4) {
7633 mddev->new_layout = ALGORITHM_PARITY_N;
7634 mddev->new_level = 5;
7635 return setup_conf(mddev);
7636 }
NeilBrownfc9739c2009-03-31 14:57:20 +11007637 if (mddev->level == 6)
7638 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11007639
7640 return ERR_PTR(-EINVAL);
7641}
7642
NeilBrownfd01b882011-10-11 16:47:53 +11007643static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11007644{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007645 /* raid4 can take over:
7646 * raid0 - if there is only one strip zone
7647 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11007648 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007649 if (mddev->level == 0)
7650 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11007651 if (mddev->level == 5 &&
7652 mddev->layout == ALGORITHM_PARITY_N) {
7653 mddev->new_layout = 0;
7654 mddev->new_level = 4;
7655 return setup_conf(mddev);
7656 }
7657 return ERR_PTR(-EINVAL);
7658}
NeilBrownd562b0c2009-03-31 14:39:39 +11007659
NeilBrown84fc4b52011-10-11 16:49:58 +11007660static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11007661
NeilBrownfd01b882011-10-11 16:47:53 +11007662static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11007663{
7664 /* Currently can only take over a raid5. We map the
7665 * personality to an equivalent raid6 personality
7666 * with the Q block at the end.
7667 */
7668 int new_layout;
7669
7670 if (mddev->pers != &raid5_personality)
7671 return ERR_PTR(-EINVAL);
7672 if (mddev->degraded > 1)
7673 return ERR_PTR(-EINVAL);
7674 if (mddev->raid_disks > 253)
7675 return ERR_PTR(-EINVAL);
7676 if (mddev->raid_disks < 3)
7677 return ERR_PTR(-EINVAL);
7678
7679 switch (mddev->layout) {
7680 case ALGORITHM_LEFT_ASYMMETRIC:
7681 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
7682 break;
7683 case ALGORITHM_RIGHT_ASYMMETRIC:
7684 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
7685 break;
7686 case ALGORITHM_LEFT_SYMMETRIC:
7687 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
7688 break;
7689 case ALGORITHM_RIGHT_SYMMETRIC:
7690 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
7691 break;
7692 case ALGORITHM_PARITY_0:
7693 new_layout = ALGORITHM_PARITY_0_6;
7694 break;
7695 case ALGORITHM_PARITY_N:
7696 new_layout = ALGORITHM_PARITY_N;
7697 break;
7698 default:
7699 return ERR_PTR(-EINVAL);
7700 }
7701 mddev->new_level = 6;
7702 mddev->new_layout = new_layout;
7703 mddev->delta_disks = 1;
7704 mddev->raid_disks += 1;
7705 return setup_conf(mddev);
7706}
7707
NeilBrown84fc4b52011-10-11 16:49:58 +11007708static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07007709{
7710 .name = "raid6",
7711 .level = 6,
7712 .owner = THIS_MODULE,
7713 .make_request = make_request,
7714 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007715 .free = raid5_free,
NeilBrown16a53ec2006-06-26 00:27:38 -07007716 .status = status,
7717 .error_handler = error,
7718 .hot_add_disk = raid5_add_disk,
7719 .hot_remove_disk= raid5_remove_disk,
7720 .spare_active = raid5_spare_active,
7721 .sync_request = sync_request,
7722 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007723 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10007724 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08007725 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007726 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07007727 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11007728 .takeover = raid6_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007729 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007730 .mergeable_bvec = raid5_mergeable_bvec,
NeilBrown16a53ec2006-06-26 00:27:38 -07007731};
NeilBrown84fc4b52011-10-11 16:49:58 +11007732static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733{
7734 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08007735 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007736 .owner = THIS_MODULE,
7737 .make_request = make_request,
7738 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007739 .free = raid5_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007740 .status = status,
7741 .error_handler = error,
7742 .hot_add_disk = raid5_add_disk,
7743 .hot_remove_disk= raid5_remove_disk,
7744 .spare_active = raid5_spare_active,
7745 .sync_request = sync_request,
7746 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007747 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08007748 .check_reshape = raid5_check_reshape,
7749 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007750 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07007751 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11007752 .takeover = raid5_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007753 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007754 .mergeable_bvec = raid5_mergeable_bvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755};
7756
NeilBrown84fc4b52011-10-11 16:49:58 +11007757static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758{
NeilBrown2604b702006-01-06 00:20:36 -08007759 .name = "raid4",
7760 .level = 4,
7761 .owner = THIS_MODULE,
7762 .make_request = make_request,
7763 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007764 .free = raid5_free,
NeilBrown2604b702006-01-06 00:20:36 -08007765 .status = status,
7766 .error_handler = error,
7767 .hot_add_disk = raid5_add_disk,
7768 .hot_remove_disk= raid5_remove_disk,
7769 .spare_active = raid5_spare_active,
7770 .sync_request = sync_request,
7771 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007772 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08007773 .check_reshape = raid5_check_reshape,
7774 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007775 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08007776 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11007777 .takeover = raid4_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007778 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007779 .mergeable_bvec = raid5_mergeable_bvec,
NeilBrown2604b702006-01-06 00:20:36 -08007780};
7781
7782static int __init raid5_init(void)
7783{
Shaohua Li851c30c2013-08-28 14:30:16 +08007784 raid5_wq = alloc_workqueue("raid5wq",
7785 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
7786 if (!raid5_wq)
7787 return -ENOMEM;
NeilBrown16a53ec2006-06-26 00:27:38 -07007788 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08007789 register_md_personality(&raid5_personality);
7790 register_md_personality(&raid4_personality);
7791 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007792}
7793
NeilBrown2604b702006-01-06 00:20:36 -08007794static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795{
NeilBrown16a53ec2006-06-26 00:27:38 -07007796 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08007797 unregister_md_personality(&raid5_personality);
7798 unregister_md_personality(&raid4_personality);
Shaohua Li851c30c2013-08-28 14:30:16 +08007799 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800}
7801
7802module_init(raid5_init);
7803module_exit(raid5_exit);
7804MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11007805MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08007807MODULE_ALIAS("md-raid5");
7808MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08007809MODULE_ALIAS("md-level-5");
7810MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07007811MODULE_ALIAS("md-personality-8"); /* RAID6 */
7812MODULE_ALIAS("md-raid6");
7813MODULE_ALIAS("md-level-6");
7814
7815/* This used to be two separate modules, they were: */
7816MODULE_ALIAS("raid5");
7817MODULE_ALIAS("raid6");