blob: 1ba97fdc6df1e3a6df76b42aa0e756c01644a385 [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);
1081 set_bit(STRIPE_HANDLE, &sh->state);
1082 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001083
1084 if (!head_sh->batch_head)
1085 continue;
1086 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1087 batch_list);
1088 if (sh != head_sh)
1089 goto again;
Dan Williams91c00922007-01-02 13:52:30 -07001090 }
1091}
1092
1093static struct dma_async_tx_descriptor *
Shaohua Lid592a992014-05-21 17:57:44 +08001094async_copy_data(int frombio, struct bio *bio, struct page **page,
1095 sector_t sector, struct dma_async_tx_descriptor *tx,
1096 struct stripe_head *sh)
Dan Williams91c00922007-01-02 13:52:30 -07001097{
Kent Overstreet79886132013-11-23 17:19:00 -08001098 struct bio_vec bvl;
1099 struct bvec_iter iter;
Dan Williams91c00922007-01-02 13:52:30 -07001100 struct page *bio_page;
Dan Williams91c00922007-01-02 13:52:30 -07001101 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -07001102 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -07001103 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001104
Kent Overstreet4f024f32013-10-11 15:44:27 -07001105 if (bio->bi_iter.bi_sector >= sector)
1106 page_offset = (signed)(bio->bi_iter.bi_sector - sector) * 512;
Dan Williams91c00922007-01-02 13:52:30 -07001107 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001108 page_offset = (signed)(sector - bio->bi_iter.bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -07001109
Dan Williams0403e382009-09-08 17:42:50 -07001110 if (frombio)
1111 flags |= ASYNC_TX_FENCE;
1112 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
1113
Kent Overstreet79886132013-11-23 17:19:00 -08001114 bio_for_each_segment(bvl, bio, iter) {
1115 int len = bvl.bv_len;
Dan Williams91c00922007-01-02 13:52:30 -07001116 int clen;
1117 int b_offset = 0;
1118
1119 if (page_offset < 0) {
1120 b_offset = -page_offset;
1121 page_offset += b_offset;
1122 len -= b_offset;
1123 }
1124
1125 if (len > 0 && page_offset + len > STRIPE_SIZE)
1126 clen = STRIPE_SIZE - page_offset;
1127 else
1128 clen = len;
1129
1130 if (clen > 0) {
Kent Overstreet79886132013-11-23 17:19:00 -08001131 b_offset += bvl.bv_offset;
1132 bio_page = bvl.bv_page;
Shaohua Lid592a992014-05-21 17:57:44 +08001133 if (frombio) {
1134 if (sh->raid_conf->skip_copy &&
1135 b_offset == 0 && page_offset == 0 &&
1136 clen == STRIPE_SIZE)
1137 *page = bio_page;
1138 else
1139 tx = async_memcpy(*page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001140 b_offset, clen, &submit);
Shaohua Lid592a992014-05-21 17:57:44 +08001141 } else
1142 tx = async_memcpy(bio_page, *page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001143 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001144 }
Dan Williamsa08abd82009-06-03 11:43:59 -07001145 /* chain the operations */
1146 submit.depend_tx = tx;
1147
Dan Williams91c00922007-01-02 13:52:30 -07001148 if (clen < len) /* hit end of page */
1149 break;
1150 page_offset += len;
1151 }
1152
1153 return tx;
1154}
1155
1156static void ops_complete_biofill(void *stripe_head_ref)
1157{
1158 struct stripe_head *sh = stripe_head_ref;
1159 struct bio *return_bi = NULL;
Dan Williamse4d84902007-09-24 10:06:13 -07001160 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001161
Harvey Harrisone46b2722008-04-28 02:15:50 -07001162 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001163 (unsigned long long)sh->sector);
1164
1165 /* clear completed biofills */
1166 for (i = sh->disks; i--; ) {
1167 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -07001168
1169 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -07001170 /* and check if we need to reply to a read request,
1171 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +10001172 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -07001173 */
1174 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001175 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -07001176
Dan Williams91c00922007-01-02 13:52:30 -07001177 BUG_ON(!dev->read);
1178 rbi = dev->read;
1179 dev->read = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001180 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001181 dev->sector + STRIPE_SECTORS) {
1182 rbi2 = r5_next_bio(rbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10001183 if (!raid5_dec_bi_active_stripes(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -07001184 rbi->bi_next = return_bi;
1185 return_bi = rbi;
1186 }
Dan Williams91c00922007-01-02 13:52:30 -07001187 rbi = rbi2;
1188 }
1189 }
1190 }
Dan Williams83de75c2008-06-28 08:31:58 +10001191 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001192
1193 return_io(return_bi);
1194
Dan Williamse4d84902007-09-24 10:06:13 -07001195 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001196 release_stripe(sh);
1197}
1198
1199static void ops_run_biofill(struct stripe_head *sh)
1200{
1201 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -07001202 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001203 int i;
1204
shli@kernel.org59fc6302014-12-15 12:57:03 +11001205 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001206 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001207 (unsigned long long)sh->sector);
1208
1209 for (i = sh->disks; i--; ) {
1210 struct r5dev *dev = &sh->dev[i];
1211 if (test_bit(R5_Wantfill, &dev->flags)) {
1212 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +10001213 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001214 dev->read = rbi = dev->toread;
1215 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10001216 spin_unlock_irq(&sh->stripe_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001217 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001218 dev->sector + STRIPE_SECTORS) {
Shaohua Lid592a992014-05-21 17:57:44 +08001219 tx = async_copy_data(0, rbi, &dev->page,
1220 dev->sector, tx, sh);
Dan Williams91c00922007-01-02 13:52:30 -07001221 rbi = r5_next_bio(rbi, dev->sector);
1222 }
1223 }
1224 }
1225
1226 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001227 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
1228 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001229}
1230
Dan Williams4e7d2c02009-08-29 19:13:11 -07001231static void mark_target_uptodate(struct stripe_head *sh, int target)
1232{
1233 struct r5dev *tgt;
1234
1235 if (target < 0)
1236 return;
1237
1238 tgt = &sh->dev[target];
1239 set_bit(R5_UPTODATE, &tgt->flags);
1240 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1241 clear_bit(R5_Wantcompute, &tgt->flags);
1242}
1243
Dan Williamsac6b53b2009-07-14 13:40:19 -07001244static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001245{
1246 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001247
Harvey Harrisone46b2722008-04-28 02:15:50 -07001248 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001249 (unsigned long long)sh->sector);
1250
Dan Williamsac6b53b2009-07-14 13:40:19 -07001251 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -07001252 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001253 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -07001254
Dan Williamsecc65c92008-06-28 08:31:57 +10001255 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
1256 if (sh->check_state == check_state_compute_run)
1257 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -07001258 set_bit(STRIPE_HANDLE, &sh->state);
1259 release_stripe(sh);
1260}
1261
Dan Williamsd6f38f32009-07-14 11:50:52 -07001262/* return a pointer to the address conversion region of the scribble buffer */
1263static addr_conv_t *to_addr_conv(struct stripe_head *sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001264 struct raid5_percpu *percpu, int i)
Dan Williams91c00922007-01-02 13:52:30 -07001265{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001266 void *addr;
1267
1268 addr = flex_array_get(percpu->scribble, i);
1269 return addr + sizeof(struct page *) * (sh->disks + 2);
1270}
1271
1272/* return a pointer to the address conversion region of the scribble buffer */
1273static struct page **to_addr_page(struct raid5_percpu *percpu, int i)
1274{
1275 void *addr;
1276
1277 addr = flex_array_get(percpu->scribble, i);
1278 return addr;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001279}
1280
1281static struct dma_async_tx_descriptor *
1282ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
1283{
Dan Williams91c00922007-01-02 13:52:30 -07001284 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001285 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001286 int target = sh->ops.target;
1287 struct r5dev *tgt = &sh->dev[target];
1288 struct page *xor_dest = tgt->page;
1289 int count = 0;
1290 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001291 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001292 int i;
1293
shli@kernel.org59fc6302014-12-15 12:57:03 +11001294 BUG_ON(sh->batch_head);
1295
Dan Williams91c00922007-01-02 13:52:30 -07001296 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001297 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -07001298 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1299
1300 for (i = disks; i--; )
1301 if (i != target)
1302 xor_srcs[count++] = sh->dev[i].page;
1303
1304 atomic_inc(&sh->count);
1305
Dan Williams0403e382009-09-08 17:42:50 -07001306 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001307 ops_complete_compute, sh, to_addr_conv(sh, percpu, 0));
Dan Williams91c00922007-01-02 13:52:30 -07001308 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -07001309 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001310 else
Dan Williamsa08abd82009-06-03 11:43:59 -07001311 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001312
Dan Williams91c00922007-01-02 13:52:30 -07001313 return tx;
1314}
1315
Dan Williamsac6b53b2009-07-14 13:40:19 -07001316/* set_syndrome_sources - populate source buffers for gen_syndrome
1317 * @srcs - (struct page *) array of size sh->disks
1318 * @sh - stripe_head to parse
1319 *
1320 * Populates srcs in proper layout order for the stripe and returns the
1321 * 'count' of sources to be used in a call to async_gen_syndrome. The P
1322 * destination buffer is recorded in srcs[count] and the Q destination
1323 * is recorded in srcs[count+1]].
1324 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001325static int set_syndrome_sources(struct page **srcs,
1326 struct stripe_head *sh,
1327 int srctype)
Dan Williamsac6b53b2009-07-14 13:40:19 -07001328{
1329 int disks = sh->disks;
1330 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1331 int d0_idx = raid6_d0(sh);
1332 int count;
1333 int i;
1334
1335 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001336 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001337
1338 count = 0;
1339 i = d0_idx;
1340 do {
1341 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001342 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001343
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001344 if (i == sh->qd_idx || i == sh->pd_idx ||
1345 (srctype == SYNDROME_SRC_ALL) ||
1346 (srctype == SYNDROME_SRC_WANT_DRAIN &&
1347 test_bit(R5_Wantdrain, &dev->flags)) ||
1348 (srctype == SYNDROME_SRC_WRITTEN &&
1349 dev->written))
1350 srcs[slot] = sh->dev[i].page;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001351 i = raid6_next_disk(i, disks);
1352 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001353
NeilBrowne4424fe2009-10-16 16:27:34 +11001354 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001355}
1356
1357static struct dma_async_tx_descriptor *
1358ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1359{
1360 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001361 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001362 int target;
1363 int qd_idx = sh->qd_idx;
1364 struct dma_async_tx_descriptor *tx;
1365 struct async_submit_ctl submit;
1366 struct r5dev *tgt;
1367 struct page *dest;
1368 int i;
1369 int count;
1370
shli@kernel.org59fc6302014-12-15 12:57:03 +11001371 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001372 if (sh->ops.target < 0)
1373 target = sh->ops.target2;
1374 else if (sh->ops.target2 < 0)
1375 target = sh->ops.target;
1376 else
1377 /* we should only have one valid target */
1378 BUG();
1379 BUG_ON(target < 0);
1380 pr_debug("%s: stripe %llu block: %d\n",
1381 __func__, (unsigned long long)sh->sector, target);
1382
1383 tgt = &sh->dev[target];
1384 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1385 dest = tgt->page;
1386
1387 atomic_inc(&sh->count);
1388
1389 if (target == qd_idx) {
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001390 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001391 blocks[count] = NULL; /* regenerating p is not necessary */
1392 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001393 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1394 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001395 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001396 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1397 } else {
1398 /* Compute any data- or p-drive using XOR */
1399 count = 0;
1400 for (i = disks; i-- ; ) {
1401 if (i == target || i == qd_idx)
1402 continue;
1403 blocks[count++] = sh->dev[i].page;
1404 }
1405
Dan Williams0403e382009-09-08 17:42:50 -07001406 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1407 NULL, ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001408 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001409 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1410 }
1411
1412 return tx;
1413}
1414
1415static struct dma_async_tx_descriptor *
1416ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1417{
1418 int i, count, disks = sh->disks;
1419 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1420 int d0_idx = raid6_d0(sh);
1421 int faila = -1, failb = -1;
1422 int target = sh->ops.target;
1423 int target2 = sh->ops.target2;
1424 struct r5dev *tgt = &sh->dev[target];
1425 struct r5dev *tgt2 = &sh->dev[target2];
1426 struct dma_async_tx_descriptor *tx;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001427 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001428 struct async_submit_ctl submit;
1429
shli@kernel.org59fc6302014-12-15 12:57:03 +11001430 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001431 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1432 __func__, (unsigned long long)sh->sector, target, target2);
1433 BUG_ON(target < 0 || target2 < 0);
1434 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1435 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1436
Dan Williams6c910a72009-09-16 12:24:54 -07001437 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001438 * slot number conversion for 'faila' and 'failb'
1439 */
1440 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001441 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001442 count = 0;
1443 i = d0_idx;
1444 do {
1445 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1446
1447 blocks[slot] = sh->dev[i].page;
1448
1449 if (i == target)
1450 faila = slot;
1451 if (i == target2)
1452 failb = slot;
1453 i = raid6_next_disk(i, disks);
1454 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001455
1456 BUG_ON(faila == failb);
1457 if (failb < faila)
1458 swap(faila, failb);
1459 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1460 __func__, (unsigned long long)sh->sector, faila, failb);
1461
1462 atomic_inc(&sh->count);
1463
1464 if (failb == syndrome_disks+1) {
1465 /* Q disk is one of the missing disks */
1466 if (faila == syndrome_disks) {
1467 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001468 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1469 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001470 to_addr_conv(sh, percpu, 0));
NeilBrowne4424fe2009-10-16 16:27:34 +11001471 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001472 STRIPE_SIZE, &submit);
1473 } else {
1474 struct page *dest;
1475 int data_target;
1476 int qd_idx = sh->qd_idx;
1477
1478 /* Missing D+Q: recompute D from P, then recompute Q */
1479 if (target == qd_idx)
1480 data_target = target2;
1481 else
1482 data_target = target;
1483
1484 count = 0;
1485 for (i = disks; i-- ; ) {
1486 if (i == data_target || i == qd_idx)
1487 continue;
1488 blocks[count++] = sh->dev[i].page;
1489 }
1490 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001491 init_async_submit(&submit,
1492 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1493 NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001494 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001495 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1496 &submit);
1497
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001498 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williams0403e382009-09-08 17:42:50 -07001499 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1500 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001501 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001502 return async_gen_syndrome(blocks, 0, count+2,
1503 STRIPE_SIZE, &submit);
1504 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001505 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001506 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1507 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001508 to_addr_conv(sh, percpu, 0));
Dan Williams6c910a72009-09-16 12:24:54 -07001509 if (failb == syndrome_disks) {
1510 /* We're missing D+P. */
1511 return async_raid6_datap_recov(syndrome_disks+2,
1512 STRIPE_SIZE, faila,
1513 blocks, &submit);
1514 } else {
1515 /* We're missing D+D. */
1516 return async_raid6_2data_recov(syndrome_disks+2,
1517 STRIPE_SIZE, faila, failb,
1518 blocks, &submit);
1519 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001520 }
1521}
1522
Dan Williams91c00922007-01-02 13:52:30 -07001523static void ops_complete_prexor(void *stripe_head_ref)
1524{
1525 struct stripe_head *sh = stripe_head_ref;
1526
Harvey Harrisone46b2722008-04-28 02:15:50 -07001527 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001528 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001529}
1530
1531static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001532ops_run_prexor5(struct stripe_head *sh, struct raid5_percpu *percpu,
1533 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001534{
Dan Williams91c00922007-01-02 13:52:30 -07001535 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001536 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001537 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001538 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001539
1540 /* existing parity data subtracted */
1541 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1542
shli@kernel.org59fc6302014-12-15 12:57:03 +11001543 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001544 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001545 (unsigned long long)sh->sector);
1546
1547 for (i = disks; i--; ) {
1548 struct r5dev *dev = &sh->dev[i];
1549 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001550 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001551 xor_srcs[count++] = dev->page;
1552 }
1553
Dan Williams0403e382009-09-08 17:42:50 -07001554 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001555 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Dan Williamsa08abd82009-06-03 11:43:59 -07001556 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001557
1558 return tx;
1559}
1560
1561static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001562ops_run_prexor6(struct stripe_head *sh, struct raid5_percpu *percpu,
1563 struct dma_async_tx_descriptor *tx)
1564{
1565 struct page **blocks = to_addr_page(percpu, 0);
1566 int count;
1567 struct async_submit_ctl submit;
1568
1569 pr_debug("%s: stripe %llu\n", __func__,
1570 (unsigned long long)sh->sector);
1571
1572 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_WANT_DRAIN);
1573
1574 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_PQ_XOR_DST, tx,
1575 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
1576 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1577
1578 return tx;
1579}
1580
1581static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001582ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001583{
1584 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001585 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001586 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -07001587
Harvey Harrisone46b2722008-04-28 02:15:50 -07001588 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001589 (unsigned long long)sh->sector);
1590
1591 for (i = disks; i--; ) {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001592 struct r5dev *dev;
Dan Williams91c00922007-01-02 13:52:30 -07001593 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001594
shli@kernel.org59fc6302014-12-15 12:57:03 +11001595 sh = head_sh;
1596 if (test_and_clear_bit(R5_Wantdrain, &head_sh->dev[i].flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001597 struct bio *wbi;
1598
shli@kernel.org59fc6302014-12-15 12:57:03 +11001599again:
1600 dev = &sh->dev[i];
Shaohua Lib17459c2012-07-19 16:01:31 +10001601 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001602 chosen = dev->towrite;
1603 dev->towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11001604 sh->overwrite_disks = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001605 BUG_ON(dev->written);
1606 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001607 spin_unlock_irq(&sh->stripe_lock);
Shaohua Lid592a992014-05-21 17:57:44 +08001608 WARN_ON(dev->page != dev->orig_page);
Dan Williams91c00922007-01-02 13:52:30 -07001609
Kent Overstreet4f024f32013-10-11 15:44:27 -07001610 while (wbi && wbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001611 dev->sector + STRIPE_SECTORS) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001612 if (wbi->bi_rw & REQ_FUA)
1613 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001614 if (wbi->bi_rw & REQ_SYNC)
1615 set_bit(R5_SyncIO, &dev->flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001616 if (wbi->bi_rw & REQ_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001617 set_bit(R5_Discard, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08001618 else {
1619 tx = async_copy_data(1, wbi, &dev->page,
1620 dev->sector, tx, sh);
1621 if (dev->page != dev->orig_page) {
1622 set_bit(R5_SkipCopy, &dev->flags);
1623 clear_bit(R5_UPTODATE, &dev->flags);
1624 clear_bit(R5_OVERWRITE, &dev->flags);
1625 }
1626 }
Dan Williams91c00922007-01-02 13:52:30 -07001627 wbi = r5_next_bio(wbi, dev->sector);
1628 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001629
1630 if (head_sh->batch_head) {
1631 sh = list_first_entry(&sh->batch_list,
1632 struct stripe_head,
1633 batch_list);
1634 if (sh == head_sh)
1635 continue;
1636 goto again;
1637 }
Dan Williams91c00922007-01-02 13:52:30 -07001638 }
1639 }
1640
1641 return tx;
1642}
1643
Dan Williamsac6b53b2009-07-14 13:40:19 -07001644static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001645{
1646 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001647 int disks = sh->disks;
1648 int pd_idx = sh->pd_idx;
1649 int qd_idx = sh->qd_idx;
1650 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001651 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001652
Harvey Harrisone46b2722008-04-28 02:15:50 -07001653 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001654 (unsigned long long)sh->sector);
1655
Shaohua Libc0934f2012-05-22 13:55:05 +10001656 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001657 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001658 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001659 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001660 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001661
Dan Williams91c00922007-01-02 13:52:30 -07001662 for (i = disks; i--; ) {
1663 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001664
Tejun Heoe9c74692010-09-03 11:56:18 +02001665 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Lid592a992014-05-21 17:57:44 +08001666 if (!discard && !test_bit(R5_SkipCopy, &dev->flags))
Shaohua Li9e4447682012-10-11 13:49:49 +11001667 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001668 if (fua)
1669 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001670 if (sync)
1671 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001672 }
Dan Williams91c00922007-01-02 13:52:30 -07001673 }
1674
Dan Williamsd8ee0722008-06-28 08:32:06 +10001675 if (sh->reconstruct_state == reconstruct_state_drain_run)
1676 sh->reconstruct_state = reconstruct_state_drain_result;
1677 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1678 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1679 else {
1680 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1681 sh->reconstruct_state = reconstruct_state_result;
1682 }
Dan Williams91c00922007-01-02 13:52:30 -07001683
1684 set_bit(STRIPE_HANDLE, &sh->state);
1685 release_stripe(sh);
1686}
1687
1688static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001689ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1690 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001691{
Dan Williams91c00922007-01-02 13:52:30 -07001692 int disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001693 struct page **xor_srcs;
Dan Williamsa08abd82009-06-03 11:43:59 -07001694 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001695 int count, pd_idx = sh->pd_idx, i;
Dan Williams91c00922007-01-02 13:52:30 -07001696 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001697 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001698 unsigned long flags;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001699 int j = 0;
1700 struct stripe_head *head_sh = sh;
1701 int last_stripe;
Dan Williams91c00922007-01-02 13:52:30 -07001702
Harvey Harrisone46b2722008-04-28 02:15:50 -07001703 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001704 (unsigned long long)sh->sector);
1705
Shaohua Li620125f2012-10-11 13:49:05 +11001706 for (i = 0; i < sh->disks; i++) {
1707 if (pd_idx == i)
1708 continue;
1709 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1710 break;
1711 }
1712 if (i >= sh->disks) {
1713 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001714 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1715 ops_complete_reconstruct(sh);
1716 return;
1717 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001718again:
1719 count = 0;
1720 xor_srcs = to_addr_page(percpu, j);
Dan Williams91c00922007-01-02 13:52:30 -07001721 /* check if prexor is active which means only process blocks
1722 * that are part of a read-modify-write (written)
1723 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001724 if (head_sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001725 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001726 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1727 for (i = disks; i--; ) {
1728 struct r5dev *dev = &sh->dev[i];
shli@kernel.org59fc6302014-12-15 12:57:03 +11001729 if (head_sh->dev[i].written)
Dan Williams91c00922007-01-02 13:52:30 -07001730 xor_srcs[count++] = dev->page;
1731 }
1732 } else {
1733 xor_dest = sh->dev[pd_idx].page;
1734 for (i = disks; i--; ) {
1735 struct r5dev *dev = &sh->dev[i];
1736 if (i != pd_idx)
1737 xor_srcs[count++] = dev->page;
1738 }
1739 }
1740
Dan Williams91c00922007-01-02 13:52:30 -07001741 /* 1/ if we prexor'd then the dest is reused as a source
1742 * 2/ if we did not prexor then we are redoing the parity
1743 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1744 * for the synchronous xor case
1745 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001746 last_stripe = !head_sh->batch_head ||
1747 list_first_entry(&sh->batch_list,
1748 struct stripe_head, batch_list) == head_sh;
1749 if (last_stripe) {
1750 flags = ASYNC_TX_ACK |
1751 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
Dan Williams91c00922007-01-02 13:52:30 -07001752
shli@kernel.org59fc6302014-12-15 12:57:03 +11001753 atomic_inc(&head_sh->count);
1754 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, head_sh,
1755 to_addr_conv(sh, percpu, j));
1756 } else {
1757 flags = prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST;
1758 init_async_submit(&submit, flags, tx, NULL, NULL,
1759 to_addr_conv(sh, percpu, j));
1760 }
Dan Williams91c00922007-01-02 13:52:30 -07001761
Dan Williamsa08abd82009-06-03 11:43:59 -07001762 if (unlikely(count == 1))
1763 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1764 else
1765 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001766 if (!last_stripe) {
1767 j++;
1768 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1769 batch_list);
1770 goto again;
1771 }
Dan Williams91c00922007-01-02 13:52:30 -07001772}
1773
Dan Williamsac6b53b2009-07-14 13:40:19 -07001774static void
1775ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1776 struct dma_async_tx_descriptor *tx)
1777{
1778 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001779 struct page **blocks;
1780 int count, i, j = 0;
1781 struct stripe_head *head_sh = sh;
1782 int last_stripe;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001783 int synflags;
1784 unsigned long txflags;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001785
1786 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1787
Shaohua Li620125f2012-10-11 13:49:05 +11001788 for (i = 0; i < sh->disks; i++) {
1789 if (sh->pd_idx == i || sh->qd_idx == i)
1790 continue;
1791 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1792 break;
1793 }
1794 if (i >= sh->disks) {
1795 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001796 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1797 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1798 ops_complete_reconstruct(sh);
1799 return;
1800 }
1801
shli@kernel.org59fc6302014-12-15 12:57:03 +11001802again:
1803 blocks = to_addr_page(percpu, j);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001804
1805 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1806 synflags = SYNDROME_SRC_WRITTEN;
1807 txflags = ASYNC_TX_ACK | ASYNC_TX_PQ_XOR_DST;
1808 } else {
1809 synflags = SYNDROME_SRC_ALL;
1810 txflags = ASYNC_TX_ACK;
1811 }
1812
1813 count = set_syndrome_sources(blocks, sh, synflags);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001814 last_stripe = !head_sh->batch_head ||
1815 list_first_entry(&sh->batch_list,
1816 struct stripe_head, batch_list) == head_sh;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001817
shli@kernel.org59fc6302014-12-15 12:57:03 +11001818 if (last_stripe) {
1819 atomic_inc(&head_sh->count);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001820 init_async_submit(&submit, txflags, tx, ops_complete_reconstruct,
shli@kernel.org59fc6302014-12-15 12:57:03 +11001821 head_sh, to_addr_conv(sh, percpu, j));
1822 } else
1823 init_async_submit(&submit, 0, tx, NULL, NULL,
1824 to_addr_conv(sh, percpu, j));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001825 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001826 if (!last_stripe) {
1827 j++;
1828 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1829 batch_list);
1830 goto again;
1831 }
Dan Williams91c00922007-01-02 13:52:30 -07001832}
1833
1834static void ops_complete_check(void *stripe_head_ref)
1835{
1836 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001837
Harvey Harrisone46b2722008-04-28 02:15:50 -07001838 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001839 (unsigned long long)sh->sector);
1840
Dan Williamsecc65c92008-06-28 08:31:57 +10001841 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001842 set_bit(STRIPE_HANDLE, &sh->state);
1843 release_stripe(sh);
1844}
1845
Dan Williamsac6b53b2009-07-14 13:40:19 -07001846static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001847{
Dan Williams91c00922007-01-02 13:52:30 -07001848 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001849 int pd_idx = sh->pd_idx;
1850 int qd_idx = sh->qd_idx;
1851 struct page *xor_dest;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001852 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001853 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001854 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001855 int count;
1856 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001857
Harvey Harrisone46b2722008-04-28 02:15:50 -07001858 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001859 (unsigned long long)sh->sector);
1860
shli@kernel.org59fc6302014-12-15 12:57:03 +11001861 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001862 count = 0;
1863 xor_dest = sh->dev[pd_idx].page;
1864 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001865 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001866 if (i == pd_idx || i == qd_idx)
1867 continue;
1868 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001869 }
1870
Dan Williamsd6f38f32009-07-14 11:50:52 -07001871 init_async_submit(&submit, 0, NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001872 to_addr_conv(sh, percpu, 0));
Dan Williams099f53c2009-04-08 14:28:37 -07001873 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001874 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001875
Dan Williams91c00922007-01-02 13:52:30 -07001876 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001877 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1878 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001879}
1880
Dan Williamsac6b53b2009-07-14 13:40:19 -07001881static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1882{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001883 struct page **srcs = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001884 struct async_submit_ctl submit;
1885 int count;
1886
1887 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1888 (unsigned long long)sh->sector, checkp);
1889
shli@kernel.org59fc6302014-12-15 12:57:03 +11001890 BUG_ON(sh->batch_head);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001891 count = set_syndrome_sources(srcs, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001892 if (!checkp)
1893 srcs[count] = NULL;
1894
1895 atomic_inc(&sh->count);
1896 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001897 sh, to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001898 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1899 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1900}
1901
NeilBrown51acbce2013-02-28 09:08:34 +11001902static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001903{
1904 int overlap_clear = 0, i, disks = sh->disks;
1905 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001906 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001907 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001908 struct raid5_percpu *percpu;
1909 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001910
Dan Williamsd6f38f32009-07-14 11:50:52 -07001911 cpu = get_cpu();
1912 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001913 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001914 ops_run_biofill(sh);
1915 overlap_clear++;
1916 }
1917
Dan Williams7b3a8712008-06-28 08:32:09 +10001918 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001919 if (level < 6)
1920 tx = ops_run_compute5(sh, percpu);
1921 else {
1922 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1923 tx = ops_run_compute6_1(sh, percpu);
1924 else
1925 tx = ops_run_compute6_2(sh, percpu);
1926 }
1927 /* terminate the chain if reconstruct is not set to be run */
1928 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001929 async_tx_ack(tx);
1930 }
Dan Williams91c00922007-01-02 13:52:30 -07001931
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001932 if (test_bit(STRIPE_OP_PREXOR, &ops_request)) {
1933 if (level < 6)
1934 tx = ops_run_prexor5(sh, percpu, tx);
1935 else
1936 tx = ops_run_prexor6(sh, percpu, tx);
1937 }
Dan Williams91c00922007-01-02 13:52:30 -07001938
Dan Williams600aa102008-06-28 08:32:05 +10001939 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001940 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001941 overlap_clear++;
1942 }
1943
Dan Williamsac6b53b2009-07-14 13:40:19 -07001944 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1945 if (level < 6)
1946 ops_run_reconstruct5(sh, percpu, tx);
1947 else
1948 ops_run_reconstruct6(sh, percpu, tx);
1949 }
Dan Williams91c00922007-01-02 13:52:30 -07001950
Dan Williamsac6b53b2009-07-14 13:40:19 -07001951 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1952 if (sh->check_state == check_state_run)
1953 ops_run_check_p(sh, percpu);
1954 else if (sh->check_state == check_state_run_q)
1955 ops_run_check_pq(sh, percpu, 0);
1956 else if (sh->check_state == check_state_run_pq)
1957 ops_run_check_pq(sh, percpu, 1);
1958 else
1959 BUG();
1960 }
Dan Williams91c00922007-01-02 13:52:30 -07001961
shli@kernel.org59fc6302014-12-15 12:57:03 +11001962 if (overlap_clear && !sh->batch_head)
Dan Williams91c00922007-01-02 13:52:30 -07001963 for (i = disks; i--; ) {
1964 struct r5dev *dev = &sh->dev[i];
1965 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1966 wake_up(&sh->raid_conf->wait_for_overlap);
1967 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001968 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001969}
1970
NeilBrownf18c1a32015-05-08 18:19:04 +10001971static struct stripe_head *alloc_stripe(struct kmem_cache *sc, gfp_t gfp)
1972{
1973 struct stripe_head *sh;
1974
1975 sh = kmem_cache_zalloc(sc, gfp);
1976 if (sh) {
1977 spin_lock_init(&sh->stripe_lock);
1978 spin_lock_init(&sh->batch_lock);
1979 INIT_LIST_HEAD(&sh->batch_list);
1980 INIT_LIST_HEAD(&sh->lru);
1981 atomic_set(&sh->count, 1);
1982 }
1983 return sh;
1984}
NeilBrown486f0642015-02-25 12:10:35 +11001985static int grow_one_stripe(struct r5conf *conf, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
1987 struct stripe_head *sh;
NeilBrownf18c1a32015-05-08 18:19:04 +10001988
1989 sh = alloc_stripe(conf->slab_cache, gfp);
NeilBrown3f294f42005-11-08 21:39:25 -08001990 if (!sh)
1991 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001992
NeilBrown3f294f42005-11-08 21:39:25 -08001993 sh->raid_conf = conf;
NeilBrown3f294f42005-11-08 21:39:25 -08001994
NeilBrowna9683a72015-02-25 12:02:51 +11001995 if (grow_buffers(sh, gfp)) {
NeilBrowne4e11e32010-06-16 16:45:16 +10001996 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001997 kmem_cache_free(conf->slab_cache, sh);
1998 return 0;
1999 }
NeilBrown486f0642015-02-25 12:10:35 +11002000 sh->hash_lock_index =
2001 conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
NeilBrown3f294f42005-11-08 21:39:25 -08002002 /* we just created an active stripe so... */
NeilBrown3f294f42005-11-08 21:39:25 -08002003 atomic_inc(&conf->active_stripes);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002004
NeilBrown3f294f42005-11-08 21:39:25 -08002005 release_stripe(sh);
NeilBrown486f0642015-02-25 12:10:35 +11002006 conf->max_nr_stripes++;
NeilBrown3f294f42005-11-08 21:39:25 -08002007 return 1;
2008}
2009
NeilBrownd1688a62011-10-11 16:49:52 +11002010static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08002011{
Christoph Lametere18b8902006-12-06 20:33:20 -08002012 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11002013 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
NeilBrownf4be6b42010-06-01 19:37:25 +10002015 if (conf->mddev->gendisk)
2016 sprintf(conf->cache_name[0],
2017 "raid%d-%s", conf->level, mdname(conf->mddev));
2018 else
2019 sprintf(conf->cache_name[0],
2020 "raid%d-%p", conf->level, conf->mddev);
2021 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
2022
NeilBrownad01c9e2006-03-27 01:18:07 -08002023 conf->active_name = 0;
2024 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002026 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (!sc)
2028 return 1;
2029 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002030 conf->pool_size = devs;
NeilBrown486f0642015-02-25 12:10:35 +11002031 while (num--)
2032 if (!grow_one_stripe(conf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return 1;
NeilBrown486f0642015-02-25 12:10:35 +11002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 return 0;
2036}
NeilBrown29269552006-03-27 01:18:10 -08002037
Dan Williamsd6f38f32009-07-14 11:50:52 -07002038/**
2039 * scribble_len - return the required size of the scribble region
2040 * @num - total number of disks in the array
2041 *
2042 * The size must be enough to contain:
2043 * 1/ a struct page pointer for each device in the array +2
2044 * 2/ room to convert each entry in (1) to its corresponding dma
2045 * (dma_map_page()) or page (page_address()) address.
2046 *
2047 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
2048 * calculate over all devices (not just the data blocks), using zeros in place
2049 * of the P and Q blocks.
2050 */
shli@kernel.org46d5b782014-12-15 12:57:02 +11002051static struct flex_array *scribble_alloc(int num, int cnt, gfp_t flags)
Dan Williamsd6f38f32009-07-14 11:50:52 -07002052{
shli@kernel.org46d5b782014-12-15 12:57:02 +11002053 struct flex_array *ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002054 size_t len;
2055
2056 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002057 ret = flex_array_alloc(len, cnt, flags);
2058 if (!ret)
2059 return NULL;
2060 /* always prealloc all elements, so no locking is required */
2061 if (flex_array_prealloc(ret, 0, cnt, flags)) {
2062 flex_array_free(ret);
2063 return NULL;
2064 }
2065 return ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002066}
2067
NeilBrown738a2732015-05-08 18:19:39 +10002068static int resize_chunks(struct r5conf *conf, int new_disks, int new_sectors)
2069{
2070 unsigned long cpu;
2071 int err = 0;
2072
2073 mddev_suspend(conf->mddev);
2074 get_online_cpus();
2075 for_each_present_cpu(cpu) {
2076 struct raid5_percpu *percpu;
2077 struct flex_array *scribble;
2078
2079 percpu = per_cpu_ptr(conf->percpu, cpu);
2080 scribble = scribble_alloc(new_disks,
2081 new_sectors / STRIPE_SECTORS,
2082 GFP_NOIO);
2083
2084 if (scribble) {
2085 flex_array_free(percpu->scribble);
2086 percpu->scribble = scribble;
2087 } else {
2088 err = -ENOMEM;
2089 break;
2090 }
2091 }
2092 put_online_cpus();
2093 mddev_resume(conf->mddev);
2094 return err;
2095}
2096
NeilBrownd1688a62011-10-11 16:49:52 +11002097static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08002098{
2099 /* Make all the stripes able to hold 'newsize' devices.
2100 * New slots in each stripe get 'page' set to a new page.
2101 *
2102 * This happens in stages:
2103 * 1/ create a new kmem_cache and allocate the required number of
2104 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09002105 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08002106 * to the new stripe_heads. This will have the side effect of
2107 * freezing the array as once all stripe_heads have been collected,
2108 * no IO will be possible. Old stripe heads are freed once their
2109 * pages have been transferred over, and the old kmem_cache is
2110 * freed when all stripes are done.
2111 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
2112 * we simple return a failre status - no need to clean anything up.
2113 * 4/ allocate new pages for the new slots in the new stripe_heads.
2114 * If this fails, we don't bother trying the shrink the
2115 * stripe_heads down again, we just leave them as they are.
2116 * As each stripe_head is processed the new one is released into
2117 * active service.
2118 *
2119 * Once step2 is started, we cannot afford to wait for a write,
2120 * so we use GFP_NOIO allocations.
2121 */
2122 struct stripe_head *osh, *nsh;
2123 LIST_HEAD(newstripes);
2124 struct disk_info *ndisks;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002125 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08002126 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002127 int i;
Shaohua Li566c09c2013-11-14 15:16:17 +11002128 int hash, cnt;
NeilBrownad01c9e2006-03-27 01:18:07 -08002129
2130 if (newsize <= conf->pool_size)
2131 return 0; /* never bother to shrink */
2132
Dan Williamsb5470dc2008-06-27 21:44:04 -07002133 err = md_allow_write(conf->mddev);
2134 if (err)
2135 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002136
NeilBrownad01c9e2006-03-27 01:18:07 -08002137 /* Step 1 */
2138 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
2139 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002140 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002141 if (!sc)
2142 return -ENOMEM;
2143
2144 for (i = conf->max_nr_stripes; i; i--) {
NeilBrownf18c1a32015-05-08 18:19:04 +10002145 nsh = alloc_stripe(sc, GFP_KERNEL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002146 if (!nsh)
2147 break;
2148
NeilBrownad01c9e2006-03-27 01:18:07 -08002149 nsh->raid_conf = conf;
NeilBrownad01c9e2006-03-27 01:18:07 -08002150 list_add(&nsh->lru, &newstripes);
2151 }
2152 if (i) {
2153 /* didn't get enough, give up */
2154 while (!list_empty(&newstripes)) {
2155 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2156 list_del(&nsh->lru);
2157 kmem_cache_free(sc, nsh);
2158 }
2159 kmem_cache_destroy(sc);
2160 return -ENOMEM;
2161 }
2162 /* Step 2 - Must use GFP_NOIO now.
2163 * OK, we have enough stripes, start collecting inactive
2164 * stripes and copying them over
2165 */
Shaohua Li566c09c2013-11-14 15:16:17 +11002166 hash = 0;
2167 cnt = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002168 list_for_each_entry(nsh, &newstripes, lru) {
Shaohua Li566c09c2013-11-14 15:16:17 +11002169 lock_device_hash_lock(conf, hash);
2170 wait_event_cmd(conf->wait_for_stripe,
2171 !list_empty(conf->inactive_list + hash),
2172 unlock_device_hash_lock(conf, hash),
2173 lock_device_hash_lock(conf, hash));
2174 osh = get_free_stripe(conf, hash);
2175 unlock_device_hash_lock(conf, hash);
NeilBrownf18c1a32015-05-08 18:19:04 +10002176
Shaohua Lid592a992014-05-21 17:57:44 +08002177 for(i=0; i<conf->pool_size; i++) {
NeilBrownad01c9e2006-03-27 01:18:07 -08002178 nsh->dev[i].page = osh->dev[i].page;
Shaohua Lid592a992014-05-21 17:57:44 +08002179 nsh->dev[i].orig_page = osh->dev[i].page;
2180 }
Shaohua Li566c09c2013-11-14 15:16:17 +11002181 nsh->hash_lock_index = hash;
NeilBrownad01c9e2006-03-27 01:18:07 -08002182 kmem_cache_free(conf->slab_cache, osh);
Shaohua Li566c09c2013-11-14 15:16:17 +11002183 cnt++;
2184 if (cnt >= conf->max_nr_stripes / NR_STRIPE_HASH_LOCKS +
2185 !!((conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS) > hash)) {
2186 hash++;
2187 cnt = 0;
2188 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002189 }
2190 kmem_cache_destroy(conf->slab_cache);
2191
2192 /* Step 3.
2193 * At this point, we are holding all the stripes so the array
2194 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07002195 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08002196 */
2197 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
2198 if (ndisks) {
2199 for (i=0; i<conf->raid_disks; i++)
2200 ndisks[i] = conf->disks[i];
2201 kfree(conf->disks);
2202 conf->disks = ndisks;
2203 } else
2204 err = -ENOMEM;
2205
2206 /* Step 4, return new stripes to service */
2207 while(!list_empty(&newstripes)) {
2208 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2209 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002210
NeilBrownad01c9e2006-03-27 01:18:07 -08002211 for (i=conf->raid_disks; i < newsize; i++)
2212 if (nsh->dev[i].page == NULL) {
2213 struct page *p = alloc_page(GFP_NOIO);
2214 nsh->dev[i].page = p;
Shaohua Lid592a992014-05-21 17:57:44 +08002215 nsh->dev[i].orig_page = p;
NeilBrownad01c9e2006-03-27 01:18:07 -08002216 if (!p)
2217 err = -ENOMEM;
2218 }
2219 release_stripe(nsh);
2220 }
2221 /* critical section pass, GFP_NOIO no longer needed */
2222
2223 conf->slab_cache = sc;
2224 conf->active_name = 1-conf->active_name;
NeilBrown6e9eac22015-05-08 18:19:34 +10002225 if (!err)
2226 conf->pool_size = newsize;
NeilBrownad01c9e2006-03-27 01:18:07 -08002227 return err;
2228}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
NeilBrown486f0642015-02-25 12:10:35 +11002230static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
2232 struct stripe_head *sh;
NeilBrown486f0642015-02-25 12:10:35 +11002233 int hash = (conf->max_nr_stripes - 1) % NR_STRIPE_HASH_LOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Shaohua Li566c09c2013-11-14 15:16:17 +11002235 spin_lock_irq(conf->hash_locks + hash);
2236 sh = get_free_stripe(conf, hash);
2237 spin_unlock_irq(conf->hash_locks + hash);
NeilBrown3f294f42005-11-08 21:39:25 -08002238 if (!sh)
2239 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002240 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10002241 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002242 kmem_cache_free(conf->slab_cache, sh);
2243 atomic_dec(&conf->active_stripes);
NeilBrown486f0642015-02-25 12:10:35 +11002244 conf->max_nr_stripes--;
NeilBrown3f294f42005-11-08 21:39:25 -08002245 return 1;
2246}
2247
NeilBrownd1688a62011-10-11 16:49:52 +11002248static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08002249{
NeilBrown486f0642015-02-25 12:10:35 +11002250 while (conf->max_nr_stripes &&
2251 drop_one_stripe(conf))
2252 ;
NeilBrown3f294f42005-11-08 21:39:25 -08002253
NeilBrown29fc7e32006-02-03 03:03:41 -08002254 if (conf->slab_cache)
2255 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 conf->slab_cache = NULL;
2257}
2258
NeilBrown6712ecf2007-09-27 12:47:43 +02002259static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260{
NeilBrown99c0fb52009-03-31 14:39:38 +11002261 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002262 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002263 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07002265 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11002266 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10002267 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
2269 for (i=0 ; i<disks; i++)
2270 if (bi == &sh->dev[i].req)
2271 break;
2272
Dan Williams45b42332007-07-09 11:56:43 -07002273 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
2274 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 uptodate);
2276 if (i == disks) {
2277 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002278 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
NeilBrown14a75d32011-12-23 10:17:52 +11002280 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11002281 /* If replacement finished while this request was outstanding,
2282 * 'replacement' might be NULL already.
2283 * In that case it moved down to 'rdev'.
2284 * rdev is not removed until all requests are finished.
2285 */
NeilBrown14a75d32011-12-23 10:17:52 +11002286 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002287 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11002288 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
NeilBrown05616be2012-05-21 09:27:00 +10002290 if (use_new_offset(conf, sh))
2291 s = sh->sector + rdev->new_data_offset;
2292 else
2293 s = sh->sector + rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08002296 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11002297 /* Note that this cannot happen on a
2298 * replacement device. We just fail those on
2299 * any error
2300 */
Christian Dietrich8bda4702011-07-27 11:00:36 +10002301 printk_ratelimited(
2302 KERN_INFO
2303 "md/raid:%s: read error corrected"
2304 " (%lu sectors at %llu on %s)\n",
2305 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10002306 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002307 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10002308 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08002309 clear_bit(R5_ReadError, &sh->dev[i].flags);
2310 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10002311 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2312 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2313
NeilBrown14a75d32011-12-23 10:17:52 +11002314 if (atomic_read(&rdev->read_errors))
2315 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11002317 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08002318 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10002319 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07002320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07002322 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11002323 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
2324 printk_ratelimited(
2325 KERN_WARNING
2326 "md/raid:%s: read error on replacement device "
2327 "(sector %llu on %s).\n",
2328 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002329 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11002330 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002331 else if (conf->mddev->degraded >= conf->max_degraded) {
2332 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10002333 printk_ratelimited(
2334 KERN_WARNING
2335 "md/raid:%s: read error not correctable "
2336 "(sector %llu on %s).\n",
2337 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002338 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002339 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002340 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08002341 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10002342 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10002343 printk_ratelimited(
2344 KERN_WARNING
2345 "md/raid:%s: read error NOT corrected!! "
2346 "(sector %llu on %s).\n",
2347 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002348 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002349 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002350 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08002351 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08002352 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10002353 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07002354 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08002355 else
2356 retry = 1;
Bian Yuedfa1f62013-11-14 15:16:17 +11002357 if (set_bad && test_bit(In_sync, &rdev->flags)
2358 && !test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2359 retry = 1;
NeilBrownba22dcb2005-11-08 21:39:31 -08002360 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10002361 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
2362 set_bit(R5_ReadError, &sh->dev[i].flags);
2363 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2364 } else
2365 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08002366 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08002367 clear_bit(R5_ReadError, &sh->dev[i].flags);
2368 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10002369 if (!(set_bad
2370 && test_bit(In_sync, &rdev->flags)
2371 && rdev_set_badblocks(
2372 rdev, sh->sector, STRIPE_SECTORS, 0)))
2373 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08002374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
NeilBrown14a75d32011-12-23 10:17:52 +11002376 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2378 set_bit(STRIPE_HANDLE, &sh->state);
2379 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380}
2381
NeilBrownd710e132008-10-13 11:55:12 +11002382static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383{
NeilBrown99c0fb52009-03-31 14:39:38 +11002384 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002385 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002386 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11002387 struct md_rdev *uninitialized_var(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownb84db562011-07-28 11:39:23 +10002389 sector_t first_bad;
2390 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11002391 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
NeilBrown977df362011-12-23 10:17:53 +11002393 for (i = 0 ; i < disks; i++) {
2394 if (bi == &sh->dev[i].req) {
2395 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 break;
NeilBrown977df362011-12-23 10:17:53 +11002397 }
2398 if (bi == &sh->dev[i].rreq) {
2399 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002400 if (rdev)
2401 replacement = 1;
2402 else
2403 /* rdev was removed and 'replacement'
2404 * replaced it. rdev is not removed
2405 * until all requests are finished.
2406 */
2407 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11002408 break;
2409 }
2410 }
Dan Williams45b42332007-07-09 11:56:43 -07002411 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
2413 uptodate);
2414 if (i == disks) {
2415 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002416 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 }
2418
NeilBrown977df362011-12-23 10:17:53 +11002419 if (replacement) {
2420 if (!uptodate)
2421 md_error(conf->mddev, rdev);
2422 else if (is_badblock(rdev, sh->sector,
2423 STRIPE_SECTORS,
2424 &first_bad, &bad_sectors))
2425 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2426 } else {
2427 if (!uptodate) {
NeilBrown9f97e4b2014-01-16 09:35:38 +11002428 set_bit(STRIPE_DEGRADED, &sh->state);
NeilBrown977df362011-12-23 10:17:53 +11002429 set_bit(WriteErrorSeen, &rdev->flags);
2430 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002431 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2432 set_bit(MD_RECOVERY_NEEDED,
2433 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002434 } else if (is_badblock(rdev, sh->sector,
2435 STRIPE_SECTORS,
NeilBrownc0b32972013-04-24 11:42:42 +10002436 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002437 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002438 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2439 /* That was a successful write so make
2440 * sure it looks like we already did
2441 * a re-write.
2442 */
2443 set_bit(R5_ReWrite, &sh->dev[i].flags);
2444 }
NeilBrown977df362011-12-23 10:17:53 +11002445 }
2446 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
NeilBrownbb270512015-05-08 18:19:40 +10002448 if (sh->batch_head && !uptodate && !replacement)
shli@kernel.org72ac7332014-12-15 12:57:03 +11002449 set_bit(STRIPE_BATCH_ERR, &sh->batch_head->state);
2450
NeilBrown977df362011-12-23 10:17:53 +11002451 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2452 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07002454 release_stripe(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002455
2456 if (sh->batch_head && sh != sh->batch_head)
2457 release_stripe(sh->batch_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
NeilBrown784052e2009-03-31 15:19:07 +11002460static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Shaohua Lid592a992014-05-21 17:57:44 +08002461
NeilBrown784052e2009-03-31 15:19:07 +11002462static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463{
2464 struct r5dev *dev = &sh->dev[i];
2465
2466 bio_init(&dev->req);
2467 dev->req.bi_io_vec = &dev->vec;
Shaohua Lid592a992014-05-21 17:57:44 +08002468 dev->req.bi_max_vecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 dev->req.bi_private = sh;
2470
NeilBrown977df362011-12-23 10:17:53 +11002471 bio_init(&dev->rreq);
2472 dev->rreq.bi_io_vec = &dev->rvec;
Shaohua Lid592a992014-05-21 17:57:44 +08002473 dev->rreq.bi_max_vecs = 1;
NeilBrown977df362011-12-23 10:17:53 +11002474 dev->rreq.bi_private = sh;
NeilBrown977df362011-12-23 10:17:53 +11002475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11002477 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
2479
NeilBrownfd01b882011-10-11 16:47:53 +11002480static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481{
2482 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002483 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002484 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002485 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
NeilBrown908f4fb2011-12-23 10:17:50 +11002487 spin_lock_irqsave(&conf->device_lock, flags);
2488 clear_bit(In_sync, &rdev->flags);
2489 mddev->degraded = calc_degraded(conf);
2490 spin_unlock_irqrestore(&conf->device_lock, flags);
2491 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2492
NeilBrownde393cd2011-07-28 11:31:48 +10002493 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10002494 set_bit(Faulty, &rdev->flags);
2495 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2496 printk(KERN_ALERT
2497 "md/raid:%s: Disk failure on %s, disabling device.\n"
2498 "md/raid:%s: Operation continuing on %d devices.\n",
2499 mdname(mddev),
2500 bdevname(rdev->bdev, b),
2501 mdname(mddev),
2502 conf->raid_disks - mddev->degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07002503}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
2505/*
2506 * Input: a 'big' sector number,
2507 * Output: index of the data and parity disk, and the sector # in them.
2508 */
NeilBrownd1688a62011-10-11 16:49:52 +11002509static sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11002510 int previous, int *dd_idx,
2511 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002513 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002514 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002516 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002517 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002519 int algorithm = previous ? conf->prev_algo
2520 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002521 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2522 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002523 int raid_disks = previous ? conf->previous_raid_disks
2524 : conf->raid_disks;
2525 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 /* First compute the information on this sector */
2528
2529 /*
2530 * Compute the chunk number and the sector offset inside the chunk
2531 */
2532 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2533 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
2535 /*
2536 * Compute the stripe number
2537 */
NeilBrown35f2a592010-04-20 14:13:34 +10002538 stripe = chunk_number;
2539 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002540 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 /*
2542 * Select the parity disk based on the user selected algorithm.
2543 */
NeilBrown84789552011-07-27 11:00:36 +10002544 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002545 switch(conf->level) {
2546 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002547 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002548 break;
2549 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002550 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002552 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002553 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 (*dd_idx)++;
2555 break;
2556 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002557 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002558 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 (*dd_idx)++;
2560 break;
2561 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002562 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002563 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 break;
2565 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002566 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002567 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002569 case ALGORITHM_PARITY_0:
2570 pd_idx = 0;
2571 (*dd_idx)++;
2572 break;
2573 case ALGORITHM_PARITY_N:
2574 pd_idx = data_disks;
2575 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002577 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002578 }
2579 break;
2580 case 6:
2581
NeilBrowne183eae2009-03-31 15:20:22 +11002582 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002583 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002584 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002585 qd_idx = pd_idx + 1;
2586 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002587 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002588 qd_idx = 0;
2589 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002590 (*dd_idx) += 2; /* D D P Q D */
2591 break;
2592 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002593 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002594 qd_idx = pd_idx + 1;
2595 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002596 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002597 qd_idx = 0;
2598 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002599 (*dd_idx) += 2; /* D D P Q D */
2600 break;
2601 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002602 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002603 qd_idx = (pd_idx + 1) % raid_disks;
2604 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002605 break;
2606 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002607 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002608 qd_idx = (pd_idx + 1) % raid_disks;
2609 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002610 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002611
2612 case ALGORITHM_PARITY_0:
2613 pd_idx = 0;
2614 qd_idx = 1;
2615 (*dd_idx) += 2;
2616 break;
2617 case ALGORITHM_PARITY_N:
2618 pd_idx = data_disks;
2619 qd_idx = data_disks + 1;
2620 break;
2621
2622 case ALGORITHM_ROTATING_ZERO_RESTART:
2623 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2624 * of blocks for computing Q is different.
2625 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002626 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002627 qd_idx = pd_idx + 1;
2628 if (pd_idx == raid_disks-1) {
2629 (*dd_idx)++; /* Q D D D P */
2630 qd_idx = 0;
2631 } else if (*dd_idx >= pd_idx)
2632 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002633 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002634 break;
2635
2636 case ALGORITHM_ROTATING_N_RESTART:
2637 /* Same a left_asymmetric, by first stripe is
2638 * D D D P Q rather than
2639 * Q D D D P
2640 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002641 stripe2 += 1;
2642 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002643 qd_idx = pd_idx + 1;
2644 if (pd_idx == raid_disks-1) {
2645 (*dd_idx)++; /* Q D D D P */
2646 qd_idx = 0;
2647 } else if (*dd_idx >= pd_idx)
2648 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002649 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002650 break;
2651
2652 case ALGORITHM_ROTATING_N_CONTINUE:
2653 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002654 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002655 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2656 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002657 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002658 break;
2659
2660 case ALGORITHM_LEFT_ASYMMETRIC_6:
2661 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002662 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002663 if (*dd_idx >= pd_idx)
2664 (*dd_idx)++;
2665 qd_idx = raid_disks - 1;
2666 break;
2667
2668 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002669 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002670 if (*dd_idx >= pd_idx)
2671 (*dd_idx)++;
2672 qd_idx = raid_disks - 1;
2673 break;
2674
2675 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002676 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002677 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2678 qd_idx = raid_disks - 1;
2679 break;
2680
2681 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002682 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002683 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2684 qd_idx = raid_disks - 1;
2685 break;
2686
2687 case ALGORITHM_PARITY_0_6:
2688 pd_idx = 0;
2689 (*dd_idx)++;
2690 qd_idx = raid_disks - 1;
2691 break;
2692
NeilBrown16a53ec2006-06-26 00:27:38 -07002693 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002694 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002695 }
2696 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 }
2698
NeilBrown911d4ee2009-03-31 14:39:38 +11002699 if (sh) {
2700 sh->pd_idx = pd_idx;
2701 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002702 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 /*
2705 * Finally, compute the new sector number
2706 */
2707 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2708 return new_sector;
2709}
2710
NeilBrown784052e2009-03-31 15:19:07 +11002711static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712{
NeilBrownd1688a62011-10-11 16:49:52 +11002713 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002714 int raid_disks = sh->disks;
2715 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002717 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2718 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002719 int algorithm = previous ? conf->prev_algo
2720 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 sector_t stripe;
2722 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002723 sector_t chunk_number;
2724 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002726 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
2728 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2729 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
NeilBrown16a53ec2006-06-26 00:27:38 -07002731 if (i == sh->pd_idx)
2732 return 0;
2733 switch(conf->level) {
2734 case 4: break;
2735 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002736 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 case ALGORITHM_LEFT_ASYMMETRIC:
2738 case ALGORITHM_RIGHT_ASYMMETRIC:
2739 if (i > sh->pd_idx)
2740 i--;
2741 break;
2742 case ALGORITHM_LEFT_SYMMETRIC:
2743 case ALGORITHM_RIGHT_SYMMETRIC:
2744 if (i < sh->pd_idx)
2745 i += raid_disks;
2746 i -= (sh->pd_idx + 1);
2747 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002748 case ALGORITHM_PARITY_0:
2749 i -= 1;
2750 break;
2751 case ALGORITHM_PARITY_N:
2752 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002754 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002755 }
2756 break;
2757 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002758 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002759 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002760 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002761 case ALGORITHM_LEFT_ASYMMETRIC:
2762 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002763 case ALGORITHM_ROTATING_ZERO_RESTART:
2764 case ALGORITHM_ROTATING_N_RESTART:
2765 if (sh->pd_idx == raid_disks-1)
2766 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002767 else if (i > sh->pd_idx)
2768 i -= 2; /* D D P Q D */
2769 break;
2770 case ALGORITHM_LEFT_SYMMETRIC:
2771 case ALGORITHM_RIGHT_SYMMETRIC:
2772 if (sh->pd_idx == raid_disks-1)
2773 i--; /* Q D D D P */
2774 else {
2775 /* D D P Q D */
2776 if (i < sh->pd_idx)
2777 i += raid_disks;
2778 i -= (sh->pd_idx + 2);
2779 }
2780 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002781 case ALGORITHM_PARITY_0:
2782 i -= 2;
2783 break;
2784 case ALGORITHM_PARITY_N:
2785 break;
2786 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002787 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002788 if (sh->pd_idx == 0)
2789 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002790 else {
2791 /* D D Q P D */
2792 if (i < sh->pd_idx)
2793 i += raid_disks;
2794 i -= (sh->pd_idx + 1);
2795 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002796 break;
2797 case ALGORITHM_LEFT_ASYMMETRIC_6:
2798 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2799 if (i > sh->pd_idx)
2800 i--;
2801 break;
2802 case ALGORITHM_LEFT_SYMMETRIC_6:
2803 case ALGORITHM_RIGHT_SYMMETRIC_6:
2804 if (i < sh->pd_idx)
2805 i += data_disks + 1;
2806 i -= (sh->pd_idx + 1);
2807 break;
2808 case ALGORITHM_PARITY_0_6:
2809 i -= 1;
2810 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002811 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002812 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002813 }
2814 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 }
2816
2817 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002818 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
NeilBrown112bf892009-03-31 14:39:38 +11002820 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002821 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002822 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2823 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002824 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2825 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 return 0;
2827 }
2828 return r_sector;
2829}
2830
Dan Williams600aa102008-06-28 08:32:05 +10002831static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002832schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002833 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002834{
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002835 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002836 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002837 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002838
Dan Williamse33129d2007-01-02 13:52:30 -07002839 if (rcw) {
Dan Williamse33129d2007-01-02 13:52:30 -07002840
2841 for (i = disks; i--; ) {
2842 struct r5dev *dev = &sh->dev[i];
2843
2844 if (dev->towrite) {
2845 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002846 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002847 if (!expand)
2848 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002849 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002850 }
2851 }
NeilBrownce7d3632013-03-04 12:37:14 +11002852 /* if we are not expanding this is a proper write request, and
2853 * there will be bios with new data to be drained into the
2854 * stripe cache
2855 */
2856 if (!expand) {
2857 if (!s->locked)
2858 /* False alarm, nothing to do */
2859 return;
2860 sh->reconstruct_state = reconstruct_state_drain_run;
2861 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2862 } else
2863 sh->reconstruct_state = reconstruct_state_run;
2864
2865 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
2866
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002867 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002868 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002869 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002870 } else {
2871 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2872 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002873 BUG_ON(level == 6 &&
2874 (!(test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags) ||
2875 test_bit(R5_Wantcompute, &sh->dev[qd_idx].flags))));
Dan Williamse33129d2007-01-02 13:52:30 -07002876
Dan Williamse33129d2007-01-02 13:52:30 -07002877 for (i = disks; i--; ) {
2878 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002879 if (i == pd_idx || i == qd_idx)
Dan Williamse33129d2007-01-02 13:52:30 -07002880 continue;
2881
Dan Williamse33129d2007-01-02 13:52:30 -07002882 if (dev->towrite &&
2883 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002884 test_bit(R5_Wantcompute, &dev->flags))) {
2885 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002886 set_bit(R5_LOCKED, &dev->flags);
2887 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002888 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002889 }
2890 }
NeilBrownce7d3632013-03-04 12:37:14 +11002891 if (!s->locked)
2892 /* False alarm - nothing to do */
2893 return;
2894 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
2895 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2896 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2897 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002898 }
2899
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002900 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002901 * are in flight
2902 */
2903 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2904 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002905 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002906
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002907 if (level == 6) {
2908 int qd_idx = sh->qd_idx;
2909 struct r5dev *dev = &sh->dev[qd_idx];
2910
2911 set_bit(R5_LOCKED, &dev->flags);
2912 clear_bit(R5_UPTODATE, &dev->flags);
2913 s->locked++;
2914 }
2915
Dan Williams600aa102008-06-28 08:32:05 +10002916 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07002917 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002918 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002919}
NeilBrown16a53ec2006-06-26 00:27:38 -07002920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921/*
2922 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002923 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 * The bi_next chain must be in order.
2925 */
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002926static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx,
2927 int forwrite, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928{
2929 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11002930 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002931 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
NeilBrowncbe47ec2011-07-26 11:20:35 +10002933 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002934 (unsigned long long)bi->bi_iter.bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 (unsigned long long)sh->sector);
2936
Shaohua Lib17459c2012-07-19 16:01:31 +10002937 /*
2938 * If several bio share a stripe. The bio bi_phys_segments acts as a
2939 * reference count to avoid race. The reference count should already be
2940 * increased before this function is called (for example, in
2941 * make_request()), so other bio sharing this stripe will not free the
2942 * stripe. If a stripe is owned by one stripe, the stripe lock will
2943 * protect it.
2944 */
2945 spin_lock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002946 /* Don't allow new IO added to stripes in batch list */
2947 if (sh->batch_head)
2948 goto overlap;
NeilBrown72626682005-09-09 16:23:54 -07002949 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002951 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07002952 firstwrite = 1;
2953 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 bip = &sh->dev[dd_idx].toread;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002955 while (*bip && (*bip)->bi_iter.bi_sector < bi->bi_iter.bi_sector) {
2956 if (bio_end_sector(*bip) > bi->bi_iter.bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 goto overlap;
2958 bip = & (*bip)->bi_next;
2959 }
Kent Overstreet4f024f32013-10-11 15:44:27 -07002960 if (*bip && (*bip)->bi_iter.bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 goto overlap;
2962
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002963 if (!forwrite || previous)
2964 clear_bit(STRIPE_BATCH_READY, &sh->state);
2965
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002966 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 if (*bip)
2968 bi->bi_next = *bip;
2969 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10002970 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07002971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 if (forwrite) {
2973 /* check if page is covered */
2974 sector_t sector = sh->dev[dd_idx].sector;
2975 for (bi=sh->dev[dd_idx].towrite;
2976 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07002977 bi && bi->bi_iter.bi_sector <= sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002979 if (bio_end_sector(bi) >= sector)
2980 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 }
2982 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
shli@kernel.org7a87f432014-12-15 12:57:03 +11002983 if (!test_and_set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags))
2984 sh->overwrite_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10002986
2987 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002988 (unsigned long long)(*bip)->bi_iter.bi_sector,
NeilBrowncbe47ec2011-07-26 11:20:35 +10002989 (unsigned long long)sh->sector, dd_idx);
NeilBrownb97390a2012-10-11 13:50:12 +11002990 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10002991
2992 if (conf->mddev->bitmap && firstwrite) {
2993 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2994 STRIPE_SECTORS, 0);
2995 sh->bm_seq = conf->seq_flush+1;
2996 set_bit(STRIPE_BIT_DELAY, &sh->state);
2997 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11002998
2999 if (stripe_can_batch(sh))
3000 stripe_add_to_batch_list(conf, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 return 1;
3002
3003 overlap:
3004 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10003005 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 return 0;
3007}
3008
NeilBrownd1688a62011-10-11 16:49:52 +11003009static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08003010
NeilBrownd1688a62011-10-11 16:49:52 +11003011static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003012 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08003013{
NeilBrown784052e2009-03-31 15:19:07 +11003014 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10003015 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11003016 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003017 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11003018 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003019
NeilBrown112bf892009-03-31 14:39:38 +11003020 raid5_compute_sector(conf,
3021 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08003022 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11003023 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003024 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003025}
3026
Dan Williamsa4456852007-07-09 11:56:43 -07003027static void
NeilBrownd1688a62011-10-11 16:49:52 +11003028handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003029 struct stripe_head_state *s, int disks,
3030 struct bio **return_bi)
3031{
3032 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003033 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003034 for (i = disks; i--; ) {
3035 struct bio *bi;
3036 int bitmap_end = 0;
3037
3038 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11003039 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07003040 rcu_read_lock();
3041 rdev = rcu_dereference(conf->disks[i].rdev);
3042 if (rdev && test_bit(In_sync, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10003043 atomic_inc(&rdev->nr_pending);
3044 else
3045 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003046 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10003047 if (rdev) {
3048 if (!rdev_set_badblocks(
3049 rdev,
3050 sh->sector,
3051 STRIPE_SECTORS, 0))
3052 md_error(conf->mddev, rdev);
3053 rdev_dec_pending(rdev, conf->mddev);
3054 }
Dan Williamsa4456852007-07-09 11:56:43 -07003055 }
Shaohua Lib17459c2012-07-19 16:01:31 +10003056 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003057 /* fail all writes first */
3058 bi = sh->dev[i].towrite;
3059 sh->dev[i].towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11003060 sh->overwrite_disks = 0;
Shaohua Lib17459c2012-07-19 16:01:31 +10003061 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11003062 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003063 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07003064
3065 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3066 wake_up(&conf->wait_for_overlap);
3067
Kent Overstreet4f024f32013-10-11 15:44:27 -07003068 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003069 sh->dev[i].sector + STRIPE_SECTORS) {
3070 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
3071 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003072 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003073 md_write_end(conf->mddev);
3074 bi->bi_next = *return_bi;
3075 *return_bi = bi;
3076 }
3077 bi = nextbi;
3078 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003079 if (bitmap_end)
3080 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3081 STRIPE_SECTORS, 0, 0);
3082 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003083 /* and fail all 'written' */
3084 bi = sh->dev[i].written;
3085 sh->dev[i].written = NULL;
Shaohua Lid592a992014-05-21 17:57:44 +08003086 if (test_and_clear_bit(R5_SkipCopy, &sh->dev[i].flags)) {
3087 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
3088 sh->dev[i].page = sh->dev[i].orig_page;
3089 }
3090
Dan Williamsa4456852007-07-09 11:56:43 -07003091 if (bi) bitmap_end = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003092 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003093 sh->dev[i].sector + STRIPE_SECTORS) {
3094 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
3095 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003096 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003097 md_write_end(conf->mddev);
3098 bi->bi_next = *return_bi;
3099 *return_bi = bi;
3100 }
3101 bi = bi2;
3102 }
3103
Dan Williamsb5e98d62007-01-02 13:52:31 -07003104 /* fail any reads if this device is non-operational and
3105 * the data has not reached the cache yet.
3106 */
3107 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
3108 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
3109 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11003110 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003111 bi = sh->dev[i].toread;
3112 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11003113 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003114 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3115 wake_up(&conf->wait_for_overlap);
Kent Overstreet4f024f32013-10-11 15:44:27 -07003116 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003117 sh->dev[i].sector + STRIPE_SECTORS) {
3118 struct bio *nextbi =
3119 r5_next_bio(bi, sh->dev[i].sector);
3120 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003121 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003122 bi->bi_next = *return_bi;
3123 *return_bi = bi;
3124 }
3125 bi = nextbi;
3126 }
3127 }
Dan Williamsa4456852007-07-09 11:56:43 -07003128 if (bitmap_end)
3129 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3130 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10003131 /* If we were in the middle of a write the parity block might
3132 * still be locked - so just clear all R5_LOCKED flags
3133 */
3134 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003135 }
3136
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003137 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3138 if (atomic_dec_and_test(&conf->pending_full_writes))
3139 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07003140}
3141
NeilBrown7f0da592011-07-28 11:39:22 +10003142static void
NeilBrownd1688a62011-10-11 16:49:52 +11003143handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10003144 struct stripe_head_state *s)
3145{
3146 int abort = 0;
3147 int i;
3148
shli@kernel.org59fc6302014-12-15 12:57:03 +11003149 BUG_ON(sh->batch_head);
NeilBrown7f0da592011-07-28 11:39:22 +10003150 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003151 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3152 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10003153 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11003154 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10003155 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10003156 * Don't even need to abort as that is handled elsewhere
3157 * if needed, and not always wanted e.g. if there is a known
3158 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11003159 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10003160 * non-sync devices, or abort the recovery
3161 */
NeilBrown18b98372012-04-01 23:48:38 +10003162 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
3163 /* During recovery devices cannot be removed, so
3164 * locking and refcounting of rdevs is not needed
3165 */
3166 for (i = 0; i < conf->raid_disks; i++) {
3167 struct md_rdev *rdev = conf->disks[i].rdev;
3168 if (rdev
3169 && !test_bit(Faulty, &rdev->flags)
3170 && !test_bit(In_sync, &rdev->flags)
3171 && !rdev_set_badblocks(rdev, sh->sector,
3172 STRIPE_SECTORS, 0))
3173 abort = 1;
3174 rdev = conf->disks[i].replacement;
3175 if (rdev
3176 && !test_bit(Faulty, &rdev->flags)
3177 && !test_bit(In_sync, &rdev->flags)
3178 && !rdev_set_badblocks(rdev, sh->sector,
3179 STRIPE_SECTORS, 0))
3180 abort = 1;
3181 }
3182 if (abort)
3183 conf->recovery_disabled =
3184 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10003185 }
NeilBrown18b98372012-04-01 23:48:38 +10003186 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10003187}
3188
NeilBrown9a3e1102011-12-23 10:17:53 +11003189static int want_replace(struct stripe_head *sh, int disk_idx)
3190{
3191 struct md_rdev *rdev;
3192 int rv = 0;
3193 /* Doing recovery so rcu locking not required */
3194 rdev = sh->raid_conf->disks[disk_idx].replacement;
3195 if (rdev
3196 && !test_bit(Faulty, &rdev->flags)
3197 && !test_bit(In_sync, &rdev->flags)
3198 && (rdev->recovery_offset <= sh->sector
3199 || rdev->mddev->recovery_cp <= sh->sector))
3200 rv = 1;
3201
3202 return rv;
3203}
3204
NeilBrown93b3dbc2011-07-27 11:00:36 +10003205/* fetch_block - checks the given member device to see if its data needs
Dan Williams1fe797e2008-06-28 09:16:30 +10003206 * to be read or computed to satisfy a request.
3207 *
3208 * Returns 1 when no more member devices need to be checked, otherwise returns
NeilBrown93b3dbc2011-07-27 11:00:36 +10003209 * 0 to tell the loop in handle_stripe_fill to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07003210 */
NeilBrown2c58f062015-02-02 11:32:23 +11003211
3212static int need_this_block(struct stripe_head *sh, struct stripe_head_state *s,
3213 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07003214{
3215 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10003216 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
3217 &sh->dev[s->failed_num[1]] };
NeilBrownea664c82015-02-02 14:03:28 +11003218 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07003219
NeilBrowna79cfe12015-02-02 11:37:59 +11003220
3221 if (test_bit(R5_LOCKED, &dev->flags) ||
3222 test_bit(R5_UPTODATE, &dev->flags))
3223 /* No point reading this as we already have it or have
3224 * decided to get it.
3225 */
3226 return 0;
3227
3228 if (dev->toread ||
3229 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)))
3230 /* We need this block to directly satisfy a request */
3231 return 1;
3232
3233 if (s->syncing || s->expanding ||
3234 (s->replacing && want_replace(sh, disk_idx)))
3235 /* When syncing, or expanding we read everything.
3236 * When replacing, we need the replaced block.
3237 */
3238 return 1;
3239
3240 if ((s->failed >= 1 && fdev[0]->toread) ||
3241 (s->failed >= 2 && fdev[1]->toread))
3242 /* If we want to read from a failed device, then
3243 * we need to actually read every other device.
3244 */
3245 return 1;
3246
NeilBrowna9d56952015-02-02 11:49:10 +11003247 /* Sometimes neither read-modify-write nor reconstruct-write
3248 * cycles can work. In those cases we read every block we
3249 * can. Then the parity-update is certain to have enough to
3250 * work with.
3251 * This can only be a problem when we need to write something,
3252 * and some device has failed. If either of those tests
3253 * fail we need look no further.
3254 */
3255 if (!s->failed || !s->to_write)
3256 return 0;
3257
3258 if (test_bit(R5_Insync, &dev->flags) &&
3259 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3260 /* Pre-reads at not permitted until after short delay
3261 * to gather multiple requests. However if this
3262 * device is no Insync, the block could only be be computed
3263 * and there is no need to delay that.
3264 */
3265 return 0;
NeilBrownea664c82015-02-02 14:03:28 +11003266
3267 for (i = 0; i < s->failed; i++) {
3268 if (fdev[i]->towrite &&
3269 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3270 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3271 /* If we have a partial write to a failed
3272 * device, then we will need to reconstruct
3273 * the content of that device, so all other
3274 * devices must be read.
3275 */
3276 return 1;
3277 }
3278
3279 /* If we are forced to do a reconstruct-write, either because
3280 * the current RAID6 implementation only supports that, or
3281 * or because parity cannot be trusted and we are currently
3282 * recovering it, there is extra need to be careful.
3283 * If one of the devices that we would need to read, because
3284 * it is not being overwritten (and maybe not written at all)
3285 * is missing/faulty, then we need to read everything we can.
3286 */
3287 if (sh->raid_conf->level != 6 &&
3288 sh->sector < sh->raid_conf->mddev->recovery_cp)
3289 /* reconstruct-write isn't being forced */
3290 return 0;
3291 for (i = 0; i < s->failed; i++) {
NeilBrown10d82c52015-05-08 18:19:33 +10003292 if (s->failed_num[i] != sh->pd_idx &&
3293 s->failed_num[i] != sh->qd_idx &&
3294 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
NeilBrownea664c82015-02-02 14:03:28 +11003295 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3296 return 1;
3297 }
3298
NeilBrown2c58f062015-02-02 11:32:23 +11003299 return 0;
3300}
3301
3302static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
3303 int disk_idx, int disks)
3304{
3305 struct r5dev *dev = &sh->dev[disk_idx];
3306
3307 /* is the data in this block needed, and can we get it? */
3308 if (need_this_block(sh, s, disk_idx, disks)) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003309 /* we would like to get this block, possibly by computing it,
3310 * otherwise read it if the backing disk is insync
3311 */
3312 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
3313 BUG_ON(test_bit(R5_Wantread, &dev->flags));
NeilBrownb0c783b2015-05-08 18:19:32 +10003314 BUG_ON(sh->batch_head);
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003315 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10003316 (s->failed && (disk_idx == s->failed_num[0] ||
3317 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003318 /* have disk failed, and we're requested to fetch it;
3319 * do compute it
3320 */
3321 pr_debug("Computing stripe %llu block %d\n",
3322 (unsigned long long)sh->sector, disk_idx);
3323 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3324 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3325 set_bit(R5_Wantcompute, &dev->flags);
3326 sh->ops.target = disk_idx;
3327 sh->ops.target2 = -1; /* no 2nd target */
3328 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10003329 /* Careful: from this point on 'uptodate' is in the eye
3330 * of raid_run_ops which services 'compute' operations
3331 * before writes. R5_Wantcompute flags a block that will
3332 * be R5_UPTODATE by the time it is needed for a
3333 * subsequent operation.
3334 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003335 s->uptodate++;
3336 return 1;
3337 } else if (s->uptodate == disks-2 && s->failed >= 2) {
3338 /* Computing 2-failure is *very* expensive; only
3339 * do it if failed >= 2
3340 */
3341 int other;
3342 for (other = disks; other--; ) {
3343 if (other == disk_idx)
3344 continue;
3345 if (!test_bit(R5_UPTODATE,
3346 &sh->dev[other].flags))
3347 break;
3348 }
3349 BUG_ON(other < 0);
3350 pr_debug("Computing stripe %llu blocks %d,%d\n",
3351 (unsigned long long)sh->sector,
3352 disk_idx, other);
3353 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3354 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3355 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
3356 set_bit(R5_Wantcompute, &sh->dev[other].flags);
3357 sh->ops.target = disk_idx;
3358 sh->ops.target2 = other;
3359 s->uptodate += 2;
3360 s->req_compute = 1;
3361 return 1;
3362 } else if (test_bit(R5_Insync, &dev->flags)) {
3363 set_bit(R5_LOCKED, &dev->flags);
3364 set_bit(R5_Wantread, &dev->flags);
3365 s->locked++;
3366 pr_debug("Reading block %d (sync=%d)\n",
3367 disk_idx, s->syncing);
3368 }
3369 }
3370
3371 return 0;
3372}
3373
3374/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10003375 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003376 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10003377static void handle_stripe_fill(struct stripe_head *sh,
3378 struct stripe_head_state *s,
3379 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003380{
3381 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003382
3383 /* look for blocks to read/compute, skip this if a compute
3384 * is already in flight, or if the stripe contents are in the
3385 * midst of changing due to a write
3386 */
3387 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
3388 !sh->reconstruct_state)
3389 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10003390 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003391 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003392 set_bit(STRIPE_HANDLE, &sh->state);
3393}
3394
Dan Williams1fe797e2008-06-28 09:16:30 +10003395/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07003396 * any written block on an uptodate or failed drive can be returned.
3397 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
3398 * never LOCKED, so we don't need to test 'failed' directly.
3399 */
NeilBrownd1688a62011-10-11 16:49:52 +11003400static void handle_stripe_clean_event(struct r5conf *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07003401 struct stripe_head *sh, int disks, struct bio **return_bi)
3402{
3403 int i;
3404 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003405 int discard_pending = 0;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003406 struct stripe_head *head_sh = sh;
3407 bool do_endio = false;
3408 int wakeup_nr = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003409
3410 for (i = disks; i--; )
3411 if (sh->dev[i].written) {
3412 dev = &sh->dev[i];
3413 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003414 (test_bit(R5_UPTODATE, &dev->flags) ||
Shaohua Lid592a992014-05-21 17:57:44 +08003415 test_bit(R5_Discard, &dev->flags) ||
3416 test_bit(R5_SkipCopy, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003417 /* We can return any write requests */
3418 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003419 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11003420 if (test_and_clear_bit(R5_Discard, &dev->flags))
3421 clear_bit(R5_UPTODATE, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08003422 if (test_and_clear_bit(R5_SkipCopy, &dev->flags)) {
3423 WARN_ON(test_bit(R5_UPTODATE, &dev->flags));
Shaohua Lid592a992014-05-21 17:57:44 +08003424 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003425 do_endio = true;
3426
3427returnbi:
3428 dev->page = dev->orig_page;
Dan Williamsa4456852007-07-09 11:56:43 -07003429 wbi = dev->written;
3430 dev->written = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003431 while (wbi && wbi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003432 dev->sector + STRIPE_SECTORS) {
3433 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003434 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003435 md_write_end(conf->mddev);
3436 wbi->bi_next = *return_bi;
3437 *return_bi = wbi;
3438 }
3439 wbi = wbi2;
3440 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003441 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3442 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07003443 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003444 0);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003445 if (head_sh->batch_head) {
3446 sh = list_first_entry(&sh->batch_list,
3447 struct stripe_head,
3448 batch_list);
3449 if (sh != head_sh) {
3450 dev = &sh->dev[i];
3451 goto returnbi;
3452 }
3453 }
3454 sh = head_sh;
3455 dev = &sh->dev[i];
NeilBrownf8dfcff2013-03-12 12:18:06 +11003456 } else if (test_bit(R5_Discard, &dev->flags))
3457 discard_pending = 1;
Shaohua Lid592a992014-05-21 17:57:44 +08003458 WARN_ON(test_bit(R5_SkipCopy, &dev->flags));
3459 WARN_ON(dev->page != dev->orig_page);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003460 }
3461 if (!discard_pending &&
3462 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
3463 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
3464 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
3465 if (sh->qd_idx >= 0) {
3466 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
3467 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
3468 }
3469 /* now that discard is done we can proceed with any sync */
3470 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08003471 /*
3472 * SCSI discard will change some bio fields and the stripe has
3473 * no updated data, so remove it from hash list and the stripe
3474 * will be reinitialized
3475 */
3476 spin_lock_irq(&conf->device_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003477unhash:
Shaohua Lid47648f2013-10-19 14:51:42 +08003478 remove_hash(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003479 if (head_sh->batch_head) {
3480 sh = list_first_entry(&sh->batch_list,
3481 struct stripe_head, batch_list);
3482 if (sh != head_sh)
3483 goto unhash;
3484 }
Shaohua Lid47648f2013-10-19 14:51:42 +08003485 spin_unlock_irq(&conf->device_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003486 sh = head_sh;
3487
NeilBrownf8dfcff2013-03-12 12:18:06 +11003488 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
3489 set_bit(STRIPE_HANDLE, &sh->state);
3490
3491 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003492
3493 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3494 if (atomic_dec_and_test(&conf->pending_full_writes))
3495 md_wakeup_thread(conf->mddev->thread);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003496
3497 if (!head_sh->batch_head || !do_endio)
3498 return;
3499 for (i = 0; i < head_sh->disks; i++) {
3500 if (test_and_clear_bit(R5_Overlap, &head_sh->dev[i].flags))
3501 wakeup_nr++;
3502 }
3503 while (!list_empty(&head_sh->batch_list)) {
3504 int i;
3505 sh = list_first_entry(&head_sh->batch_list,
3506 struct stripe_head, batch_list);
3507 list_del_init(&sh->batch_list);
3508
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003509 set_mask_bits(&sh->state, ~STRIPE_EXPAND_SYNC_FLAG,
3510 head_sh->state & ~((1 << STRIPE_ACTIVE) |
3511 (1 << STRIPE_PREREAD_ACTIVE) |
3512 STRIPE_EXPAND_SYNC_FLAG));
shli@kernel.org59fc6302014-12-15 12:57:03 +11003513 sh->check_state = head_sh->check_state;
3514 sh->reconstruct_state = head_sh->reconstruct_state;
3515 for (i = 0; i < sh->disks; i++) {
3516 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3517 wakeup_nr++;
3518 sh->dev[i].flags = head_sh->dev[i].flags;
3519 }
3520
3521 spin_lock_irq(&sh->stripe_lock);
3522 sh->batch_head = NULL;
3523 spin_unlock_irq(&sh->stripe_lock);
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003524 if (sh->state & STRIPE_EXPAND_SYNC_FLAG)
3525 set_bit(STRIPE_HANDLE, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003526 release_stripe(sh);
3527 }
3528
3529 spin_lock_irq(&head_sh->stripe_lock);
3530 head_sh->batch_head = NULL;
3531 spin_unlock_irq(&head_sh->stripe_lock);
3532 wake_up_nr(&conf->wait_for_overlap, wakeup_nr);
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11003533 if (head_sh->state & STRIPE_EXPAND_SYNC_FLAG)
3534 set_bit(STRIPE_HANDLE, &head_sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003535}
3536
NeilBrownd1688a62011-10-11 16:49:52 +11003537static void handle_stripe_dirtying(struct r5conf *conf,
NeilBrownc8ac1802011-07-27 11:00:36 +10003538 struct stripe_head *sh,
3539 struct stripe_head_state *s,
3540 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003541{
3542 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11003543 sector_t recovery_cp = conf->mddev->recovery_cp;
3544
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003545 /* Check whether resync is now happening or should start.
Alexander Lyakasa7854482012-10-11 13:50:12 +11003546 * If yes, then the array is dirty (after unclean shutdown or
3547 * initial creation), so parity in some stripes might be inconsistent.
3548 * In this case, we need to always do reconstruct-write, to ensure
3549 * that in case of drive failure or read-error correction, we
3550 * generate correct data from the parity.
3551 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003552 if (conf->rmw_level == PARITY_DISABLE_RMW ||
NeilBrown26ac1072015-02-18 11:35:14 +11003553 (recovery_cp < MaxSector && sh->sector >= recovery_cp &&
3554 s->failed == 0)) {
Alexander Lyakasa7854482012-10-11 13:50:12 +11003555 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10003556 * look like rcw is cheaper
3557 */
3558 rcw = 1; rmw = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003559 pr_debug("force RCW rmw_level=%u, recovery_cp=%llu sh->sector=%llu\n",
3560 conf->rmw_level, (unsigned long long)recovery_cp,
Alexander Lyakasa7854482012-10-11 13:50:12 +11003561 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10003562 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003563 /* would I have to read this buffer for read_modify_write */
3564 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003565 if ((dev->towrite || i == sh->pd_idx || i == sh->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003566 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003567 !(test_bit(R5_UPTODATE, &dev->flags) ||
3568 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003569 if (test_bit(R5_Insync, &dev->flags))
3570 rmw++;
3571 else
3572 rmw += 2*disks; /* cannot read it */
3573 }
3574 /* Would I have to read this buffer for reconstruct_write */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003575 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
3576 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003577 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003578 !(test_bit(R5_UPTODATE, &dev->flags) ||
3579 test_bit(R5_Wantcompute, &dev->flags))) {
NeilBrown67f45542014-05-28 13:39:22 +10003580 if (test_bit(R5_Insync, &dev->flags))
3581 rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07003582 else
3583 rcw += 2*disks;
3584 }
3585 }
Dan Williams45b42332007-07-09 11:56:43 -07003586 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003587 (unsigned long long)sh->sector, rmw, rcw);
3588 set_bit(STRIPE_HANDLE, &sh->state);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003589 if ((rmw < rcw || (rmw == rcw && conf->rmw_level == PARITY_ENABLE_RMW)) && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003590 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003591 if (conf->mddev->queue)
3592 blk_add_trace_msg(conf->mddev->queue,
3593 "raid5 rmw %llu %d",
3594 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07003595 for (i = disks; i--; ) {
3596 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003597 if ((dev->towrite || i == sh->pd_idx || i == sh->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003598 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003599 !(test_bit(R5_UPTODATE, &dev->flags) ||
3600 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003601 test_bit(R5_Insync, &dev->flags)) {
NeilBrown67f45542014-05-28 13:39:22 +10003602 if (test_bit(STRIPE_PREREAD_ACTIVE,
3603 &sh->state)) {
3604 pr_debug("Read_old block %d for r-m-w\n",
3605 i);
Dan Williamsa4456852007-07-09 11:56:43 -07003606 set_bit(R5_LOCKED, &dev->flags);
3607 set_bit(R5_Wantread, &dev->flags);
3608 s->locked++;
3609 } else {
3610 set_bit(STRIPE_DELAYED, &sh->state);
3611 set_bit(STRIPE_HANDLE, &sh->state);
3612 }
3613 }
3614 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003615 }
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003616 if ((rcw < rmw || (rcw == rmw && conf->rmw_level != PARITY_ENABLE_RMW)) && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003617 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003618 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003619 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003620 for (i = disks; i--; ) {
3621 struct r5dev *dev = &sh->dev[i];
3622 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003623 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003624 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003625 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003626 test_bit(R5_Wantcompute, &dev->flags))) {
3627 rcw++;
NeilBrown67f45542014-05-28 13:39:22 +10003628 if (test_bit(R5_Insync, &dev->flags) &&
3629 test_bit(STRIPE_PREREAD_ACTIVE,
3630 &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003631 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003632 "%d for Reconstruct\n", i);
3633 set_bit(R5_LOCKED, &dev->flags);
3634 set_bit(R5_Wantread, &dev->flags);
3635 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003636 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003637 } else {
3638 set_bit(STRIPE_DELAYED, &sh->state);
3639 set_bit(STRIPE_HANDLE, &sh->state);
3640 }
3641 }
3642 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003643 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003644 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3645 (unsigned long long)sh->sector,
3646 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003647 }
NeilBrownb1b02fe2015-02-02 10:44:29 +11003648
3649 if (rcw > disks && rmw > disks &&
3650 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3651 set_bit(STRIPE_DELAYED, &sh->state);
3652
Dan Williamsa4456852007-07-09 11:56:43 -07003653 /* now if nothing is locked, and if we have enough data,
3654 * we can start a write request
3655 */
Dan Williamsf38e1212007-01-02 13:52:30 -07003656 /* since handle_stripe can be called at any time we need to handle the
3657 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07003658 * subsequent call wants to start a write request. raid_run_ops only
3659 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07003660 * simultaneously. If this is not the case then new writes need to be
3661 * held off until the compute completes.
3662 */
Dan Williams976ea8d2008-06-28 08:32:03 +10003663 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
3664 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
3665 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003666 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07003667}
3668
NeilBrownd1688a62011-10-11 16:49:52 +11003669static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003670 struct stripe_head_state *s, int disks)
3671{
Dan Williamsecc65c92008-06-28 08:31:57 +10003672 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07003673
shli@kernel.org59fc6302014-12-15 12:57:03 +11003674 BUG_ON(sh->batch_head);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003675 set_bit(STRIPE_HANDLE, &sh->state);
3676
Dan Williamsecc65c92008-06-28 08:31:57 +10003677 switch (sh->check_state) {
3678 case check_state_idle:
3679 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07003680 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07003681 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10003682 sh->check_state = check_state_run;
3683 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003684 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003685 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10003686 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07003687 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003688 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10003689 /* fall through */
3690 case check_state_compute_result:
3691 sh->check_state = check_state_idle;
3692 if (!dev)
3693 dev = &sh->dev[sh->pd_idx];
3694
3695 /* check that a write has not made the stripe insync */
3696 if (test_bit(STRIPE_INSYNC, &sh->state))
3697 break;
3698
3699 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07003700 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3701 BUG_ON(s->uptodate != disks);
3702
3703 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10003704 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07003705 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07003706
Dan Williamsa4456852007-07-09 11:56:43 -07003707 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003708 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003709 break;
3710 case check_state_run:
3711 break; /* we will be called again upon completion */
3712 case check_state_check_result:
3713 sh->check_state = check_state_idle;
3714
3715 /* if a failure occurred during the check operation, leave
3716 * STRIPE_INSYNC not set and let the stripe be handled again
3717 */
3718 if (s->failed)
3719 break;
3720
3721 /* handle a successful check operation, if parity is correct
3722 * we are done. Otherwise update the mismatch count and repair
3723 * parity if !MD_RECOVERY_CHECK
3724 */
Dan Williamsad283ea2009-08-29 19:09:26 -07003725 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10003726 /* parity is correct (on disc,
3727 * not in buffer any more)
3728 */
3729 set_bit(STRIPE_INSYNC, &sh->state);
3730 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003731 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10003732 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3733 /* don't try to repair!! */
3734 set_bit(STRIPE_INSYNC, &sh->state);
3735 else {
3736 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003737 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003738 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3739 set_bit(R5_Wantcompute,
3740 &sh->dev[sh->pd_idx].flags);
3741 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003742 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003743 s->uptodate++;
3744 }
3745 }
3746 break;
3747 case check_state_compute_run:
3748 break;
3749 default:
3750 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3751 __func__, sh->check_state,
3752 (unsigned long long) sh->sector);
3753 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003754 }
3755}
3756
NeilBrownd1688a62011-10-11 16:49:52 +11003757static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003758 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003759 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003760{
Dan Williamsa4456852007-07-09 11:56:43 -07003761 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003762 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003763 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003764
shli@kernel.org59fc6302014-12-15 12:57:03 +11003765 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003766 set_bit(STRIPE_HANDLE, &sh->state);
3767
3768 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003769
Dan Williamsa4456852007-07-09 11:56:43 -07003770 /* Want to check and possibly repair P and Q.
3771 * However there could be one 'failed' device, in which
3772 * case we can only check one of them, possibly using the
3773 * other to generate missing data
3774 */
3775
Dan Williamsd82dfee2009-07-14 13:40:57 -07003776 switch (sh->check_state) {
3777 case check_state_idle:
3778 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10003779 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003780 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07003781 * makes sense to check P (If anything else were failed,
3782 * we would have used P to recreate it).
3783 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003784 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07003785 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003786 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003787 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07003788 * anything, so it makes sense to check it
3789 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003790 if (sh->check_state == check_state_run)
3791 sh->check_state = check_state_run_pq;
3792 else
3793 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07003794 }
Dan Williams36d1c642009-07-14 11:48:22 -07003795
Dan Williamsd82dfee2009-07-14 13:40:57 -07003796 /* discard potentially stale zero_sum_result */
3797 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07003798
Dan Williamsd82dfee2009-07-14 13:40:57 -07003799 if (sh->check_state == check_state_run) {
3800 /* async_xor_zero_sum destroys the contents of P */
3801 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3802 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07003803 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003804 if (sh->check_state >= check_state_run &&
3805 sh->check_state <= check_state_run_pq) {
3806 /* async_syndrome_zero_sum preserves P and Q, so
3807 * no need to mark them !uptodate here
3808 */
3809 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3810 break;
3811 }
Dan Williams36d1c642009-07-14 11:48:22 -07003812
Dan Williamsd82dfee2009-07-14 13:40:57 -07003813 /* we have 2-disk failure */
3814 BUG_ON(s->failed != 2);
3815 /* fall through */
3816 case check_state_compute_result:
3817 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003818
Dan Williamsd82dfee2009-07-14 13:40:57 -07003819 /* check that a write has not made the stripe insync */
3820 if (test_bit(STRIPE_INSYNC, &sh->state))
3821 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003822
3823 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003824 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003825 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003826 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003827 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003828 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003829 s->locked++;
3830 set_bit(R5_LOCKED, &dev->flags);
3831 set_bit(R5_Wantwrite, &dev->flags);
3832 }
3833 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003834 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003835 s->locked++;
3836 set_bit(R5_LOCKED, &dev->flags);
3837 set_bit(R5_Wantwrite, &dev->flags);
3838 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003839 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003840 dev = &sh->dev[pd_idx];
3841 s->locked++;
3842 set_bit(R5_LOCKED, &dev->flags);
3843 set_bit(R5_Wantwrite, &dev->flags);
3844 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003845 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003846 dev = &sh->dev[qd_idx];
3847 s->locked++;
3848 set_bit(R5_LOCKED, &dev->flags);
3849 set_bit(R5_Wantwrite, &dev->flags);
3850 }
3851 clear_bit(STRIPE_DEGRADED, &sh->state);
3852
3853 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003854 break;
3855 case check_state_run:
3856 case check_state_run_q:
3857 case check_state_run_pq:
3858 break; /* we will be called again upon completion */
3859 case check_state_check_result:
3860 sh->check_state = check_state_idle;
3861
3862 /* handle a successful check operation, if parity is correct
3863 * we are done. Otherwise update the mismatch count and repair
3864 * parity if !MD_RECOVERY_CHECK
3865 */
3866 if (sh->ops.zero_sum_result == 0) {
3867 /* both parities are correct */
3868 if (!s->failed)
3869 set_bit(STRIPE_INSYNC, &sh->state);
3870 else {
3871 /* in contrast to the raid5 case we can validate
3872 * parity, but still have a failure to write
3873 * back
3874 */
3875 sh->check_state = check_state_compute_result;
3876 /* Returning at this point means that we may go
3877 * off and bring p and/or q uptodate again so
3878 * we make sure to check zero_sum_result again
3879 * to verify if p or q need writeback
3880 */
3881 }
3882 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003883 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003884 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3885 /* don't try to repair!! */
3886 set_bit(STRIPE_INSYNC, &sh->state);
3887 else {
3888 int *target = &sh->ops.target;
3889
3890 sh->ops.target = -1;
3891 sh->ops.target2 = -1;
3892 sh->check_state = check_state_compute_run;
3893 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3894 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3895 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3896 set_bit(R5_Wantcompute,
3897 &sh->dev[pd_idx].flags);
3898 *target = pd_idx;
3899 target = &sh->ops.target2;
3900 s->uptodate++;
3901 }
3902 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3903 set_bit(R5_Wantcompute,
3904 &sh->dev[qd_idx].flags);
3905 *target = qd_idx;
3906 s->uptodate++;
3907 }
3908 }
3909 }
3910 break;
3911 case check_state_compute_run:
3912 break;
3913 default:
3914 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3915 __func__, sh->check_state,
3916 (unsigned long long) sh->sector);
3917 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003918 }
3919}
3920
NeilBrownd1688a62011-10-11 16:49:52 +11003921static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07003922{
3923 int i;
3924
3925 /* We have read all the blocks in this stripe and now we need to
3926 * copy some of them into a target stripe for expand.
3927 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07003928 struct dma_async_tx_descriptor *tx = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003929 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003930 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3931 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11003932 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11003933 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07003934 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07003935 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07003936
NeilBrown784052e2009-03-31 15:19:07 +11003937 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11003938 sector_t s = raid5_compute_sector(conf, bn, 0,
3939 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10003940 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07003941 if (sh2 == NULL)
3942 /* so far only the early blocks of this stripe
3943 * have been requested. When later blocks
3944 * get requested, we will try again
3945 */
3946 continue;
3947 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
3948 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
3949 /* must have already done this block */
3950 release_stripe(sh2);
3951 continue;
3952 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003953
3954 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07003955 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003956 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07003957 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07003958 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003959
Dan Williamsa4456852007-07-09 11:56:43 -07003960 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
3961 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
3962 for (j = 0; j < conf->raid_disks; j++)
3963 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10003964 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003965 !test_bit(R5_Expanded, &sh2->dev[j].flags))
3966 break;
3967 if (j == conf->raid_disks) {
3968 set_bit(STRIPE_EXPAND_READY, &sh2->state);
3969 set_bit(STRIPE_HANDLE, &sh2->state);
3970 }
3971 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003972
Dan Williamsa4456852007-07-09 11:56:43 -07003973 }
NeilBrowna2e08552007-09-11 15:23:36 -07003974 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11003975 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07003976}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
3978/*
3979 * handle_stripe - do things to a stripe.
3980 *
NeilBrown9a3e1102011-12-23 10:17:53 +11003981 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
3982 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11003984 * return some read requests which now have data
3985 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 * schedule a read on some buffers
3987 * schedule a write of some buffers
3988 * return confirmation of parity correctness
3989 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 */
Dan Williamsa4456852007-07-09 11:56:43 -07003991
NeilBrownacfe7262011-07-27 11:00:36 +10003992static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07003993{
NeilBrownd1688a62011-10-11 16:49:52 +11003994 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003995 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003996 struct r5dev *dev;
3997 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11003998 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003999
NeilBrownacfe7262011-07-27 11:00:36 +10004000 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07004001
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004002 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state) && !sh->batch_head;
4003 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state) && !sh->batch_head;
NeilBrownacfe7262011-07-27 11:00:36 +10004004 s->failed_num[0] = -1;
4005 s->failed_num[1] = -1;
4006
4007 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07004008 rcu_read_lock();
4009 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004010 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10004011 sector_t first_bad;
4012 int bad_sectors;
4013 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10004014
NeilBrown16a53ec2006-06-26 00:27:38 -07004015 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07004016
Dan Williams45b42332007-07-09 11:56:43 -07004017 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11004018 i, dev->flags,
4019 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004020 /* maybe we can reply to a read
4021 *
4022 * new wantfill requests are only permitted while
4023 * ops_complete_biofill is guaranteed to be inactive
4024 */
4025 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
4026 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
4027 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07004028
4029 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10004030 if (test_bit(R5_LOCKED, &dev->flags))
4031 s->locked++;
4032 if (test_bit(R5_UPTODATE, &dev->flags))
4033 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004034 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004035 s->compute++;
4036 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004037 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004038
NeilBrownacfe7262011-07-27 11:00:36 +10004039 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004040 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10004041 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10004042 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004043 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10004044 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004045 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004046 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004047 }
Dan Williamsa4456852007-07-09 11:56:43 -07004048 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10004049 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11004050 /* Prefer to use the replacement for reads, but only
4051 * if it is recovered enough and has no bad blocks.
4052 */
4053 rdev = rcu_dereference(conf->disks[i].replacement);
4054 if (rdev && !test_bit(Faulty, &rdev->flags) &&
4055 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
4056 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4057 &first_bad, &bad_sectors))
4058 set_bit(R5_ReadRepl, &dev->flags);
4059 else {
NeilBrown9a3e1102011-12-23 10:17:53 +11004060 if (rdev)
4061 set_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11004062 rdev = rcu_dereference(conf->disks[i].rdev);
4063 clear_bit(R5_ReadRepl, &dev->flags);
4064 }
NeilBrown9283d8c2011-12-08 16:27:57 +11004065 if (rdev && test_bit(Faulty, &rdev->flags))
4066 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10004067 if (rdev) {
4068 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4069 &first_bad, &bad_sectors);
4070 if (s->blocked_rdev == NULL
4071 && (test_bit(Blocked, &rdev->flags)
4072 || is_bad < 0)) {
4073 if (is_bad < 0)
4074 set_bit(BlockedBadBlocks,
4075 &rdev->flags);
4076 s->blocked_rdev = rdev;
4077 atomic_inc(&rdev->nr_pending);
4078 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004079 }
NeilBrown415e72d2010-06-17 17:25:21 +10004080 clear_bit(R5_Insync, &dev->flags);
4081 if (!rdev)
4082 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10004083 else if (is_bad) {
4084 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10004085 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
4086 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10004087 /* treat as in-sync, but with a read error
4088 * which we can now try to correct
4089 */
4090 set_bit(R5_Insync, &dev->flags);
4091 set_bit(R5_ReadError, &dev->flags);
4092 }
4093 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10004094 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11004095 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10004096 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11004097 set_bit(R5_Insync, &dev->flags);
4098 else if (test_bit(R5_UPTODATE, &dev->flags) &&
4099 test_bit(R5_Expanded, &dev->flags))
4100 /* If we've reshaped into here, we assume it is Insync.
4101 * We will shortly update recovery_offset to make
4102 * it official.
4103 */
4104 set_bit(R5_Insync, &dev->flags);
4105
NeilBrown1cc03eb2014-01-06 13:19:42 +11004106 if (test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004107 /* This flag does not apply to '.replacement'
4108 * only to .rdev, so make sure to check that*/
4109 struct md_rdev *rdev2 = rcu_dereference(
4110 conf->disks[i].rdev);
4111 if (rdev2 == rdev)
4112 clear_bit(R5_Insync, &dev->flags);
4113 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004114 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004115 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10004116 } else
4117 clear_bit(R5_WriteError, &dev->flags);
4118 }
NeilBrown1cc03eb2014-01-06 13:19:42 +11004119 if (test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004120 /* This flag does not apply to '.replacement'
4121 * only to .rdev, so make sure to check that*/
4122 struct md_rdev *rdev2 = rcu_dereference(
4123 conf->disks[i].rdev);
4124 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10004125 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004126 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10004127 } else
4128 clear_bit(R5_MadeGood, &dev->flags);
4129 }
NeilBrown977df362011-12-23 10:17:53 +11004130 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
4131 struct md_rdev *rdev2 = rcu_dereference(
4132 conf->disks[i].replacement);
4133 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
4134 s->handle_bad_blocks = 1;
4135 atomic_inc(&rdev2->nr_pending);
4136 } else
4137 clear_bit(R5_MadeGoodRepl, &dev->flags);
4138 }
NeilBrown415e72d2010-06-17 17:25:21 +10004139 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004140 /* The ReadError flag will just be confusing now */
4141 clear_bit(R5_ReadError, &dev->flags);
4142 clear_bit(R5_ReWrite, &dev->flags);
4143 }
NeilBrown415e72d2010-06-17 17:25:21 +10004144 if (test_bit(R5_ReadError, &dev->flags))
4145 clear_bit(R5_Insync, &dev->flags);
4146 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004147 if (s->failed < 2)
4148 s->failed_num[s->failed] = i;
4149 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11004150 if (rdev && !test_bit(Faulty, &rdev->flags))
4151 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10004152 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004153 }
NeilBrown9a3e1102011-12-23 10:17:53 +11004154 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4155 /* If there is a failed device being replaced,
4156 * we must be recovering.
4157 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10004158 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11004159 * else we can only be replacing
4160 * sync and recovery both need to read all devices, and so
4161 * use the same flag.
4162 */
4163 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10004164 sh->sector >= conf->mddev->recovery_cp ||
4165 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11004166 s->syncing = 1;
4167 else
4168 s->replacing = 1;
4169 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004170 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10004171}
NeilBrownf4168852007-02-28 20:11:53 -08004172
shli@kernel.org59fc6302014-12-15 12:57:03 +11004173static int clear_batch_ready(struct stripe_head *sh)
4174{
4175 struct stripe_head *tmp;
4176 if (!test_and_clear_bit(STRIPE_BATCH_READY, &sh->state))
4177 return 0;
4178 spin_lock(&sh->stripe_lock);
4179 if (!sh->batch_head) {
4180 spin_unlock(&sh->stripe_lock);
4181 return 0;
4182 }
4183
4184 /*
4185 * this stripe could be added to a batch list before we check
4186 * BATCH_READY, skips it
4187 */
4188 if (sh->batch_head != sh) {
4189 spin_unlock(&sh->stripe_lock);
4190 return 1;
4191 }
4192 spin_lock(&sh->batch_lock);
4193 list_for_each_entry(tmp, &sh->batch_list, batch_list)
4194 clear_bit(STRIPE_BATCH_READY, &tmp->state);
4195 spin_unlock(&sh->batch_lock);
4196 spin_unlock(&sh->stripe_lock);
4197
4198 /*
4199 * BATCH_READY is cleared, no new stripes can be added.
4200 * batch_list can be accessed without lock
4201 */
4202 return 0;
4203}
4204
shli@kernel.org72ac7332014-12-15 12:57:03 +11004205static void check_break_stripe_batch_list(struct stripe_head *sh)
4206{
4207 struct stripe_head *head_sh, *next;
4208 int i;
4209
4210 if (!test_and_clear_bit(STRIPE_BATCH_ERR, &sh->state))
4211 return;
4212
4213 head_sh = sh;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004214
NeilBrownbb270512015-05-08 18:19:40 +10004215 list_for_each_entry_safe(sh, next, &head_sh->batch_list, batch_list) {
4216
shli@kernel.org72ac7332014-12-15 12:57:03 +11004217 list_del_init(&sh->batch_list);
4218
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004219 set_mask_bits(&sh->state, ~STRIPE_EXPAND_SYNC_FLAG,
4220 head_sh->state & ~((1 << STRIPE_ACTIVE) |
4221 (1 << STRIPE_PREREAD_ACTIVE) |
4222 (1 << STRIPE_DEGRADED) |
4223 STRIPE_EXPAND_SYNC_FLAG));
shli@kernel.org72ac7332014-12-15 12:57:03 +11004224 sh->check_state = head_sh->check_state;
4225 sh->reconstruct_state = head_sh->reconstruct_state;
4226 for (i = 0; i < sh->disks; i++)
4227 sh->dev[i].flags = head_sh->dev[i].flags &
4228 (~((1 << R5_WriteError) | (1 << R5_Overlap)));
4229
4230 spin_lock_irq(&sh->stripe_lock);
4231 sh->batch_head = NULL;
4232 spin_unlock_irq(&sh->stripe_lock);
4233
4234 set_bit(STRIPE_HANDLE, &sh->state);
4235 release_stripe(sh);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004236 }
4237}
4238
NeilBrowncc940152011-07-26 11:35:35 +10004239static void handle_stripe(struct stripe_head *sh)
4240{
4241 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11004242 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10004243 int i;
NeilBrown84789552011-07-27 11:00:36 +10004244 int prexor;
4245 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004246 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10004247
4248 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11004249 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10004250 /* already being handled, ensure it gets handled
4251 * again when current action finishes */
4252 set_bit(STRIPE_HANDLE, &sh->state);
4253 return;
4254 }
4255
shli@kernel.org59fc6302014-12-15 12:57:03 +11004256 if (clear_batch_ready(sh) ) {
4257 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
4258 return;
4259 }
4260
shli@kernel.org72ac7332014-12-15 12:57:03 +11004261 check_break_stripe_batch_list(sh);
4262
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004263 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state) && !sh->batch_head) {
NeilBrownf8dfcff2013-03-12 12:18:06 +11004264 spin_lock(&sh->stripe_lock);
4265 /* Cannot process 'sync' concurrently with 'discard' */
4266 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
4267 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4268 set_bit(STRIPE_SYNCING, &sh->state);
4269 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10004270 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004271 }
4272 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10004273 }
4274 clear_bit(STRIPE_DELAYED, &sh->state);
4275
4276 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
4277 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
4278 (unsigned long long)sh->sector, sh->state,
4279 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
4280 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10004281
NeilBrownacfe7262011-07-27 11:00:36 +10004282 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10004283
NeilBrownbc2607f2011-07-28 11:39:22 +10004284 if (s.handle_bad_blocks) {
4285 set_bit(STRIPE_HANDLE, &sh->state);
4286 goto finish;
4287 }
4288
NeilBrown474af965fe2011-07-27 11:00:36 +10004289 if (unlikely(s.blocked_rdev)) {
4290 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11004291 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10004292 set_bit(STRIPE_HANDLE, &sh->state);
4293 goto finish;
4294 }
4295 /* There is nothing for the blocked_rdev to block */
4296 rdev_dec_pending(s.blocked_rdev, conf->mddev);
4297 s.blocked_rdev = NULL;
4298 }
4299
4300 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
4301 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
4302 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
4303 }
4304
4305 pr_debug("locked=%d uptodate=%d to_read=%d"
4306 " to_write=%d failed=%d failed_num=%d,%d\n",
4307 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
4308 s.failed_num[0], s.failed_num[1]);
4309 /* check if the array has lost more than max_degraded devices and,
4310 * if so, some requests might need to be failed.
4311 */
NeilBrown9a3f5302011-11-08 16:22:01 +11004312 if (s.failed > conf->max_degraded) {
4313 sh->check_state = 0;
4314 sh->reconstruct_state = 0;
4315 if (s.to_read+s.to_write+s.written)
4316 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11004317 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11004318 handle_failed_sync(conf, sh, &s);
4319 }
NeilBrown474af965fe2011-07-27 11:00:36 +10004320
NeilBrown84789552011-07-27 11:00:36 +10004321 /* Now we check to see if any write operations have recently
4322 * completed
4323 */
4324 prexor = 0;
4325 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
4326 prexor = 1;
4327 if (sh->reconstruct_state == reconstruct_state_drain_result ||
4328 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
4329 sh->reconstruct_state = reconstruct_state_idle;
4330
4331 /* All the 'written' buffers and the parity block are ready to
4332 * be written back to disk
4333 */
Shaohua Li9e4447682012-10-11 13:49:49 +11004334 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
4335 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004336 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11004337 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
4338 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004339 for (i = disks; i--; ) {
4340 struct r5dev *dev = &sh->dev[i];
4341 if (test_bit(R5_LOCKED, &dev->flags) &&
4342 (i == sh->pd_idx || i == sh->qd_idx ||
4343 dev->written)) {
4344 pr_debug("Writing block %d\n", i);
4345 set_bit(R5_Wantwrite, &dev->flags);
4346 if (prexor)
4347 continue;
NeilBrown9c4bdf62014-08-13 09:57:07 +10004348 if (s.failed > 1)
4349 continue;
NeilBrown84789552011-07-27 11:00:36 +10004350 if (!test_bit(R5_Insync, &dev->flags) ||
4351 ((i == sh->pd_idx || i == sh->qd_idx) &&
4352 s.failed == 0))
4353 set_bit(STRIPE_INSYNC, &sh->state);
4354 }
4355 }
4356 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4357 s.dec_preread_active = 1;
4358 }
4359
NeilBrownef5b7c62012-11-22 09:13:36 +11004360 /*
4361 * might be able to return some write requests if the parity blocks
4362 * are safe, or on a failed drive
4363 */
4364 pdev = &sh->dev[sh->pd_idx];
4365 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
4366 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
4367 qdev = &sh->dev[sh->qd_idx];
4368 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
4369 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
4370 || conf->level < 6;
4371
4372 if (s.written &&
4373 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
4374 && !test_bit(R5_LOCKED, &pdev->flags)
4375 && (test_bit(R5_UPTODATE, &pdev->flags) ||
4376 test_bit(R5_Discard, &pdev->flags))))) &&
4377 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
4378 && !test_bit(R5_LOCKED, &qdev->flags)
4379 && (test_bit(R5_UPTODATE, &qdev->flags) ||
4380 test_bit(R5_Discard, &qdev->flags))))))
4381 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
4382
4383 /* Now we might consider reading some blocks, either to check/generate
4384 * parity, or to satisfy requests
4385 * or to load a block that is being partially written.
4386 */
4387 if (s.to_read || s.non_overwrite
4388 || (conf->level == 6 && s.to_write && s.failed)
4389 || (s.syncing && (s.uptodate + s.compute < disks))
4390 || s.replacing
4391 || s.expanding)
4392 handle_stripe_fill(sh, &s, disks);
4393
NeilBrown84789552011-07-27 11:00:36 +10004394 /* Now to consider new write requests and what else, if anything
4395 * should be read. We do not handle new writes when:
4396 * 1/ A 'write' operation (copy+xor) is already in flight.
4397 * 2/ A 'check' operation is in flight, as it may clobber the parity
4398 * block.
4399 */
4400 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
4401 handle_stripe_dirtying(conf, sh, &s, disks);
4402
4403 /* maybe we need to check and possibly fix the parity for this stripe
4404 * Any reads will already have been scheduled, so we just see if enough
4405 * data is available. The parity check is held off while parity
4406 * dependent operations are in flight.
4407 */
4408 if (sh->check_state ||
4409 (s.syncing && s.locked == 0 &&
4410 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
4411 !test_bit(STRIPE_INSYNC, &sh->state))) {
4412 if (conf->level == 6)
4413 handle_parity_checks6(conf, sh, &s, disks);
4414 else
4415 handle_parity_checks5(conf, sh, &s, disks);
4416 }
NeilBrownc5a31002011-07-27 11:00:36 +10004417
NeilBrownf94c0b62013-07-22 12:57:21 +10004418 if ((s.replacing || s.syncing) && s.locked == 0
4419 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
4420 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11004421 /* Write out to replacement devices where possible */
4422 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10004423 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
4424 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11004425 set_bit(R5_WantReplace, &sh->dev[i].flags);
4426 set_bit(R5_LOCKED, &sh->dev[i].flags);
4427 s.locked++;
4428 }
NeilBrownf94c0b62013-07-22 12:57:21 +10004429 if (s.replacing)
4430 set_bit(STRIPE_INSYNC, &sh->state);
4431 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11004432 }
4433 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10004434 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11004435 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10004436 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4437 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004438 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
4439 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10004440 }
4441
4442 /* If the failed drives are just a ReadError, then we might need
4443 * to progress the repair/check process
4444 */
4445 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
4446 for (i = 0; i < s.failed; i++) {
4447 struct r5dev *dev = &sh->dev[s.failed_num[i]];
4448 if (test_bit(R5_ReadError, &dev->flags)
4449 && !test_bit(R5_LOCKED, &dev->flags)
4450 && test_bit(R5_UPTODATE, &dev->flags)
4451 ) {
4452 if (!test_bit(R5_ReWrite, &dev->flags)) {
4453 set_bit(R5_Wantwrite, &dev->flags);
4454 set_bit(R5_ReWrite, &dev->flags);
4455 set_bit(R5_LOCKED, &dev->flags);
4456 s.locked++;
4457 } else {
4458 /* let's read it back */
4459 set_bit(R5_Wantread, &dev->flags);
4460 set_bit(R5_LOCKED, &dev->flags);
4461 s.locked++;
4462 }
4463 }
4464 }
4465
NeilBrown3687c062011-07-27 11:00:36 +10004466 /* Finish reconstruct operations initiated by the expansion process */
4467 if (sh->reconstruct_state == reconstruct_state_result) {
4468 struct stripe_head *sh_src
4469 = get_active_stripe(conf, sh->sector, 1, 1, 1);
4470 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
4471 /* sh cannot be written until sh_src has been read.
4472 * so arrange for sh to be delayed a little
4473 */
4474 set_bit(STRIPE_DELAYED, &sh->state);
4475 set_bit(STRIPE_HANDLE, &sh->state);
4476 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
4477 &sh_src->state))
4478 atomic_inc(&conf->preread_active_stripes);
4479 release_stripe(sh_src);
4480 goto finish;
4481 }
4482 if (sh_src)
4483 release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07004484
NeilBrown3687c062011-07-27 11:00:36 +10004485 sh->reconstruct_state = reconstruct_state_idle;
4486 clear_bit(STRIPE_EXPANDING, &sh->state);
4487 for (i = conf->raid_disks; i--; ) {
4488 set_bit(R5_Wantwrite, &sh->dev[i].flags);
4489 set_bit(R5_LOCKED, &sh->dev[i].flags);
4490 s.locked++;
4491 }
4492 }
4493
4494 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
4495 !sh->reconstruct_state) {
4496 /* Need to write out all blocks after computing parity */
4497 sh->disks = conf->raid_disks;
4498 stripe_set_idx(sh->sector, conf, 0, sh);
4499 schedule_reconstruction(sh, &s, 1, 1);
4500 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
4501 clear_bit(STRIPE_EXPAND_READY, &sh->state);
4502 atomic_dec(&conf->reshape_stripes);
4503 wake_up(&conf->wait_for_overlap);
4504 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4505 }
4506
4507 if (s.expanding && s.locked == 0 &&
4508 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
4509 handle_stripe_expansion(conf, sh);
4510
4511finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07004512 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10004513 if (unlikely(s.blocked_rdev)) {
4514 if (conf->mddev->external)
4515 md_wait_for_blocked_rdev(s.blocked_rdev,
4516 conf->mddev);
4517 else
4518 /* Internal metadata will immediately
4519 * be written by raid5d, so we don't
4520 * need to wait here.
4521 */
4522 rdev_dec_pending(s.blocked_rdev,
4523 conf->mddev);
4524 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004525
NeilBrownbc2607f2011-07-28 11:39:22 +10004526 if (s.handle_bad_blocks)
4527 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004528 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10004529 struct r5dev *dev = &sh->dev[i];
4530 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
4531 /* We own a safe reference to the rdev */
4532 rdev = conf->disks[i].rdev;
4533 if (!rdev_set_badblocks(rdev, sh->sector,
4534 STRIPE_SECTORS, 0))
4535 md_error(conf->mddev, rdev);
4536 rdev_dec_pending(rdev, conf->mddev);
4537 }
NeilBrownb84db562011-07-28 11:39:23 +10004538 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
4539 rdev = conf->disks[i].rdev;
4540 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004541 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10004542 rdev_dec_pending(rdev, conf->mddev);
4543 }
NeilBrown977df362011-12-23 10:17:53 +11004544 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
4545 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11004546 if (!rdev)
4547 /* rdev have been moved down */
4548 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11004549 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004550 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11004551 rdev_dec_pending(rdev, conf->mddev);
4552 }
NeilBrownbc2607f2011-07-28 11:39:22 +10004553 }
4554
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004555 if (s.ops_request)
4556 raid_run_ops(sh, s.ops_request);
4557
Dan Williamsf0e43bc2008-06-28 08:31:55 +10004558 ops_run_io(sh, &s);
4559
NeilBrownc5709ef2011-07-26 11:35:20 +10004560 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11004561 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02004562 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11004563 * have actually been submitted.
4564 */
4565 atomic_dec(&conf->preread_active_stripes);
4566 if (atomic_read(&conf->preread_active_stripes) <
4567 IO_THRESHOLD)
4568 md_wakeup_thread(conf->mddev->thread);
4569 }
4570
NeilBrownc5709ef2011-07-26 11:35:20 +10004571 return_io(s.return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07004572
Dan Williams257a4b42011-11-08 16:22:06 +11004573 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07004574}
4575
NeilBrownd1688a62011-10-11 16:49:52 +11004576static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577{
4578 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
4579 while (!list_empty(&conf->delayed_list)) {
4580 struct list_head *l = conf->delayed_list.next;
4581 struct stripe_head *sh;
4582 sh = list_entry(l, struct stripe_head, lru);
4583 list_del_init(l);
4584 clear_bit(STRIPE_DELAYED, &sh->state);
4585 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4586 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004587 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08004588 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 }
NeilBrown482c0832011-04-18 18:25:42 +10004590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591}
4592
Shaohua Li566c09c2013-11-14 15:16:17 +11004593static void activate_bit_delay(struct r5conf *conf,
4594 struct list_head *temp_inactive_list)
NeilBrown72626682005-09-09 16:23:54 -07004595{
4596 /* device_lock is held */
4597 struct list_head head;
4598 list_add(&head, &conf->bitmap_list);
4599 list_del_init(&conf->bitmap_list);
4600 while (!list_empty(&head)) {
4601 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
Shaohua Li566c09c2013-11-14 15:16:17 +11004602 int hash;
NeilBrown72626682005-09-09 16:23:54 -07004603 list_del_init(&sh->lru);
4604 atomic_inc(&sh->count);
Shaohua Li566c09c2013-11-14 15:16:17 +11004605 hash = sh->hash_lock_index;
4606 __release_stripe(conf, sh, &temp_inactive_list[hash]);
NeilBrown72626682005-09-09 16:23:54 -07004607 }
4608}
4609
NeilBrown5c675f82014-12-15 12:56:56 +11004610static int raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07004611{
NeilBrownd1688a62011-10-11 16:49:52 +11004612 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07004613
4614 /* No difference between reads and writes. Just check
4615 * how busy the stripe_cache is
4616 */
NeilBrown3fa841d2009-09-23 18:10:29 +10004617
NeilBrown54233992015-02-26 12:21:04 +11004618 if (test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state))
NeilBrownf022b2f2006-10-03 01:15:56 -07004619 return 1;
4620 if (conf->quiesce)
4621 return 1;
Shaohua Li4bda5562013-11-14 15:16:17 +11004622 if (atomic_read(&conf->empty_inactive_list_nr))
NeilBrownf022b2f2006-10-03 01:15:56 -07004623 return 1;
4624
4625 return 0;
4626}
4627
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004628/* We want read requests to align with chunks where possible,
4629 * but write requests don't need to.
4630 */
NeilBrown64590f42014-12-15 12:56:57 +11004631static int raid5_mergeable_bvec(struct mddev *mddev,
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004632 struct bvec_merge_data *bvm,
4633 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004634{
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004635 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004636 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10004637 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02004638 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004639
Eric Mei9ffc8f72015-03-18 23:39:11 -06004640 /*
4641 * always allow writes to be mergeable, read as well if array
4642 * is degraded as we'll go through stripe cache anyway.
4643 */
4644 if ((bvm->bi_rw & 1) == WRITE || mddev->degraded)
4645 return biovec->bv_len;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004646
Andre Noll664e7c42009-06-18 08:45:27 +10004647 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
4648 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004649 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
4650 if (max < 0) max = 0;
4651 if (max <= biovec->bv_len && bio_sectors == 0)
4652 return biovec->bv_len;
4653 else
4654 return max;
4655}
4656
NeilBrownfd01b882011-10-11 16:47:53 +11004657static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004658{
Kent Overstreet4f024f32013-10-11 15:44:27 -07004659 sector_t sector = bio->bi_iter.bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10004660 unsigned int chunk_sectors = mddev->chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004661 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004662
Andre Noll664e7c42009-06-18 08:45:27 +10004663 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
4664 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004665 return chunk_sectors >=
4666 ((sector & (chunk_sectors - 1)) + bio_sectors);
4667}
4668
4669/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004670 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
4671 * later sampled by raid5d.
4672 */
NeilBrownd1688a62011-10-11 16:49:52 +11004673static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004674{
4675 unsigned long flags;
4676
4677 spin_lock_irqsave(&conf->device_lock, flags);
4678
4679 bi->bi_next = conf->retry_read_aligned_list;
4680 conf->retry_read_aligned_list = bi;
4681
4682 spin_unlock_irqrestore(&conf->device_lock, flags);
4683 md_wakeup_thread(conf->mddev->thread);
4684}
4685
NeilBrownd1688a62011-10-11 16:49:52 +11004686static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004687{
4688 struct bio *bi;
4689
4690 bi = conf->retry_read_aligned;
4691 if (bi) {
4692 conf->retry_read_aligned = NULL;
4693 return bi;
4694 }
4695 bi = conf->retry_read_aligned_list;
4696 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08004697 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004698 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02004699 /*
4700 * this sets the active strip count to 1 and the processed
4701 * strip count to zero (upper 8 bits)
4702 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004703 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004704 }
4705
4706 return bi;
4707}
4708
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004709/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004710 * The "raid5_align_endio" should check if the read succeeded and if it
4711 * did, call bio_endio on the original bio (having bio_put the new bio
4712 * first).
4713 * If the read failed..
4714 */
NeilBrown6712ecf2007-09-27 12:47:43 +02004715static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004716{
4717 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11004718 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11004719 struct r5conf *conf;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004720 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrown3cb03002011-10-11 16:45:26 +11004721 struct md_rdev *rdev;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004722
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004723 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004724
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004725 rdev = (void*)raid_bi->bi_next;
4726 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11004727 mddev = rdev->mddev;
4728 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004729
4730 rdev_dec_pending(rdev, conf->mddev);
4731
4732 if (!error && uptodate) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004733 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
4734 raid_bi, 0);
NeilBrown6712ecf2007-09-27 12:47:43 +02004735 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004736 if (atomic_dec_and_test(&conf->active_aligned_reads))
4737 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02004738 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004739 }
4740
Dan Williams45b42332007-07-09 11:56:43 -07004741 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004742
4743 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004744}
4745
Neil Brown387bb172007-02-08 14:20:29 -08004746static int bio_fits_rdev(struct bio *bi)
4747{
Jens Axboe165125e2007-07-24 09:28:11 +02004748 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08004749
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004750 if (bio_sectors(bi) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08004751 return 0;
4752 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05004753 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08004754 return 0;
4755
4756 if (q->merge_bvec_fn)
4757 /* it's too hard to apply the merge_bvec_fn at this stage,
4758 * just just give up
4759 */
4760 return 0;
4761
4762 return 1;
4763}
4764
NeilBrownfd01b882011-10-11 16:47:53 +11004765static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004766{
NeilBrownd1688a62011-10-11 16:49:52 +11004767 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11004768 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004769 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11004770 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11004771 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004772
4773 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07004774 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004775 return 0;
4776 }
4777 /*
NeilBrowna167f662010-10-26 18:31:13 +11004778 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004779 */
NeilBrowna167f662010-10-26 18:31:13 +11004780 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004781 if (!align_bi)
4782 return 0;
4783 /*
4784 * set bi_end_io to a new function, and set bi_private to the
4785 * original bio.
4786 */
4787 align_bi->bi_end_io = raid5_align_endio;
4788 align_bi->bi_private = raid_bio;
4789 /*
4790 * compute position
4791 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004792 align_bi->bi_iter.bi_sector =
4793 raid5_compute_sector(conf, raid_bio->bi_iter.bi_sector,
4794 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004795
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004796 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004797 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11004798 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
4799 if (!rdev || test_bit(Faulty, &rdev->flags) ||
4800 rdev->recovery_offset < end_sector) {
4801 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
4802 if (rdev &&
4803 (test_bit(Faulty, &rdev->flags) ||
4804 !(test_bit(In_sync, &rdev->flags) ||
4805 rdev->recovery_offset >= end_sector)))
4806 rdev = NULL;
4807 }
4808 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10004809 sector_t first_bad;
4810 int bad_sectors;
4811
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004812 atomic_inc(&rdev->nr_pending);
4813 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004814 raid_bio->bi_next = (void*)rdev;
4815 align_bi->bi_bdev = rdev->bdev;
NeilBrown3fd83712014-08-23 20:19:26 +10004816 __clear_bit(BIO_SEG_VALID, &align_bi->bi_flags);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004817
NeilBrown31c176e2011-07-28 11:39:22 +10004818 if (!bio_fits_rdev(align_bi) ||
Kent Overstreet4f024f32013-10-11 15:44:27 -07004819 is_badblock(rdev, align_bi->bi_iter.bi_sector,
4820 bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10004821 &first_bad, &bad_sectors)) {
4822 /* too big in some way, or has a known bad block */
Neil Brown387bb172007-02-08 14:20:29 -08004823 bio_put(align_bi);
4824 rdev_dec_pending(rdev, mddev);
4825 return 0;
4826 }
4827
majianpeng6c0544e2012-06-12 08:31:10 +08004828 /* No reshape active, so we can trust rdev->data_offset */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004829 align_bi->bi_iter.bi_sector += rdev->data_offset;
majianpeng6c0544e2012-06-12 08:31:10 +08004830
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004831 spin_lock_irq(&conf->device_lock);
4832 wait_event_lock_irq(conf->wait_for_stripe,
4833 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01004834 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004835 atomic_inc(&conf->active_aligned_reads);
4836 spin_unlock_irq(&conf->device_lock);
4837
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004838 if (mddev->gendisk)
4839 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4840 align_bi, disk_devt(mddev->gendisk),
Kent Overstreet4f024f32013-10-11 15:44:27 -07004841 raid_bio->bi_iter.bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004842 generic_make_request(align_bi);
4843 return 1;
4844 } else {
4845 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004846 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004847 return 0;
4848 }
4849}
4850
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004851/* __get_priority_stripe - get the next stripe to process
4852 *
4853 * Full stripe writes are allowed to pass preread active stripes up until
4854 * the bypass_threshold is exceeded. In general the bypass_count
4855 * increments when the handle_list is handled before the hold_list; however, it
4856 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
4857 * stripe with in flight i/o. The bypass_count will be reset when the
4858 * head of the hold_list has changed, i.e. the head was promoted to the
4859 * handle_list.
4860 */
Shaohua Li851c30c2013-08-28 14:30:16 +08004861static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004862{
Shaohua Li851c30c2013-08-28 14:30:16 +08004863 struct stripe_head *sh = NULL, *tmp;
4864 struct list_head *handle_list = NULL;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004865 struct r5worker_group *wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004866
4867 if (conf->worker_cnt_per_group == 0) {
4868 handle_list = &conf->handle_list;
4869 } else if (group != ANY_GROUP) {
4870 handle_list = &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004871 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08004872 } else {
4873 int i;
4874 for (i = 0; i < conf->group_cnt; i++) {
4875 handle_list = &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004876 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08004877 if (!list_empty(handle_list))
4878 break;
4879 }
4880 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004881
4882 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
4883 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08004884 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004885 list_empty(&conf->hold_list) ? "empty" : "busy",
4886 atomic_read(&conf->pending_full_writes), conf->bypass_count);
4887
Shaohua Li851c30c2013-08-28 14:30:16 +08004888 if (!list_empty(handle_list)) {
4889 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004890
4891 if (list_empty(&conf->hold_list))
4892 conf->bypass_count = 0;
4893 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
4894 if (conf->hold_list.next == conf->last_hold)
4895 conf->bypass_count++;
4896 else {
4897 conf->last_hold = conf->hold_list.next;
4898 conf->bypass_count -= conf->bypass_threshold;
4899 if (conf->bypass_count < 0)
4900 conf->bypass_count = 0;
4901 }
4902 }
4903 } else if (!list_empty(&conf->hold_list) &&
4904 ((conf->bypass_threshold &&
4905 conf->bypass_count > conf->bypass_threshold) ||
4906 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08004907
4908 list_for_each_entry(tmp, &conf->hold_list, lru) {
4909 if (conf->worker_cnt_per_group == 0 ||
4910 group == ANY_GROUP ||
4911 !cpu_online(tmp->cpu) ||
4912 cpu_to_group(tmp->cpu) == group) {
4913 sh = tmp;
4914 break;
4915 }
4916 }
4917
4918 if (sh) {
4919 conf->bypass_count -= conf->bypass_threshold;
4920 if (conf->bypass_count < 0)
4921 conf->bypass_count = 0;
4922 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08004923 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004924 }
4925
4926 if (!sh)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004927 return NULL;
4928
Shaohua Libfc90cb2013-08-29 15:40:32 +08004929 if (wg) {
4930 wg->stripes_cnt--;
4931 sh->group = NULL;
4932 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004933 list_del_init(&sh->lru);
Shaohua Lic7a6d352014-04-15 09:12:54 +08004934 BUG_ON(atomic_inc_return(&sh->count) != 1);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004935 return sh;
4936}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004937
Shaohua Li8811b592012-08-02 08:33:00 +10004938struct raid5_plug_cb {
4939 struct blk_plug_cb cb;
4940 struct list_head list;
Shaohua Li566c09c2013-11-14 15:16:17 +11004941 struct list_head temp_inactive_list[NR_STRIPE_HASH_LOCKS];
Shaohua Li8811b592012-08-02 08:33:00 +10004942};
4943
4944static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
4945{
4946 struct raid5_plug_cb *cb = container_of(
4947 blk_cb, struct raid5_plug_cb, cb);
4948 struct stripe_head *sh;
4949 struct mddev *mddev = cb->cb.data;
4950 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11004951 int cnt = 0;
Shaohua Li566c09c2013-11-14 15:16:17 +11004952 int hash;
Shaohua Li8811b592012-08-02 08:33:00 +10004953
4954 if (cb->list.next && !list_empty(&cb->list)) {
4955 spin_lock_irq(&conf->device_lock);
4956 while (!list_empty(&cb->list)) {
4957 sh = list_first_entry(&cb->list, struct stripe_head, lru);
4958 list_del_init(&sh->lru);
4959 /*
4960 * avoid race release_stripe_plug() sees
4961 * STRIPE_ON_UNPLUG_LIST clear but the stripe
4962 * is still in our list
4963 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004964 smp_mb__before_atomic();
Shaohua Li8811b592012-08-02 08:33:00 +10004965 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08004966 /*
4967 * STRIPE_ON_RELEASE_LIST could be set here. In that
4968 * case, the count is always > 1 here
4969 */
Shaohua Li566c09c2013-11-14 15:16:17 +11004970 hash = sh->hash_lock_index;
4971 __release_stripe(conf, sh, &cb->temp_inactive_list[hash]);
NeilBrowna9add5d2012-10-31 11:59:09 +11004972 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10004973 }
4974 spin_unlock_irq(&conf->device_lock);
4975 }
Shaohua Li566c09c2013-11-14 15:16:17 +11004976 release_inactive_stripe_list(conf, cb->temp_inactive_list,
4977 NR_STRIPE_HASH_LOCKS);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004978 if (mddev->queue)
4979 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10004980 kfree(cb);
4981}
4982
4983static void release_stripe_plug(struct mddev *mddev,
4984 struct stripe_head *sh)
4985{
4986 struct blk_plug_cb *blk_cb = blk_check_plugged(
4987 raid5_unplug, mddev,
4988 sizeof(struct raid5_plug_cb));
4989 struct raid5_plug_cb *cb;
4990
4991 if (!blk_cb) {
4992 release_stripe(sh);
4993 return;
4994 }
4995
4996 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
4997
Shaohua Li566c09c2013-11-14 15:16:17 +11004998 if (cb->list.next == NULL) {
4999 int i;
Shaohua Li8811b592012-08-02 08:33:00 +10005000 INIT_LIST_HEAD(&cb->list);
Shaohua Li566c09c2013-11-14 15:16:17 +11005001 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5002 INIT_LIST_HEAD(cb->temp_inactive_list + i);
5003 }
Shaohua Li8811b592012-08-02 08:33:00 +10005004
5005 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
5006 list_add_tail(&sh->lru, &cb->list);
5007 else
5008 release_stripe(sh);
5009}
5010
Shaohua Li620125f2012-10-11 13:49:05 +11005011static void make_discard_request(struct mddev *mddev, struct bio *bi)
5012{
5013 struct r5conf *conf = mddev->private;
5014 sector_t logical_sector, last_sector;
5015 struct stripe_head *sh;
5016 int remaining;
5017 int stripe_sectors;
5018
5019 if (mddev->reshape_position != MaxSector)
5020 /* Skip discard while reshape is happening */
5021 return;
5022
Kent Overstreet4f024f32013-10-11 15:44:27 -07005023 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
5024 last_sector = bi->bi_iter.bi_sector + (bi->bi_iter.bi_size>>9);
Shaohua Li620125f2012-10-11 13:49:05 +11005025
5026 bi->bi_next = NULL;
5027 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
5028
5029 stripe_sectors = conf->chunk_sectors *
5030 (conf->raid_disks - conf->max_degraded);
5031 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
5032 stripe_sectors);
5033 sector_div(last_sector, stripe_sectors);
5034
5035 logical_sector *= conf->chunk_sectors;
5036 last_sector *= conf->chunk_sectors;
5037
5038 for (; logical_sector < last_sector;
5039 logical_sector += STRIPE_SECTORS) {
5040 DEFINE_WAIT(w);
5041 int d;
5042 again:
5043 sh = get_active_stripe(conf, logical_sector, 0, 0, 0);
5044 prepare_to_wait(&conf->wait_for_overlap, &w,
5045 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005046 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
5047 if (test_bit(STRIPE_SYNCING, &sh->state)) {
5048 release_stripe(sh);
5049 schedule();
5050 goto again;
5051 }
5052 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11005053 spin_lock_irq(&sh->stripe_lock);
5054 for (d = 0; d < conf->raid_disks; d++) {
5055 if (d == sh->pd_idx || d == sh->qd_idx)
5056 continue;
5057 if (sh->dev[d].towrite || sh->dev[d].toread) {
5058 set_bit(R5_Overlap, &sh->dev[d].flags);
5059 spin_unlock_irq(&sh->stripe_lock);
5060 release_stripe(sh);
5061 schedule();
5062 goto again;
5063 }
5064 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11005065 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11005066 finish_wait(&conf->wait_for_overlap, &w);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005067 sh->overwrite_disks = 0;
Shaohua Li620125f2012-10-11 13:49:05 +11005068 for (d = 0; d < conf->raid_disks; d++) {
5069 if (d == sh->pd_idx || d == sh->qd_idx)
5070 continue;
5071 sh->dev[d].towrite = bi;
5072 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
5073 raid5_inc_bi_active_stripes(bi);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005074 sh->overwrite_disks++;
Shaohua Li620125f2012-10-11 13:49:05 +11005075 }
5076 spin_unlock_irq(&sh->stripe_lock);
5077 if (conf->mddev->bitmap) {
5078 for (d = 0;
5079 d < conf->raid_disks - conf->max_degraded;
5080 d++)
5081 bitmap_startwrite(mddev->bitmap,
5082 sh->sector,
5083 STRIPE_SECTORS,
5084 0);
5085 sh->bm_seq = conf->seq_flush + 1;
5086 set_bit(STRIPE_BIT_DELAY, &sh->state);
5087 }
5088
5089 set_bit(STRIPE_HANDLE, &sh->state);
5090 clear_bit(STRIPE_DELAYED, &sh->state);
5091 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5092 atomic_inc(&conf->preread_active_stripes);
5093 release_stripe_plug(mddev, sh);
5094 }
5095
5096 remaining = raid5_dec_bi_active_stripes(bi);
5097 if (remaining == 0) {
5098 md_write_end(mddev);
5099 bio_endio(bi, 0);
5100 }
5101}
5102
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07005103static void make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104{
NeilBrownd1688a62011-10-11 16:49:52 +11005105 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11005106 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 sector_t new_sector;
5108 sector_t logical_sector, last_sector;
5109 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01005110 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11005111 int remaining;
Shaohua Li27c0f682014-04-09 11:25:47 +08005112 DEFINE_WAIT(w);
5113 bool do_prepare;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114
Tejun Heoe9c74692010-09-03 11:56:18 +02005115 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
5116 md_flush_request(mddev, bi);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02005117 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07005118 }
5119
NeilBrown3d310eb2005-06-21 17:17:26 -07005120 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07005121
Eric Mei9ffc8f72015-03-18 23:39:11 -06005122 /*
5123 * If array is degraded, better not do chunk aligned read because
5124 * later we might have to read it again in order to reconstruct
5125 * data on failed drives.
5126 */
5127 if (rw == READ && mddev->degraded == 0 &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005128 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11005129 chunk_aligned_read(mddev,bi))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02005130 return;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005131
Shaohua Li620125f2012-10-11 13:49:05 +11005132 if (unlikely(bi->bi_rw & REQ_DISCARD)) {
5133 make_discard_request(mddev, bi);
5134 return;
5135 }
5136
Kent Overstreet4f024f32013-10-11 15:44:27 -07005137 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005138 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 bi->bi_next = NULL;
5140 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07005141
Shaohua Li27c0f682014-04-09 11:25:47 +08005142 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005144 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10005145 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08005146
Shaohua Li27c0f682014-04-09 11:25:47 +08005147 do_prepare = false;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005148 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10005149 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11005150 previous = 0;
Shaohua Li27c0f682014-04-09 11:25:47 +08005151 if (do_prepare)
5152 prepare_to_wait(&conf->wait_for_overlap, &w,
5153 TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005154 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11005155 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08005156 * 64bit on a 32bit platform, and so it might be
5157 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02005158 * Of course reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08005159 * the lock is dropped, so once we get a reference
5160 * to the stripe that we think it is, we will have
5161 * to check again.
5162 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005163 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005164 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005165 ? logical_sector < conf->reshape_progress
5166 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005167 previous = 1;
5168 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10005169 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005170 ? logical_sector < conf->reshape_safe
5171 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08005172 spin_unlock_irq(&conf->device_lock);
5173 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005174 do_prepare = true;
NeilBrownb578d552006-03-27 01:18:12 -08005175 goto retry;
5176 }
5177 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005178 spin_unlock_irq(&conf->device_lock);
5179 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005180
NeilBrown112bf892009-03-31 14:39:38 +11005181 new_sector = raid5_compute_sector(conf, logical_sector,
5182 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11005183 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10005184 pr_debug("raid456: make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10005185 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 (unsigned long long)logical_sector);
5187
NeilBrownb5663ba2009-03-31 14:39:38 +11005188 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10005189 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11005191 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005192 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08005193 * stripe, so we must do the range check again.
5194 * Expansion could still move past after this
5195 * test, but as we are holding a reference to
5196 * 'sh', we know that if that happens,
5197 * STRIPE_EXPANDING will get set and the expansion
5198 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005199 */
5200 int must_retry = 0;
5201 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005202 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11005203 ? logical_sector >= conf->reshape_progress
5204 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005205 /* mismatch, need to try again */
5206 must_retry = 1;
5207 spin_unlock_irq(&conf->device_lock);
5208 if (must_retry) {
5209 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07005210 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005211 do_prepare = true;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005212 goto retry;
5213 }
5214 }
NeilBrownc46501b2013-08-27 15:52:13 +10005215 if (read_seqcount_retry(&conf->gen_lock, seq)) {
5216 /* Might have got the wrong stripe_head
5217 * by accident
5218 */
5219 release_stripe(sh);
5220 goto retry;
5221 }
NeilBrowne62e58a2009-07-01 13:15:35 +10005222
Namhyung Kimffd96e32011-07-18 17:38:51 +10005223 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10005224 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08005225 logical_sector < mddev->suspend_hi) {
5226 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10005227 /* As the suspend_* range is controlled by
5228 * userspace, we want an interruptible
5229 * wait.
5230 */
5231 flush_signals(current);
5232 prepare_to_wait(&conf->wait_for_overlap,
5233 &w, TASK_INTERRUPTIBLE);
5234 if (logical_sector >= mddev->suspend_lo &&
Shaohua Li27c0f682014-04-09 11:25:47 +08005235 logical_sector < mddev->suspend_hi) {
NeilBrowne62e58a2009-07-01 13:15:35 +10005236 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005237 do_prepare = true;
5238 }
NeilBrowne464eaf2006-03-27 01:18:14 -08005239 goto retry;
5240 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005241
5242 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005243 !add_stripe_bio(sh, bi, dd_idx, rw, previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005244 /* Stripe is busy expanding or
5245 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 * and wait a while
5247 */
NeilBrown482c0832011-04-18 18:25:42 +10005248 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 release_stripe(sh);
5250 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005251 do_prepare = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 goto retry;
5253 }
NeilBrown6ed30032008-02-06 01:40:00 -08005254 set_bit(STRIPE_HANDLE, &sh->state);
5255 clear_bit(STRIPE_DELAYED, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11005256 if ((!sh->batch_head || sh == sh->batch_head) &&
5257 (bi->bi_rw & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11005258 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5259 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10005260 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 } else {
5262 /* cannot get stripe for read-ahead, just give-up */
5263 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 break;
5265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 }
Shaohua Li27c0f682014-04-09 11:25:47 +08005267 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown7c13edc2011-04-18 18:25:43 +10005268
Shaohua Lie7836bd62012-07-19 16:01:31 +10005269 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08005270 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271
NeilBrown16a53ec2006-06-26 00:27:38 -07005272 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02005274
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005275 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
5276 bi, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10005277 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279}
5280
NeilBrownfd01b882011-10-11 16:47:53 +11005281static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11005282
NeilBrownfd01b882011-10-11 16:47:53 +11005283static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284{
NeilBrown52c03292006-06-26 00:27:43 -07005285 /* reshaping is quite different to recovery/resync so it is
5286 * handled quite separately ... here.
5287 *
5288 * On each call to sync_request, we gather one chunk worth of
5289 * destination stripes and flag them as expanding.
5290 * Then we find all the source stripes and request reads.
5291 * As the reads complete, handle_stripe will copy the data
5292 * into the destination stripe and release that stripe.
5293 */
NeilBrownd1688a62011-10-11 16:49:52 +11005294 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08005296 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08005297 int raid_disks = conf->previous_raid_disks;
5298 int data_disks = raid_disks - conf->max_degraded;
5299 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07005300 int i;
5301 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11005302 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11005303 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11005304 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11005305 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07005306
NeilBrownfef9c612009-03-31 15:16:46 +11005307 if (sector_nr == 0) {
5308 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10005309 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005310 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
5311 sector_nr = raid5_size(mddev, 0, 0)
5312 - conf->reshape_progress;
NeilBrown2c810cd2012-05-21 09:27:00 +10005313 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005314 conf->reshape_progress > 0)
5315 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005316 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005317 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11005318 mddev->curr_resync_completed = sector_nr;
5319 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11005320 *skipped = 1;
5321 return sector_nr;
5322 }
NeilBrown52c03292006-06-26 00:27:43 -07005323 }
5324
NeilBrown7a661382009-03-31 15:21:40 +11005325 /* We need to process a full chunk at a time.
5326 * If old and new chunk sizes differ, we need to process the
5327 * largest of these
5328 */
Andre Noll664e7c42009-06-18 08:45:27 +10005329 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
5330 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005331 else
Andre Noll9d8f0362009-06-18 08:45:01 +10005332 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005333
NeilBrownb5254dd2012-05-21 09:27:01 +10005334 /* We update the metadata at least every 10 seconds, or when
5335 * the data about to be copied would over-write the source of
5336 * the data at the front of the range. i.e. one new_stripe
5337 * along from reshape_progress new_maps to after where
5338 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07005339 */
NeilBrownfef9c612009-03-31 15:16:46 +11005340 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005341 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11005342 readpos = conf->reshape_progress;
5343 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005344 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08005345 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10005346 if (mddev->reshape_backwards) {
NeilBrowned37d832009-05-27 21:39:05 +10005347 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11005348 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005349 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11005350 } else {
NeilBrown7a661382009-03-31 15:21:40 +11005351 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10005352 readpos -= min_t(sector_t, reshape_sectors, readpos);
5353 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11005354 }
NeilBrown52c03292006-06-26 00:27:43 -07005355
NeilBrownb5254dd2012-05-21 09:27:01 +10005356 /* Having calculated the 'writepos' possibly use it
5357 * to set 'stripe_addr' which is where we will write to.
5358 */
5359 if (mddev->reshape_backwards) {
5360 BUG_ON(conf->reshape_progress == 0);
5361 stripe_addr = writepos;
5362 BUG_ON((mddev->dev_sectors &
5363 ~((sector_t)reshape_sectors - 1))
5364 - reshape_sectors - stripe_addr
5365 != sector_nr);
5366 } else {
5367 BUG_ON(writepos != sector_nr + reshape_sectors);
5368 stripe_addr = sector_nr;
5369 }
5370
NeilBrownc8f517c2009-03-31 15:28:40 +11005371 /* 'writepos' is the most advanced device address we might write.
5372 * 'readpos' is the least advanced device address we might read.
5373 * 'safepos' is the least address recorded in the metadata as having
5374 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10005375 * If there is a min_offset_diff, these are adjusted either by
5376 * increasing the safepos/readpos if diff is negative, or
5377 * increasing writepos if diff is positive.
5378 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11005379 * ensure safety in the face of a crash - that must be done by userspace
5380 * making a backup of the data. So in that case there is no particular
5381 * rush to update metadata.
5382 * Otherwise if 'safepos' is behind 'writepos', then we really need to
5383 * update the metadata to advance 'safepos' to match 'readpos' so that
5384 * we can be safe in the event of a crash.
5385 * So we insist on updating metadata if safepos is behind writepos and
5386 * readpos is beyond writepos.
5387 * In any case, update the metadata every 10 seconds.
5388 * Maybe that number should be configurable, but I'm not sure it is
5389 * worth it.... maybe it could be a multiple of safemode_delay???
5390 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005391 if (conf->min_offset_diff < 0) {
5392 safepos += -conf->min_offset_diff;
5393 readpos += -conf->min_offset_diff;
5394 } else
5395 writepos += conf->min_offset_diff;
5396
NeilBrown2c810cd2012-05-21 09:27:00 +10005397 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11005398 ? (safepos > writepos && readpos < writepos)
5399 : (safepos < writepos && readpos > writepos)) ||
5400 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07005401 /* Cannot proceed until we've updated the superblock... */
5402 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005403 atomic_read(&conf->reshape_stripes)==0
5404 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5405 if (atomic_read(&conf->reshape_stripes) != 0)
5406 return 0;
NeilBrownfef9c612009-03-31 15:16:46 +11005407 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005408 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005409 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07005410 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07005411 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07005412 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrownc91abf52013-11-19 12:02:01 +11005413 test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5414 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5415 return 0;
NeilBrown52c03292006-06-26 00:27:43 -07005416 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005417 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07005418 spin_unlock_irq(&conf->device_lock);
5419 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005420 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07005421 }
5422
NeilBrownab69ae12009-03-31 15:26:47 +11005423 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11005424 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07005425 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10005426 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10005427 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005428 set_bit(STRIPE_EXPANDING, &sh->state);
5429 atomic_inc(&conf->reshape_stripes);
5430 /* If any of this stripe is beyond the end of the old
5431 * array, then we need to zero those blocks
5432 */
5433 for (j=sh->disks; j--;) {
5434 sector_t s;
5435 if (j == sh->pd_idx)
5436 continue;
NeilBrownf4168852007-02-28 20:11:53 -08005437 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11005438 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08005439 continue;
NeilBrown784052e2009-03-31 15:19:07 +11005440 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11005441 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10005442 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07005443 continue;
5444 }
5445 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
5446 set_bit(R5_Expanded, &sh->dev[j].flags);
5447 set_bit(R5_UPTODATE, &sh->dev[j].flags);
5448 }
NeilBrowna9f326e2009-09-23 18:06:41 +10005449 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07005450 set_bit(STRIPE_EXPAND_READY, &sh->state);
5451 set_bit(STRIPE_HANDLE, &sh->state);
5452 }
NeilBrownab69ae12009-03-31 15:26:47 +11005453 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07005454 }
5455 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005456 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11005457 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005458 else
NeilBrown7a661382009-03-31 15:21:40 +11005459 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07005460 spin_unlock_irq(&conf->device_lock);
5461 /* Ok, those stripe are ready. We can start scheduling
5462 * reads on the source stripes.
5463 * The source stripes are determined by mapping the first and last
5464 * block on the destination stripes.
5465 */
NeilBrown52c03292006-06-26 00:27:43 -07005466 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11005467 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11005468 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07005469 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10005470 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10005471 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11005472 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11005473 if (last_sector >= mddev->dev_sectors)
5474 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07005475 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10005476 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005477 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
5478 set_bit(STRIPE_HANDLE, &sh->state);
5479 release_stripe(sh);
5480 first_sector += STRIPE_SECTORS;
5481 }
NeilBrownab69ae12009-03-31 15:26:47 +11005482 /* Now that the sources are clearly marked, we can release
5483 * the destination stripes
5484 */
5485 while (!list_empty(&stripes)) {
5486 sh = list_entry(stripes.next, struct stripe_head, lru);
5487 list_del_init(&sh->lru);
5488 release_stripe(sh);
5489 }
NeilBrownc6207272008-02-06 01:39:52 -08005490 /* If this takes us to the resync_max point where we have to pause,
5491 * then we need to write out the superblock.
5492 */
NeilBrown7a661382009-03-31 15:21:40 +11005493 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10005494 if ((sector_nr - mddev->curr_resync_completed) * 2
5495 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08005496 /* Cannot proceed until we've updated the superblock... */
5497 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005498 atomic_read(&conf->reshape_stripes) == 0
5499 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5500 if (atomic_read(&conf->reshape_stripes) != 0)
5501 goto ret;
NeilBrownfef9c612009-03-31 15:16:46 +11005502 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005503 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005504 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08005505 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5506 md_wakeup_thread(mddev->thread);
5507 wait_event(mddev->sb_wait,
5508 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
NeilBrownc91abf52013-11-19 12:02:01 +11005509 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5510 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5511 goto ret;
NeilBrownc6207272008-02-06 01:39:52 -08005512 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005513 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08005514 spin_unlock_irq(&conf->device_lock);
5515 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005516 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08005517 }
NeilBrownc91abf52013-11-19 12:02:01 +11005518ret:
NeilBrown7a661382009-03-31 15:21:40 +11005519 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07005520}
5521
NeilBrown09314792015-02-19 16:04:40 +11005522static inline sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
NeilBrown52c03292006-06-26 00:27:43 -07005523{
NeilBrownd1688a62011-10-11 16:49:52 +11005524 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07005525 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11005526 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11005527 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07005528 int still_degraded = 0;
5529 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530
NeilBrown72626682005-09-09 16:23:54 -07005531 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11005533
NeilBrown29269552006-03-27 01:18:10 -08005534 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
5535 end_reshape(conf);
5536 return 0;
5537 }
NeilBrown72626682005-09-09 16:23:54 -07005538
5539 if (mddev->curr_resync < max_sector) /* aborted */
5540 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
5541 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07005542 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07005543 conf->fullsync = 0;
5544 bitmap_close_sync(mddev->bitmap);
5545
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546 return 0;
5547 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08005548
NeilBrown64bd6602009-08-03 10:59:58 +10005549 /* Allow raid5_quiesce to complete */
5550 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
5551
NeilBrown52c03292006-06-26 00:27:43 -07005552 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
5553 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08005554
NeilBrownc6207272008-02-06 01:39:52 -08005555 /* No need to check resync_max as we never do more than one
5556 * stripe, and as resync_max will always be on a chunk boundary,
5557 * if the check in md_do_sync didn't fire, there is no chance
5558 * of overstepping resync_max here
5559 */
5560
NeilBrown16a53ec2006-06-26 00:27:38 -07005561 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562 * to resync, then assert that we are finished, because there is
5563 * nothing we can do.
5564 */
NeilBrown3285edf2006-06-26 00:27:55 -07005565 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005566 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11005567 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07005568 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 return rv;
5570 }
majianpeng6f608042013-04-24 11:42:41 +10005571 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
5572 !conf->fullsync &&
5573 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
5574 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07005575 /* we can skip this block, and probably more */
5576 sync_blocks /= STRIPE_SECTORS;
5577 *skipped = 1;
5578 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
5579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580
NeilBrownb47490c2008-02-06 01:39:50 -08005581 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
5582
NeilBrowna8c906c2009-06-09 14:39:59 +10005583 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10005585 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07005587 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08005589 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005591 /* Need to check if array will still be degraded after recovery/resync
Eric Mei16d9cfa2015-01-06 09:35:02 -08005592 * Note in case of > 1 drive failures it's possible we're rebuilding
5593 * one drive while leaving another faulty drive in array.
NeilBrown16a53ec2006-06-26 00:27:38 -07005594 */
Eric Mei16d9cfa2015-01-06 09:35:02 -08005595 rcu_read_lock();
5596 for (i = 0; i < conf->raid_disks; i++) {
5597 struct md_rdev *rdev = ACCESS_ONCE(conf->disks[i].rdev);
5598
5599 if (rdev == NULL || test_bit(Faulty, &rdev->flags))
NeilBrown16a53ec2006-06-26 00:27:38 -07005600 still_degraded = 1;
Eric Mei16d9cfa2015-01-06 09:35:02 -08005601 }
5602 rcu_read_unlock();
NeilBrown16a53ec2006-06-26 00:27:38 -07005603
5604 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
5605
NeilBrown83206d62011-07-26 11:19:49 +10005606 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Eivind Sarto053f5b62014-06-09 17:06:19 -07005607 set_bit(STRIPE_HANDLE, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609 release_stripe(sh);
5610
5611 return STRIPE_SECTORS;
5612}
5613
NeilBrownd1688a62011-10-11 16:49:52 +11005614static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005615{
5616 /* We may not be able to submit a whole bio at once as there
5617 * may not be enough stripe_heads available.
5618 * We cannot pre-allocate enough stripe_heads as we may need
5619 * more than exist in the cache (if we allow ever large chunks).
5620 * So we do one stripe head at a time and record in
5621 * ->bi_hw_segments how many have been done.
5622 *
5623 * We *know* that this entire raid_bio is in one chunk, so
5624 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
5625 */
5626 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11005627 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005628 sector_t sector, logical_sector, last_sector;
5629 int scnt = 0;
5630 int remaining;
5631 int handled = 0;
5632
Kent Overstreet4f024f32013-10-11 15:44:27 -07005633 logical_sector = raid_bio->bi_iter.bi_sector &
5634 ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11005635 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11005636 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005637 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005638
5639 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08005640 logical_sector += STRIPE_SECTORS,
5641 sector += STRIPE_SECTORS,
5642 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005643
Shaohua Lie7836bd62012-07-19 16:01:31 +10005644 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005645 /* already done this stripe */
5646 continue;
5647
hui jiao2844dc32014-06-05 11:34:24 +08005648 sh = get_active_stripe(conf, sector, 0, 1, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005649
5650 if (!sh) {
5651 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10005652 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005653 conf->retry_read_aligned = raid_bio;
5654 return handled;
5655 }
5656
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005657 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0, 0)) {
Neil Brown387bb172007-02-08 14:20:29 -08005658 release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10005659 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08005660 conf->retry_read_aligned = raid_bio;
5661 return handled;
5662 }
5663
majianpeng3f9e7c12012-07-31 10:04:21 +10005664 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07005665 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005666 release_stripe(sh);
5667 handled++;
5668 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10005669 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005670 if (remaining == 0) {
5671 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
5672 raid_bio, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10005673 bio_endio(raid_bio, 0);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005674 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005675 if (atomic_dec_and_test(&conf->active_aligned_reads))
5676 wake_up(&conf->wait_for_stripe);
5677 return handled;
5678}
5679
Shaohua Libfc90cb2013-08-29 15:40:32 +08005680static int handle_active_stripes(struct r5conf *conf, int group,
Shaohua Li566c09c2013-11-14 15:16:17 +11005681 struct r5worker *worker,
5682 struct list_head *temp_inactive_list)
Shaohua Li46a06402012-08-02 08:33:15 +10005683{
5684 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +11005685 int i, batch_size = 0, hash;
5686 bool release_inactive = false;
Shaohua Li46a06402012-08-02 08:33:15 +10005687
5688 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08005689 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10005690 batch[batch_size++] = sh;
5691
Shaohua Li566c09c2013-11-14 15:16:17 +11005692 if (batch_size == 0) {
5693 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5694 if (!list_empty(temp_inactive_list + i))
5695 break;
5696 if (i == NR_STRIPE_HASH_LOCKS)
5697 return batch_size;
5698 release_inactive = true;
5699 }
Shaohua Li46a06402012-08-02 08:33:15 +10005700 spin_unlock_irq(&conf->device_lock);
5701
Shaohua Li566c09c2013-11-14 15:16:17 +11005702 release_inactive_stripe_list(conf, temp_inactive_list,
5703 NR_STRIPE_HASH_LOCKS);
5704
5705 if (release_inactive) {
5706 spin_lock_irq(&conf->device_lock);
5707 return 0;
5708 }
5709
Shaohua Li46a06402012-08-02 08:33:15 +10005710 for (i = 0; i < batch_size; i++)
5711 handle_stripe(batch[i]);
5712
5713 cond_resched();
5714
5715 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11005716 for (i = 0; i < batch_size; i++) {
5717 hash = batch[i]->hash_lock_index;
5718 __release_stripe(conf, batch[i], &temp_inactive_list[hash]);
5719 }
Shaohua Li46a06402012-08-02 08:33:15 +10005720 return batch_size;
5721}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005722
Shaohua Li851c30c2013-08-28 14:30:16 +08005723static void raid5_do_work(struct work_struct *work)
5724{
5725 struct r5worker *worker = container_of(work, struct r5worker, work);
5726 struct r5worker_group *group = worker->group;
5727 struct r5conf *conf = group->conf;
5728 int group_id = group - conf->worker_groups;
5729 int handled;
5730 struct blk_plug plug;
5731
5732 pr_debug("+++ raid5worker active\n");
5733
5734 blk_start_plug(&plug);
5735 handled = 0;
5736 spin_lock_irq(&conf->device_lock);
5737 while (1) {
5738 int batch_size, released;
5739
Shaohua Li566c09c2013-11-14 15:16:17 +11005740 released = release_stripe_list(conf, worker->temp_inactive_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08005741
Shaohua Li566c09c2013-11-14 15:16:17 +11005742 batch_size = handle_active_stripes(conf, group_id, worker,
5743 worker->temp_inactive_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +08005744 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08005745 if (!batch_size && !released)
5746 break;
5747 handled += batch_size;
5748 }
5749 pr_debug("%d stripes handled\n", handled);
5750
5751 spin_unlock_irq(&conf->device_lock);
5752 blk_finish_plug(&plug);
5753
5754 pr_debug("--- raid5worker inactive\n");
5755}
5756
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757/*
5758 * This is our raid5 kernel thread.
5759 *
5760 * We scan the hash table for stripes which can be handled now.
5761 * During the scan, completed stripes are saved for us by the interrupt
5762 * handler, so that they will not have to wait for our next wakeup.
5763 */
Shaohua Li4ed87312012-10-11 13:34:00 +11005764static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765{
Shaohua Li4ed87312012-10-11 13:34:00 +11005766 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005767 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005769 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770
Dan Williams45b42332007-07-09 11:56:43 -07005771 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772
5773 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005775 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776 handled = 0;
5777 spin_lock_irq(&conf->device_lock);
5778 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005779 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08005780 int batch_size, released;
5781
Shaohua Li566c09c2013-11-14 15:16:17 +11005782 released = release_stripe_list(conf, conf->temp_inactive_list);
NeilBrownedbe83a2015-02-26 12:47:56 +11005783 if (released)
5784 clear_bit(R5_DID_ALLOC, &conf->cache_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785
NeilBrown0021b7b2012-07-31 09:08:14 +02005786 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10005787 !list_empty(&conf->bitmap_list)) {
5788 /* Now is a good time to flush some bitmap updates */
5789 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08005790 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07005791 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08005792 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10005793 conf->seq_write = conf->seq_flush;
Shaohua Li566c09c2013-11-14 15:16:17 +11005794 activate_bit_delay(conf, conf->temp_inactive_list);
NeilBrown72626682005-09-09 16:23:54 -07005795 }
NeilBrown0021b7b2012-07-31 09:08:14 +02005796 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07005797
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005798 while ((bio = remove_bio_from_retry(conf))) {
5799 int ok;
5800 spin_unlock_irq(&conf->device_lock);
5801 ok = retry_aligned_read(conf, bio);
5802 spin_lock_irq(&conf->device_lock);
5803 if (!ok)
5804 break;
5805 handled++;
5806 }
5807
Shaohua Li566c09c2013-11-14 15:16:17 +11005808 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL,
5809 conf->temp_inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08005810 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 break;
Shaohua Li46a06402012-08-02 08:33:15 +10005812 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813
Shaohua Li46a06402012-08-02 08:33:15 +10005814 if (mddev->flags & ~(1<<MD_CHANGE_PENDING)) {
5815 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10005816 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10005817 spin_lock_irq(&conf->device_lock);
5818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 }
Dan Williams45b42332007-07-09 11:56:43 -07005820 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821
5822 spin_unlock_irq(&conf->device_lock);
NeilBrownedbe83a2015-02-26 12:47:56 +11005823 if (test_and_clear_bit(R5_ALLOC_MORE, &conf->cache_state)) {
5824 grow_one_stripe(conf, __GFP_NOWARN);
5825 /* Set flag even if allocation failed. This helps
5826 * slow down allocation requests when mem is short
5827 */
5828 set_bit(R5_DID_ALLOC, &conf->cache_state);
5829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830
Dan Williamsc9f21aa2008-07-23 12:05:51 -07005831 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005832 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833
Dan Williams45b42332007-07-09 11:56:43 -07005834 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835}
5836
NeilBrown3f294f42005-11-08 21:39:25 -08005837static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005838raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08005839{
NeilBrown7b1485b2014-12-15 12:56:59 +11005840 struct r5conf *conf;
5841 int ret = 0;
5842 spin_lock(&mddev->lock);
5843 conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08005844 if (conf)
NeilBrownedbe83a2015-02-26 12:47:56 +11005845 ret = sprintf(page, "%d\n", conf->min_nr_stripes);
NeilBrown7b1485b2014-12-15 12:56:59 +11005846 spin_unlock(&mddev->lock);
5847 return ret;
NeilBrown3f294f42005-11-08 21:39:25 -08005848}
5849
NeilBrownc41d4ac2010-06-01 19:37:24 +10005850int
NeilBrownfd01b882011-10-11 16:47:53 +11005851raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10005852{
NeilBrownd1688a62011-10-11 16:49:52 +11005853 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005854 int err;
5855
5856 if (size <= 16 || size > 32768)
5857 return -EINVAL;
NeilBrown486f0642015-02-25 12:10:35 +11005858
NeilBrownedbe83a2015-02-26 12:47:56 +11005859 conf->min_nr_stripes = size;
NeilBrown486f0642015-02-25 12:10:35 +11005860 while (size < conf->max_nr_stripes &&
5861 drop_one_stripe(conf))
5862 ;
5863
NeilBrownedbe83a2015-02-26 12:47:56 +11005864
NeilBrownc41d4ac2010-06-01 19:37:24 +10005865 err = md_allow_write(mddev);
5866 if (err)
5867 return err;
NeilBrown486f0642015-02-25 12:10:35 +11005868
5869 while (size > conf->max_nr_stripes)
5870 if (!grow_one_stripe(conf, GFP_KERNEL))
5871 break;
5872
NeilBrownc41d4ac2010-06-01 19:37:24 +10005873 return 0;
5874}
5875EXPORT_SYMBOL(raid5_set_cache_size);
5876
NeilBrown3f294f42005-11-08 21:39:25 -08005877static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005878raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08005879{
NeilBrown67918752014-12-15 12:57:01 +11005880 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07005881 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07005882 int err;
5883
NeilBrown3f294f42005-11-08 21:39:25 -08005884 if (len >= PAGE_SIZE)
5885 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005886 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08005887 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11005888 err = mddev_lock(mddev);
Dan Williamsb5470dc2008-06-27 21:44:04 -07005889 if (err)
5890 return err;
NeilBrown67918752014-12-15 12:57:01 +11005891 conf = mddev->private;
5892 if (!conf)
5893 err = -ENODEV;
5894 else
5895 err = raid5_set_cache_size(mddev, new);
5896 mddev_unlock(mddev);
5897
5898 return err ?: len;
NeilBrown3f294f42005-11-08 21:39:25 -08005899}
NeilBrown007583c2005-11-08 21:39:30 -08005900
NeilBrown96de1e62005-11-08 21:39:39 -08005901static struct md_sysfs_entry
5902raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
5903 raid5_show_stripe_cache_size,
5904 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08005905
5906static ssize_t
Markus Stockhausend06f1912014-12-15 12:57:05 +11005907raid5_show_rmw_level(struct mddev *mddev, char *page)
5908{
5909 struct r5conf *conf = mddev->private;
5910 if (conf)
5911 return sprintf(page, "%d\n", conf->rmw_level);
5912 else
5913 return 0;
5914}
5915
5916static ssize_t
5917raid5_store_rmw_level(struct mddev *mddev, const char *page, size_t len)
5918{
5919 struct r5conf *conf = mddev->private;
5920 unsigned long new;
5921
5922 if (!conf)
5923 return -ENODEV;
5924
5925 if (len >= PAGE_SIZE)
5926 return -EINVAL;
5927
5928 if (kstrtoul(page, 10, &new))
5929 return -EINVAL;
5930
5931 if (new != PARITY_DISABLE_RMW && !raid6_call.xor_syndrome)
5932 return -EINVAL;
5933
5934 if (new != PARITY_DISABLE_RMW &&
5935 new != PARITY_ENABLE_RMW &&
5936 new != PARITY_PREFER_RMW)
5937 return -EINVAL;
5938
5939 conf->rmw_level = new;
5940 return len;
5941}
5942
5943static struct md_sysfs_entry
5944raid5_rmw_level = __ATTR(rmw_level, S_IRUGO | S_IWUSR,
5945 raid5_show_rmw_level,
5946 raid5_store_rmw_level);
5947
5948
5949static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005950raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005951{
NeilBrown7b1485b2014-12-15 12:56:59 +11005952 struct r5conf *conf;
5953 int ret = 0;
5954 spin_lock(&mddev->lock);
5955 conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005956 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11005957 ret = sprintf(page, "%d\n", conf->bypass_threshold);
5958 spin_unlock(&mddev->lock);
5959 return ret;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005960}
5961
5962static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005963raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005964{
NeilBrown67918752014-12-15 12:57:01 +11005965 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07005966 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11005967 int err;
5968
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005969 if (len >= PAGE_SIZE)
5970 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005971 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005972 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11005973
5974 err = mddev_lock(mddev);
5975 if (err)
5976 return err;
5977 conf = mddev->private;
5978 if (!conf)
5979 err = -ENODEV;
NeilBrownedbe83a2015-02-26 12:47:56 +11005980 else if (new > conf->min_nr_stripes)
NeilBrown67918752014-12-15 12:57:01 +11005981 err = -EINVAL;
5982 else
5983 conf->bypass_threshold = new;
5984 mddev_unlock(mddev);
5985 return err ?: len;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005986}
5987
5988static struct md_sysfs_entry
5989raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
5990 S_IRUGO | S_IWUSR,
5991 raid5_show_preread_threshold,
5992 raid5_store_preread_threshold);
5993
5994static ssize_t
Shaohua Lid592a992014-05-21 17:57:44 +08005995raid5_show_skip_copy(struct mddev *mddev, char *page)
5996{
NeilBrown7b1485b2014-12-15 12:56:59 +11005997 struct r5conf *conf;
5998 int ret = 0;
5999 spin_lock(&mddev->lock);
6000 conf = mddev->private;
Shaohua Lid592a992014-05-21 17:57:44 +08006001 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006002 ret = sprintf(page, "%d\n", conf->skip_copy);
6003 spin_unlock(&mddev->lock);
6004 return ret;
Shaohua Lid592a992014-05-21 17:57:44 +08006005}
6006
6007static ssize_t
6008raid5_store_skip_copy(struct mddev *mddev, const char *page, size_t len)
6009{
NeilBrown67918752014-12-15 12:57:01 +11006010 struct r5conf *conf;
Shaohua Lid592a992014-05-21 17:57:44 +08006011 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006012 int err;
6013
Shaohua Lid592a992014-05-21 17:57:44 +08006014 if (len >= PAGE_SIZE)
6015 return -EINVAL;
Shaohua Lid592a992014-05-21 17:57:44 +08006016 if (kstrtoul(page, 10, &new))
6017 return -EINVAL;
6018 new = !!new;
Shaohua Lid592a992014-05-21 17:57:44 +08006019
NeilBrown67918752014-12-15 12:57:01 +11006020 err = mddev_lock(mddev);
6021 if (err)
6022 return err;
6023 conf = mddev->private;
6024 if (!conf)
6025 err = -ENODEV;
6026 else if (new != conf->skip_copy) {
6027 mddev_suspend(mddev);
6028 conf->skip_copy = new;
6029 if (new)
6030 mddev->queue->backing_dev_info.capabilities |=
6031 BDI_CAP_STABLE_WRITES;
6032 else
6033 mddev->queue->backing_dev_info.capabilities &=
6034 ~BDI_CAP_STABLE_WRITES;
6035 mddev_resume(mddev);
6036 }
6037 mddev_unlock(mddev);
6038 return err ?: len;
Shaohua Lid592a992014-05-21 17:57:44 +08006039}
6040
6041static struct md_sysfs_entry
6042raid5_skip_copy = __ATTR(skip_copy, S_IRUGO | S_IWUSR,
6043 raid5_show_skip_copy,
6044 raid5_store_skip_copy);
6045
Shaohua Lid592a992014-05-21 17:57:44 +08006046static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006047stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006048{
NeilBrownd1688a62011-10-11 16:49:52 +11006049 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006050 if (conf)
6051 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
6052 else
6053 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08006054}
6055
NeilBrown96de1e62005-11-08 21:39:39 -08006056static struct md_sysfs_entry
6057raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08006058
Shaohua Lib7214202013-08-27 17:50:42 +08006059static ssize_t
6060raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
6061{
NeilBrown7b1485b2014-12-15 12:56:59 +11006062 struct r5conf *conf;
6063 int ret = 0;
6064 spin_lock(&mddev->lock);
6065 conf = mddev->private;
Shaohua Lib7214202013-08-27 17:50:42 +08006066 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006067 ret = sprintf(page, "%d\n", conf->worker_cnt_per_group);
6068 spin_unlock(&mddev->lock);
6069 return ret;
Shaohua Lib7214202013-08-27 17:50:42 +08006070}
6071
majianpeng60aaf932013-11-14 15:16:20 +11006072static int alloc_thread_groups(struct r5conf *conf, int cnt,
6073 int *group_cnt,
6074 int *worker_cnt_per_group,
6075 struct r5worker_group **worker_groups);
Shaohua Lib7214202013-08-27 17:50:42 +08006076static ssize_t
6077raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
6078{
NeilBrown67918752014-12-15 12:57:01 +11006079 struct r5conf *conf;
Shaohua Lib7214202013-08-27 17:50:42 +08006080 unsigned long new;
6081 int err;
majianpeng60aaf932013-11-14 15:16:20 +11006082 struct r5worker_group *new_groups, *old_groups;
6083 int group_cnt, worker_cnt_per_group;
Shaohua Lib7214202013-08-27 17:50:42 +08006084
6085 if (len >= PAGE_SIZE)
6086 return -EINVAL;
Shaohua Lib7214202013-08-27 17:50:42 +08006087 if (kstrtoul(page, 10, &new))
6088 return -EINVAL;
6089
NeilBrown67918752014-12-15 12:57:01 +11006090 err = mddev_lock(mddev);
Shaohua Lib7214202013-08-27 17:50:42 +08006091 if (err)
6092 return err;
NeilBrown67918752014-12-15 12:57:01 +11006093 conf = mddev->private;
6094 if (!conf)
6095 err = -ENODEV;
6096 else if (new != conf->worker_cnt_per_group) {
6097 mddev_suspend(mddev);
6098
6099 old_groups = conf->worker_groups;
6100 if (old_groups)
6101 flush_workqueue(raid5_wq);
6102
6103 err = alloc_thread_groups(conf, new,
6104 &group_cnt, &worker_cnt_per_group,
6105 &new_groups);
6106 if (!err) {
6107 spin_lock_irq(&conf->device_lock);
6108 conf->group_cnt = group_cnt;
6109 conf->worker_cnt_per_group = worker_cnt_per_group;
6110 conf->worker_groups = new_groups;
6111 spin_unlock_irq(&conf->device_lock);
6112
6113 if (old_groups)
6114 kfree(old_groups[0].workers);
6115 kfree(old_groups);
6116 }
6117 mddev_resume(mddev);
6118 }
6119 mddev_unlock(mddev);
6120
6121 return err ?: len;
Shaohua Lib7214202013-08-27 17:50:42 +08006122}
6123
6124static struct md_sysfs_entry
6125raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
6126 raid5_show_group_thread_cnt,
6127 raid5_store_group_thread_cnt);
6128
NeilBrown007583c2005-11-08 21:39:30 -08006129static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08006130 &raid5_stripecache_size.attr,
6131 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006132 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08006133 &raid5_group_thread_cnt.attr,
Shaohua Lid592a992014-05-21 17:57:44 +08006134 &raid5_skip_copy.attr,
Markus Stockhausend06f1912014-12-15 12:57:05 +11006135 &raid5_rmw_level.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08006136 NULL,
6137};
NeilBrown007583c2005-11-08 21:39:30 -08006138static struct attribute_group raid5_attrs_group = {
6139 .name = NULL,
6140 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08006141};
6142
majianpeng60aaf932013-11-14 15:16:20 +11006143static int alloc_thread_groups(struct r5conf *conf, int cnt,
6144 int *group_cnt,
6145 int *worker_cnt_per_group,
6146 struct r5worker_group **worker_groups)
Shaohua Li851c30c2013-08-28 14:30:16 +08006147{
Shaohua Li566c09c2013-11-14 15:16:17 +11006148 int i, j, k;
Shaohua Li851c30c2013-08-28 14:30:16 +08006149 ssize_t size;
6150 struct r5worker *workers;
6151
majianpeng60aaf932013-11-14 15:16:20 +11006152 *worker_cnt_per_group = cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +08006153 if (cnt == 0) {
majianpeng60aaf932013-11-14 15:16:20 +11006154 *group_cnt = 0;
6155 *worker_groups = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08006156 return 0;
6157 }
majianpeng60aaf932013-11-14 15:16:20 +11006158 *group_cnt = num_possible_nodes();
Shaohua Li851c30c2013-08-28 14:30:16 +08006159 size = sizeof(struct r5worker) * cnt;
majianpeng60aaf932013-11-14 15:16:20 +11006160 workers = kzalloc(size * *group_cnt, GFP_NOIO);
6161 *worker_groups = kzalloc(sizeof(struct r5worker_group) *
6162 *group_cnt, GFP_NOIO);
6163 if (!*worker_groups || !workers) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006164 kfree(workers);
majianpeng60aaf932013-11-14 15:16:20 +11006165 kfree(*worker_groups);
Shaohua Li851c30c2013-08-28 14:30:16 +08006166 return -ENOMEM;
6167 }
6168
majianpeng60aaf932013-11-14 15:16:20 +11006169 for (i = 0; i < *group_cnt; i++) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006170 struct r5worker_group *group;
6171
NeilBrown0c775d52013-11-25 11:12:43 +11006172 group = &(*worker_groups)[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08006173 INIT_LIST_HEAD(&group->handle_list);
6174 group->conf = conf;
6175 group->workers = workers + i * cnt;
6176
6177 for (j = 0; j < cnt; j++) {
Shaohua Li566c09c2013-11-14 15:16:17 +11006178 struct r5worker *worker = group->workers + j;
6179 worker->group = group;
6180 INIT_WORK(&worker->work, raid5_do_work);
6181
6182 for (k = 0; k < NR_STRIPE_HASH_LOCKS; k++)
6183 INIT_LIST_HEAD(worker->temp_inactive_list + k);
Shaohua Li851c30c2013-08-28 14:30:16 +08006184 }
6185 }
6186
6187 return 0;
6188}
6189
6190static void free_thread_groups(struct r5conf *conf)
6191{
6192 if (conf->worker_groups)
6193 kfree(conf->worker_groups[0].workers);
6194 kfree(conf->worker_groups);
6195 conf->worker_groups = NULL;
6196}
6197
Dan Williams80c3a6c2009-03-17 18:10:40 -07006198static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11006199raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07006200{
NeilBrownd1688a62011-10-11 16:49:52 +11006201 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006202
6203 if (!sectors)
6204 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006205 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11006206 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11006207 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006208
Andre Noll9d8f0362009-06-18 08:45:01 +10006209 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10006210 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006211 return sectors * (raid_disks - conf->max_degraded);
6212}
6213
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306214static void free_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6215{
6216 safe_put_page(percpu->spare_page);
shli@kernel.org46d5b782014-12-15 12:57:02 +11006217 if (percpu->scribble)
6218 flex_array_free(percpu->scribble);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306219 percpu->spare_page = NULL;
6220 percpu->scribble = NULL;
6221}
6222
6223static int alloc_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6224{
6225 if (conf->level == 6 && !percpu->spare_page)
6226 percpu->spare_page = alloc_page(GFP_KERNEL);
6227 if (!percpu->scribble)
shli@kernel.org46d5b782014-12-15 12:57:02 +11006228 percpu->scribble = scribble_alloc(max(conf->raid_disks,
NeilBrown738a2732015-05-08 18:19:39 +10006229 conf->previous_raid_disks),
6230 max(conf->chunk_sectors,
6231 conf->prev_chunk_sectors)
6232 / STRIPE_SECTORS,
6233 GFP_KERNEL);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306234
6235 if (!percpu->scribble || (conf->level == 6 && !percpu->spare_page)) {
6236 free_scratch_buffer(conf, percpu);
6237 return -ENOMEM;
6238 }
6239
6240 return 0;
6241}
6242
NeilBrownd1688a62011-10-11 16:49:52 +11006243static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006244{
Dan Williams36d1c642009-07-14 11:48:22 -07006245 unsigned long cpu;
6246
6247 if (!conf->percpu)
6248 return;
6249
Dan Williams36d1c642009-07-14 11:48:22 -07006250#ifdef CONFIG_HOTPLUG_CPU
6251 unregister_cpu_notifier(&conf->cpu_notify);
6252#endif
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306253
6254 get_online_cpus();
6255 for_each_possible_cpu(cpu)
6256 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
Dan Williams36d1c642009-07-14 11:48:22 -07006257 put_online_cpus();
6258
6259 free_percpu(conf->percpu);
6260}
6261
NeilBrownd1688a62011-10-11 16:49:52 +11006262static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10006263{
NeilBrownedbe83a2015-02-26 12:47:56 +11006264 if (conf->shrinker.seeks)
6265 unregister_shrinker(&conf->shrinker);
Shaohua Li851c30c2013-08-28 14:30:16 +08006266 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006267 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07006268 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006269 kfree(conf->disks);
6270 kfree(conf->stripe_hashtbl);
6271 kfree(conf);
6272}
6273
Dan Williams36d1c642009-07-14 11:48:22 -07006274#ifdef CONFIG_HOTPLUG_CPU
6275static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
6276 void *hcpu)
6277{
NeilBrownd1688a62011-10-11 16:49:52 +11006278 struct r5conf *conf = container_of(nfb, struct r5conf, cpu_notify);
Dan Williams36d1c642009-07-14 11:48:22 -07006279 long cpu = (long)hcpu;
6280 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
6281
6282 switch (action) {
6283 case CPU_UP_PREPARE:
6284 case CPU_UP_PREPARE_FROZEN:
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306285 if (alloc_scratch_buffer(conf, percpu)) {
Dan Williams36d1c642009-07-14 11:48:22 -07006286 pr_err("%s: failed memory allocation for cpu%ld\n",
6287 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07006288 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07006289 }
6290 break;
6291 case CPU_DEAD:
6292 case CPU_DEAD_FROZEN:
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306293 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
Dan Williams36d1c642009-07-14 11:48:22 -07006294 break;
6295 default:
6296 break;
6297 }
6298 return NOTIFY_OK;
6299}
6300#endif
6301
NeilBrownd1688a62011-10-11 16:49:52 +11006302static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006303{
6304 unsigned long cpu;
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306305 int err = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006306
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306307 conf->percpu = alloc_percpu(struct raid5_percpu);
6308 if (!conf->percpu)
Dan Williams36d1c642009-07-14 11:48:22 -07006309 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006310
Dan Williams36d1c642009-07-14 11:48:22 -07006311#ifdef CONFIG_HOTPLUG_CPU
6312 conf->cpu_notify.notifier_call = raid456_cpu_notify;
6313 conf->cpu_notify.priority = 0;
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306314 err = register_cpu_notifier(&conf->cpu_notify);
6315 if (err)
6316 return err;
Dan Williams36d1c642009-07-14 11:48:22 -07006317#endif
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306318
6319 get_online_cpus();
6320 for_each_present_cpu(cpu) {
6321 err = alloc_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
6322 if (err) {
6323 pr_err("%s: failed memory allocation for cpu%ld\n",
6324 __func__, cpu);
6325 break;
6326 }
6327 }
Dan Williams36d1c642009-07-14 11:48:22 -07006328 put_online_cpus();
6329
6330 return err;
6331}
6332
NeilBrownedbe83a2015-02-26 12:47:56 +11006333static unsigned long raid5_cache_scan(struct shrinker *shrink,
6334 struct shrink_control *sc)
6335{
6336 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
6337 int ret = 0;
6338 while (ret < sc->nr_to_scan) {
6339 if (drop_one_stripe(conf) == 0)
6340 return SHRINK_STOP;
6341 ret++;
6342 }
6343 return ret;
6344}
6345
6346static unsigned long raid5_cache_count(struct shrinker *shrink,
6347 struct shrink_control *sc)
6348{
6349 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
6350
6351 if (conf->max_nr_stripes < conf->min_nr_stripes)
6352 /* unlikely, but not impossible */
6353 return 0;
6354 return conf->max_nr_stripes - conf->min_nr_stripes;
6355}
6356
NeilBrownd1688a62011-10-11 16:49:52 +11006357static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358{
NeilBrownd1688a62011-10-11 16:49:52 +11006359 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006360 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11006361 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10006363 char pers_name[6];
Shaohua Li566c09c2013-11-14 15:16:17 +11006364 int i;
majianpeng60aaf932013-11-14 15:16:20 +11006365 int group_cnt, worker_cnt_per_group;
6366 struct r5worker_group *new_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367
NeilBrown91adb562009-03-31 14:39:39 +11006368 if (mddev->new_level != 5
6369 && mddev->new_level != 4
6370 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10006371 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11006372 mdname(mddev), mddev->new_level);
6373 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374 }
NeilBrown91adb562009-03-31 14:39:39 +11006375 if ((mddev->new_level == 5
6376 && !algorithm_valid_raid5(mddev->new_layout)) ||
6377 (mddev->new_level == 6
6378 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10006379 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11006380 mdname(mddev), mddev->new_layout);
6381 return ERR_PTR(-EIO);
6382 }
6383 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10006384 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11006385 mdname(mddev), mddev->raid_disks);
6386 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11006387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388
Andre Noll664e7c42009-06-18 08:45:27 +10006389 if (!mddev->new_chunk_sectors ||
6390 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
6391 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10006392 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
6393 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11006394 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11006395 }
6396
NeilBrownd1688a62011-10-11 16:49:52 +11006397 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11006398 if (conf == NULL)
6399 goto abort;
Shaohua Li851c30c2013-08-28 14:30:16 +08006400 /* Don't enable multi-threading by default*/
majianpeng60aaf932013-11-14 15:16:20 +11006401 if (!alloc_thread_groups(conf, 0, &group_cnt, &worker_cnt_per_group,
6402 &new_group)) {
6403 conf->group_cnt = group_cnt;
6404 conf->worker_cnt_per_group = worker_cnt_per_group;
6405 conf->worker_groups = new_group;
6406 } else
Shaohua Li851c30c2013-08-28 14:30:16 +08006407 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11006408 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006409 seqcount_init(&conf->gen_lock);
Dan Williamsf5efd452009-10-16 15:55:38 +11006410 init_waitqueue_head(&conf->wait_for_stripe);
6411 init_waitqueue_head(&conf->wait_for_overlap);
6412 INIT_LIST_HEAD(&conf->handle_list);
6413 INIT_LIST_HEAD(&conf->hold_list);
6414 INIT_LIST_HEAD(&conf->delayed_list);
6415 INIT_LIST_HEAD(&conf->bitmap_list);
Shaohua Li773ca822013-08-27 17:50:39 +08006416 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11006417 atomic_set(&conf->active_stripes, 0);
6418 atomic_set(&conf->preread_active_stripes, 0);
6419 atomic_set(&conf->active_aligned_reads, 0);
6420 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11006421 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11006422
6423 conf->raid_disks = mddev->raid_disks;
6424 if (mddev->reshape_position == MaxSector)
6425 conf->previous_raid_disks = mddev->raid_disks;
6426 else
6427 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006428 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006429
NeilBrown5e5e3e72009-10-16 16:35:30 +11006430 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11006431 GFP_KERNEL);
6432 if (!conf->disks)
6433 goto abort;
6434
6435 conf->mddev = mddev;
6436
6437 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
6438 goto abort;
6439
Shaohua Li566c09c2013-11-14 15:16:17 +11006440 /* We init hash_locks[0] separately to that it can be used
6441 * as the reference lock in the spin_lock_nest_lock() call
6442 * in lock_all_device_hash_locks_irq in order to convince
6443 * lockdep that we know what we are doing.
6444 */
6445 spin_lock_init(conf->hash_locks);
6446 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
6447 spin_lock_init(conf->hash_locks + i);
6448
6449 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6450 INIT_LIST_HEAD(conf->inactive_list + i);
6451
6452 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6453 INIT_LIST_HEAD(conf->temp_inactive_list + i);
6454
Dan Williams36d1c642009-07-14 11:48:22 -07006455 conf->level = mddev->new_level;
shli@kernel.org46d5b782014-12-15 12:57:02 +11006456 conf->chunk_sectors = mddev->new_chunk_sectors;
Dan Williams36d1c642009-07-14 11:48:22 -07006457 if (raid5_alloc_percpu(conf) != 0)
6458 goto abort;
6459
NeilBrown0c55e022010-05-03 14:09:02 +10006460 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006461
NeilBrowndafb20f2012-03-19 12:46:39 +11006462 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11006463 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006464 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11006465 || raid_disk < 0)
6466 continue;
6467 disk = conf->disks + raid_disk;
6468
NeilBrown17045f52011-12-23 10:17:53 +11006469 if (test_bit(Replacement, &rdev->flags)) {
6470 if (disk->replacement)
6471 goto abort;
6472 disk->replacement = rdev;
6473 } else {
6474 if (disk->rdev)
6475 goto abort;
6476 disk->rdev = rdev;
6477 }
NeilBrown91adb562009-03-31 14:39:39 +11006478
6479 if (test_bit(In_sync, &rdev->flags)) {
6480 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10006481 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
6482 " disk %d\n",
6483 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05006484 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11006485 /* Cannot rely on bitmap to complete recovery */
6486 conf->fullsync = 1;
6487 }
6488
NeilBrown91adb562009-03-31 14:39:39 +11006489 conf->level = mddev->new_level;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006490 if (conf->level == 6) {
NeilBrown91adb562009-03-31 14:39:39 +11006491 conf->max_degraded = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006492 if (raid6_call.xor_syndrome)
6493 conf->rmw_level = PARITY_ENABLE_RMW;
6494 else
6495 conf->rmw_level = PARITY_DISABLE_RMW;
6496 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006497 conf->max_degraded = 1;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006498 conf->rmw_level = PARITY_ENABLE_RMW;
6499 }
NeilBrown91adb562009-03-31 14:39:39 +11006500 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11006501 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11006502 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10006503 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11006504 conf->prev_algo = mddev->layout;
6505 }
NeilBrown91adb562009-03-31 14:39:39 +11006506
NeilBrownedbe83a2015-02-26 12:47:56 +11006507 conf->min_nr_stripes = NR_STRIPES;
6508 memory = conf->min_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11006509 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
Shaohua Li4bda5562013-11-14 15:16:17 +11006510 atomic_set(&conf->empty_inactive_list_nr, NR_STRIPE_HASH_LOCKS);
NeilBrownedbe83a2015-02-26 12:47:56 +11006511 if (grow_stripes(conf, conf->min_nr_stripes)) {
NeilBrown91adb562009-03-31 14:39:39 +11006512 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006513 "md/raid:%s: couldn't allocate %dkB for buffers\n",
6514 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11006515 goto abort;
6516 } else
NeilBrown0c55e022010-05-03 14:09:02 +10006517 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
6518 mdname(mddev), memory);
NeilBrownedbe83a2015-02-26 12:47:56 +11006519 /*
6520 * Losing a stripe head costs more than the time to refill it,
6521 * it reduces the queue depth and so can hurt throughput.
6522 * So set it rather large, scaled by number of devices.
6523 */
6524 conf->shrinker.seeks = DEFAULT_SEEKS * conf->raid_disks * 4;
6525 conf->shrinker.scan_objects = raid5_cache_scan;
6526 conf->shrinker.count_objects = raid5_cache_count;
6527 conf->shrinker.batch = 128;
6528 conf->shrinker.flags = 0;
6529 register_shrinker(&conf->shrinker);
NeilBrown91adb562009-03-31 14:39:39 +11006530
NeilBrown02326052012-07-03 15:56:52 +10006531 sprintf(pers_name, "raid%d", mddev->new_level);
6532 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11006533 if (!conf->thread) {
6534 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006535 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11006536 mdname(mddev));
6537 goto abort;
6538 }
6539
6540 return conf;
6541
6542 abort:
6543 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10006544 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11006545 return ERR_PTR(-EIO);
6546 } else
6547 return ERR_PTR(-ENOMEM);
6548}
6549
NeilBrownc148ffd2009-11-13 17:47:00 +11006550static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
6551{
6552 switch (algo) {
6553 case ALGORITHM_PARITY_0:
6554 if (raid_disk < max_degraded)
6555 return 1;
6556 break;
6557 case ALGORITHM_PARITY_N:
6558 if (raid_disk >= raid_disks - max_degraded)
6559 return 1;
6560 break;
6561 case ALGORITHM_PARITY_0_6:
NeilBrownf72ffdd2014-09-30 14:23:59 +10006562 if (raid_disk == 0 ||
NeilBrownc148ffd2009-11-13 17:47:00 +11006563 raid_disk == raid_disks - 1)
6564 return 1;
6565 break;
6566 case ALGORITHM_LEFT_ASYMMETRIC_6:
6567 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6568 case ALGORITHM_LEFT_SYMMETRIC_6:
6569 case ALGORITHM_RIGHT_SYMMETRIC_6:
6570 if (raid_disk == raid_disks - 1)
6571 return 1;
6572 }
6573 return 0;
6574}
6575
NeilBrownfd01b882011-10-11 16:47:53 +11006576static int run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11006577{
NeilBrownd1688a62011-10-11 16:49:52 +11006578 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10006579 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11006580 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11006581 struct md_rdev *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11006582 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11006583 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10006584 long long min_offset_diff = 0;
6585 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11006586
Andre Noll8c6ac862009-06-18 08:48:06 +10006587 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10006588 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10006589 " -- starting background reconstruction\n",
6590 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10006591
6592 rdev_for_each(rdev, mddev) {
6593 long long diff;
6594 if (rdev->raid_disk < 0)
6595 continue;
6596 diff = (rdev->new_data_offset - rdev->data_offset);
6597 if (first) {
6598 min_offset_diff = diff;
6599 first = 0;
6600 } else if (mddev->reshape_backwards &&
6601 diff < min_offset_diff)
6602 min_offset_diff = diff;
6603 else if (!mddev->reshape_backwards &&
6604 diff > min_offset_diff)
6605 min_offset_diff = diff;
6606 }
6607
NeilBrownf6705572006-03-27 01:18:11 -08006608 if (mddev->reshape_position != MaxSector) {
6609 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10006610 * Difficulties arise if the stripe we would write to
6611 * next is at or after the stripe we would read from next.
6612 * For a reshape that changes the number of devices, this
6613 * is only possible for a very short time, and mdadm makes
6614 * sure that time appears to have past before assembling
6615 * the array. So we fail if that time hasn't passed.
6616 * For a reshape that keeps the number of devices the same
6617 * mdadm must be monitoring the reshape can keeping the
6618 * critical areas read-only and backed up. It will start
6619 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08006620 */
6621 sector_t here_new, here_old;
6622 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11006623 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08006624
NeilBrown88ce4932009-03-31 15:24:23 +11006625 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10006626 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08006627 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08006628 mdname(mddev));
6629 return -EINVAL;
6630 }
NeilBrownf6705572006-03-27 01:18:11 -08006631 old_disks = mddev->raid_disks - mddev->delta_disks;
6632 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08006633 * further up in new geometry must map after here in old
6634 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08006635 */
6636 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10006637 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08006638 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10006639 printk(KERN_ERR "md/raid:%s: reshape_position not "
6640 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006641 return -EINVAL;
6642 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006643 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08006644 /* here_new is the stripe we will write to */
6645 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10006646 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08006647 (old_disks-max_degraded));
6648 /* here_old is the first stripe that we might need to read
6649 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10006650 if (mddev->delta_disks == 0) {
NeilBrownb5254dd2012-05-21 09:27:01 +10006651 if ((here_new * mddev->new_chunk_sectors !=
6652 here_old * mddev->chunk_sectors)) {
6653 printk(KERN_ERR "md/raid:%s: reshape position is"
6654 " confused - aborting\n", mdname(mddev));
6655 return -EINVAL;
6656 }
NeilBrown67ac6012009-08-13 10:06:24 +10006657 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10006658 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10006659 * and taking constant backups.
6660 * mdadm always starts a situation like this in
6661 * readonly mode so it can take control before
6662 * allowing any writes. So just check for that.
6663 */
NeilBrownb5254dd2012-05-21 09:27:01 +10006664 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
6665 abs(min_offset_diff) >= mddev->new_chunk_sectors)
6666 /* not really in-place - so OK */;
6667 else if (mddev->ro == 0) {
6668 printk(KERN_ERR "md/raid:%s: in-place reshape "
6669 "must be started in read-only mode "
6670 "- aborting\n",
NeilBrown0c55e022010-05-03 14:09:02 +10006671 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10006672 return -EINVAL;
6673 }
NeilBrown2c810cd2012-05-21 09:27:00 +10006674 } else if (mddev->reshape_backwards
NeilBrownb5254dd2012-05-21 09:27:01 +10006675 ? (here_new * mddev->new_chunk_sectors + min_offset_diff <=
NeilBrown67ac6012009-08-13 10:06:24 +10006676 here_old * mddev->chunk_sectors)
6677 : (here_new * mddev->new_chunk_sectors >=
NeilBrownb5254dd2012-05-21 09:27:01 +10006678 here_old * mddev->chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08006679 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10006680 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
6681 "auto-recovery - aborting.\n",
6682 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006683 return -EINVAL;
6684 }
NeilBrown0c55e022010-05-03 14:09:02 +10006685 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
6686 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006687 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08006688 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006689 BUG_ON(mddev->level != mddev->new_level);
6690 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10006691 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11006692 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08006693 }
6694
NeilBrown245f46c2009-03-31 14:39:39 +11006695 if (mddev->private == NULL)
6696 conf = setup_conf(mddev);
6697 else
6698 conf = mddev->private;
6699
NeilBrown91adb562009-03-31 14:39:39 +11006700 if (IS_ERR(conf))
6701 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08006702
NeilBrownb5254dd2012-05-21 09:27:01 +10006703 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11006704 mddev->thread = conf->thread;
6705 conf->thread = NULL;
6706 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707
NeilBrown17045f52011-12-23 10:17:53 +11006708 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
6709 i++) {
6710 rdev = conf->disks[i].rdev;
6711 if (!rdev && conf->disks[i].replacement) {
6712 /* The replacement is all we have yet */
6713 rdev = conf->disks[i].replacement;
6714 conf->disks[i].replacement = NULL;
6715 clear_bit(Replacement, &rdev->flags);
6716 conf->disks[i].rdev = rdev;
6717 }
6718 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11006719 continue;
NeilBrown17045f52011-12-23 10:17:53 +11006720 if (conf->disks[i].replacement &&
6721 conf->reshape_progress != MaxSector) {
6722 /* replacements and reshape simply do not mix. */
6723 printk(KERN_ERR "md: cannot handle concurrent "
6724 "replacement and reshape.\n");
6725 goto abort;
6726 }
NeilBrown2f115882010-06-17 17:41:03 +10006727 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11006728 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10006729 continue;
6730 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006731 /* This disc is not fully in-sync. However if it
6732 * just stored parity (beyond the recovery_offset),
6733 * when we don't need to be concerned about the
6734 * array being dirty.
6735 * When reshape goes 'backwards', we never have
6736 * partially completed devices, so we only need
6737 * to worry about reshape going forwards.
6738 */
6739 /* Hack because v0.91 doesn't store recovery_offset properly. */
6740 if (mddev->major_version == 0 &&
6741 mddev->minor_version > 90)
6742 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07006743
NeilBrownc148ffd2009-11-13 17:47:00 +11006744 if (rdev->recovery_offset < reshape_offset) {
6745 /* We need to check old and new layout */
6746 if (!only_parity(rdev->raid_disk,
6747 conf->algorithm,
6748 conf->raid_disks,
6749 conf->max_degraded))
6750 continue;
6751 }
6752 if (!only_parity(rdev->raid_disk,
6753 conf->prev_algo,
6754 conf->previous_raid_disks,
6755 conf->max_degraded))
6756 continue;
6757 dirty_parity_disks++;
6758 }
NeilBrown91adb562009-03-31 14:39:39 +11006759
NeilBrown17045f52011-12-23 10:17:53 +11006760 /*
6761 * 0 for a fully functional array, 1 or 2 for a degraded array.
6762 */
NeilBrown908f4fb2011-12-23 10:17:50 +11006763 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764
NeilBrown674806d2010-06-16 17:17:53 +10006765 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10006766 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07006768 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769 goto abort;
6770 }
6771
NeilBrown91adb562009-03-31 14:39:39 +11006772 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10006773 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11006774 mddev->resync_max_sectors = mddev->dev_sectors;
6775
NeilBrownc148ffd2009-11-13 17:47:00 +11006776 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006778 if (mddev->ok_start_degraded)
6779 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10006780 "md/raid:%s: starting dirty degraded array"
6781 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006782 mdname(mddev));
6783 else {
6784 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10006785 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006786 mdname(mddev));
6787 goto abort;
6788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789 }
6790
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10006792 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
6793 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11006794 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
6795 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796 else
NeilBrown0c55e022010-05-03 14:09:02 +10006797 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
6798 " out of %d devices, algorithm %d\n",
6799 mdname(mddev), conf->level,
6800 mddev->raid_disks - mddev->degraded,
6801 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802
6803 print_raid5_conf(conf);
6804
NeilBrownfef9c612009-03-31 15:16:46 +11006805 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11006806 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08006807 atomic_set(&conf->reshape_stripes, 0);
6808 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
6809 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
6810 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
6811 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
6812 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10006813 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08006814 }
6815
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10006817 if (mddev->to_remove == &raid5_attrs_group)
6818 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10006819 else if (mddev->kobj.sd &&
6820 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08006821 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10006822 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08006823 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10006824 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
6825
6826 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10006827 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11006828 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10006829 /* read-ahead size must cover two whole stripes, which
6830 * is 2 * (datadisks) * chunksize where 'n' is the
6831 * number of raid devices
6832 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833 int data_disks = conf->previous_raid_disks - conf->max_degraded;
6834 int stripe = data_disks *
6835 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
6836 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
6837 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10006838
NeilBrown9f7c2222010-07-26 12:04:13 +10006839 chunk_size = mddev->chunk_sectors << 9;
6840 blk_queue_io_min(mddev->queue, chunk_size);
6841 blk_queue_io_opt(mddev->queue, chunk_size *
6842 (conf->raid_disks - conf->max_degraded));
Kent Overstreetc78afc62013-07-11 22:39:53 -07006843 mddev->queue->limits.raid_partial_stripes_expensive = 1;
Shaohua Li620125f2012-10-11 13:49:05 +11006844 /*
6845 * We can only discard a whole stripe. It doesn't make sense to
6846 * discard data disk but write parity disk
6847 */
6848 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11006849 /* Round up to power of 2, as discard handling
6850 * currently assumes that */
6851 while ((stripe-1) & stripe)
6852 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11006853 mddev->queue->limits.discard_alignment = stripe;
6854 mddev->queue->limits.discard_granularity = stripe;
6855 /*
6856 * unaligned part of discard request will be ignored, so can't
NeilBrown8e0e99b2014-10-02 13:45:00 +10006857 * guarantee discard_zeroes_data
Shaohua Li620125f2012-10-11 13:49:05 +11006858 */
6859 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10006860
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07006861 blk_queue_max_write_same_sectors(mddev->queue, 0);
6862
NeilBrown05616be2012-05-21 09:27:00 +10006863 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10006864 disk_stack_limits(mddev->gendisk, rdev->bdev,
6865 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10006866 disk_stack_limits(mddev->gendisk, rdev->bdev,
6867 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11006868 /*
6869 * discard_zeroes_data is required, otherwise data
6870 * could be lost. Consider a scenario: discard a stripe
6871 * (the stripe could be inconsistent if
6872 * discard_zeroes_data is 0); write one disk of the
6873 * stripe (the stripe could be inconsistent again
6874 * depending on which disks are used to calculate
6875 * parity); the disk is broken; The stripe data of this
6876 * disk is lost.
6877 */
6878 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
6879 !bdev_get_queue(rdev->bdev)->
6880 limits.discard_zeroes_data)
6881 discard_supported = false;
NeilBrown8e0e99b2014-10-02 13:45:00 +10006882 /* Unfortunately, discard_zeroes_data is not currently
6883 * a guarantee - just a hint. So we only allow DISCARD
6884 * if the sysadmin has confirmed that only safe devices
6885 * are in use by setting a module parameter.
6886 */
6887 if (!devices_handle_discard_safely) {
6888 if (discard_supported) {
6889 pr_info("md/raid456: discard support disabled due to uncertainty.\n");
6890 pr_info("Set raid456.devices_handle_discard_safely=Y to override.\n");
6891 }
6892 discard_supported = false;
6893 }
NeilBrown05616be2012-05-21 09:27:00 +10006894 }
Shaohua Li620125f2012-10-11 13:49:05 +11006895
6896 if (discard_supported &&
6897 mddev->queue->limits.max_discard_sectors >= stripe &&
6898 mddev->queue->limits.discard_granularity >= stripe)
6899 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
6900 mddev->queue);
6901 else
6902 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
6903 mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904 }
6905
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906 return 0;
6907abort:
NeilBrown01f96c02011-09-21 15:30:20 +10006908 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11006909 print_raid5_conf(conf);
6910 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10006912 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913 return -EIO;
6914}
6915
NeilBrownafa0f552014-12-15 12:56:58 +11006916static void raid5_free(struct mddev *mddev, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917{
NeilBrownafa0f552014-12-15 12:56:58 +11006918 struct r5conf *conf = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919
Dan Williams95fc17a2009-07-31 12:39:15 +10006920 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10006921 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922}
6923
NeilBrownfd01b882011-10-11 16:47:53 +11006924static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925{
NeilBrownd1688a62011-10-11 16:49:52 +11006926 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927 int i;
6928
Andre Noll9d8f0362009-06-18 08:45:01 +10006929 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
6930 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07006931 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932 for (i = 0; i < conf->raid_disks; i++)
6933 seq_printf (seq, "%s",
6934 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08006935 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937}
6938
NeilBrownd1688a62011-10-11 16:49:52 +11006939static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940{
6941 int i;
6942 struct disk_info *tmp;
6943
NeilBrown0c55e022010-05-03 14:09:02 +10006944 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945 if (!conf) {
6946 printk("(conf==NULL)\n");
6947 return;
6948 }
NeilBrown0c55e022010-05-03 14:09:02 +10006949 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
6950 conf->raid_disks,
6951 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952
6953 for (i = 0; i < conf->raid_disks; i++) {
6954 char b[BDEVNAME_SIZE];
6955 tmp = conf->disks + i;
6956 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10006957 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
6958 i, !test_bit(Faulty, &tmp->rdev->flags),
6959 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960 }
6961}
6962
NeilBrownfd01b882011-10-11 16:47:53 +11006963static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964{
6965 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11006966 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006967 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10006968 int count = 0;
6969 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970
6971 for (i = 0; i < conf->raid_disks; i++) {
6972 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11006973 if (tmp->replacement
6974 && tmp->replacement->recovery_offset == MaxSector
6975 && !test_bit(Faulty, &tmp->replacement->flags)
6976 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
6977 /* Replacement has just become active. */
6978 if (!tmp->rdev
6979 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
6980 count++;
6981 if (tmp->rdev) {
6982 /* Replaced device not technically faulty,
6983 * but we need to be sure it gets removed
6984 * and never re-added.
6985 */
6986 set_bit(Faulty, &tmp->rdev->flags);
6987 sysfs_notify_dirent_safe(
6988 tmp->rdev->sysfs_state);
6989 }
6990 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
6991 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10006992 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08006993 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07006994 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10006995 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11006996 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997 }
6998 }
NeilBrown6b965622010-08-18 11:56:59 +10006999 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007000 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007001 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007003 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004}
7005
NeilBrownb8321b62011-12-23 10:17:51 +11007006static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007{
NeilBrownd1688a62011-10-11 16:49:52 +11007008 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11007010 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11007011 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012 struct disk_info *p = conf->disks + number;
7013
7014 print_raid5_conf(conf);
NeilBrown657e3e42011-12-23 10:17:52 +11007015 if (rdev == p->rdev)
7016 rdevp = &p->rdev;
7017 else if (rdev == p->replacement)
7018 rdevp = &p->replacement;
7019 else
7020 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11007021
NeilBrown657e3e42011-12-23 10:17:52 +11007022 if (number >= conf->raid_disks &&
7023 conf->reshape_progress == MaxSector)
7024 clear_bit(In_sync, &rdev->flags);
7025
7026 if (test_bit(In_sync, &rdev->flags) ||
7027 atomic_read(&rdev->nr_pending)) {
7028 err = -EBUSY;
7029 goto abort;
7030 }
7031 /* Only remove non-faulty devices if recovery
7032 * isn't possible.
7033 */
7034 if (!test_bit(Faulty, &rdev->flags) &&
7035 mddev->recovery_disabled != conf->recovery_disabled &&
7036 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11007037 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11007038 number < conf->raid_disks) {
7039 err = -EBUSY;
7040 goto abort;
7041 }
7042 *rdevp = NULL;
7043 synchronize_rcu();
7044 if (atomic_read(&rdev->nr_pending)) {
7045 /* lost the race, try later */
7046 err = -EBUSY;
7047 *rdevp = rdev;
NeilBrowndd054fc2011-12-23 10:17:53 +11007048 } else if (p->replacement) {
7049 /* We must have just cleared 'rdev' */
7050 p->rdev = p->replacement;
7051 clear_bit(Replacement, &p->replacement->flags);
7052 smp_mb(); /* Make sure other CPUs may see both as identical
7053 * but will never see neither - if they are careful
7054 */
7055 p->replacement = NULL;
7056 clear_bit(WantReplacement, &rdev->flags);
7057 } else
7058 /* We might have just removed the Replacement as faulty-
7059 * clear the bit just in case
7060 */
7061 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062abort:
7063
7064 print_raid5_conf(conf);
7065 return err;
7066}
7067
NeilBrownfd01b882011-10-11 16:47:53 +11007068static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069{
NeilBrownd1688a62011-10-11 16:49:52 +11007070 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10007071 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072 int disk;
7073 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10007074 int first = 0;
7075 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007076
NeilBrown7f0da592011-07-28 11:39:22 +10007077 if (mddev->recovery_disabled == conf->recovery_disabled)
7078 return -EBUSY;
7079
NeilBrowndc10c642012-03-19 12:46:37 +11007080 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10007082 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083
Neil Brown6c2fce22008-06-28 08:31:31 +10007084 if (rdev->raid_disk >= 0)
7085 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007086
7087 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07007088 * find the disk ... but prefer rdev->saved_raid_disk
7089 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090 */
NeilBrown16a53ec2006-06-26 00:27:38 -07007091 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10007092 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07007093 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10007094 first = rdev->saved_raid_disk;
7095
7096 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11007097 p = conf->disks + disk;
7098 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08007099 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007100 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10007101 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07007102 if (rdev->saved_raid_disk != disk)
7103 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08007104 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10007105 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007107 }
7108 for (disk = first; disk <= last; disk++) {
7109 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11007110 if (test_bit(WantReplacement, &p->rdev->flags) &&
7111 p->replacement == NULL) {
7112 clear_bit(In_sync, &rdev->flags);
7113 set_bit(Replacement, &rdev->flags);
7114 rdev->raid_disk = disk;
7115 err = 0;
7116 conf->fullsync = 1;
7117 rcu_assign_pointer(p->replacement, rdev);
7118 break;
7119 }
7120 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007121out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10007123 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124}
7125
NeilBrownfd01b882011-10-11 16:47:53 +11007126static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127{
7128 /* no resync is happening, and there is enough space
7129 * on all devices, so we can resize.
7130 * We need to make sure resync covers any new space.
7131 * If the array is shrinking we should possibly wait until
7132 * any io in the removed space completes, but it hardly seems
7133 * worth it.
7134 */
NeilBrowna4a61252012-05-22 13:55:27 +10007135 sector_t newsize;
Andre Noll9d8f0362009-06-18 08:45:01 +10007136 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10007137 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
7138 if (mddev->external_size &&
7139 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11007140 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10007141 if (mddev->bitmap) {
7142 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
7143 if (ret)
7144 return ret;
7145 }
7146 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10007147 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007148 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10007149 if (sectors > mddev->dev_sectors &&
7150 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11007151 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
7153 }
Andre Noll58c0fed2009-03-31 14:33:13 +11007154 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07007155 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156 return 0;
7157}
7158
NeilBrownfd01b882011-10-11 16:47:53 +11007159static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10007160{
7161 /* Can only proceed if there are plenty of stripe_heads.
7162 * We need a minimum of one full stripe,, and for sensible progress
7163 * it is best to have about 4 times that.
7164 * If we require 4 times, then the default 256 4K stripe_heads will
7165 * allow for chunk sizes up to 256K, which is probably OK.
7166 * If the chunk size is greater, user-space should request more
7167 * stripe_heads first.
7168 */
NeilBrownd1688a62011-10-11 16:49:52 +11007169 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10007170 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007171 > conf->min_nr_stripes ||
NeilBrown01ee22b2009-06-18 08:47:20 +10007172 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007173 > conf->min_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10007174 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
7175 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10007176 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
7177 / STRIPE_SIZE)*4);
7178 return 0;
7179 }
7180 return 1;
7181}
7182
NeilBrownfd01b882011-10-11 16:47:53 +11007183static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08007184{
NeilBrownd1688a62011-10-11 16:49:52 +11007185 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08007186
NeilBrown88ce4932009-03-31 15:24:23 +11007187 if (mddev->delta_disks == 0 &&
7188 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10007189 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10007190 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10007191 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11007192 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10007193 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11007194 /* We might be able to shrink, but the devices must
7195 * be made bigger first.
7196 * For raid6, 4 is the minimum size.
7197 * Otherwise 2 is the minimum
7198 */
7199 int min = 2;
7200 if (mddev->level == 6)
7201 min = 4;
7202 if (mddev->raid_disks + mddev->delta_disks < min)
7203 return -EINVAL;
7204 }
NeilBrown29269552006-03-27 01:18:10 -08007205
NeilBrown01ee22b2009-06-18 08:47:20 +10007206 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08007207 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08007208
NeilBrown738a2732015-05-08 18:19:39 +10007209 if (mddev->new_chunk_sectors > mddev->chunk_sectors ||
7210 mddev->delta_disks > 0)
7211 if (resize_chunks(conf,
7212 conf->previous_raid_disks
7213 + max(0, mddev->delta_disks),
7214 max(mddev->new_chunk_sectors,
7215 mddev->chunk_sectors)
7216 ) < 0)
7217 return -ENOMEM;
NeilBrowne56108d62012-10-11 14:24:13 +11007218 return resize_stripes(conf, (conf->previous_raid_disks
7219 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08007220}
7221
NeilBrownfd01b882011-10-11 16:47:53 +11007222static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08007223{
NeilBrownd1688a62011-10-11 16:49:52 +11007224 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11007225 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08007226 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07007227 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08007228
NeilBrownf4168852007-02-28 20:11:53 -08007229 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08007230 return -EBUSY;
7231
NeilBrown01ee22b2009-06-18 08:47:20 +10007232 if (!check_stripe_cache(mddev))
7233 return -ENOSPC;
7234
NeilBrown30b67642012-05-22 13:55:28 +10007235 if (has_failed(conf))
7236 return -EINVAL;
7237
NeilBrownc6563a82012-05-21 09:27:00 +10007238 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11007239 if (!test_bit(In_sync, &rdev->flags)
7240 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08007241 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10007242 }
NeilBrown63c70c42006-03-27 01:18:13 -08007243
NeilBrownf4168852007-02-28 20:11:53 -08007244 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08007245 /* Not enough devices even to make a degraded array
7246 * of that size
7247 */
7248 return -EINVAL;
7249
NeilBrownec32a2b2009-03-31 15:17:38 +11007250 /* Refuse to reduce size of the array. Any reductions in
7251 * array size must be through explicit setting of array_size
7252 * attribute.
7253 */
7254 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
7255 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10007256 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11007257 "before number of disks\n", mdname(mddev));
7258 return -EINVAL;
7259 }
7260
NeilBrownf6705572006-03-27 01:18:11 -08007261 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08007262 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10007263 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007264 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08007265 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007266 conf->prev_chunk_sectors = conf->chunk_sectors;
7267 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11007268 conf->prev_algo = conf->algorithm;
7269 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10007270 conf->generation++;
7271 /* Code that selects data_offset needs to see the generation update
7272 * if reshape_progress has been set - so a memory barrier needed.
7273 */
7274 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10007275 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11007276 conf->reshape_progress = raid5_size(mddev, 0, 0);
7277 else
7278 conf->reshape_progress = 0;
7279 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10007280 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007281 spin_unlock_irq(&conf->device_lock);
7282
NeilBrown4d77e3b2013-08-27 15:57:47 +10007283 /* Now make sure any requests that proceeded on the assumption
7284 * the reshape wasn't running - like Discard or Read - have
7285 * completed.
7286 */
7287 mddev_suspend(mddev);
7288 mddev_resume(mddev);
7289
NeilBrown29269552006-03-27 01:18:10 -08007290 /* Add some new drives, as many as will fit.
7291 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10007292 * Don't add devices if we are reducing the number of
7293 * devices in the array. This is because it is not possible
7294 * to correctly record the "partially reconstructed" state of
7295 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08007296 */
NeilBrown87a8dec2011-01-31 11:57:43 +11007297 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11007298 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11007299 if (rdev->raid_disk < 0 &&
7300 !test_bit(Faulty, &rdev->flags)) {
7301 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11007302 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11007303 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11007304 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11007305 else
NeilBrown87a8dec2011-01-31 11:57:43 +11007306 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10007307
7308 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11007309 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11007310 }
NeilBrown87a8dec2011-01-31 11:57:43 +11007311 } else if (rdev->raid_disk >= conf->previous_raid_disks
7312 && !test_bit(Faulty, &rdev->flags)) {
7313 /* This is a spare that was manually added */
7314 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11007315 }
NeilBrown29269552006-03-27 01:18:10 -08007316
NeilBrown87a8dec2011-01-31 11:57:43 +11007317 /* When a reshape changes the number of devices,
7318 * ->degraded is measured against the larger of the
7319 * pre and post number of devices.
7320 */
NeilBrownec32a2b2009-03-31 15:17:38 +11007321 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007322 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11007323 spin_unlock_irqrestore(&conf->device_lock, flags);
7324 }
NeilBrown63c70c42006-03-27 01:18:13 -08007325 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10007326 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07007327 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08007328
NeilBrown29269552006-03-27 01:18:10 -08007329 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7330 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
7331 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7332 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7333 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007334 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08007335 if (!mddev->sync_thread) {
7336 mddev->recovery = 0;
7337 spin_lock_irq(&conf->device_lock);
NeilBrownba8805b2013-11-14 15:16:15 +11007338 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007339 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownba8805b2013-11-14 15:16:15 +11007340 mddev->new_chunk_sectors =
7341 conf->chunk_sectors = conf->prev_chunk_sectors;
7342 mddev->new_layout = conf->algorithm = conf->prev_algo;
NeilBrown05616be2012-05-21 09:27:00 +10007343 rdev_for_each(rdev, mddev)
7344 rdev->new_data_offset = rdev->data_offset;
7345 smp_wmb();
NeilBrownba8805b2013-11-14 15:16:15 +11007346 conf->generation --;
NeilBrownfef9c612009-03-31 15:16:46 +11007347 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11007348 mddev->reshape_position = MaxSector;
NeilBrownba8805b2013-11-14 15:16:15 +11007349 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007350 spin_unlock_irq(&conf->device_lock);
7351 return -EAGAIN;
7352 }
NeilBrownc8f517c2009-03-31 15:28:40 +11007353 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08007354 md_wakeup_thread(mddev->sync_thread);
7355 md_new_event(mddev);
7356 return 0;
7357}
NeilBrown29269552006-03-27 01:18:10 -08007358
NeilBrownec32a2b2009-03-31 15:17:38 +11007359/* This is called from the reshape thread and should make any
7360 * changes needed in 'conf'
7361 */
NeilBrownd1688a62011-10-11 16:49:52 +11007362static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08007363{
NeilBrown29269552006-03-27 01:18:10 -08007364
NeilBrownf6705572006-03-27 01:18:11 -08007365 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10007366 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07007367
NeilBrownf6705572006-03-27 01:18:11 -08007368 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11007369 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10007370 rdev_for_each(rdev, conf->mddev)
7371 rdev->data_offset = rdev->new_data_offset;
7372 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11007373 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08007374 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11007375 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07007376
7377 /* read-ahead size must cover two whole stripes, which is
7378 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
7379 */
NeilBrown4a5add42010-06-01 19:37:28 +10007380 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11007381 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007382 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11007383 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07007384 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
7385 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
7386 }
NeilBrown29269552006-03-27 01:18:10 -08007387 }
NeilBrown29269552006-03-27 01:18:10 -08007388}
7389
NeilBrownec32a2b2009-03-31 15:17:38 +11007390/* This is called from the raid5d thread with mddev_lock held.
7391 * It makes config changes to the device.
7392 */
NeilBrownfd01b882011-10-11 16:47:53 +11007393static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11007394{
NeilBrownd1688a62011-10-11 16:49:52 +11007395 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11007396
7397 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
7398
NeilBrownec32a2b2009-03-31 15:17:38 +11007399 if (mddev->delta_disks > 0) {
7400 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7401 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007402 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11007403 } else {
7404 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11007405 spin_lock_irq(&conf->device_lock);
7406 mddev->degraded = calc_degraded(conf);
7407 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11007408 for (d = conf->raid_disks ;
7409 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10007410 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11007411 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10007412 if (rdev)
7413 clear_bit(In_sync, &rdev->flags);
7414 rdev = conf->disks[d].replacement;
7415 if (rdev)
7416 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10007417 }
NeilBrowncea9c222009-03-31 15:15:05 +11007418 }
NeilBrown88ce4932009-03-31 15:24:23 +11007419 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007420 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11007421 mddev->reshape_position = MaxSector;
7422 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10007423 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11007424 }
7425}
7426
NeilBrownfd01b882011-10-11 16:47:53 +11007427static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07007428{
NeilBrownd1688a62011-10-11 16:49:52 +11007429 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07007430
7431 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08007432 case 2: /* resume for a suspend */
7433 wake_up(&conf->wait_for_overlap);
7434 break;
7435
NeilBrown72626682005-09-09 16:23:54 -07007436 case 1: /* stop all writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007437 lock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007438 /* '2' tells resync/reshape to pause so that all
7439 * active stripes can drain
7440 */
7441 conf->quiesce = 2;
Shaohua Li566c09c2013-11-14 15:16:17 +11007442 wait_event_cmd(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08007443 atomic_read(&conf->active_stripes) == 0 &&
7444 atomic_read(&conf->active_aligned_reads) == 0,
Shaohua Li566c09c2013-11-14 15:16:17 +11007445 unlock_all_device_hash_locks_irq(conf),
7446 lock_all_device_hash_locks_irq(conf));
NeilBrown64bd6602009-08-03 10:59:58 +10007447 conf->quiesce = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11007448 unlock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007449 /* allow reshape to continue */
7450 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07007451 break;
7452
7453 case 0: /* re-enable writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007454 lock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007455 conf->quiesce = 0;
7456 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08007457 wake_up(&conf->wait_for_overlap);
Shaohua Li566c09c2013-11-14 15:16:17 +11007458 unlock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007459 break;
7460 }
NeilBrown72626682005-09-09 16:23:54 -07007461}
NeilBrownb15c2e52006-01-06 00:20:16 -08007462
NeilBrownfd01b882011-10-11 16:47:53 +11007463static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11007464{
NeilBrowne373ab12011-10-11 16:48:59 +11007465 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07007466 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11007467
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007468 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11007469 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10007470 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
7471 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007472 return ERR_PTR(-EINVAL);
7473 }
7474
NeilBrowne373ab12011-10-11 16:48:59 +11007475 sectors = raid0_conf->strip_zone[0].zone_end;
7476 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10007477 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007478 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11007479 mddev->new_layout = ALGORITHM_PARITY_N;
7480 mddev->new_chunk_sectors = mddev->chunk_sectors;
7481 mddev->raid_disks += 1;
7482 mddev->delta_disks = 1;
7483 /* make sure it will be not marked as dirty */
7484 mddev->recovery_cp = MaxSector;
7485
7486 return setup_conf(mddev);
7487}
7488
NeilBrownfd01b882011-10-11 16:47:53 +11007489static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007490{
7491 int chunksect;
7492
7493 if (mddev->raid_disks != 2 ||
7494 mddev->degraded > 1)
7495 return ERR_PTR(-EINVAL);
7496
7497 /* Should check if there are write-behind devices? */
7498
7499 chunksect = 64*2; /* 64K by default */
7500
7501 /* The array must be an exact multiple of chunksize */
7502 while (chunksect && (mddev->array_sectors & (chunksect-1)))
7503 chunksect >>= 1;
7504
7505 if ((chunksect<<9) < STRIPE_SIZE)
7506 /* array size does not allow a suitable chunk size */
7507 return ERR_PTR(-EINVAL);
7508
7509 mddev->new_level = 5;
7510 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10007511 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11007512
7513 return setup_conf(mddev);
7514}
7515
NeilBrownfd01b882011-10-11 16:47:53 +11007516static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11007517{
7518 int new_layout;
7519
7520 switch (mddev->layout) {
7521 case ALGORITHM_LEFT_ASYMMETRIC_6:
7522 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
7523 break;
7524 case ALGORITHM_RIGHT_ASYMMETRIC_6:
7525 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
7526 break;
7527 case ALGORITHM_LEFT_SYMMETRIC_6:
7528 new_layout = ALGORITHM_LEFT_SYMMETRIC;
7529 break;
7530 case ALGORITHM_RIGHT_SYMMETRIC_6:
7531 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
7532 break;
7533 case ALGORITHM_PARITY_0_6:
7534 new_layout = ALGORITHM_PARITY_0;
7535 break;
7536 case ALGORITHM_PARITY_N:
7537 new_layout = ALGORITHM_PARITY_N;
7538 break;
7539 default:
7540 return ERR_PTR(-EINVAL);
7541 }
7542 mddev->new_level = 5;
7543 mddev->new_layout = new_layout;
7544 mddev->delta_disks = -1;
7545 mddev->raid_disks -= 1;
7546 return setup_conf(mddev);
7547}
7548
NeilBrownfd01b882011-10-11 16:47:53 +11007549static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11007550{
NeilBrown88ce4932009-03-31 15:24:23 +11007551 /* For a 2-drive array, the layout and chunk size can be changed
7552 * immediately as not restriping is needed.
7553 * For larger arrays we record the new value - after validation
7554 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11007555 */
NeilBrownd1688a62011-10-11 16:49:52 +11007556 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10007557 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11007558
NeilBrown597a7112009-06-18 08:47:42 +10007559 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11007560 return -EINVAL;
7561 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007562 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11007563 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007564 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11007565 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007566 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11007567 /* not factor of array size */
7568 return -EINVAL;
7569 }
7570
7571 /* They look valid */
7572
NeilBrown88ce4932009-03-31 15:24:23 +11007573 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10007574 /* can make the change immediately */
7575 if (mddev->new_layout >= 0) {
7576 conf->algorithm = mddev->new_layout;
7577 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11007578 }
7579 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10007580 conf->chunk_sectors = new_chunk ;
7581 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11007582 }
7583 set_bit(MD_CHANGE_DEVS, &mddev->flags);
7584 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11007585 }
NeilBrown50ac1682009-06-18 08:47:55 +10007586 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11007587}
7588
NeilBrownfd01b882011-10-11 16:47:53 +11007589static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11007590{
NeilBrown597a7112009-06-18 08:47:42 +10007591 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10007592
NeilBrown597a7112009-06-18 08:47:42 +10007593 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11007594 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007595 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007596 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11007597 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007598 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11007599 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007600 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11007601 /* not factor of array size */
7602 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007603 }
NeilBrown88ce4932009-03-31 15:24:23 +11007604
7605 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10007606 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11007607}
7608
NeilBrownfd01b882011-10-11 16:47:53 +11007609static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007610{
7611 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007612 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007613 * raid1 - if there are two drives. We need to know the chunk size
7614 * raid4 - trivial - just use a raid4 layout.
7615 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007616 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007617 if (mddev->level == 0)
7618 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11007619 if (mddev->level == 1)
7620 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11007621 if (mddev->level == 4) {
7622 mddev->new_layout = ALGORITHM_PARITY_N;
7623 mddev->new_level = 5;
7624 return setup_conf(mddev);
7625 }
NeilBrownfc9739c2009-03-31 14:57:20 +11007626 if (mddev->level == 6)
7627 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11007628
7629 return ERR_PTR(-EINVAL);
7630}
7631
NeilBrownfd01b882011-10-11 16:47:53 +11007632static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11007633{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007634 /* raid4 can take over:
7635 * raid0 - if there is only one strip zone
7636 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11007637 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007638 if (mddev->level == 0)
7639 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11007640 if (mddev->level == 5 &&
7641 mddev->layout == ALGORITHM_PARITY_N) {
7642 mddev->new_layout = 0;
7643 mddev->new_level = 4;
7644 return setup_conf(mddev);
7645 }
7646 return ERR_PTR(-EINVAL);
7647}
NeilBrownd562b0c2009-03-31 14:39:39 +11007648
NeilBrown84fc4b52011-10-11 16:49:58 +11007649static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11007650
NeilBrownfd01b882011-10-11 16:47:53 +11007651static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11007652{
7653 /* Currently can only take over a raid5. We map the
7654 * personality to an equivalent raid6 personality
7655 * with the Q block at the end.
7656 */
7657 int new_layout;
7658
7659 if (mddev->pers != &raid5_personality)
7660 return ERR_PTR(-EINVAL);
7661 if (mddev->degraded > 1)
7662 return ERR_PTR(-EINVAL);
7663 if (mddev->raid_disks > 253)
7664 return ERR_PTR(-EINVAL);
7665 if (mddev->raid_disks < 3)
7666 return ERR_PTR(-EINVAL);
7667
7668 switch (mddev->layout) {
7669 case ALGORITHM_LEFT_ASYMMETRIC:
7670 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
7671 break;
7672 case ALGORITHM_RIGHT_ASYMMETRIC:
7673 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
7674 break;
7675 case ALGORITHM_LEFT_SYMMETRIC:
7676 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
7677 break;
7678 case ALGORITHM_RIGHT_SYMMETRIC:
7679 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
7680 break;
7681 case ALGORITHM_PARITY_0:
7682 new_layout = ALGORITHM_PARITY_0_6;
7683 break;
7684 case ALGORITHM_PARITY_N:
7685 new_layout = ALGORITHM_PARITY_N;
7686 break;
7687 default:
7688 return ERR_PTR(-EINVAL);
7689 }
7690 mddev->new_level = 6;
7691 mddev->new_layout = new_layout;
7692 mddev->delta_disks = 1;
7693 mddev->raid_disks += 1;
7694 return setup_conf(mddev);
7695}
7696
NeilBrown84fc4b52011-10-11 16:49:58 +11007697static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07007698{
7699 .name = "raid6",
7700 .level = 6,
7701 .owner = THIS_MODULE,
7702 .make_request = make_request,
7703 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007704 .free = raid5_free,
NeilBrown16a53ec2006-06-26 00:27:38 -07007705 .status = status,
7706 .error_handler = error,
7707 .hot_add_disk = raid5_add_disk,
7708 .hot_remove_disk= raid5_remove_disk,
7709 .spare_active = raid5_spare_active,
7710 .sync_request = sync_request,
7711 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007712 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10007713 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08007714 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007715 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07007716 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11007717 .takeover = raid6_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007718 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007719 .mergeable_bvec = raid5_mergeable_bvec,
NeilBrown16a53ec2006-06-26 00:27:38 -07007720};
NeilBrown84fc4b52011-10-11 16:49:58 +11007721static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007722{
7723 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08007724 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725 .owner = THIS_MODULE,
7726 .make_request = make_request,
7727 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007728 .free = raid5_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729 .status = status,
7730 .error_handler = error,
7731 .hot_add_disk = raid5_add_disk,
7732 .hot_remove_disk= raid5_remove_disk,
7733 .spare_active = raid5_spare_active,
7734 .sync_request = sync_request,
7735 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007736 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08007737 .check_reshape = raid5_check_reshape,
7738 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007739 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07007740 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11007741 .takeover = raid5_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007742 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007743 .mergeable_bvec = raid5_mergeable_bvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744};
7745
NeilBrown84fc4b52011-10-11 16:49:58 +11007746static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007747{
NeilBrown2604b702006-01-06 00:20:36 -08007748 .name = "raid4",
7749 .level = 4,
7750 .owner = THIS_MODULE,
7751 .make_request = make_request,
7752 .run = run,
NeilBrownafa0f552014-12-15 12:56:58 +11007753 .free = raid5_free,
NeilBrown2604b702006-01-06 00:20:36 -08007754 .status = status,
7755 .error_handler = error,
7756 .hot_add_disk = raid5_add_disk,
7757 .hot_remove_disk= raid5_remove_disk,
7758 .spare_active = raid5_spare_active,
7759 .sync_request = sync_request,
7760 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007761 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08007762 .check_reshape = raid5_check_reshape,
7763 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007764 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08007765 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11007766 .takeover = raid4_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007767 .congested = raid5_congested,
NeilBrown64590f42014-12-15 12:56:57 +11007768 .mergeable_bvec = raid5_mergeable_bvec,
NeilBrown2604b702006-01-06 00:20:36 -08007769};
7770
7771static int __init raid5_init(void)
7772{
Shaohua Li851c30c2013-08-28 14:30:16 +08007773 raid5_wq = alloc_workqueue("raid5wq",
7774 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
7775 if (!raid5_wq)
7776 return -ENOMEM;
NeilBrown16a53ec2006-06-26 00:27:38 -07007777 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08007778 register_md_personality(&raid5_personality);
7779 register_md_personality(&raid4_personality);
7780 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007781}
7782
NeilBrown2604b702006-01-06 00:20:36 -08007783static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784{
NeilBrown16a53ec2006-06-26 00:27:38 -07007785 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08007786 unregister_md_personality(&raid5_personality);
7787 unregister_md_personality(&raid4_personality);
Shaohua Li851c30c2013-08-28 14:30:16 +08007788 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007789}
7790
7791module_init(raid5_init);
7792module_exit(raid5_exit);
7793MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11007794MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08007796MODULE_ALIAS("md-raid5");
7797MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08007798MODULE_ALIAS("md-level-5");
7799MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07007800MODULE_ALIAS("md-personality-8"); /* RAID6 */
7801MODULE_ALIAS("md-raid6");
7802MODULE_ALIAS("md-level-6");
7803
7804/* This used to be two separate modules, they were: */
7805MODULE_ALIAS("raid5");
7806MODULE_ALIAS("raid6");