blob: 17cf98e933072b1c0c213df22bb87a2d7b944555 [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
NeilBrownd1688a62011-10-11 16:49:52 +110074static inline struct hlist_head *stripe_hash(struct r5conf *conf, sector_t sect)
NeilBrowndb298e12011-10-07 14:23:00 +110075{
76 int hash = (sect >> STRIPE_SHIFT) & HASH_MASK;
77 return &conf->stripe_hashtbl[hash];
78}
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Shaohua Li566c09c2013-11-14 15:16:17 +110080static inline int stripe_hash_locks_hash(sector_t sect)
81{
82 return (sect >> STRIPE_SHIFT) & STRIPE_HASH_LOCKS_MASK;
83}
84
85static inline void lock_device_hash_lock(struct r5conf *conf, int hash)
86{
87 spin_lock_irq(conf->hash_locks + hash);
88 spin_lock(&conf->device_lock);
89}
90
91static inline void unlock_device_hash_lock(struct r5conf *conf, int hash)
92{
93 spin_unlock(&conf->device_lock);
94 spin_unlock_irq(conf->hash_locks + hash);
95}
96
97static inline void lock_all_device_hash_locks_irq(struct r5conf *conf)
98{
99 int i;
100 local_irq_disable();
101 spin_lock(conf->hash_locks);
102 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
103 spin_lock_nest_lock(conf->hash_locks + i, conf->hash_locks);
104 spin_lock(&conf->device_lock);
105}
106
107static inline void unlock_all_device_hash_locks_irq(struct r5conf *conf)
108{
109 int i;
110 spin_unlock(&conf->device_lock);
111 for (i = NR_STRIPE_HASH_LOCKS; i; i--)
112 spin_unlock(conf->hash_locks + i - 1);
113 local_irq_enable();
114}
115
NeilBrownd0dabf72009-03-31 14:39:38 +1100116/* Find first data disk in a raid6 stripe */
117static inline int raid6_d0(struct stripe_head *sh)
118{
NeilBrown67cc2b82009-03-31 14:39:38 +1100119 if (sh->ddf_layout)
120 /* ddf always start from first device */
121 return 0;
122 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100123 if (sh->qd_idx == sh->disks - 1)
124 return 0;
125 else
126 return sh->qd_idx + 1;
127}
NeilBrown16a53ec2006-06-26 00:27:38 -0700128static inline int raid6_next_disk(int disk, int raid_disks)
129{
130 disk++;
131 return (disk < raid_disks) ? disk : 0;
132}
Dan Williamsa4456852007-07-09 11:56:43 -0700133
NeilBrownd0dabf72009-03-31 14:39:38 +1100134/* When walking through the disks in a raid5, starting at raid6_d0,
135 * We need to map each disk to a 'slot', where the data disks are slot
136 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
137 * is raid_disks-1. This help does that mapping.
138 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100139static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
140 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100141{
Dan Williams66295422009-10-19 18:09:32 -0700142 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100143
NeilBrowne4424fe2009-10-16 16:27:34 +1100144 if (sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700145 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100146 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100147 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100148 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100149 return syndrome_disks + 1;
NeilBrowne4424fe2009-10-16 16:27:34 +1100150 if (!sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700151 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100152 return slot;
153}
154
NeilBrown34a6f802015-08-14 12:07:57 +1000155static void return_io(struct bio_list *return_bi)
Dan Williamsa4456852007-07-09 11:56:43 -0700156{
NeilBrown34a6f802015-08-14 12:07:57 +1000157 struct bio *bi;
158 while ((bi = bio_list_pop(return_bi)) != NULL) {
Kent Overstreet4f024f32013-10-11 15:44:27 -0700159 bi->bi_iter.bi_size = 0;
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700160 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
161 bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200162 bio_endio(bi);
Dan Williamsa4456852007-07-09 11:56:43 -0700163 }
164}
165
NeilBrownd1688a62011-10-11 16:49:52 +1100166static void print_raid5_conf (struct r5conf *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Dan Williams600aa102008-06-28 08:32:05 +1000168static int stripe_operations_active(struct stripe_head *sh)
169{
170 return sh->check_state || sh->reconstruct_state ||
171 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
172 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
173}
174
Shaohua Li851c30c2013-08-28 14:30:16 +0800175static void raid5_wakeup_stripe_thread(struct stripe_head *sh)
176{
177 struct r5conf *conf = sh->raid_conf;
178 struct r5worker_group *group;
Shaohua Libfc90cb2013-08-29 15:40:32 +0800179 int thread_cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +0800180 int i, cpu = sh->cpu;
181
182 if (!cpu_online(cpu)) {
183 cpu = cpumask_any(cpu_online_mask);
184 sh->cpu = cpu;
185 }
186
187 if (list_empty(&sh->lru)) {
188 struct r5worker_group *group;
189 group = conf->worker_groups + cpu_to_group(cpu);
190 list_add_tail(&sh->lru, &group->handle_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800191 group->stripes_cnt++;
192 sh->group = group;
Shaohua Li851c30c2013-08-28 14:30:16 +0800193 }
194
195 if (conf->worker_cnt_per_group == 0) {
196 md_wakeup_thread(conf->mddev->thread);
197 return;
198 }
199
200 group = conf->worker_groups + cpu_to_group(sh->cpu);
201
Shaohua Libfc90cb2013-08-29 15:40:32 +0800202 group->workers[0].working = true;
203 /* at least one worker should run to avoid race */
204 queue_work_on(sh->cpu, raid5_wq, &group->workers[0].work);
205
206 thread_cnt = group->stripes_cnt / MAX_STRIPE_BATCH - 1;
207 /* wakeup more workers */
208 for (i = 1; i < conf->worker_cnt_per_group && thread_cnt > 0; i++) {
209 if (group->workers[i].working == false) {
210 group->workers[i].working = true;
211 queue_work_on(sh->cpu, raid5_wq,
212 &group->workers[i].work);
213 thread_cnt--;
214 }
215 }
Shaohua Li851c30c2013-08-28 14:30:16 +0800216}
217
Shaohua Li566c09c2013-11-14 15:16:17 +1100218static void do_release_stripe(struct r5conf *conf, struct stripe_head *sh,
219 struct list_head *temp_inactive_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Song Liu1e6d6902016-11-17 15:24:39 -0800221 int i;
222 int injournal = 0; /* number of date pages with R5_InJournal */
223
Shaohua Li4eb788d2012-07-19 16:01:31 +1000224 BUG_ON(!list_empty(&sh->lru));
225 BUG_ON(atomic_read(&conf->active_stripes)==0);
Song Liu1e6d6902016-11-17 15:24:39 -0800226
227 if (r5c_is_writeback(conf->log))
228 for (i = sh->disks; i--; )
229 if (test_bit(R5_InJournal, &sh->dev[i].flags))
230 injournal++;
Song Liua39f7af2016-11-17 15:24:40 -0800231 /*
232 * When quiesce in r5c write back, set STRIPE_HANDLE for stripes with
233 * data in journal, so they are not released to cached lists
234 */
235 if (conf->quiesce && r5c_is_writeback(conf->log) &&
236 !test_bit(STRIPE_HANDLE, &sh->state) && injournal != 0) {
237 if (test_bit(STRIPE_R5C_CACHING, &sh->state))
238 r5c_make_stripe_write_out(sh);
239 set_bit(STRIPE_HANDLE, &sh->state);
240 }
Song Liu1e6d6902016-11-17 15:24:39 -0800241
Shaohua Li4eb788d2012-07-19 16:01:31 +1000242 if (test_bit(STRIPE_HANDLE, &sh->state)) {
243 if (test_bit(STRIPE_DELAYED, &sh->state) &&
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500244 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
Shaohua Li4eb788d2012-07-19 16:01:31 +1000245 list_add_tail(&sh->lru, &conf->delayed_list);
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500246 else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
Shaohua Li4eb788d2012-07-19 16:01:31 +1000247 sh->bm_seq - conf->seq_write > 0)
248 list_add_tail(&sh->lru, &conf->bitmap_list);
249 else {
250 clear_bit(STRIPE_DELAYED, &sh->state);
251 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Shaohua Li851c30c2013-08-28 14:30:16 +0800252 if (conf->worker_cnt_per_group == 0) {
253 list_add_tail(&sh->lru, &conf->handle_list);
254 } else {
255 raid5_wakeup_stripe_thread(sh);
256 return;
257 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000258 }
259 md_wakeup_thread(conf->mddev->thread);
260 } else {
261 BUG_ON(stripe_operations_active(sh));
262 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
263 if (atomic_dec_return(&conf->preread_active_stripes)
264 < IO_THRESHOLD)
265 md_wakeup_thread(conf->mddev->thread);
266 atomic_dec(&conf->active_stripes);
Song Liu1e6d6902016-11-17 15:24:39 -0800267 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
268 if (!r5c_is_writeback(conf->log))
269 list_add_tail(&sh->lru, temp_inactive_list);
270 else {
271 WARN_ON(test_bit(R5_InJournal, &sh->dev[sh->pd_idx].flags));
272 if (injournal == 0)
273 list_add_tail(&sh->lru, temp_inactive_list);
274 else if (injournal == conf->raid_disks - conf->max_degraded) {
275 /* full stripe */
276 if (!test_and_set_bit(STRIPE_R5C_FULL_STRIPE, &sh->state))
277 atomic_inc(&conf->r5c_cached_full_stripes);
278 if (test_and_clear_bit(STRIPE_R5C_PARTIAL_STRIPE, &sh->state))
279 atomic_dec(&conf->r5c_cached_partial_stripes);
280 list_add_tail(&sh->lru, &conf->r5c_full_stripe_list);
Song Liua39f7af2016-11-17 15:24:40 -0800281 r5c_check_cached_full_stripe(conf);
Song Liu1e6d6902016-11-17 15:24:39 -0800282 } else {
283 /* partial stripe */
284 if (!test_and_set_bit(STRIPE_R5C_PARTIAL_STRIPE,
285 &sh->state))
286 atomic_inc(&conf->r5c_cached_partial_stripes);
287 list_add_tail(&sh->lru, &conf->r5c_partial_stripe_list);
288 }
289 }
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292}
NeilBrownd0dabf72009-03-31 14:39:38 +1100293
Shaohua Li566c09c2013-11-14 15:16:17 +1100294static void __release_stripe(struct r5conf *conf, struct stripe_head *sh,
295 struct list_head *temp_inactive_list)
Shaohua Li4eb788d2012-07-19 16:01:31 +1000296{
297 if (atomic_dec_and_test(&sh->count))
Shaohua Li566c09c2013-11-14 15:16:17 +1100298 do_release_stripe(conf, sh, temp_inactive_list);
299}
300
301/*
302 * @hash could be NR_STRIPE_HASH_LOCKS, then we have a list of inactive_list
303 *
304 * Be careful: Only one task can add/delete stripes from temp_inactive_list at
305 * given time. Adding stripes only takes device lock, while deleting stripes
306 * only takes hash lock.
307 */
308static void release_inactive_stripe_list(struct r5conf *conf,
309 struct list_head *temp_inactive_list,
310 int hash)
311{
312 int size;
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800313 bool do_wakeup = false;
Shaohua Li566c09c2013-11-14 15:16:17 +1100314 unsigned long flags;
315
316 if (hash == NR_STRIPE_HASH_LOCKS) {
317 size = NR_STRIPE_HASH_LOCKS;
318 hash = NR_STRIPE_HASH_LOCKS - 1;
319 } else
320 size = 1;
321 while (size) {
322 struct list_head *list = &temp_inactive_list[size - 1];
323
324 /*
Shaohua Li6d036f72015-08-13 14:31:57 -0700325 * We don't hold any lock here yet, raid5_get_active_stripe() might
Shaohua Li566c09c2013-11-14 15:16:17 +1100326 * remove stripes from the list
327 */
328 if (!list_empty_careful(list)) {
329 spin_lock_irqsave(conf->hash_locks + hash, flags);
Shaohua Li4bda5562013-11-14 15:16:17 +1100330 if (list_empty(conf->inactive_list + hash) &&
331 !list_empty(list))
332 atomic_dec(&conf->empty_inactive_list_nr);
Shaohua Li566c09c2013-11-14 15:16:17 +1100333 list_splice_tail_init(list, conf->inactive_list + hash);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800334 do_wakeup = true;
Shaohua Li566c09c2013-11-14 15:16:17 +1100335 spin_unlock_irqrestore(conf->hash_locks + hash, flags);
336 }
337 size--;
338 hash--;
339 }
340
341 if (do_wakeup) {
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800342 wake_up(&conf->wait_for_stripe);
Yuanhan Liub1b46482015-05-08 18:19:06 +1000343 if (atomic_read(&conf->active_stripes) == 0)
344 wake_up(&conf->wait_for_quiescent);
Shaohua Li566c09c2013-11-14 15:16:17 +1100345 if (conf->retry_read_aligned)
346 md_wakeup_thread(conf->mddev->thread);
347 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000348}
349
Shaohua Li773ca822013-08-27 17:50:39 +0800350/* should hold conf->device_lock already */
Shaohua Li566c09c2013-11-14 15:16:17 +1100351static int release_stripe_list(struct r5conf *conf,
352 struct list_head *temp_inactive_list)
Shaohua Li773ca822013-08-27 17:50:39 +0800353{
354 struct stripe_head *sh;
355 int count = 0;
356 struct llist_node *head;
357
358 head = llist_del_all(&conf->released_stripes);
Shaohua Lid265d9d2013-08-28 14:29:05 +0800359 head = llist_reverse_order(head);
Shaohua Li773ca822013-08-27 17:50:39 +0800360 while (head) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100361 int hash;
362
Shaohua Li773ca822013-08-27 17:50:39 +0800363 sh = llist_entry(head, struct stripe_head, release_list);
364 head = llist_next(head);
365 /* sh could be readded after STRIPE_ON_RELEASE_LIST is cleard */
366 smp_mb();
367 clear_bit(STRIPE_ON_RELEASE_LIST, &sh->state);
368 /*
369 * Don't worry the bit is set here, because if the bit is set
370 * again, the count is always > 1. This is true for
371 * STRIPE_ON_UNPLUG_LIST bit too.
372 */
Shaohua Li566c09c2013-11-14 15:16:17 +1100373 hash = sh->hash_lock_index;
374 __release_stripe(conf, sh, &temp_inactive_list[hash]);
Shaohua Li773ca822013-08-27 17:50:39 +0800375 count++;
376 }
377
378 return count;
379}
380
Shaohua Li6d036f72015-08-13 14:31:57 -0700381void raid5_release_stripe(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
NeilBrownd1688a62011-10-11 16:49:52 +1100383 struct r5conf *conf = sh->raid_conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 unsigned long flags;
Shaohua Li566c09c2013-11-14 15:16:17 +1100385 struct list_head list;
386 int hash;
Shaohua Li773ca822013-08-27 17:50:39 +0800387 bool wakeup;
NeilBrown16a53ec2006-06-26 00:27:38 -0700388
Eivind Sartocf170f32014-05-28 13:39:23 +1000389 /* Avoid release_list until the last reference.
390 */
391 if (atomic_add_unless(&sh->count, -1, 1))
392 return;
393
majianpengad4068d2013-11-14 15:16:15 +1100394 if (unlikely(!conf->mddev->thread) ||
395 test_and_set_bit(STRIPE_ON_RELEASE_LIST, &sh->state))
Shaohua Li773ca822013-08-27 17:50:39 +0800396 goto slow_path;
397 wakeup = llist_add(&sh->release_list, &conf->released_stripes);
398 if (wakeup)
399 md_wakeup_thread(conf->mddev->thread);
400 return;
401slow_path:
Shaohua Li4eb788d2012-07-19 16:01:31 +1000402 local_irq_save(flags);
Shaohua Li773ca822013-08-27 17:50:39 +0800403 /* we are ok here if STRIPE_ON_RELEASE_LIST is set or not */
Shaohua Li4eb788d2012-07-19 16:01:31 +1000404 if (atomic_dec_and_lock(&sh->count, &conf->device_lock)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100405 INIT_LIST_HEAD(&list);
406 hash = sh->hash_lock_index;
407 do_release_stripe(conf, sh, &list);
Shaohua Li4eb788d2012-07-19 16:01:31 +1000408 spin_unlock(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +1100409 release_inactive_stripe_list(conf, &list, hash);
Shaohua Li4eb788d2012-07-19 16:01:31 +1000410 }
411 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
NeilBrownfccddba2006-01-06 00:20:33 -0800414static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Dan Williams45b42332007-07-09 11:56:43 -0700416 pr_debug("remove_hash(), stripe %llu\n",
417 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
NeilBrownfccddba2006-01-06 00:20:33 -0800419 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
NeilBrownd1688a62011-10-11 16:49:52 +1100422static inline void insert_hash(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
NeilBrownfccddba2006-01-06 00:20:33 -0800424 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Dan Williams45b42332007-07-09 11:56:43 -0700426 pr_debug("insert_hash(), stripe %llu\n",
427 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
NeilBrownfccddba2006-01-06 00:20:33 -0800429 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/* find an idle stripe, make sure it is unhashed, and return it. */
Shaohua Li566c09c2013-11-14 15:16:17 +1100433static struct stripe_head *get_free_stripe(struct r5conf *conf, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 struct stripe_head *sh = NULL;
436 struct list_head *first;
437
Shaohua Li566c09c2013-11-14 15:16:17 +1100438 if (list_empty(conf->inactive_list + hash))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 goto out;
Shaohua Li566c09c2013-11-14 15:16:17 +1100440 first = (conf->inactive_list + hash)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 sh = list_entry(first, struct stripe_head, lru);
442 list_del_init(first);
443 remove_hash(sh);
444 atomic_inc(&conf->active_stripes);
Shaohua Li566c09c2013-11-14 15:16:17 +1100445 BUG_ON(hash != sh->hash_lock_index);
Shaohua Li4bda5562013-11-14 15:16:17 +1100446 if (list_empty(conf->inactive_list + hash))
447 atomic_inc(&conf->empty_inactive_list_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448out:
449 return sh;
450}
451
NeilBrowne4e11e32010-06-16 16:45:16 +1000452static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 struct page *p;
455 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000456 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
NeilBrowne4e11e32010-06-16 16:45:16 +1000458 for (i = 0; i < num ; i++) {
Shaohua Lid592a992014-05-21 17:57:44 +0800459 WARN_ON(sh->dev[i].page != sh->dev[i].orig_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 p = sh->dev[i].page;
461 if (!p)
462 continue;
463 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800464 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466}
467
NeilBrowna9683a72015-02-25 12:02:51 +1100468static int grow_buffers(struct stripe_head *sh, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000471 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
NeilBrowne4e11e32010-06-16 16:45:16 +1000473 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct page *page;
475
NeilBrowna9683a72015-02-25 12:02:51 +1100476 if (!(page = alloc_page(gfp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return 1;
478 }
479 sh->dev[i].page = page;
Shaohua Lid592a992014-05-21 17:57:44 +0800480 sh->dev[i].orig_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482 return 0;
483}
484
NeilBrown784052e2009-03-31 15:19:07 +1100485static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrownd1688a62011-10-11 16:49:52 +1100486static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +1100487 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
NeilBrownb5663ba2009-03-31 14:39:38 +1100489static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
NeilBrownd1688a62011-10-11 16:49:52 +1100491 struct r5conf *conf = sh->raid_conf;
Shaohua Li566c09c2013-11-14 15:16:17 +1100492 int i, seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200494 BUG_ON(atomic_read(&sh->count) != 0);
495 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000496 BUG_ON(stripe_operations_active(sh));
shli@kernel.org59fc6302014-12-15 12:57:03 +1100497 BUG_ON(sh->batch_head);
Dan Williamsd84e0f12007-01-02 13:52:30 -0700498
Dan Williams45b42332007-07-09 11:56:43 -0700499 pr_debug("init_stripe called, stripe %llu\n",
Markus Stockhausenb8e6a152014-08-23 20:19:27 +1000500 (unsigned long long)sector);
Shaohua Li566c09c2013-11-14 15:16:17 +1100501retry:
502 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrown86b42c72009-03-31 15:19:03 +1100503 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100504 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100506 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 sh->state = 0;
508
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800509 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 struct r5dev *dev = &sh->dev[i];
511
Dan Williamsd84e0f12007-01-02 13:52:30 -0700512 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 test_bit(R5_LOCKED, &dev->flags)) {
NeilBrowncc6167b2016-11-02 14:16:50 +1100514 pr_err("sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700516 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 test_bit(R5_LOCKED, &dev->flags));
NeilBrown8cfa7b02011-07-27 11:00:36 +1000518 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100521 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Shaohua Li566c09c2013-11-14 15:16:17 +1100523 if (read_seqcount_retry(&conf->gen_lock, seq))
524 goto retry;
shli@kernel.org7a87f432014-12-15 12:57:03 +1100525 sh->overwrite_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 insert_hash(conf, sh);
Shaohua Li851c30c2013-08-28 14:30:16 +0800527 sh->cpu = smp_processor_id();
shli@kernel.orgda41ba62014-12-15 12:57:03 +1100528 set_bit(STRIPE_BATCH_READY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
NeilBrownd1688a62011-10-11 16:49:52 +1100531static struct stripe_head *__find_stripe(struct r5conf *conf, sector_t sector,
NeilBrown86b42c72009-03-31 15:19:03 +1100532 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 struct stripe_head *sh;
535
Dan Williams45b42332007-07-09 11:56:43 -0700536 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800537 hlist_for_each_entry(sh, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100538 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700540 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return NULL;
542}
543
NeilBrown674806d2010-06-16 17:17:53 +1000544/*
545 * Need to check if array has failed when deciding whether to:
546 * - start an array
547 * - remove non-faulty devices
548 * - add a spare
549 * - allow a reshape
550 * This determination is simple when no reshape is happening.
551 * However if there is a reshape, we need to carefully check
552 * both the before and after sections.
553 * This is because some failed devices may only affect one
554 * of the two sections, and some non-in_sync devices may
555 * be insync in the section most affected by failed devices.
556 */
NeilBrown908f4fb2011-12-23 10:17:50 +1100557static int calc_degraded(struct r5conf *conf)
NeilBrown674806d2010-06-16 17:17:53 +1000558{
NeilBrown908f4fb2011-12-23 10:17:50 +1100559 int degraded, degraded2;
NeilBrown674806d2010-06-16 17:17:53 +1000560 int i;
NeilBrown674806d2010-06-16 17:17:53 +1000561
562 rcu_read_lock();
563 degraded = 0;
564 for (i = 0; i < conf->previous_raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100565 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000566 if (rdev && test_bit(Faulty, &rdev->flags))
567 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000568 if (!rdev || test_bit(Faulty, &rdev->flags))
569 degraded++;
570 else if (test_bit(In_sync, &rdev->flags))
571 ;
572 else
573 /* not in-sync or faulty.
574 * If the reshape increases the number of devices,
575 * this is being recovered by the reshape, so
576 * this 'previous' section is not in_sync.
577 * If the number of devices is being reduced however,
578 * the device can only be part of the array if
579 * we are reverting a reshape, so this section will
580 * be in-sync.
581 */
582 if (conf->raid_disks >= conf->previous_raid_disks)
583 degraded++;
584 }
585 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100586 if (conf->raid_disks == conf->previous_raid_disks)
587 return degraded;
NeilBrown674806d2010-06-16 17:17:53 +1000588 rcu_read_lock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100589 degraded2 = 0;
NeilBrown674806d2010-06-16 17:17:53 +1000590 for (i = 0; i < conf->raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100591 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000592 if (rdev && test_bit(Faulty, &rdev->flags))
593 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000594 if (!rdev || test_bit(Faulty, &rdev->flags))
NeilBrown908f4fb2011-12-23 10:17:50 +1100595 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000596 else if (test_bit(In_sync, &rdev->flags))
597 ;
598 else
599 /* not in-sync or faulty.
600 * If reshape increases the number of devices, this
601 * section has already been recovered, else it
602 * almost certainly hasn't.
603 */
604 if (conf->raid_disks <= conf->previous_raid_disks)
NeilBrown908f4fb2011-12-23 10:17:50 +1100605 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000606 }
607 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100608 if (degraded2 > degraded)
609 return degraded2;
610 return degraded;
611}
612
613static int has_failed(struct r5conf *conf)
614{
615 int degraded;
616
617 if (conf->mddev->reshape_position == MaxSector)
618 return conf->mddev->degraded > conf->max_degraded;
619
620 degraded = calc_degraded(conf);
NeilBrown674806d2010-06-16 17:17:53 +1000621 if (degraded > conf->max_degraded)
622 return 1;
623 return 0;
624}
625
Shaohua Li6d036f72015-08-13 14:31:57 -0700626struct stripe_head *
627raid5_get_active_stripe(struct r5conf *conf, sector_t sector,
628 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 struct stripe_head *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +1100631 int hash = stripe_hash_locks_hash(sector);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800632 int inc_empty_inactive_list_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Dan Williams45b42332007-07-09 11:56:43 -0700634 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Shaohua Li566c09c2013-11-14 15:16:17 +1100636 spin_lock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 do {
Yuanhan Liub1b46482015-05-08 18:19:06 +1000639 wait_event_lock_irq(conf->wait_for_quiescent,
NeilBrowna8c906c2009-06-09 14:39:59 +1000640 conf->quiesce == 0 || noquiesce,
Shaohua Li566c09c2013-11-14 15:16:17 +1100641 *(conf->hash_locks + hash));
NeilBrown86b42c72009-03-31 15:19:03 +1100642 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (!sh) {
NeilBrownedbe83a2015-02-26 12:47:56 +1100644 if (!test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100645 sh = get_free_stripe(conf, hash);
Shaohua Li713bc5c2015-05-28 17:33:47 -0700646 if (!sh && !test_bit(R5_DID_ALLOC,
647 &conf->cache_state))
NeilBrownedbe83a2015-02-26 12:47:56 +1100648 set_bit(R5_ALLOC_MORE,
649 &conf->cache_state);
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (noblock && sh == NULL)
652 break;
Song Liua39f7af2016-11-17 15:24:40 -0800653
654 r5c_check_stripe_cache_usage(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (!sh) {
NeilBrown54233992015-02-26 12:21:04 +1100656 set_bit(R5_INACTIVE_BLOCKED,
657 &conf->cache_state);
Song Liua39f7af2016-11-17 15:24:40 -0800658 r5l_wake_reclaim(conf->log, 0);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800659 wait_event_lock_irq(
660 conf->wait_for_stripe,
Shaohua Li566c09c2013-11-14 15:16:17 +1100661 !list_empty(conf->inactive_list + hash) &&
662 (atomic_read(&conf->active_stripes)
663 < (conf->max_nr_stripes * 3 / 4)
NeilBrown54233992015-02-26 12:21:04 +1100664 || !test_bit(R5_INACTIVE_BLOCKED,
665 &conf->cache_state)),
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800666 *(conf->hash_locks + hash));
NeilBrown54233992015-02-26 12:21:04 +1100667 clear_bit(R5_INACTIVE_BLOCKED,
668 &conf->cache_state);
NeilBrown7da9d452014-01-22 11:45:03 +1100669 } else {
NeilBrownb5663ba2009-03-31 14:39:38 +1100670 init_stripe(sh, sector, previous);
NeilBrown7da9d452014-01-22 11:45:03 +1100671 atomic_inc(&sh->count);
672 }
Shaohua Lie240c182014-04-09 11:27:42 +0800673 } else if (!atomic_inc_not_zero(&sh->count)) {
NeilBrown6d183de2013-11-28 10:55:27 +1100674 spin_lock(&conf->device_lock);
Shaohua Lie240c182014-04-09 11:27:42 +0800675 if (!atomic_read(&sh->count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (!test_bit(STRIPE_HANDLE, &sh->state))
677 atomic_inc(&conf->active_stripes);
NeilBrown5af9bef2014-01-14 15:16:10 +1100678 BUG_ON(list_empty(&sh->lru) &&
679 !test_bit(STRIPE_EXPANDING, &sh->state));
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800680 inc_empty_inactive_list_flag = 0;
681 if (!list_empty(conf->inactive_list + hash))
682 inc_empty_inactive_list_flag = 1;
NeilBrown16a53ec2006-06-26 00:27:38 -0700683 list_del_init(&sh->lru);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800684 if (list_empty(conf->inactive_list + hash) && inc_empty_inactive_list_flag)
685 atomic_inc(&conf->empty_inactive_list_nr);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800686 if (sh->group) {
687 sh->group->stripes_cnt--;
688 sh->group = NULL;
689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
NeilBrown7da9d452014-01-22 11:45:03 +1100691 atomic_inc(&sh->count);
NeilBrown6d183de2013-11-28 10:55:27 +1100692 spin_unlock(&conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694 } while (sh == NULL);
695
Shaohua Li566c09c2013-11-14 15:16:17 +1100696 spin_unlock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return sh;
698}
699
shli@kernel.org7a87f432014-12-15 12:57:03 +1100700static bool is_full_stripe_write(struct stripe_head *sh)
701{
702 BUG_ON(sh->overwrite_disks > (sh->disks - sh->raid_conf->max_degraded));
703 return sh->overwrite_disks == (sh->disks - sh->raid_conf->max_degraded);
704}
705
shli@kernel.org59fc6302014-12-15 12:57:03 +1100706static void lock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
707{
708 local_irq_disable();
709 if (sh1 > sh2) {
710 spin_lock(&sh2->stripe_lock);
711 spin_lock_nested(&sh1->stripe_lock, 1);
712 } else {
713 spin_lock(&sh1->stripe_lock);
714 spin_lock_nested(&sh2->stripe_lock, 1);
715 }
716}
717
718static void unlock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
719{
720 spin_unlock(&sh1->stripe_lock);
721 spin_unlock(&sh2->stripe_lock);
722 local_irq_enable();
723}
724
725/* Only freshly new full stripe normal write stripe can be added to a batch list */
726static bool stripe_can_batch(struct stripe_head *sh)
727{
Shaohua Li9c3e3332015-08-13 14:32:02 -0700728 struct r5conf *conf = sh->raid_conf;
729
730 if (conf->log)
731 return false;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100732 return test_bit(STRIPE_BATCH_READY, &sh->state) &&
NeilBrownd0852df52015-05-27 08:43:45 +1000733 !test_bit(STRIPE_BITMAP_PENDING, &sh->state) &&
shli@kernel.org59fc6302014-12-15 12:57:03 +1100734 is_full_stripe_write(sh);
735}
736
737/* we only do back search */
738static void stripe_add_to_batch_list(struct r5conf *conf, struct stripe_head *sh)
739{
740 struct stripe_head *head;
741 sector_t head_sector, tmp_sec;
742 int hash;
743 int dd_idx;
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800744 int inc_empty_inactive_list_flag;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100745
shli@kernel.org59fc6302014-12-15 12:57:03 +1100746 /* Don't cross chunks, so stripe pd_idx/qd_idx is the same */
747 tmp_sec = sh->sector;
748 if (!sector_div(tmp_sec, conf->chunk_sectors))
749 return;
750 head_sector = sh->sector - STRIPE_SECTORS;
751
752 hash = stripe_hash_locks_hash(head_sector);
753 spin_lock_irq(conf->hash_locks + hash);
754 head = __find_stripe(conf, head_sector, conf->generation);
755 if (head && !atomic_inc_not_zero(&head->count)) {
756 spin_lock(&conf->device_lock);
757 if (!atomic_read(&head->count)) {
758 if (!test_bit(STRIPE_HANDLE, &head->state))
759 atomic_inc(&conf->active_stripes);
760 BUG_ON(list_empty(&head->lru) &&
761 !test_bit(STRIPE_EXPANDING, &head->state));
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800762 inc_empty_inactive_list_flag = 0;
763 if (!list_empty(conf->inactive_list + hash))
764 inc_empty_inactive_list_flag = 1;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100765 list_del_init(&head->lru);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800766 if (list_empty(conf->inactive_list + hash) && inc_empty_inactive_list_flag)
767 atomic_inc(&conf->empty_inactive_list_nr);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100768 if (head->group) {
769 head->group->stripes_cnt--;
770 head->group = NULL;
771 }
772 }
773 atomic_inc(&head->count);
774 spin_unlock(&conf->device_lock);
775 }
776 spin_unlock_irq(conf->hash_locks + hash);
777
778 if (!head)
779 return;
780 if (!stripe_can_batch(head))
781 goto out;
782
783 lock_two_stripes(head, sh);
784 /* clear_batch_ready clear the flag */
785 if (!stripe_can_batch(head) || !stripe_can_batch(sh))
786 goto unlock_out;
787
788 if (sh->batch_head)
789 goto unlock_out;
790
791 dd_idx = 0;
792 while (dd_idx == sh->pd_idx || dd_idx == sh->qd_idx)
793 dd_idx++;
Jens Axboe1eff9d32016-08-05 15:35:16 -0600794 if (head->dev[dd_idx].towrite->bi_opf != sh->dev[dd_idx].towrite->bi_opf ||
Mike Christie796a5cf2016-06-05 14:32:07 -0500795 bio_op(head->dev[dd_idx].towrite) != bio_op(sh->dev[dd_idx].towrite))
shli@kernel.org59fc6302014-12-15 12:57:03 +1100796 goto unlock_out;
797
798 if (head->batch_head) {
799 spin_lock(&head->batch_head->batch_lock);
800 /* This batch list is already running */
801 if (!stripe_can_batch(head)) {
802 spin_unlock(&head->batch_head->batch_lock);
803 goto unlock_out;
804 }
805
806 /*
807 * at this point, head's BATCH_READY could be cleared, but we
808 * can still add the stripe to batch list
809 */
810 list_add(&sh->batch_list, &head->batch_list);
811 spin_unlock(&head->batch_head->batch_lock);
812
813 sh->batch_head = head->batch_head;
814 } else {
815 head->batch_head = head;
816 sh->batch_head = head->batch_head;
817 spin_lock(&head->batch_lock);
818 list_add_tail(&sh->batch_list, &head->batch_list);
819 spin_unlock(&head->batch_lock);
820 }
821
822 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
823 if (atomic_dec_return(&conf->preread_active_stripes)
824 < IO_THRESHOLD)
825 md_wakeup_thread(conf->mddev->thread);
826
NeilBrown2b6b2452015-05-21 15:10:01 +1000827 if (test_and_clear_bit(STRIPE_BIT_DELAY, &sh->state)) {
828 int seq = sh->bm_seq;
829 if (test_bit(STRIPE_BIT_DELAY, &sh->batch_head->state) &&
830 sh->batch_head->bm_seq > seq)
831 seq = sh->batch_head->bm_seq;
832 set_bit(STRIPE_BIT_DELAY, &sh->batch_head->state);
833 sh->batch_head->bm_seq = seq;
834 }
835
shli@kernel.org59fc6302014-12-15 12:57:03 +1100836 atomic_inc(&sh->count);
837unlock_out:
838 unlock_two_stripes(head, sh);
839out:
Shaohua Li6d036f72015-08-13 14:31:57 -0700840 raid5_release_stripe(head);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100841}
842
NeilBrown05616be2012-05-21 09:27:00 +1000843/* Determine if 'data_offset' or 'new_data_offset' should be used
844 * in this stripe_head.
845 */
846static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
847{
848 sector_t progress = conf->reshape_progress;
849 /* Need a memory barrier to make sure we see the value
850 * of conf->generation, or ->data_offset that was set before
851 * reshape_progress was updated.
852 */
853 smp_rmb();
854 if (progress == MaxSector)
855 return 0;
856 if (sh->generation == conf->generation - 1)
857 return 0;
858 /* We are in a reshape, and this is a new-generation stripe,
859 * so use new_data_offset.
860 */
861 return 1;
862}
863
NeilBrown6712ecf2007-09-27 12:47:43 +0200864static void
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200865raid5_end_read_request(struct bio *bi);
NeilBrown6712ecf2007-09-27 12:47:43 +0200866static void
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200867raid5_end_write_request(struct bio *bi);
Dan Williams91c00922007-01-02 13:52:30 -0700868
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000869static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700870{
NeilBrownd1688a62011-10-11 16:49:52 +1100871 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -0700872 int i, disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100873 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -0700874
875 might_sleep();
876
Song Liu1e6d6902016-11-17 15:24:39 -0800877 if (!test_bit(STRIPE_R5C_CACHING, &sh->state)) {
878 /* writing out phase */
879 if (r5l_write_stripe(conf->log, sh) == 0)
880 return;
881 } else { /* caching phase */
882 if (test_bit(STRIPE_LOG_TRAPPED, &sh->state)) {
883 r5c_cache_data(conf->log, sh, s);
884 return;
885 }
886 }
887
Dan Williams91c00922007-01-02 13:52:30 -0700888 for (i = disks; i--; ) {
Mike Christie796a5cf2016-06-05 14:32:07 -0500889 int op, op_flags = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +1100890 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +1100891 struct bio *bi, *rbi;
892 struct md_rdev *rdev, *rrdev = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100893
894 sh = head_sh;
Tejun Heoe9c74692010-09-03 11:56:18 +0200895 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -0500896 op = REQ_OP_WRITE;
Tejun Heoe9c74692010-09-03 11:56:18 +0200897 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500898 op_flags = WRITE_FUA;
Shaohua Li9e4447682012-10-11 13:49:49 +1100899 if (test_bit(R5_Discard, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500900 op = REQ_OP_DISCARD;
Tejun Heoe9c74692010-09-03 11:56:18 +0200901 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500902 op = REQ_OP_READ;
NeilBrown9a3e1102011-12-23 10:17:53 +1100903 else if (test_and_clear_bit(R5_WantReplace,
904 &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -0500905 op = REQ_OP_WRITE;
NeilBrown9a3e1102011-12-23 10:17:53 +1100906 replace_only = 1;
907 } else
Dan Williams91c00922007-01-02 13:52:30 -0700908 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +1000909 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500910 op_flags |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -0700911
shli@kernel.org59fc6302014-12-15 12:57:03 +1100912again:
Dan Williams91c00922007-01-02 13:52:30 -0700913 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +1100914 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -0700915
Dan Williams91c00922007-01-02 13:52:30 -0700916 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +1100917 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +1100918 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
919 rdev = rcu_dereference(conf->disks[i].rdev);
920 if (!rdev) {
921 rdev = rrdev;
922 rrdev = NULL;
923 }
Mike Christie796a5cf2016-06-05 14:32:07 -0500924 if (op_is_write(op)) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100925 if (replace_only)
926 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +1100927 if (rdev == rrdev)
928 /* We raced and saw duplicates */
929 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +1100930 } else {
shli@kernel.org59fc6302014-12-15 12:57:03 +1100931 if (test_bit(R5_ReadRepl, &head_sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +1100932 rdev = rrdev;
933 rrdev = NULL;
934 }
NeilBrown977df362011-12-23 10:17:53 +1100935
Dan Williams91c00922007-01-02 13:52:30 -0700936 if (rdev && test_bit(Faulty, &rdev->flags))
937 rdev = NULL;
938 if (rdev)
939 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +1100940 if (rrdev && test_bit(Faulty, &rrdev->flags))
941 rrdev = NULL;
942 if (rrdev)
943 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -0700944 rcu_read_unlock();
945
NeilBrown73e92e52011-07-28 11:39:22 +1000946 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +1100947 * need to check for writes. We never accept write errors
948 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +1000949 */
Mike Christie796a5cf2016-06-05 14:32:07 -0500950 while (op_is_write(op) && rdev &&
NeilBrown73e92e52011-07-28 11:39:22 +1000951 test_bit(WriteErrorSeen, &rdev->flags)) {
952 sector_t first_bad;
953 int bad_sectors;
954 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
955 &first_bad, &bad_sectors);
956 if (!bad)
957 break;
958
959 if (bad < 0) {
960 set_bit(BlockedBadBlocks, &rdev->flags);
961 if (!conf->mddev->external &&
962 conf->mddev->flags) {
963 /* It is very unlikely, but we might
964 * still need to write out the
965 * bad block log - better give it
966 * a chance*/
967 md_check_recovery(conf->mddev);
968 }
majianpeng18507532012-07-03 12:11:54 +1000969 /*
970 * Because md_wait_for_blocked_rdev
971 * will dec nr_pending, we must
972 * increment it first.
973 */
974 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +1000975 md_wait_for_blocked_rdev(rdev, conf->mddev);
976 } else {
977 /* Acknowledged bad block - skip the write */
978 rdev_dec_pending(rdev, conf->mddev);
979 rdev = NULL;
980 }
981 }
982
Dan Williams91c00922007-01-02 13:52:30 -0700983 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100984 if (s->syncing || s->expanding || s->expanded
985 || s->replacing)
Dan Williams91c00922007-01-02 13:52:30 -0700986 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
987
Dan Williams2b7497f2008-06-28 08:31:52 +1000988 set_bit(STRIPE_IO_STARTED, &sh->state);
989
Dan Williams91c00922007-01-02 13:52:30 -0700990 bi->bi_bdev = rdev->bdev;
Mike Christie796a5cf2016-06-05 14:32:07 -0500991 bio_set_op_attrs(bi, op, op_flags);
992 bi->bi_end_io = op_is_write(op)
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700993 ? raid5_end_write_request
994 : raid5_end_read_request;
995 bi->bi_private = sh;
996
Mike Christie6296b962016-06-05 14:32:21 -0500997 pr_debug("%s: for %llu schedule op %d on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700998 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -0600999 bi->bi_opf, i);
Dan Williams91c00922007-01-02 13:52:30 -07001000 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001001 if (sh != head_sh)
1002 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001003 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001004 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001005 + rdev->new_data_offset);
1006 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001007 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001008 + rdev->data_offset);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001009 if (test_bit(R5_ReadNoMerge, &head_sh->dev[i].flags))
Jens Axboe1eff9d32016-08-05 15:35:16 -06001010 bi->bi_opf |= REQ_NOMERGE;
majianpeng3f9e7c12012-07-31 10:04:21 +10001011
Shaohua Lid592a992014-05-21 17:57:44 +08001012 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1013 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1014 sh->dev[i].vec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001015 bi->bi_vcnt = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001016 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1017 bi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001018 bi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001019 /*
1020 * If this is discard request, set bi_vcnt 0. We don't
1021 * want to confuse SCSI because SCSI will replace payload
1022 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001023 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001024 bi->bi_vcnt = 0;
NeilBrown977df362011-12-23 10:17:53 +11001025 if (rrdev)
1026 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001027
1028 if (conf->mddev->gendisk)
1029 trace_block_bio_remap(bdev_get_queue(bi->bi_bdev),
1030 bi, disk_devt(conf->mddev->gendisk),
1031 sh->dev[i].sector);
Dan Williams91c00922007-01-02 13:52:30 -07001032 generic_make_request(bi);
NeilBrown977df362011-12-23 10:17:53 +11001033 }
1034 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001035 if (s->syncing || s->expanding || s->expanded
1036 || s->replacing)
NeilBrown977df362011-12-23 10:17:53 +11001037 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
1038
1039 set_bit(STRIPE_IO_STARTED, &sh->state);
1040
1041 rbi->bi_bdev = rrdev->bdev;
Mike Christie796a5cf2016-06-05 14:32:07 -05001042 bio_set_op_attrs(rbi, op, op_flags);
1043 BUG_ON(!op_is_write(op));
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001044 rbi->bi_end_io = raid5_end_write_request;
1045 rbi->bi_private = sh;
1046
Mike Christie6296b962016-06-05 14:32:21 -05001047 pr_debug("%s: for %llu schedule op %d on "
NeilBrown977df362011-12-23 10:17:53 +11001048 "replacement disc %d\n",
1049 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -06001050 rbi->bi_opf, i);
NeilBrown977df362011-12-23 10:17:53 +11001051 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001052 if (sh != head_sh)
1053 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001054 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001055 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001056 + rrdev->new_data_offset);
1057 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001058 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001059 + rrdev->data_offset);
Shaohua Lid592a992014-05-21 17:57:44 +08001060 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1061 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1062 sh->dev[i].rvec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001063 rbi->bi_vcnt = 1;
NeilBrown977df362011-12-23 10:17:53 +11001064 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1065 rbi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001066 rbi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001067 /*
1068 * If this is discard request, set bi_vcnt 0. We don't
1069 * want to confuse SCSI because SCSI will replace payload
1070 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001071 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001072 rbi->bi_vcnt = 0;
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001073 if (conf->mddev->gendisk)
1074 trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev),
1075 rbi, disk_devt(conf->mddev->gendisk),
1076 sh->dev[i].sector);
NeilBrown977df362011-12-23 10:17:53 +11001077 generic_make_request(rbi);
1078 }
1079 if (!rdev && !rrdev) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001080 if (op_is_write(op))
Dan Williams91c00922007-01-02 13:52:30 -07001081 set_bit(STRIPE_DEGRADED, &sh->state);
Mike Christie6296b962016-06-05 14:32:21 -05001082 pr_debug("skip op %d on disc %d for sector %llu\n",
Jens Axboe1eff9d32016-08-05 15:35:16 -06001083 bi->bi_opf, i, (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001084 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1085 set_bit(STRIPE_HANDLE, &sh->state);
1086 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001087
1088 if (!head_sh->batch_head)
1089 continue;
1090 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1091 batch_list);
1092 if (sh != head_sh)
1093 goto again;
Dan Williams91c00922007-01-02 13:52:30 -07001094 }
1095}
1096
1097static struct dma_async_tx_descriptor *
Shaohua Lid592a992014-05-21 17:57:44 +08001098async_copy_data(int frombio, struct bio *bio, struct page **page,
1099 sector_t sector, struct dma_async_tx_descriptor *tx,
Song Liu1e6d6902016-11-17 15:24:39 -08001100 struct stripe_head *sh, int no_skipcopy)
Dan Williams91c00922007-01-02 13:52:30 -07001101{
Kent Overstreet79886132013-11-23 17:19:00 -08001102 struct bio_vec bvl;
1103 struct bvec_iter iter;
Dan Williams91c00922007-01-02 13:52:30 -07001104 struct page *bio_page;
Dan Williams91c00922007-01-02 13:52:30 -07001105 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -07001106 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -07001107 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001108
Kent Overstreet4f024f32013-10-11 15:44:27 -07001109 if (bio->bi_iter.bi_sector >= sector)
1110 page_offset = (signed)(bio->bi_iter.bi_sector - sector) * 512;
Dan Williams91c00922007-01-02 13:52:30 -07001111 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001112 page_offset = (signed)(sector - bio->bi_iter.bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -07001113
Dan Williams0403e382009-09-08 17:42:50 -07001114 if (frombio)
1115 flags |= ASYNC_TX_FENCE;
1116 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
1117
Kent Overstreet79886132013-11-23 17:19:00 -08001118 bio_for_each_segment(bvl, bio, iter) {
1119 int len = bvl.bv_len;
Dan Williams91c00922007-01-02 13:52:30 -07001120 int clen;
1121 int b_offset = 0;
1122
1123 if (page_offset < 0) {
1124 b_offset = -page_offset;
1125 page_offset += b_offset;
1126 len -= b_offset;
1127 }
1128
1129 if (len > 0 && page_offset + len > STRIPE_SIZE)
1130 clen = STRIPE_SIZE - page_offset;
1131 else
1132 clen = len;
1133
1134 if (clen > 0) {
Kent Overstreet79886132013-11-23 17:19:00 -08001135 b_offset += bvl.bv_offset;
1136 bio_page = bvl.bv_page;
Shaohua Lid592a992014-05-21 17:57:44 +08001137 if (frombio) {
1138 if (sh->raid_conf->skip_copy &&
1139 b_offset == 0 && page_offset == 0 &&
Song Liu1e6d6902016-11-17 15:24:39 -08001140 clen == STRIPE_SIZE &&
1141 !no_skipcopy)
Shaohua Lid592a992014-05-21 17:57:44 +08001142 *page = bio_page;
1143 else
1144 tx = async_memcpy(*page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001145 b_offset, clen, &submit);
Shaohua Lid592a992014-05-21 17:57:44 +08001146 } else
1147 tx = async_memcpy(bio_page, *page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001148 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001149 }
Dan Williamsa08abd82009-06-03 11:43:59 -07001150 /* chain the operations */
1151 submit.depend_tx = tx;
1152
Dan Williams91c00922007-01-02 13:52:30 -07001153 if (clen < len) /* hit end of page */
1154 break;
1155 page_offset += len;
1156 }
1157
1158 return tx;
1159}
1160
1161static void ops_complete_biofill(void *stripe_head_ref)
1162{
1163 struct stripe_head *sh = stripe_head_ref;
NeilBrown34a6f802015-08-14 12:07:57 +10001164 struct bio_list return_bi = BIO_EMPTY_LIST;
Dan Williamse4d84902007-09-24 10:06:13 -07001165 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001166
Harvey Harrisone46b2722008-04-28 02:15:50 -07001167 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001168 (unsigned long long)sh->sector);
1169
1170 /* clear completed biofills */
1171 for (i = sh->disks; i--; ) {
1172 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -07001173
1174 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -07001175 /* and check if we need to reply to a read request,
1176 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +10001177 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -07001178 */
1179 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001180 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -07001181
Dan Williams91c00922007-01-02 13:52:30 -07001182 BUG_ON(!dev->read);
1183 rbi = dev->read;
1184 dev->read = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001185 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001186 dev->sector + STRIPE_SECTORS) {
1187 rbi2 = r5_next_bio(rbi, dev->sector);
NeilBrown34a6f802015-08-14 12:07:57 +10001188 if (!raid5_dec_bi_active_stripes(rbi))
1189 bio_list_add(&return_bi, rbi);
Dan Williams91c00922007-01-02 13:52:30 -07001190 rbi = rbi2;
1191 }
1192 }
1193 }
Dan Williams83de75c2008-06-28 08:31:58 +10001194 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001195
NeilBrown34a6f802015-08-14 12:07:57 +10001196 return_io(&return_bi);
Dan Williams91c00922007-01-02 13:52:30 -07001197
Dan Williamse4d84902007-09-24 10:06:13 -07001198 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001199 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001200}
1201
1202static void ops_run_biofill(struct stripe_head *sh)
1203{
1204 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -07001205 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001206 int i;
1207
shli@kernel.org59fc6302014-12-15 12:57:03 +11001208 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001209 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001210 (unsigned long long)sh->sector);
1211
1212 for (i = sh->disks; i--; ) {
1213 struct r5dev *dev = &sh->dev[i];
1214 if (test_bit(R5_Wantfill, &dev->flags)) {
1215 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +10001216 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001217 dev->read = rbi = dev->toread;
1218 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10001219 spin_unlock_irq(&sh->stripe_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001220 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001221 dev->sector + STRIPE_SECTORS) {
Shaohua Lid592a992014-05-21 17:57:44 +08001222 tx = async_copy_data(0, rbi, &dev->page,
Song Liu1e6d6902016-11-17 15:24:39 -08001223 dev->sector, tx, sh, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001224 rbi = r5_next_bio(rbi, dev->sector);
1225 }
1226 }
1227 }
1228
1229 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001230 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
1231 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001232}
1233
Dan Williams4e7d2c02009-08-29 19:13:11 -07001234static void mark_target_uptodate(struct stripe_head *sh, int target)
1235{
1236 struct r5dev *tgt;
1237
1238 if (target < 0)
1239 return;
1240
1241 tgt = &sh->dev[target];
1242 set_bit(R5_UPTODATE, &tgt->flags);
1243 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1244 clear_bit(R5_Wantcompute, &tgt->flags);
1245}
1246
Dan Williamsac6b53b2009-07-14 13:40:19 -07001247static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001248{
1249 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001250
Harvey Harrisone46b2722008-04-28 02:15:50 -07001251 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001252 (unsigned long long)sh->sector);
1253
Dan Williamsac6b53b2009-07-14 13:40:19 -07001254 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -07001255 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001256 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -07001257
Dan Williamsecc65c92008-06-28 08:31:57 +10001258 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
1259 if (sh->check_state == check_state_compute_run)
1260 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -07001261 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001262 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001263}
1264
Dan Williamsd6f38f32009-07-14 11:50:52 -07001265/* return a pointer to the address conversion region of the scribble buffer */
1266static addr_conv_t *to_addr_conv(struct stripe_head *sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001267 struct raid5_percpu *percpu, int i)
Dan Williams91c00922007-01-02 13:52:30 -07001268{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001269 void *addr;
1270
1271 addr = flex_array_get(percpu->scribble, i);
1272 return addr + sizeof(struct page *) * (sh->disks + 2);
1273}
1274
1275/* return a pointer to the address conversion region of the scribble buffer */
1276static struct page **to_addr_page(struct raid5_percpu *percpu, int i)
1277{
1278 void *addr;
1279
1280 addr = flex_array_get(percpu->scribble, i);
1281 return addr;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001282}
1283
1284static struct dma_async_tx_descriptor *
1285ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
1286{
Dan Williams91c00922007-01-02 13:52:30 -07001287 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001288 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001289 int target = sh->ops.target;
1290 struct r5dev *tgt = &sh->dev[target];
1291 struct page *xor_dest = tgt->page;
1292 int count = 0;
1293 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001294 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001295 int i;
1296
shli@kernel.org59fc6302014-12-15 12:57:03 +11001297 BUG_ON(sh->batch_head);
1298
Dan Williams91c00922007-01-02 13:52:30 -07001299 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001300 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -07001301 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1302
1303 for (i = disks; i--; )
1304 if (i != target)
1305 xor_srcs[count++] = sh->dev[i].page;
1306
1307 atomic_inc(&sh->count);
1308
Dan Williams0403e382009-09-08 17:42:50 -07001309 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001310 ops_complete_compute, sh, to_addr_conv(sh, percpu, 0));
Dan Williams91c00922007-01-02 13:52:30 -07001311 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -07001312 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001313 else
Dan Williamsa08abd82009-06-03 11:43:59 -07001314 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001315
Dan Williams91c00922007-01-02 13:52:30 -07001316 return tx;
1317}
1318
Dan Williamsac6b53b2009-07-14 13:40:19 -07001319/* set_syndrome_sources - populate source buffers for gen_syndrome
1320 * @srcs - (struct page *) array of size sh->disks
1321 * @sh - stripe_head to parse
1322 *
1323 * Populates srcs in proper layout order for the stripe and returns the
1324 * 'count' of sources to be used in a call to async_gen_syndrome. The P
1325 * destination buffer is recorded in srcs[count] and the Q destination
1326 * is recorded in srcs[count+1]].
1327 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001328static int set_syndrome_sources(struct page **srcs,
1329 struct stripe_head *sh,
1330 int srctype)
Dan Williamsac6b53b2009-07-14 13:40:19 -07001331{
1332 int disks = sh->disks;
1333 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1334 int d0_idx = raid6_d0(sh);
1335 int count;
1336 int i;
1337
1338 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001339 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001340
1341 count = 0;
1342 i = d0_idx;
1343 do {
1344 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001345 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001346
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001347 if (i == sh->qd_idx || i == sh->pd_idx ||
1348 (srctype == SYNDROME_SRC_ALL) ||
1349 (srctype == SYNDROME_SRC_WANT_DRAIN &&
Song Liu1e6d6902016-11-17 15:24:39 -08001350 (test_bit(R5_Wantdrain, &dev->flags) ||
1351 test_bit(R5_InJournal, &dev->flags))) ||
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001352 (srctype == SYNDROME_SRC_WRITTEN &&
Song Liu1e6d6902016-11-17 15:24:39 -08001353 dev->written)) {
1354 if (test_bit(R5_InJournal, &dev->flags))
1355 srcs[slot] = sh->dev[i].orig_page;
1356 else
1357 srcs[slot] = sh->dev[i].page;
1358 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001359 i = raid6_next_disk(i, disks);
1360 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001361
NeilBrowne4424fe2009-10-16 16:27:34 +11001362 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001363}
1364
1365static struct dma_async_tx_descriptor *
1366ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1367{
1368 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001369 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001370 int target;
1371 int qd_idx = sh->qd_idx;
1372 struct dma_async_tx_descriptor *tx;
1373 struct async_submit_ctl submit;
1374 struct r5dev *tgt;
1375 struct page *dest;
1376 int i;
1377 int count;
1378
shli@kernel.org59fc6302014-12-15 12:57:03 +11001379 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001380 if (sh->ops.target < 0)
1381 target = sh->ops.target2;
1382 else if (sh->ops.target2 < 0)
1383 target = sh->ops.target;
1384 else
1385 /* we should only have one valid target */
1386 BUG();
1387 BUG_ON(target < 0);
1388 pr_debug("%s: stripe %llu block: %d\n",
1389 __func__, (unsigned long long)sh->sector, target);
1390
1391 tgt = &sh->dev[target];
1392 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1393 dest = tgt->page;
1394
1395 atomic_inc(&sh->count);
1396
1397 if (target == qd_idx) {
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001398 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001399 blocks[count] = NULL; /* regenerating p is not necessary */
1400 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001401 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1402 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001403 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001404 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1405 } else {
1406 /* Compute any data- or p-drive using XOR */
1407 count = 0;
1408 for (i = disks; i-- ; ) {
1409 if (i == target || i == qd_idx)
1410 continue;
1411 blocks[count++] = sh->dev[i].page;
1412 }
1413
Dan Williams0403e382009-09-08 17:42:50 -07001414 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1415 NULL, ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001416 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001417 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1418 }
1419
1420 return tx;
1421}
1422
1423static struct dma_async_tx_descriptor *
1424ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1425{
1426 int i, count, disks = sh->disks;
1427 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1428 int d0_idx = raid6_d0(sh);
1429 int faila = -1, failb = -1;
1430 int target = sh->ops.target;
1431 int target2 = sh->ops.target2;
1432 struct r5dev *tgt = &sh->dev[target];
1433 struct r5dev *tgt2 = &sh->dev[target2];
1434 struct dma_async_tx_descriptor *tx;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001435 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001436 struct async_submit_ctl submit;
1437
shli@kernel.org59fc6302014-12-15 12:57:03 +11001438 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001439 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1440 __func__, (unsigned long long)sh->sector, target, target2);
1441 BUG_ON(target < 0 || target2 < 0);
1442 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1443 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1444
Dan Williams6c910a72009-09-16 12:24:54 -07001445 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001446 * slot number conversion for 'faila' and 'failb'
1447 */
1448 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001449 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001450 count = 0;
1451 i = d0_idx;
1452 do {
1453 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1454
1455 blocks[slot] = sh->dev[i].page;
1456
1457 if (i == target)
1458 faila = slot;
1459 if (i == target2)
1460 failb = slot;
1461 i = raid6_next_disk(i, disks);
1462 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001463
1464 BUG_ON(faila == failb);
1465 if (failb < faila)
1466 swap(faila, failb);
1467 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1468 __func__, (unsigned long long)sh->sector, faila, failb);
1469
1470 atomic_inc(&sh->count);
1471
1472 if (failb == syndrome_disks+1) {
1473 /* Q disk is one of the missing disks */
1474 if (faila == syndrome_disks) {
1475 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001476 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1477 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001478 to_addr_conv(sh, percpu, 0));
NeilBrowne4424fe2009-10-16 16:27:34 +11001479 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001480 STRIPE_SIZE, &submit);
1481 } else {
1482 struct page *dest;
1483 int data_target;
1484 int qd_idx = sh->qd_idx;
1485
1486 /* Missing D+Q: recompute D from P, then recompute Q */
1487 if (target == qd_idx)
1488 data_target = target2;
1489 else
1490 data_target = target;
1491
1492 count = 0;
1493 for (i = disks; i-- ; ) {
1494 if (i == data_target || i == qd_idx)
1495 continue;
1496 blocks[count++] = sh->dev[i].page;
1497 }
1498 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001499 init_async_submit(&submit,
1500 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1501 NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001502 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001503 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1504 &submit);
1505
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001506 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williams0403e382009-09-08 17:42:50 -07001507 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1508 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001509 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001510 return async_gen_syndrome(blocks, 0, count+2,
1511 STRIPE_SIZE, &submit);
1512 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001513 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001514 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1515 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001516 to_addr_conv(sh, percpu, 0));
Dan Williams6c910a72009-09-16 12:24:54 -07001517 if (failb == syndrome_disks) {
1518 /* We're missing D+P. */
1519 return async_raid6_datap_recov(syndrome_disks+2,
1520 STRIPE_SIZE, faila,
1521 blocks, &submit);
1522 } else {
1523 /* We're missing D+D. */
1524 return async_raid6_2data_recov(syndrome_disks+2,
1525 STRIPE_SIZE, faila, failb,
1526 blocks, &submit);
1527 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001528 }
1529}
1530
Dan Williams91c00922007-01-02 13:52:30 -07001531static void ops_complete_prexor(void *stripe_head_ref)
1532{
1533 struct stripe_head *sh = stripe_head_ref;
1534
Harvey Harrisone46b2722008-04-28 02:15:50 -07001535 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001536 (unsigned long long)sh->sector);
Song Liu1e6d6902016-11-17 15:24:39 -08001537
1538 if (r5c_is_writeback(sh->raid_conf->log))
1539 /*
1540 * raid5-cache write back uses orig_page during prexor.
1541 * After prexor, it is time to free orig_page
1542 */
1543 r5c_release_extra_page(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001544}
1545
1546static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001547ops_run_prexor5(struct stripe_head *sh, struct raid5_percpu *percpu,
1548 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001549{
Dan Williams91c00922007-01-02 13:52:30 -07001550 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001551 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001552 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001553 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001554
1555 /* existing parity data subtracted */
1556 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1557
shli@kernel.org59fc6302014-12-15 12:57:03 +11001558 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001559 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001560 (unsigned long long)sh->sector);
1561
1562 for (i = disks; i--; ) {
1563 struct r5dev *dev = &sh->dev[i];
1564 /* Only process blocks that are known to be uptodate */
Song Liu1e6d6902016-11-17 15:24:39 -08001565 if (test_bit(R5_InJournal, &dev->flags))
1566 xor_srcs[count++] = dev->orig_page;
1567 else if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001568 xor_srcs[count++] = dev->page;
1569 }
1570
Dan Williams0403e382009-09-08 17:42:50 -07001571 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001572 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Dan Williamsa08abd82009-06-03 11:43:59 -07001573 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001574
1575 return tx;
1576}
1577
1578static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001579ops_run_prexor6(struct stripe_head *sh, struct raid5_percpu *percpu,
1580 struct dma_async_tx_descriptor *tx)
1581{
1582 struct page **blocks = to_addr_page(percpu, 0);
1583 int count;
1584 struct async_submit_ctl submit;
1585
1586 pr_debug("%s: stripe %llu\n", __func__,
1587 (unsigned long long)sh->sector);
1588
1589 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_WANT_DRAIN);
1590
1591 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_PQ_XOR_DST, tx,
1592 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
1593 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1594
1595 return tx;
1596}
1597
1598static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001599ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001600{
Song Liu1e6d6902016-11-17 15:24:39 -08001601 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -07001602 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001603 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001604 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -07001605
Harvey Harrisone46b2722008-04-28 02:15:50 -07001606 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001607 (unsigned long long)sh->sector);
1608
1609 for (i = disks; i--; ) {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001610 struct r5dev *dev;
Dan Williams91c00922007-01-02 13:52:30 -07001611 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001612
shli@kernel.org59fc6302014-12-15 12:57:03 +11001613 sh = head_sh;
1614 if (test_and_clear_bit(R5_Wantdrain, &head_sh->dev[i].flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001615 struct bio *wbi;
1616
shli@kernel.org59fc6302014-12-15 12:57:03 +11001617again:
1618 dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08001619 /*
1620 * clear R5_InJournal, so when rewriting a page in
1621 * journal, it is not skipped by r5l_log_stripe()
1622 */
1623 clear_bit(R5_InJournal, &dev->flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10001624 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001625 chosen = dev->towrite;
1626 dev->towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11001627 sh->overwrite_disks = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001628 BUG_ON(dev->written);
1629 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001630 spin_unlock_irq(&sh->stripe_lock);
Shaohua Lid592a992014-05-21 17:57:44 +08001631 WARN_ON(dev->page != dev->orig_page);
Dan Williams91c00922007-01-02 13:52:30 -07001632
Kent Overstreet4f024f32013-10-11 15:44:27 -07001633 while (wbi && wbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001634 dev->sector + STRIPE_SECTORS) {
Jens Axboe1eff9d32016-08-05 15:35:16 -06001635 if (wbi->bi_opf & REQ_FUA)
Tejun Heoe9c74692010-09-03 11:56:18 +02001636 set_bit(R5_WantFUA, &dev->flags);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001637 if (wbi->bi_opf & REQ_SYNC)
Shaohua Libc0934f2012-05-22 13:55:05 +10001638 set_bit(R5_SyncIO, &dev->flags);
Mike Christie796a5cf2016-06-05 14:32:07 -05001639 if (bio_op(wbi) == REQ_OP_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001640 set_bit(R5_Discard, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08001641 else {
1642 tx = async_copy_data(1, wbi, &dev->page,
Song Liu1e6d6902016-11-17 15:24:39 -08001643 dev->sector, tx, sh,
1644 r5c_is_writeback(conf->log));
1645 if (dev->page != dev->orig_page &&
1646 !r5c_is_writeback(conf->log)) {
Shaohua Lid592a992014-05-21 17:57:44 +08001647 set_bit(R5_SkipCopy, &dev->flags);
1648 clear_bit(R5_UPTODATE, &dev->flags);
1649 clear_bit(R5_OVERWRITE, &dev->flags);
1650 }
1651 }
Dan Williams91c00922007-01-02 13:52:30 -07001652 wbi = r5_next_bio(wbi, dev->sector);
1653 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001654
1655 if (head_sh->batch_head) {
1656 sh = list_first_entry(&sh->batch_list,
1657 struct stripe_head,
1658 batch_list);
1659 if (sh == head_sh)
1660 continue;
1661 goto again;
1662 }
Dan Williams91c00922007-01-02 13:52:30 -07001663 }
1664 }
1665
1666 return tx;
1667}
1668
Dan Williamsac6b53b2009-07-14 13:40:19 -07001669static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001670{
1671 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001672 int disks = sh->disks;
1673 int pd_idx = sh->pd_idx;
1674 int qd_idx = sh->qd_idx;
1675 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001676 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001677
Harvey Harrisone46b2722008-04-28 02:15:50 -07001678 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001679 (unsigned long long)sh->sector);
1680
Shaohua Libc0934f2012-05-22 13:55:05 +10001681 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001682 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001683 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001684 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001685 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001686
Dan Williams91c00922007-01-02 13:52:30 -07001687 for (i = disks; i--; ) {
1688 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001689
Tejun Heoe9c74692010-09-03 11:56:18 +02001690 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Lid592a992014-05-21 17:57:44 +08001691 if (!discard && !test_bit(R5_SkipCopy, &dev->flags))
Shaohua Li9e4447682012-10-11 13:49:49 +11001692 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001693 if (fua)
1694 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001695 if (sync)
1696 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001697 }
Dan Williams91c00922007-01-02 13:52:30 -07001698 }
1699
Dan Williamsd8ee0722008-06-28 08:32:06 +10001700 if (sh->reconstruct_state == reconstruct_state_drain_run)
1701 sh->reconstruct_state = reconstruct_state_drain_result;
1702 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1703 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1704 else {
1705 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1706 sh->reconstruct_state = reconstruct_state_result;
1707 }
Dan Williams91c00922007-01-02 13:52:30 -07001708
1709 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001710 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001711}
1712
1713static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001714ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1715 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001716{
Dan Williams91c00922007-01-02 13:52:30 -07001717 int disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001718 struct page **xor_srcs;
Dan Williamsa08abd82009-06-03 11:43:59 -07001719 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001720 int count, pd_idx = sh->pd_idx, i;
Dan Williams91c00922007-01-02 13:52:30 -07001721 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001722 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001723 unsigned long flags;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001724 int j = 0;
1725 struct stripe_head *head_sh = sh;
1726 int last_stripe;
Dan Williams91c00922007-01-02 13:52:30 -07001727
Harvey Harrisone46b2722008-04-28 02:15:50 -07001728 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001729 (unsigned long long)sh->sector);
1730
Shaohua Li620125f2012-10-11 13:49:05 +11001731 for (i = 0; i < sh->disks; i++) {
1732 if (pd_idx == i)
1733 continue;
1734 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1735 break;
1736 }
1737 if (i >= sh->disks) {
1738 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001739 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1740 ops_complete_reconstruct(sh);
1741 return;
1742 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001743again:
1744 count = 0;
1745 xor_srcs = to_addr_page(percpu, j);
Dan Williams91c00922007-01-02 13:52:30 -07001746 /* check if prexor is active which means only process blocks
1747 * that are part of a read-modify-write (written)
1748 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001749 if (head_sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001750 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001751 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1752 for (i = disks; i--; ) {
1753 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08001754 if (head_sh->dev[i].written ||
1755 test_bit(R5_InJournal, &head_sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -07001756 xor_srcs[count++] = dev->page;
1757 }
1758 } else {
1759 xor_dest = sh->dev[pd_idx].page;
1760 for (i = disks; i--; ) {
1761 struct r5dev *dev = &sh->dev[i];
1762 if (i != pd_idx)
1763 xor_srcs[count++] = dev->page;
1764 }
1765 }
1766
Dan Williams91c00922007-01-02 13:52:30 -07001767 /* 1/ if we prexor'd then the dest is reused as a source
1768 * 2/ if we did not prexor then we are redoing the parity
1769 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1770 * for the synchronous xor case
1771 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001772 last_stripe = !head_sh->batch_head ||
1773 list_first_entry(&sh->batch_list,
1774 struct stripe_head, batch_list) == head_sh;
1775 if (last_stripe) {
1776 flags = ASYNC_TX_ACK |
1777 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
Dan Williams91c00922007-01-02 13:52:30 -07001778
shli@kernel.org59fc6302014-12-15 12:57:03 +11001779 atomic_inc(&head_sh->count);
1780 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, head_sh,
1781 to_addr_conv(sh, percpu, j));
1782 } else {
1783 flags = prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST;
1784 init_async_submit(&submit, flags, tx, NULL, NULL,
1785 to_addr_conv(sh, percpu, j));
1786 }
Dan Williams91c00922007-01-02 13:52:30 -07001787
Dan Williamsa08abd82009-06-03 11:43:59 -07001788 if (unlikely(count == 1))
1789 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1790 else
1791 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001792 if (!last_stripe) {
1793 j++;
1794 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1795 batch_list);
1796 goto again;
1797 }
Dan Williams91c00922007-01-02 13:52:30 -07001798}
1799
Dan Williamsac6b53b2009-07-14 13:40:19 -07001800static void
1801ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1802 struct dma_async_tx_descriptor *tx)
1803{
1804 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001805 struct page **blocks;
1806 int count, i, j = 0;
1807 struct stripe_head *head_sh = sh;
1808 int last_stripe;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001809 int synflags;
1810 unsigned long txflags;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001811
1812 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1813
Shaohua Li620125f2012-10-11 13:49:05 +11001814 for (i = 0; i < sh->disks; i++) {
1815 if (sh->pd_idx == i || sh->qd_idx == i)
1816 continue;
1817 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1818 break;
1819 }
1820 if (i >= sh->disks) {
1821 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001822 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1823 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1824 ops_complete_reconstruct(sh);
1825 return;
1826 }
1827
shli@kernel.org59fc6302014-12-15 12:57:03 +11001828again:
1829 blocks = to_addr_page(percpu, j);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001830
1831 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1832 synflags = SYNDROME_SRC_WRITTEN;
1833 txflags = ASYNC_TX_ACK | ASYNC_TX_PQ_XOR_DST;
1834 } else {
1835 synflags = SYNDROME_SRC_ALL;
1836 txflags = ASYNC_TX_ACK;
1837 }
1838
1839 count = set_syndrome_sources(blocks, sh, synflags);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001840 last_stripe = !head_sh->batch_head ||
1841 list_first_entry(&sh->batch_list,
1842 struct stripe_head, batch_list) == head_sh;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001843
shli@kernel.org59fc6302014-12-15 12:57:03 +11001844 if (last_stripe) {
1845 atomic_inc(&head_sh->count);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001846 init_async_submit(&submit, txflags, tx, ops_complete_reconstruct,
shli@kernel.org59fc6302014-12-15 12:57:03 +11001847 head_sh, to_addr_conv(sh, percpu, j));
1848 } else
1849 init_async_submit(&submit, 0, tx, NULL, NULL,
1850 to_addr_conv(sh, percpu, j));
Shaohua Li48769692015-05-13 09:30:08 -07001851 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001852 if (!last_stripe) {
1853 j++;
1854 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1855 batch_list);
1856 goto again;
1857 }
Dan Williams91c00922007-01-02 13:52:30 -07001858}
1859
1860static void ops_complete_check(void *stripe_head_ref)
1861{
1862 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001863
Harvey Harrisone46b2722008-04-28 02:15:50 -07001864 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001865 (unsigned long long)sh->sector);
1866
Dan Williamsecc65c92008-06-28 08:31:57 +10001867 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001868 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001869 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001870}
1871
Dan Williamsac6b53b2009-07-14 13:40:19 -07001872static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001873{
Dan Williams91c00922007-01-02 13:52:30 -07001874 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001875 int pd_idx = sh->pd_idx;
1876 int qd_idx = sh->qd_idx;
1877 struct page *xor_dest;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001878 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001879 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001880 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001881 int count;
1882 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001883
Harvey Harrisone46b2722008-04-28 02:15:50 -07001884 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001885 (unsigned long long)sh->sector);
1886
shli@kernel.org59fc6302014-12-15 12:57:03 +11001887 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001888 count = 0;
1889 xor_dest = sh->dev[pd_idx].page;
1890 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001891 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001892 if (i == pd_idx || i == qd_idx)
1893 continue;
1894 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001895 }
1896
Dan Williamsd6f38f32009-07-14 11:50:52 -07001897 init_async_submit(&submit, 0, NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001898 to_addr_conv(sh, percpu, 0));
Dan Williams099f53c2009-04-08 14:28:37 -07001899 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001900 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001901
Dan Williams91c00922007-01-02 13:52:30 -07001902 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001903 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1904 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001905}
1906
Dan Williamsac6b53b2009-07-14 13:40:19 -07001907static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1908{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001909 struct page **srcs = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001910 struct async_submit_ctl submit;
1911 int count;
1912
1913 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1914 (unsigned long long)sh->sector, checkp);
1915
shli@kernel.org59fc6302014-12-15 12:57:03 +11001916 BUG_ON(sh->batch_head);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001917 count = set_syndrome_sources(srcs, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001918 if (!checkp)
1919 srcs[count] = NULL;
1920
1921 atomic_inc(&sh->count);
1922 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001923 sh, to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001924 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1925 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1926}
1927
NeilBrown51acbce2013-02-28 09:08:34 +11001928static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001929{
1930 int overlap_clear = 0, i, disks = sh->disks;
1931 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001932 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001933 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001934 struct raid5_percpu *percpu;
1935 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001936
Dan Williamsd6f38f32009-07-14 11:50:52 -07001937 cpu = get_cpu();
1938 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001939 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001940 ops_run_biofill(sh);
1941 overlap_clear++;
1942 }
1943
Dan Williams7b3a8712008-06-28 08:32:09 +10001944 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001945 if (level < 6)
1946 tx = ops_run_compute5(sh, percpu);
1947 else {
1948 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1949 tx = ops_run_compute6_1(sh, percpu);
1950 else
1951 tx = ops_run_compute6_2(sh, percpu);
1952 }
1953 /* terminate the chain if reconstruct is not set to be run */
1954 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001955 async_tx_ack(tx);
1956 }
Dan Williams91c00922007-01-02 13:52:30 -07001957
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001958 if (test_bit(STRIPE_OP_PREXOR, &ops_request)) {
1959 if (level < 6)
1960 tx = ops_run_prexor5(sh, percpu, tx);
1961 else
1962 tx = ops_run_prexor6(sh, percpu, tx);
1963 }
Dan Williams91c00922007-01-02 13:52:30 -07001964
Dan Williams600aa102008-06-28 08:32:05 +10001965 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001966 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001967 overlap_clear++;
1968 }
1969
Dan Williamsac6b53b2009-07-14 13:40:19 -07001970 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1971 if (level < 6)
1972 ops_run_reconstruct5(sh, percpu, tx);
1973 else
1974 ops_run_reconstruct6(sh, percpu, tx);
1975 }
Dan Williams91c00922007-01-02 13:52:30 -07001976
Dan Williamsac6b53b2009-07-14 13:40:19 -07001977 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1978 if (sh->check_state == check_state_run)
1979 ops_run_check_p(sh, percpu);
1980 else if (sh->check_state == check_state_run_q)
1981 ops_run_check_pq(sh, percpu, 0);
1982 else if (sh->check_state == check_state_run_pq)
1983 ops_run_check_pq(sh, percpu, 1);
1984 else
1985 BUG();
1986 }
Dan Williams91c00922007-01-02 13:52:30 -07001987
shli@kernel.org59fc6302014-12-15 12:57:03 +11001988 if (overlap_clear && !sh->batch_head)
Dan Williams91c00922007-01-02 13:52:30 -07001989 for (i = disks; i--; ) {
1990 struct r5dev *dev = &sh->dev[i];
1991 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1992 wake_up(&sh->raid_conf->wait_for_overlap);
1993 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001994 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001995}
1996
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07001997static struct stripe_head *alloc_stripe(struct kmem_cache *sc, gfp_t gfp,
1998 int disks)
NeilBrownf18c1a32015-05-08 18:19:04 +10001999{
2000 struct stripe_head *sh;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002001 int i;
NeilBrownf18c1a32015-05-08 18:19:04 +10002002
2003 sh = kmem_cache_zalloc(sc, gfp);
2004 if (sh) {
2005 spin_lock_init(&sh->stripe_lock);
2006 spin_lock_init(&sh->batch_lock);
2007 INIT_LIST_HEAD(&sh->batch_list);
2008 INIT_LIST_HEAD(&sh->lru);
Song Liua39f7af2016-11-17 15:24:40 -08002009 INIT_LIST_HEAD(&sh->r5c);
NeilBrownf18c1a32015-05-08 18:19:04 +10002010 atomic_set(&sh->count, 1);
Song Liua39f7af2016-11-17 15:24:40 -08002011 sh->log_start = MaxSector;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002012 for (i = 0; i < disks; i++) {
2013 struct r5dev *dev = &sh->dev[i];
2014
2015 bio_init(&dev->req);
Shaohua Li45c91d82016-08-22 21:14:02 -07002016 dev->req.bi_io_vec = &dev->vec;
2017 dev->req.bi_max_vecs = 1;
2018
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002019 bio_init(&dev->rreq);
Shaohua Li45c91d82016-08-22 21:14:02 -07002020 dev->rreq.bi_io_vec = &dev->rvec;
2021 dev->rreq.bi_max_vecs = 1;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002022 }
NeilBrownf18c1a32015-05-08 18:19:04 +10002023 }
2024 return sh;
2025}
NeilBrown486f0642015-02-25 12:10:35 +11002026static int grow_one_stripe(struct r5conf *conf, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
2028 struct stripe_head *sh;
NeilBrownf18c1a32015-05-08 18:19:04 +10002029
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002030 sh = alloc_stripe(conf->slab_cache, gfp, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -08002031 if (!sh)
2032 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10002033
NeilBrown3f294f42005-11-08 21:39:25 -08002034 sh->raid_conf = conf;
NeilBrown3f294f42005-11-08 21:39:25 -08002035
NeilBrowna9683a72015-02-25 12:02:51 +11002036 if (grow_buffers(sh, gfp)) {
NeilBrowne4e11e32010-06-16 16:45:16 +10002037 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002038 kmem_cache_free(conf->slab_cache, sh);
2039 return 0;
2040 }
NeilBrown486f0642015-02-25 12:10:35 +11002041 sh->hash_lock_index =
2042 conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
NeilBrown3f294f42005-11-08 21:39:25 -08002043 /* we just created an active stripe so... */
NeilBrown3f294f42005-11-08 21:39:25 -08002044 atomic_inc(&conf->active_stripes);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002045
Shaohua Li6d036f72015-08-13 14:31:57 -07002046 raid5_release_stripe(sh);
NeilBrown486f0642015-02-25 12:10:35 +11002047 conf->max_nr_stripes++;
NeilBrown3f294f42005-11-08 21:39:25 -08002048 return 1;
2049}
2050
NeilBrownd1688a62011-10-11 16:49:52 +11002051static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08002052{
Christoph Lametere18b8902006-12-06 20:33:20 -08002053 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11002054 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
NeilBrownf4be6b42010-06-01 19:37:25 +10002056 if (conf->mddev->gendisk)
2057 sprintf(conf->cache_name[0],
2058 "raid%d-%s", conf->level, mdname(conf->mddev));
2059 else
2060 sprintf(conf->cache_name[0],
2061 "raid%d-%p", conf->level, conf->mddev);
2062 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
2063
NeilBrownad01c9e2006-03-27 01:18:07 -08002064 conf->active_name = 0;
2065 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002067 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 if (!sc)
2069 return 1;
2070 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002071 conf->pool_size = devs;
NeilBrown486f0642015-02-25 12:10:35 +11002072 while (num--)
2073 if (!grow_one_stripe(conf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 return 1;
NeilBrown486f0642015-02-25 12:10:35 +11002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 return 0;
2077}
NeilBrown29269552006-03-27 01:18:10 -08002078
Dan Williamsd6f38f32009-07-14 11:50:52 -07002079/**
2080 * scribble_len - return the required size of the scribble region
2081 * @num - total number of disks in the array
2082 *
2083 * The size must be enough to contain:
2084 * 1/ a struct page pointer for each device in the array +2
2085 * 2/ room to convert each entry in (1) to its corresponding dma
2086 * (dma_map_page()) or page (page_address()) address.
2087 *
2088 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
2089 * calculate over all devices (not just the data blocks), using zeros in place
2090 * of the P and Q blocks.
2091 */
shli@kernel.org46d5b782014-12-15 12:57:02 +11002092static struct flex_array *scribble_alloc(int num, int cnt, gfp_t flags)
Dan Williamsd6f38f32009-07-14 11:50:52 -07002093{
shli@kernel.org46d5b782014-12-15 12:57:02 +11002094 struct flex_array *ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002095 size_t len;
2096
2097 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002098 ret = flex_array_alloc(len, cnt, flags);
2099 if (!ret)
2100 return NULL;
2101 /* always prealloc all elements, so no locking is required */
2102 if (flex_array_prealloc(ret, 0, cnt, flags)) {
2103 flex_array_free(ret);
2104 return NULL;
2105 }
2106 return ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002107}
2108
NeilBrown738a2732015-05-08 18:19:39 +10002109static int resize_chunks(struct r5conf *conf, int new_disks, int new_sectors)
2110{
2111 unsigned long cpu;
2112 int err = 0;
2113
Shaohua Li27a353c2016-02-24 17:38:28 -08002114 /*
2115 * Never shrink. And mddev_suspend() could deadlock if this is called
2116 * from raid5d. In that case, scribble_disks and scribble_sectors
2117 * should equal to new_disks and new_sectors
2118 */
2119 if (conf->scribble_disks >= new_disks &&
2120 conf->scribble_sectors >= new_sectors)
2121 return 0;
NeilBrown738a2732015-05-08 18:19:39 +10002122 mddev_suspend(conf->mddev);
2123 get_online_cpus();
2124 for_each_present_cpu(cpu) {
2125 struct raid5_percpu *percpu;
2126 struct flex_array *scribble;
2127
2128 percpu = per_cpu_ptr(conf->percpu, cpu);
2129 scribble = scribble_alloc(new_disks,
2130 new_sectors / STRIPE_SECTORS,
2131 GFP_NOIO);
2132
2133 if (scribble) {
2134 flex_array_free(percpu->scribble);
2135 percpu->scribble = scribble;
2136 } else {
2137 err = -ENOMEM;
2138 break;
2139 }
2140 }
2141 put_online_cpus();
2142 mddev_resume(conf->mddev);
Shaohua Li27a353c2016-02-24 17:38:28 -08002143 if (!err) {
2144 conf->scribble_disks = new_disks;
2145 conf->scribble_sectors = new_sectors;
2146 }
NeilBrown738a2732015-05-08 18:19:39 +10002147 return err;
2148}
2149
NeilBrownd1688a62011-10-11 16:49:52 +11002150static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08002151{
2152 /* Make all the stripes able to hold 'newsize' devices.
2153 * New slots in each stripe get 'page' set to a new page.
2154 *
2155 * This happens in stages:
2156 * 1/ create a new kmem_cache and allocate the required number of
2157 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09002158 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08002159 * to the new stripe_heads. This will have the side effect of
2160 * freezing the array as once all stripe_heads have been collected,
2161 * no IO will be possible. Old stripe heads are freed once their
2162 * pages have been transferred over, and the old kmem_cache is
2163 * freed when all stripes are done.
2164 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
2165 * we simple return a failre status - no need to clean anything up.
2166 * 4/ allocate new pages for the new slots in the new stripe_heads.
2167 * If this fails, we don't bother trying the shrink the
2168 * stripe_heads down again, we just leave them as they are.
2169 * As each stripe_head is processed the new one is released into
2170 * active service.
2171 *
2172 * Once step2 is started, we cannot afford to wait for a write,
2173 * so we use GFP_NOIO allocations.
2174 */
2175 struct stripe_head *osh, *nsh;
2176 LIST_HEAD(newstripes);
2177 struct disk_info *ndisks;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002178 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08002179 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002180 int i;
Shaohua Li566c09c2013-11-14 15:16:17 +11002181 int hash, cnt;
NeilBrownad01c9e2006-03-27 01:18:07 -08002182
2183 if (newsize <= conf->pool_size)
2184 return 0; /* never bother to shrink */
2185
Dan Williamsb5470dc2008-06-27 21:44:04 -07002186 err = md_allow_write(conf->mddev);
2187 if (err)
2188 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002189
NeilBrownad01c9e2006-03-27 01:18:07 -08002190 /* Step 1 */
2191 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
2192 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002193 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002194 if (!sc)
2195 return -ENOMEM;
2196
NeilBrown2d5b5692015-07-06 12:49:23 +10002197 /* Need to ensure auto-resizing doesn't interfere */
2198 mutex_lock(&conf->cache_size_mutex);
2199
NeilBrownad01c9e2006-03-27 01:18:07 -08002200 for (i = conf->max_nr_stripes; i; i--) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002201 nsh = alloc_stripe(sc, GFP_KERNEL, newsize);
NeilBrownad01c9e2006-03-27 01:18:07 -08002202 if (!nsh)
2203 break;
2204
NeilBrownad01c9e2006-03-27 01:18:07 -08002205 nsh->raid_conf = conf;
NeilBrownad01c9e2006-03-27 01:18:07 -08002206 list_add(&nsh->lru, &newstripes);
2207 }
2208 if (i) {
2209 /* didn't get enough, give up */
2210 while (!list_empty(&newstripes)) {
2211 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2212 list_del(&nsh->lru);
2213 kmem_cache_free(sc, nsh);
2214 }
2215 kmem_cache_destroy(sc);
NeilBrown2d5b5692015-07-06 12:49:23 +10002216 mutex_unlock(&conf->cache_size_mutex);
NeilBrownad01c9e2006-03-27 01:18:07 -08002217 return -ENOMEM;
2218 }
2219 /* Step 2 - Must use GFP_NOIO now.
2220 * OK, we have enough stripes, start collecting inactive
2221 * stripes and copying them over
2222 */
Shaohua Li566c09c2013-11-14 15:16:17 +11002223 hash = 0;
2224 cnt = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002225 list_for_each_entry(nsh, &newstripes, lru) {
Shaohua Li566c09c2013-11-14 15:16:17 +11002226 lock_device_hash_lock(conf, hash);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08002227 wait_event_cmd(conf->wait_for_stripe,
Shaohua Li566c09c2013-11-14 15:16:17 +11002228 !list_empty(conf->inactive_list + hash),
2229 unlock_device_hash_lock(conf, hash),
2230 lock_device_hash_lock(conf, hash));
2231 osh = get_free_stripe(conf, hash);
2232 unlock_device_hash_lock(conf, hash);
NeilBrownf18c1a32015-05-08 18:19:04 +10002233
Shaohua Lid592a992014-05-21 17:57:44 +08002234 for(i=0; i<conf->pool_size; i++) {
NeilBrownad01c9e2006-03-27 01:18:07 -08002235 nsh->dev[i].page = osh->dev[i].page;
Shaohua Lid592a992014-05-21 17:57:44 +08002236 nsh->dev[i].orig_page = osh->dev[i].page;
2237 }
Shaohua Li566c09c2013-11-14 15:16:17 +11002238 nsh->hash_lock_index = hash;
NeilBrownad01c9e2006-03-27 01:18:07 -08002239 kmem_cache_free(conf->slab_cache, osh);
Shaohua Li566c09c2013-11-14 15:16:17 +11002240 cnt++;
2241 if (cnt >= conf->max_nr_stripes / NR_STRIPE_HASH_LOCKS +
2242 !!((conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS) > hash)) {
2243 hash++;
2244 cnt = 0;
2245 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002246 }
2247 kmem_cache_destroy(conf->slab_cache);
2248
2249 /* Step 3.
2250 * At this point, we are holding all the stripes so the array
2251 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07002252 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08002253 */
2254 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
2255 if (ndisks) {
2256 for (i=0; i<conf->raid_disks; i++)
2257 ndisks[i] = conf->disks[i];
2258 kfree(conf->disks);
2259 conf->disks = ndisks;
2260 } else
2261 err = -ENOMEM;
2262
NeilBrown2d5b5692015-07-06 12:49:23 +10002263 mutex_unlock(&conf->cache_size_mutex);
NeilBrownad01c9e2006-03-27 01:18:07 -08002264 /* Step 4, return new stripes to service */
2265 while(!list_empty(&newstripes)) {
2266 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2267 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002268
NeilBrownad01c9e2006-03-27 01:18:07 -08002269 for (i=conf->raid_disks; i < newsize; i++)
2270 if (nsh->dev[i].page == NULL) {
2271 struct page *p = alloc_page(GFP_NOIO);
2272 nsh->dev[i].page = p;
Shaohua Lid592a992014-05-21 17:57:44 +08002273 nsh->dev[i].orig_page = p;
NeilBrownad01c9e2006-03-27 01:18:07 -08002274 if (!p)
2275 err = -ENOMEM;
2276 }
Shaohua Li6d036f72015-08-13 14:31:57 -07002277 raid5_release_stripe(nsh);
NeilBrownad01c9e2006-03-27 01:18:07 -08002278 }
2279 /* critical section pass, GFP_NOIO no longer needed */
2280
2281 conf->slab_cache = sc;
2282 conf->active_name = 1-conf->active_name;
NeilBrown6e9eac22015-05-08 18:19:34 +10002283 if (!err)
2284 conf->pool_size = newsize;
NeilBrownad01c9e2006-03-27 01:18:07 -08002285 return err;
2286}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
NeilBrown486f0642015-02-25 12:10:35 +11002288static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
2290 struct stripe_head *sh;
NeilBrown49895bc2015-08-03 17:09:57 +10002291 int hash = (conf->max_nr_stripes - 1) & STRIPE_HASH_LOCKS_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Shaohua Li566c09c2013-11-14 15:16:17 +11002293 spin_lock_irq(conf->hash_locks + hash);
2294 sh = get_free_stripe(conf, hash);
2295 spin_unlock_irq(conf->hash_locks + hash);
NeilBrown3f294f42005-11-08 21:39:25 -08002296 if (!sh)
2297 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002298 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10002299 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002300 kmem_cache_free(conf->slab_cache, sh);
2301 atomic_dec(&conf->active_stripes);
NeilBrown486f0642015-02-25 12:10:35 +11002302 conf->max_nr_stripes--;
NeilBrown3f294f42005-11-08 21:39:25 -08002303 return 1;
2304}
2305
NeilBrownd1688a62011-10-11 16:49:52 +11002306static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08002307{
NeilBrown486f0642015-02-25 12:10:35 +11002308 while (conf->max_nr_stripes &&
2309 drop_one_stripe(conf))
2310 ;
NeilBrown3f294f42005-11-08 21:39:25 -08002311
Julia Lawall644df1a2015-09-13 14:15:10 +02002312 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 conf->slab_cache = NULL;
2314}
2315
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002316static void raid5_end_read_request(struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
NeilBrown99c0fb52009-03-31 14:39:38 +11002318 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002319 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002320 int disks = sh->disks, i;
NeilBrownd6950432006-07-10 04:44:20 -07002321 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11002322 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10002323 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325 for (i=0 ; i<disks; i++)
2326 if (bi == &sh->dev[i].req)
2327 break;
2328
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002329 pr_debug("end_read_request %llu/%d, count: %d, error %d.\n",
Dan Williams45b42332007-07-09 11:56:43 -07002330 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002331 bi->bi_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002333 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002335 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
NeilBrown14a75d32011-12-23 10:17:52 +11002337 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11002338 /* If replacement finished while this request was outstanding,
2339 * 'replacement' might be NULL already.
2340 * In that case it moved down to 'rdev'.
2341 * rdev is not removed until all requests are finished.
2342 */
NeilBrown14a75d32011-12-23 10:17:52 +11002343 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002344 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11002345 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
NeilBrown05616be2012-05-21 09:27:00 +10002347 if (use_new_offset(conf, sh))
2348 s = sh->sector + rdev->new_data_offset;
2349 else
2350 s = sh->sector + rdev->data_offset;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002351 if (!bi->bi_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08002353 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11002354 /* Note that this cannot happen on a
2355 * replacement device. We just fail those on
2356 * any error
2357 */
NeilBrowncc6167b2016-11-02 14:16:50 +11002358 pr_info_ratelimited(
2359 "md/raid:%s: read error corrected (%lu sectors at %llu on %s)\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002360 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10002361 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002362 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10002363 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08002364 clear_bit(R5_ReadError, &sh->dev[i].flags);
2365 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10002366 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2367 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2368
NeilBrown14a75d32011-12-23 10:17:52 +11002369 if (atomic_read(&rdev->read_errors))
2370 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11002372 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08002373 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10002374 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07002375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07002377 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11002378 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowncc6167b2016-11-02 14:16:50 +11002379 pr_warn_ratelimited(
2380 "md/raid:%s: read error on replacement device (sector %llu on %s).\n",
NeilBrown14a75d32011-12-23 10:17:52 +11002381 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002382 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11002383 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002384 else if (conf->mddev->degraded >= conf->max_degraded) {
2385 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002386 pr_warn_ratelimited(
2387 "md/raid:%s: read error not correctable (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002388 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002389 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002390 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002391 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08002392 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10002393 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002394 pr_warn_ratelimited(
2395 "md/raid:%s: read error NOT corrected!! (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002396 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002397 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002398 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002399 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08002400 > conf->max_nr_stripes)
NeilBrowncc6167b2016-11-02 14:16:50 +11002401 pr_warn("md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07002402 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08002403 else
2404 retry = 1;
Bian Yuedfa1f62013-11-14 15:16:17 +11002405 if (set_bad && test_bit(In_sync, &rdev->flags)
2406 && !test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2407 retry = 1;
NeilBrownba22dcb2005-11-08 21:39:31 -08002408 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10002409 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
2410 set_bit(R5_ReadError, &sh->dev[i].flags);
2411 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2412 } else
2413 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08002414 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08002415 clear_bit(R5_ReadError, &sh->dev[i].flags);
2416 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10002417 if (!(set_bad
2418 && test_bit(In_sync, &rdev->flags)
2419 && rdev_set_badblocks(
2420 rdev, sh->sector, STRIPE_SECTORS, 0)))
2421 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08002422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 }
NeilBrown14a75d32011-12-23 10:17:52 +11002424 rdev_dec_pending(rdev, conf->mddev);
Shaohua Lic9445552016-09-08 10:43:58 -07002425 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2427 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002428 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429}
2430
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002431static void raid5_end_write_request(struct bio *bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
NeilBrown99c0fb52009-03-31 14:39:38 +11002433 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002434 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002435 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11002436 struct md_rdev *uninitialized_var(rdev);
NeilBrownb84db562011-07-28 11:39:23 +10002437 sector_t first_bad;
2438 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11002439 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
NeilBrown977df362011-12-23 10:17:53 +11002441 for (i = 0 ; i < disks; i++) {
2442 if (bi == &sh->dev[i].req) {
2443 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 break;
NeilBrown977df362011-12-23 10:17:53 +11002445 }
2446 if (bi == &sh->dev[i].rreq) {
2447 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002448 if (rdev)
2449 replacement = 1;
2450 else
2451 /* rdev was removed and 'replacement'
2452 * replaced it. rdev is not removed
2453 * until all requests are finished.
2454 */
2455 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11002456 break;
2457 }
2458 }
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002459 pr_debug("end_write_request %llu/%d, count %d, error: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002461 bi->bi_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002463 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002465 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 }
2467
NeilBrown977df362011-12-23 10:17:53 +11002468 if (replacement) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002469 if (bi->bi_error)
NeilBrown977df362011-12-23 10:17:53 +11002470 md_error(conf->mddev, rdev);
2471 else if (is_badblock(rdev, sh->sector,
2472 STRIPE_SECTORS,
2473 &first_bad, &bad_sectors))
2474 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2475 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002476 if (bi->bi_error) {
NeilBrown9f97e4b2014-01-16 09:35:38 +11002477 set_bit(STRIPE_DEGRADED, &sh->state);
NeilBrown977df362011-12-23 10:17:53 +11002478 set_bit(WriteErrorSeen, &rdev->flags);
2479 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002480 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2481 set_bit(MD_RECOVERY_NEEDED,
2482 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002483 } else if (is_badblock(rdev, sh->sector,
2484 STRIPE_SECTORS,
NeilBrownc0b32972013-04-24 11:42:42 +10002485 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002486 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002487 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2488 /* That was a successful write so make
2489 * sure it looks like we already did
2490 * a re-write.
2491 */
2492 set_bit(R5_ReWrite, &sh->dev[i].flags);
2493 }
NeilBrown977df362011-12-23 10:17:53 +11002494 }
2495 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002497 if (sh->batch_head && bi->bi_error && !replacement)
shli@kernel.org72ac7332014-12-15 12:57:03 +11002498 set_bit(STRIPE_BATCH_ERR, &sh->batch_head->state);
2499
Shaohua Lic9445552016-09-08 10:43:58 -07002500 bio_reset(bi);
NeilBrown977df362011-12-23 10:17:53 +11002501 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2502 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002504 raid5_release_stripe(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002505
2506 if (sh->batch_head && sh != sh->batch_head)
Shaohua Li6d036f72015-08-13 14:31:57 -07002507 raid5_release_stripe(sh->batch_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508}
2509
NeilBrown784052e2009-03-31 15:19:07 +11002510static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
2512 struct r5dev *dev = &sh->dev[i];
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 dev->flags = 0;
Shaohua Li6d036f72015-08-13 14:31:57 -07002515 dev->sector = raid5_compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
2517
Shaohua Li849674e2016-01-20 13:52:20 -08002518static void raid5_error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
2520 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002521 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002522 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002523 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
NeilBrown908f4fb2011-12-23 10:17:50 +11002525 spin_lock_irqsave(&conf->device_lock, flags);
2526 clear_bit(In_sync, &rdev->flags);
2527 mddev->degraded = calc_degraded(conf);
2528 spin_unlock_irqrestore(&conf->device_lock, flags);
2529 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2530
NeilBrownde393cd2011-07-28 11:31:48 +10002531 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10002532 set_bit(Faulty, &rdev->flags);
Guoqing Jiang85ad1d12016-05-03 22:22:13 -04002533 set_mask_bits(&mddev->flags, 0,
2534 BIT(MD_CHANGE_DEVS) | BIT(MD_CHANGE_PENDING));
NeilBrowncc6167b2016-11-02 14:16:50 +11002535 pr_crit("md/raid:%s: Disk failure on %s, disabling device.\n"
2536 "md/raid:%s: Operation continuing on %d devices.\n",
2537 mdname(mddev),
2538 bdevname(rdev->bdev, b),
2539 mdname(mddev),
2540 conf->raid_disks - mddev->degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07002541}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543/*
2544 * Input: a 'big' sector number,
2545 * Output: index of the data and parity disk, and the sector # in them.
2546 */
Shaohua Li6d036f72015-08-13 14:31:57 -07002547sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
2548 int previous, int *dd_idx,
2549 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002551 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002552 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002554 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002555 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002557 int algorithm = previous ? conf->prev_algo
2558 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002559 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2560 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002561 int raid_disks = previous ? conf->previous_raid_disks
2562 : conf->raid_disks;
2563 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565 /* First compute the information on this sector */
2566
2567 /*
2568 * Compute the chunk number and the sector offset inside the chunk
2569 */
2570 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2571 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573 /*
2574 * Compute the stripe number
2575 */
NeilBrown35f2a592010-04-20 14:13:34 +10002576 stripe = chunk_number;
2577 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002578 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 /*
2580 * Select the parity disk based on the user selected algorithm.
2581 */
NeilBrown84789552011-07-27 11:00:36 +10002582 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002583 switch(conf->level) {
2584 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002585 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002586 break;
2587 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002588 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002590 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002591 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 (*dd_idx)++;
2593 break;
2594 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002595 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002596 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 (*dd_idx)++;
2598 break;
2599 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002600 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002601 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 break;
2603 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002604 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002605 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002607 case ALGORITHM_PARITY_0:
2608 pd_idx = 0;
2609 (*dd_idx)++;
2610 break;
2611 case ALGORITHM_PARITY_N:
2612 pd_idx = data_disks;
2613 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002615 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002616 }
2617 break;
2618 case 6:
2619
NeilBrowne183eae2009-03-31 15:20:22 +11002620 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002621 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002622 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002623 qd_idx = pd_idx + 1;
2624 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002625 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002626 qd_idx = 0;
2627 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002628 (*dd_idx) += 2; /* D D P Q D */
2629 break;
2630 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002631 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002632 qd_idx = pd_idx + 1;
2633 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002634 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002635 qd_idx = 0;
2636 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002637 (*dd_idx) += 2; /* D D P Q D */
2638 break;
2639 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002640 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002641 qd_idx = (pd_idx + 1) % raid_disks;
2642 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002643 break;
2644 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002645 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002646 qd_idx = (pd_idx + 1) % raid_disks;
2647 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002648 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002649
2650 case ALGORITHM_PARITY_0:
2651 pd_idx = 0;
2652 qd_idx = 1;
2653 (*dd_idx) += 2;
2654 break;
2655 case ALGORITHM_PARITY_N:
2656 pd_idx = data_disks;
2657 qd_idx = data_disks + 1;
2658 break;
2659
2660 case ALGORITHM_ROTATING_ZERO_RESTART:
2661 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2662 * of blocks for computing Q is different.
2663 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002664 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002665 qd_idx = pd_idx + 1;
2666 if (pd_idx == raid_disks-1) {
2667 (*dd_idx)++; /* Q D D D P */
2668 qd_idx = 0;
2669 } else if (*dd_idx >= pd_idx)
2670 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002671 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002672 break;
2673
2674 case ALGORITHM_ROTATING_N_RESTART:
2675 /* Same a left_asymmetric, by first stripe is
2676 * D D D P Q rather than
2677 * Q D D D P
2678 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002679 stripe2 += 1;
2680 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002681 qd_idx = pd_idx + 1;
2682 if (pd_idx == raid_disks-1) {
2683 (*dd_idx)++; /* Q D D D P */
2684 qd_idx = 0;
2685 } else if (*dd_idx >= pd_idx)
2686 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002687 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002688 break;
2689
2690 case ALGORITHM_ROTATING_N_CONTINUE:
2691 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002692 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002693 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2694 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002695 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002696 break;
2697
2698 case ALGORITHM_LEFT_ASYMMETRIC_6:
2699 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002700 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002701 if (*dd_idx >= pd_idx)
2702 (*dd_idx)++;
2703 qd_idx = raid_disks - 1;
2704 break;
2705
2706 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002707 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002708 if (*dd_idx >= pd_idx)
2709 (*dd_idx)++;
2710 qd_idx = raid_disks - 1;
2711 break;
2712
2713 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002714 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002715 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2716 qd_idx = raid_disks - 1;
2717 break;
2718
2719 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002720 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002721 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2722 qd_idx = raid_disks - 1;
2723 break;
2724
2725 case ALGORITHM_PARITY_0_6:
2726 pd_idx = 0;
2727 (*dd_idx)++;
2728 qd_idx = raid_disks - 1;
2729 break;
2730
NeilBrown16a53ec2006-06-26 00:27:38 -07002731 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002732 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002733 }
2734 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 }
2736
NeilBrown911d4ee2009-03-31 14:39:38 +11002737 if (sh) {
2738 sh->pd_idx = pd_idx;
2739 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002740 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 /*
2743 * Finally, compute the new sector number
2744 */
2745 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2746 return new_sector;
2747}
2748
Shaohua Li6d036f72015-08-13 14:31:57 -07002749sector_t raid5_compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
NeilBrownd1688a62011-10-11 16:49:52 +11002751 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002752 int raid_disks = sh->disks;
2753 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002755 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2756 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002757 int algorithm = previous ? conf->prev_algo
2758 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 sector_t stripe;
2760 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002761 sector_t chunk_number;
2762 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002764 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2767 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
NeilBrown16a53ec2006-06-26 00:27:38 -07002769 if (i == sh->pd_idx)
2770 return 0;
2771 switch(conf->level) {
2772 case 4: break;
2773 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002774 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 case ALGORITHM_LEFT_ASYMMETRIC:
2776 case ALGORITHM_RIGHT_ASYMMETRIC:
2777 if (i > sh->pd_idx)
2778 i--;
2779 break;
2780 case ALGORITHM_LEFT_SYMMETRIC:
2781 case ALGORITHM_RIGHT_SYMMETRIC:
2782 if (i < sh->pd_idx)
2783 i += raid_disks;
2784 i -= (sh->pd_idx + 1);
2785 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002786 case ALGORITHM_PARITY_0:
2787 i -= 1;
2788 break;
2789 case ALGORITHM_PARITY_N:
2790 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002792 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002793 }
2794 break;
2795 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002796 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002797 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002798 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002799 case ALGORITHM_LEFT_ASYMMETRIC:
2800 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002801 case ALGORITHM_ROTATING_ZERO_RESTART:
2802 case ALGORITHM_ROTATING_N_RESTART:
2803 if (sh->pd_idx == raid_disks-1)
2804 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002805 else if (i > sh->pd_idx)
2806 i -= 2; /* D D P Q D */
2807 break;
2808 case ALGORITHM_LEFT_SYMMETRIC:
2809 case ALGORITHM_RIGHT_SYMMETRIC:
2810 if (sh->pd_idx == raid_disks-1)
2811 i--; /* Q D D D P */
2812 else {
2813 /* D D P Q D */
2814 if (i < sh->pd_idx)
2815 i += raid_disks;
2816 i -= (sh->pd_idx + 2);
2817 }
2818 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002819 case ALGORITHM_PARITY_0:
2820 i -= 2;
2821 break;
2822 case ALGORITHM_PARITY_N:
2823 break;
2824 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002825 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002826 if (sh->pd_idx == 0)
2827 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002828 else {
2829 /* D D Q P D */
2830 if (i < sh->pd_idx)
2831 i += raid_disks;
2832 i -= (sh->pd_idx + 1);
2833 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002834 break;
2835 case ALGORITHM_LEFT_ASYMMETRIC_6:
2836 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2837 if (i > sh->pd_idx)
2838 i--;
2839 break;
2840 case ALGORITHM_LEFT_SYMMETRIC_6:
2841 case ALGORITHM_RIGHT_SYMMETRIC_6:
2842 if (i < sh->pd_idx)
2843 i += data_disks + 1;
2844 i -= (sh->pd_idx + 1);
2845 break;
2846 case ALGORITHM_PARITY_0_6:
2847 i -= 1;
2848 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002849 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002850 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002851 }
2852 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 }
2854
2855 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002856 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
NeilBrown112bf892009-03-31 14:39:38 +11002858 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002859 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002860 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2861 || sh2.qd_idx != sh->qd_idx) {
NeilBrowncc6167b2016-11-02 14:16:50 +11002862 pr_warn("md/raid:%s: compute_blocknr: map not correct\n",
2863 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 return 0;
2865 }
2866 return r_sector;
2867}
2868
Dan Williams600aa102008-06-28 08:32:05 +10002869static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002870schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002871 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002872{
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002873 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002874 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002875 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002876
Dan Williamse33129d2007-01-02 13:52:30 -07002877 if (rcw) {
Song Liu1e6d6902016-11-17 15:24:39 -08002878 /*
2879 * In some cases, handle_stripe_dirtying initially decided to
2880 * run rmw and allocates extra page for prexor. However, rcw is
2881 * cheaper later on. We need to free the extra page now,
2882 * because we won't be able to do that in ops_complete_prexor().
2883 */
2884 r5c_release_extra_page(sh);
Dan Williamse33129d2007-01-02 13:52:30 -07002885
2886 for (i = disks; i--; ) {
2887 struct r5dev *dev = &sh->dev[i];
2888
2889 if (dev->towrite) {
2890 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002891 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002892 if (!expand)
2893 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002894 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08002895 } else if (test_bit(R5_InJournal, &dev->flags)) {
2896 set_bit(R5_LOCKED, &dev->flags);
2897 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002898 }
2899 }
NeilBrownce7d3632013-03-04 12:37:14 +11002900 /* if we are not expanding this is a proper write request, and
2901 * there will be bios with new data to be drained into the
2902 * stripe cache
2903 */
2904 if (!expand) {
2905 if (!s->locked)
2906 /* False alarm, nothing to do */
2907 return;
2908 sh->reconstruct_state = reconstruct_state_drain_run;
2909 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2910 } else
2911 sh->reconstruct_state = reconstruct_state_run;
2912
2913 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
2914
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002915 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002916 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002917 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002918 } else {
2919 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2920 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002921 BUG_ON(level == 6 &&
2922 (!(test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags) ||
2923 test_bit(R5_Wantcompute, &sh->dev[qd_idx].flags))));
Dan Williamse33129d2007-01-02 13:52:30 -07002924
Dan Williamse33129d2007-01-02 13:52:30 -07002925 for (i = disks; i--; ) {
2926 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002927 if (i == pd_idx || i == qd_idx)
Dan Williamse33129d2007-01-02 13:52:30 -07002928 continue;
2929
Dan Williamse33129d2007-01-02 13:52:30 -07002930 if (dev->towrite &&
2931 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002932 test_bit(R5_Wantcompute, &dev->flags))) {
2933 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002934 set_bit(R5_LOCKED, &dev->flags);
2935 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002936 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08002937 } else if (test_bit(R5_InJournal, &dev->flags)) {
2938 set_bit(R5_LOCKED, &dev->flags);
2939 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002940 }
2941 }
NeilBrownce7d3632013-03-04 12:37:14 +11002942 if (!s->locked)
2943 /* False alarm - nothing to do */
2944 return;
2945 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
2946 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2947 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2948 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002949 }
2950
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002951 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002952 * are in flight
2953 */
2954 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2955 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002956 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002957
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002958 if (level == 6) {
2959 int qd_idx = sh->qd_idx;
2960 struct r5dev *dev = &sh->dev[qd_idx];
2961
2962 set_bit(R5_LOCKED, &dev->flags);
2963 clear_bit(R5_UPTODATE, &dev->flags);
2964 s->locked++;
2965 }
2966
Dan Williams600aa102008-06-28 08:32:05 +10002967 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07002968 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002969 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002970}
NeilBrown16a53ec2006-06-26 00:27:38 -07002971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972/*
2973 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002974 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 * The bi_next chain must be in order.
2976 */
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002977static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx,
2978 int forwrite, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979{
2980 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11002981 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002982 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
NeilBrowncbe47ec2011-07-26 11:20:35 +10002984 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002985 (unsigned long long)bi->bi_iter.bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 (unsigned long long)sh->sector);
2987
Shaohua Lib17459c2012-07-19 16:01:31 +10002988 /*
2989 * If several bio share a stripe. The bio bi_phys_segments acts as a
2990 * reference count to avoid race. The reference count should already be
2991 * increased before this function is called (for example, in
Shaohua Li849674e2016-01-20 13:52:20 -08002992 * raid5_make_request()), so other bio sharing this stripe will not free the
Shaohua Lib17459c2012-07-19 16:01:31 +10002993 * stripe. If a stripe is owned by one stripe, the stripe lock will
2994 * protect it.
2995 */
2996 spin_lock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002997 /* Don't allow new IO added to stripes in batch list */
2998 if (sh->batch_head)
2999 goto overlap;
NeilBrown72626682005-09-09 16:23:54 -07003000 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003002 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07003003 firstwrite = 1;
3004 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 bip = &sh->dev[dd_idx].toread;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003006 while (*bip && (*bip)->bi_iter.bi_sector < bi->bi_iter.bi_sector) {
3007 if (bio_end_sector(*bip) > bi->bi_iter.bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 goto overlap;
3009 bip = & (*bip)->bi_next;
3010 }
Kent Overstreet4f024f32013-10-11 15:44:27 -07003011 if (*bip && (*bip)->bi_iter.bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 goto overlap;
3013
shli@kernel.orgda41ba62014-12-15 12:57:03 +11003014 if (!forwrite || previous)
3015 clear_bit(STRIPE_BATCH_READY, &sh->state);
3016
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02003017 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 if (*bip)
3019 bi->bi_next = *bip;
3020 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003021 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07003022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 if (forwrite) {
3024 /* check if page is covered */
3025 sector_t sector = sh->dev[dd_idx].sector;
3026 for (bi=sh->dev[dd_idx].towrite;
3027 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07003028 bi && bi->bi_iter.bi_sector <= sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07003030 if (bio_end_sector(bi) >= sector)
3031 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 }
3033 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
shli@kernel.org7a87f432014-12-15 12:57:03 +11003034 if (!test_and_set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags))
3035 sh->overwrite_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003037
3038 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07003039 (unsigned long long)(*bip)->bi_iter.bi_sector,
NeilBrowncbe47ec2011-07-26 11:20:35 +10003040 (unsigned long long)sh->sector, dd_idx);
3041
3042 if (conf->mddev->bitmap && firstwrite) {
NeilBrownd0852df52015-05-27 08:43:45 +10003043 /* Cannot hold spinlock over bitmap_startwrite,
3044 * but must ensure this isn't added to a batch until
3045 * we have added to the bitmap and set bm_seq.
3046 * So set STRIPE_BITMAP_PENDING to prevent
3047 * batching.
3048 * If multiple add_stripe_bio() calls race here they
3049 * much all set STRIPE_BITMAP_PENDING. So only the first one
3050 * to complete "bitmap_startwrite" gets to set
3051 * STRIPE_BIT_DELAY. This is important as once a stripe
3052 * is added to a batch, STRIPE_BIT_DELAY cannot be changed
3053 * any more.
3054 */
3055 set_bit(STRIPE_BITMAP_PENDING, &sh->state);
3056 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10003057 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
3058 STRIPE_SECTORS, 0);
NeilBrownd0852df52015-05-27 08:43:45 +10003059 spin_lock_irq(&sh->stripe_lock);
3060 clear_bit(STRIPE_BITMAP_PENDING, &sh->state);
3061 if (!sh->batch_head) {
3062 sh->bm_seq = conf->seq_flush+1;
3063 set_bit(STRIPE_BIT_DELAY, &sh->state);
3064 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003065 }
NeilBrownd0852df52015-05-27 08:43:45 +10003066 spin_unlock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003067
3068 if (stripe_can_batch(sh))
3069 stripe_add_to_batch_list(conf, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 return 1;
3071
3072 overlap:
3073 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10003074 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 return 0;
3076}
3077
NeilBrownd1688a62011-10-11 16:49:52 +11003078static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08003079
NeilBrownd1688a62011-10-11 16:49:52 +11003080static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003081 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08003082{
NeilBrown784052e2009-03-31 15:19:07 +11003083 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10003084 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11003085 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003086 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11003087 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003088
NeilBrown112bf892009-03-31 14:39:38 +11003089 raid5_compute_sector(conf,
3090 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08003091 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11003092 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003093 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003094}
3095
Dan Williamsa4456852007-07-09 11:56:43 -07003096static void
NeilBrownd1688a62011-10-11 16:49:52 +11003097handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003098 struct stripe_head_state *s, int disks,
NeilBrown34a6f802015-08-14 12:07:57 +10003099 struct bio_list *return_bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003100{
3101 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003102 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003103 for (i = disks; i--; ) {
3104 struct bio *bi;
3105 int bitmap_end = 0;
3106
3107 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11003108 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07003109 rcu_read_lock();
3110 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownf5b67ae2016-06-02 16:19:53 +10003111 if (rdev && test_bit(In_sync, &rdev->flags) &&
3112 !test_bit(Faulty, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10003113 atomic_inc(&rdev->nr_pending);
3114 else
3115 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003116 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10003117 if (rdev) {
3118 if (!rdev_set_badblocks(
3119 rdev,
3120 sh->sector,
3121 STRIPE_SECTORS, 0))
3122 md_error(conf->mddev, rdev);
3123 rdev_dec_pending(rdev, conf->mddev);
3124 }
Dan Williamsa4456852007-07-09 11:56:43 -07003125 }
Shaohua Lib17459c2012-07-19 16:01:31 +10003126 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003127 /* fail all writes first */
3128 bi = sh->dev[i].towrite;
3129 sh->dev[i].towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11003130 sh->overwrite_disks = 0;
Shaohua Lib17459c2012-07-19 16:01:31 +10003131 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11003132 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003133 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07003134
Shaohua Li0576b1c2015-08-13 14:32:00 -07003135 r5l_stripe_write_finished(sh);
3136
Dan Williamsa4456852007-07-09 11:56:43 -07003137 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3138 wake_up(&conf->wait_for_overlap);
3139
Kent Overstreet4f024f32013-10-11 15:44:27 -07003140 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003141 sh->dev[i].sector + STRIPE_SECTORS) {
3142 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003143
3144 bi->bi_error = -EIO;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003145 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003146 md_write_end(conf->mddev);
NeilBrown34a6f802015-08-14 12:07:57 +10003147 bio_list_add(return_bi, bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003148 }
3149 bi = nextbi;
3150 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003151 if (bitmap_end)
3152 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3153 STRIPE_SECTORS, 0, 0);
3154 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003155 /* and fail all 'written' */
3156 bi = sh->dev[i].written;
3157 sh->dev[i].written = NULL;
Shaohua Lid592a992014-05-21 17:57:44 +08003158 if (test_and_clear_bit(R5_SkipCopy, &sh->dev[i].flags)) {
3159 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
3160 sh->dev[i].page = sh->dev[i].orig_page;
3161 }
3162
Dan Williamsa4456852007-07-09 11:56:43 -07003163 if (bi) bitmap_end = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003164 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003165 sh->dev[i].sector + STRIPE_SECTORS) {
3166 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003167
3168 bi->bi_error = -EIO;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003169 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003170 md_write_end(conf->mddev);
NeilBrown34a6f802015-08-14 12:07:57 +10003171 bio_list_add(return_bi, bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003172 }
3173 bi = bi2;
3174 }
3175
Dan Williamsb5e98d62007-01-02 13:52:31 -07003176 /* fail any reads if this device is non-operational and
3177 * the data has not reached the cache yet.
3178 */
3179 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
Shaohua Li6e74a9c2015-10-08 21:54:08 -07003180 s->failed > conf->max_degraded &&
Dan Williamsb5e98d62007-01-02 13:52:31 -07003181 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
3182 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11003183 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003184 bi = sh->dev[i].toread;
3185 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11003186 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003187 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3188 wake_up(&conf->wait_for_overlap);
Shaohua Liebda7802015-09-18 10:20:13 -07003189 if (bi)
3190 s->to_read--;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003191 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003192 sh->dev[i].sector + STRIPE_SECTORS) {
3193 struct bio *nextbi =
3194 r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003195
3196 bi->bi_error = -EIO;
NeilBrown34a6f802015-08-14 12:07:57 +10003197 if (!raid5_dec_bi_active_stripes(bi))
3198 bio_list_add(return_bi, bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003199 bi = nextbi;
3200 }
3201 }
Dan Williamsa4456852007-07-09 11:56:43 -07003202 if (bitmap_end)
3203 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3204 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10003205 /* If we were in the middle of a write the parity block might
3206 * still be locked - so just clear all R5_LOCKED flags
3207 */
3208 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003209 }
Shaohua Liebda7802015-09-18 10:20:13 -07003210 s->to_write = 0;
3211 s->written = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003212
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003213 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3214 if (atomic_dec_and_test(&conf->pending_full_writes))
3215 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07003216}
3217
NeilBrown7f0da592011-07-28 11:39:22 +10003218static void
NeilBrownd1688a62011-10-11 16:49:52 +11003219handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10003220 struct stripe_head_state *s)
3221{
3222 int abort = 0;
3223 int i;
3224
shli@kernel.org59fc6302014-12-15 12:57:03 +11003225 BUG_ON(sh->batch_head);
NeilBrown7f0da592011-07-28 11:39:22 +10003226 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003227 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3228 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10003229 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11003230 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10003231 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10003232 * Don't even need to abort as that is handled elsewhere
3233 * if needed, and not always wanted e.g. if there is a known
3234 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11003235 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10003236 * non-sync devices, or abort the recovery
3237 */
NeilBrown18b98372012-04-01 23:48:38 +10003238 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
3239 /* During recovery devices cannot be removed, so
3240 * locking and refcounting of rdevs is not needed
3241 */
NeilBrowne50d3992016-06-02 16:19:52 +10003242 rcu_read_lock();
NeilBrown18b98372012-04-01 23:48:38 +10003243 for (i = 0; i < conf->raid_disks; i++) {
NeilBrowne50d3992016-06-02 16:19:52 +10003244 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrown18b98372012-04-01 23:48:38 +10003245 if (rdev
3246 && !test_bit(Faulty, &rdev->flags)
3247 && !test_bit(In_sync, &rdev->flags)
3248 && !rdev_set_badblocks(rdev, sh->sector,
3249 STRIPE_SECTORS, 0))
3250 abort = 1;
NeilBrowne50d3992016-06-02 16:19:52 +10003251 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown18b98372012-04-01 23:48:38 +10003252 if (rdev
3253 && !test_bit(Faulty, &rdev->flags)
3254 && !test_bit(In_sync, &rdev->flags)
3255 && !rdev_set_badblocks(rdev, sh->sector,
3256 STRIPE_SECTORS, 0))
3257 abort = 1;
3258 }
NeilBrowne50d3992016-06-02 16:19:52 +10003259 rcu_read_unlock();
NeilBrown18b98372012-04-01 23:48:38 +10003260 if (abort)
3261 conf->recovery_disabled =
3262 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10003263 }
NeilBrown18b98372012-04-01 23:48:38 +10003264 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10003265}
3266
NeilBrown9a3e1102011-12-23 10:17:53 +11003267static int want_replace(struct stripe_head *sh, int disk_idx)
3268{
3269 struct md_rdev *rdev;
3270 int rv = 0;
NeilBrown3f232d62016-06-02 16:19:52 +10003271
3272 rcu_read_lock();
3273 rdev = rcu_dereference(sh->raid_conf->disks[disk_idx].replacement);
NeilBrown9a3e1102011-12-23 10:17:53 +11003274 if (rdev
3275 && !test_bit(Faulty, &rdev->flags)
3276 && !test_bit(In_sync, &rdev->flags)
3277 && (rdev->recovery_offset <= sh->sector
3278 || rdev->mddev->recovery_cp <= sh->sector))
3279 rv = 1;
NeilBrown3f232d62016-06-02 16:19:52 +10003280 rcu_read_unlock();
NeilBrown9a3e1102011-12-23 10:17:53 +11003281 return rv;
3282}
3283
NeilBrown93b3dbc2011-07-27 11:00:36 +10003284/* fetch_block - checks the given member device to see if its data needs
Dan Williams1fe797e2008-06-28 09:16:30 +10003285 * to be read or computed to satisfy a request.
3286 *
3287 * Returns 1 when no more member devices need to be checked, otherwise returns
NeilBrown93b3dbc2011-07-27 11:00:36 +10003288 * 0 to tell the loop in handle_stripe_fill to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07003289 */
NeilBrown2c58f062015-02-02 11:32:23 +11003290
3291static int need_this_block(struct stripe_head *sh, struct stripe_head_state *s,
3292 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07003293{
3294 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10003295 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
3296 &sh->dev[s->failed_num[1]] };
NeilBrownea664c82015-02-02 14:03:28 +11003297 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07003298
NeilBrowna79cfe12015-02-02 11:37:59 +11003299
3300 if (test_bit(R5_LOCKED, &dev->flags) ||
3301 test_bit(R5_UPTODATE, &dev->flags))
3302 /* No point reading this as we already have it or have
3303 * decided to get it.
3304 */
3305 return 0;
3306
3307 if (dev->toread ||
3308 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)))
3309 /* We need this block to directly satisfy a request */
3310 return 1;
3311
3312 if (s->syncing || s->expanding ||
3313 (s->replacing && want_replace(sh, disk_idx)))
3314 /* When syncing, or expanding we read everything.
3315 * When replacing, we need the replaced block.
3316 */
3317 return 1;
3318
3319 if ((s->failed >= 1 && fdev[0]->toread) ||
3320 (s->failed >= 2 && fdev[1]->toread))
3321 /* If we want to read from a failed device, then
3322 * we need to actually read every other device.
3323 */
3324 return 1;
3325
NeilBrowna9d56952015-02-02 11:49:10 +11003326 /* Sometimes neither read-modify-write nor reconstruct-write
3327 * cycles can work. In those cases we read every block we
3328 * can. Then the parity-update is certain to have enough to
3329 * work with.
3330 * This can only be a problem when we need to write something,
3331 * and some device has failed. If either of those tests
3332 * fail we need look no further.
3333 */
3334 if (!s->failed || !s->to_write)
3335 return 0;
3336
3337 if (test_bit(R5_Insync, &dev->flags) &&
3338 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3339 /* Pre-reads at not permitted until after short delay
3340 * to gather multiple requests. However if this
3341 * device is no Insync, the block could only be be computed
3342 * and there is no need to delay that.
3343 */
3344 return 0;
NeilBrownea664c82015-02-02 14:03:28 +11003345
NeilBrown36707bb2015-09-24 15:25:36 +10003346 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrownea664c82015-02-02 14:03:28 +11003347 if (fdev[i]->towrite &&
3348 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3349 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3350 /* If we have a partial write to a failed
3351 * device, then we will need to reconstruct
3352 * the content of that device, so all other
3353 * devices must be read.
3354 */
3355 return 1;
3356 }
3357
3358 /* If we are forced to do a reconstruct-write, either because
3359 * the current RAID6 implementation only supports that, or
3360 * or because parity cannot be trusted and we are currently
3361 * recovering it, there is extra need to be careful.
3362 * If one of the devices that we would need to read, because
3363 * it is not being overwritten (and maybe not written at all)
3364 * is missing/faulty, then we need to read everything we can.
3365 */
3366 if (sh->raid_conf->level != 6 &&
3367 sh->sector < sh->raid_conf->mddev->recovery_cp)
3368 /* reconstruct-write isn't being forced */
3369 return 0;
NeilBrown36707bb2015-09-24 15:25:36 +10003370 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrown10d82c52015-05-08 18:19:33 +10003371 if (s->failed_num[i] != sh->pd_idx &&
3372 s->failed_num[i] != sh->qd_idx &&
3373 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
NeilBrownea664c82015-02-02 14:03:28 +11003374 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3375 return 1;
3376 }
3377
NeilBrown2c58f062015-02-02 11:32:23 +11003378 return 0;
3379}
3380
3381static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
3382 int disk_idx, int disks)
3383{
3384 struct r5dev *dev = &sh->dev[disk_idx];
3385
3386 /* is the data in this block needed, and can we get it? */
3387 if (need_this_block(sh, s, disk_idx, disks)) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003388 /* we would like to get this block, possibly by computing it,
3389 * otherwise read it if the backing disk is insync
3390 */
3391 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
3392 BUG_ON(test_bit(R5_Wantread, &dev->flags));
NeilBrownb0c783b2015-05-08 18:19:32 +10003393 BUG_ON(sh->batch_head);
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003394 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10003395 (s->failed && (disk_idx == s->failed_num[0] ||
3396 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003397 /* have disk failed, and we're requested to fetch it;
3398 * do compute it
3399 */
3400 pr_debug("Computing stripe %llu block %d\n",
3401 (unsigned long long)sh->sector, disk_idx);
3402 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3403 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3404 set_bit(R5_Wantcompute, &dev->flags);
3405 sh->ops.target = disk_idx;
3406 sh->ops.target2 = -1; /* no 2nd target */
3407 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10003408 /* Careful: from this point on 'uptodate' is in the eye
3409 * of raid_run_ops which services 'compute' operations
3410 * before writes. R5_Wantcompute flags a block that will
3411 * be R5_UPTODATE by the time it is needed for a
3412 * subsequent operation.
3413 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003414 s->uptodate++;
3415 return 1;
3416 } else if (s->uptodate == disks-2 && s->failed >= 2) {
3417 /* Computing 2-failure is *very* expensive; only
3418 * do it if failed >= 2
3419 */
3420 int other;
3421 for (other = disks; other--; ) {
3422 if (other == disk_idx)
3423 continue;
3424 if (!test_bit(R5_UPTODATE,
3425 &sh->dev[other].flags))
3426 break;
3427 }
3428 BUG_ON(other < 0);
3429 pr_debug("Computing stripe %llu blocks %d,%d\n",
3430 (unsigned long long)sh->sector,
3431 disk_idx, other);
3432 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3433 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3434 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
3435 set_bit(R5_Wantcompute, &sh->dev[other].flags);
3436 sh->ops.target = disk_idx;
3437 sh->ops.target2 = other;
3438 s->uptodate += 2;
3439 s->req_compute = 1;
3440 return 1;
3441 } else if (test_bit(R5_Insync, &dev->flags)) {
3442 set_bit(R5_LOCKED, &dev->flags);
3443 set_bit(R5_Wantread, &dev->flags);
3444 s->locked++;
3445 pr_debug("Reading block %d (sync=%d)\n",
3446 disk_idx, s->syncing);
3447 }
3448 }
3449
3450 return 0;
3451}
3452
3453/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10003454 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003455 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10003456static void handle_stripe_fill(struct stripe_head *sh,
3457 struct stripe_head_state *s,
3458 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003459{
3460 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003461
3462 /* look for blocks to read/compute, skip this if a compute
3463 * is already in flight, or if the stripe contents are in the
3464 * midst of changing due to a write
3465 */
3466 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
3467 !sh->reconstruct_state)
3468 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10003469 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003470 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003471 set_bit(STRIPE_HANDLE, &sh->state);
3472}
3473
NeilBrown787b76f2015-05-21 12:56:41 +10003474static void break_stripe_batch_list(struct stripe_head *head_sh,
3475 unsigned long handle_flags);
Dan Williams1fe797e2008-06-28 09:16:30 +10003476/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07003477 * any written block on an uptodate or failed drive can be returned.
3478 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
3479 * never LOCKED, so we don't need to test 'failed' directly.
3480 */
NeilBrownd1688a62011-10-11 16:49:52 +11003481static void handle_stripe_clean_event(struct r5conf *conf,
NeilBrown34a6f802015-08-14 12:07:57 +10003482 struct stripe_head *sh, int disks, struct bio_list *return_bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003483{
3484 int i;
3485 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003486 int discard_pending = 0;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003487 struct stripe_head *head_sh = sh;
3488 bool do_endio = false;
Dan Williamsa4456852007-07-09 11:56:43 -07003489
3490 for (i = disks; i--; )
3491 if (sh->dev[i].written) {
3492 dev = &sh->dev[i];
3493 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003494 (test_bit(R5_UPTODATE, &dev->flags) ||
Shaohua Lid592a992014-05-21 17:57:44 +08003495 test_bit(R5_Discard, &dev->flags) ||
3496 test_bit(R5_SkipCopy, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003497 /* We can return any write requests */
3498 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003499 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11003500 if (test_and_clear_bit(R5_Discard, &dev->flags))
3501 clear_bit(R5_UPTODATE, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08003502 if (test_and_clear_bit(R5_SkipCopy, &dev->flags)) {
3503 WARN_ON(test_bit(R5_UPTODATE, &dev->flags));
Shaohua Lid592a992014-05-21 17:57:44 +08003504 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003505 do_endio = true;
3506
3507returnbi:
3508 dev->page = dev->orig_page;
Dan Williamsa4456852007-07-09 11:56:43 -07003509 wbi = dev->written;
3510 dev->written = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003511 while (wbi && wbi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003512 dev->sector + STRIPE_SECTORS) {
3513 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003514 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003515 md_write_end(conf->mddev);
NeilBrown34a6f802015-08-14 12:07:57 +10003516 bio_list_add(return_bi, wbi);
Dan Williamsa4456852007-07-09 11:56:43 -07003517 }
3518 wbi = wbi2;
3519 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003520 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3521 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07003522 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003523 0);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003524 if (head_sh->batch_head) {
3525 sh = list_first_entry(&sh->batch_list,
3526 struct stripe_head,
3527 batch_list);
3528 if (sh != head_sh) {
3529 dev = &sh->dev[i];
3530 goto returnbi;
3531 }
3532 }
3533 sh = head_sh;
3534 dev = &sh->dev[i];
NeilBrownf8dfcff2013-03-12 12:18:06 +11003535 } else if (test_bit(R5_Discard, &dev->flags))
3536 discard_pending = 1;
3537 }
Shaohua Lif6bed0e2015-08-13 14:31:59 -07003538
Shaohua Li0576b1c2015-08-13 14:32:00 -07003539 r5l_stripe_write_finished(sh);
3540
NeilBrownf8dfcff2013-03-12 12:18:06 +11003541 if (!discard_pending &&
3542 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003543 int hash;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003544 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
3545 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
3546 if (sh->qd_idx >= 0) {
3547 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
3548 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
3549 }
3550 /* now that discard is done we can proceed with any sync */
3551 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08003552 /*
3553 * SCSI discard will change some bio fields and the stripe has
3554 * no updated data, so remove it from hash list and the stripe
3555 * will be reinitialized
3556 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11003557unhash:
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003558 hash = sh->hash_lock_index;
3559 spin_lock_irq(conf->hash_locks + hash);
Shaohua Lid47648f2013-10-19 14:51:42 +08003560 remove_hash(sh);
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003561 spin_unlock_irq(conf->hash_locks + hash);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003562 if (head_sh->batch_head) {
3563 sh = list_first_entry(&sh->batch_list,
3564 struct stripe_head, batch_list);
3565 if (sh != head_sh)
3566 goto unhash;
3567 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003568 sh = head_sh;
3569
NeilBrownf8dfcff2013-03-12 12:18:06 +11003570 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
3571 set_bit(STRIPE_HANDLE, &sh->state);
3572
3573 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003574
3575 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3576 if (atomic_dec_and_test(&conf->pending_full_writes))
3577 md_wakeup_thread(conf->mddev->thread);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003578
NeilBrown787b76f2015-05-21 12:56:41 +10003579 if (head_sh->batch_head && do_endio)
3580 break_stripe_batch_list(head_sh, STRIPE_EXPAND_SYNC_FLAGS);
Dan Williamsa4456852007-07-09 11:56:43 -07003581}
3582
NeilBrownd1688a62011-10-11 16:49:52 +11003583static void handle_stripe_dirtying(struct r5conf *conf,
NeilBrownc8ac1802011-07-27 11:00:36 +10003584 struct stripe_head *sh,
3585 struct stripe_head_state *s,
3586 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003587{
3588 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11003589 sector_t recovery_cp = conf->mddev->recovery_cp;
3590
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003591 /* Check whether resync is now happening or should start.
Alexander Lyakasa7854482012-10-11 13:50:12 +11003592 * If yes, then the array is dirty (after unclean shutdown or
3593 * initial creation), so parity in some stripes might be inconsistent.
3594 * In this case, we need to always do reconstruct-write, to ensure
3595 * that in case of drive failure or read-error correction, we
3596 * generate correct data from the parity.
3597 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003598 if (conf->rmw_level == PARITY_DISABLE_RMW ||
NeilBrown26ac1072015-02-18 11:35:14 +11003599 (recovery_cp < MaxSector && sh->sector >= recovery_cp &&
3600 s->failed == 0)) {
Alexander Lyakasa7854482012-10-11 13:50:12 +11003601 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10003602 * look like rcw is cheaper
3603 */
3604 rcw = 1; rmw = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003605 pr_debug("force RCW rmw_level=%u, recovery_cp=%llu sh->sector=%llu\n",
3606 conf->rmw_level, (unsigned long long)recovery_cp,
Alexander Lyakasa7854482012-10-11 13:50:12 +11003607 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10003608 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003609 /* would I have to read this buffer for read_modify_write */
3610 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08003611 if ((dev->towrite || i == sh->pd_idx || i == sh->qd_idx ||
3612 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003613 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu1e6d6902016-11-17 15:24:39 -08003614 !((test_bit(R5_UPTODATE, &dev->flags) &&
3615 (!test_bit(R5_InJournal, &dev->flags) ||
3616 dev->page != dev->orig_page)) ||
Dan Williamsf38e1212007-01-02 13:52:30 -07003617 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003618 if (test_bit(R5_Insync, &dev->flags))
3619 rmw++;
3620 else
3621 rmw += 2*disks; /* cannot read it */
3622 }
3623 /* Would I have to read this buffer for reconstruct_write */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003624 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
3625 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003626 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003627 !(test_bit(R5_UPTODATE, &dev->flags) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003628 test_bit(R5_InJournal, &dev->flags) ||
3629 test_bit(R5_Wantcompute, &dev->flags))) {
NeilBrown67f45542014-05-28 13:39:22 +10003630 if (test_bit(R5_Insync, &dev->flags))
3631 rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07003632 else
3633 rcw += 2*disks;
3634 }
3635 }
Song Liu1e6d6902016-11-17 15:24:39 -08003636
Dan Williams45b42332007-07-09 11:56:43 -07003637 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003638 (unsigned long long)sh->sector, rmw, rcw);
3639 set_bit(STRIPE_HANDLE, &sh->state);
Song Liu41257582016-05-23 17:25:06 -07003640 if ((rmw < rcw || (rmw == rcw && conf->rmw_level == PARITY_PREFER_RMW)) && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003641 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003642 if (conf->mddev->queue)
3643 blk_add_trace_msg(conf->mddev->queue,
3644 "raid5 rmw %llu %d",
3645 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07003646 for (i = disks; i--; ) {
3647 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08003648 if (test_bit(R5_InJournal, &dev->flags) &&
3649 dev->page == dev->orig_page &&
3650 !test_bit(R5_LOCKED, &sh->dev[sh->pd_idx].flags)) {
3651 /* alloc page for prexor */
3652 dev->orig_page = alloc_page(GFP_NOIO);
3653
3654 /* will handle failure in a later patch*/
3655 BUG_ON(!dev->orig_page);
3656 }
3657
3658 if ((dev->towrite ||
3659 i == sh->pd_idx || i == sh->qd_idx ||
3660 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003661 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu1e6d6902016-11-17 15:24:39 -08003662 !((test_bit(R5_UPTODATE, &dev->flags) &&
3663 (!test_bit(R5_InJournal, &dev->flags) ||
3664 dev->page != dev->orig_page)) ||
3665 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003666 test_bit(R5_Insync, &dev->flags)) {
NeilBrown67f45542014-05-28 13:39:22 +10003667 if (test_bit(STRIPE_PREREAD_ACTIVE,
3668 &sh->state)) {
3669 pr_debug("Read_old block %d for r-m-w\n",
3670 i);
Dan Williamsa4456852007-07-09 11:56:43 -07003671 set_bit(R5_LOCKED, &dev->flags);
3672 set_bit(R5_Wantread, &dev->flags);
3673 s->locked++;
3674 } else {
3675 set_bit(STRIPE_DELAYED, &sh->state);
3676 set_bit(STRIPE_HANDLE, &sh->state);
3677 }
3678 }
3679 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003680 }
Song Liu41257582016-05-23 17:25:06 -07003681 if ((rcw < rmw || (rcw == rmw && conf->rmw_level != PARITY_PREFER_RMW)) && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003682 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003683 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003684 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003685 for (i = disks; i--; ) {
3686 struct r5dev *dev = &sh->dev[i];
3687 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003688 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003689 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003690 !(test_bit(R5_UPTODATE, &dev->flags) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003691 test_bit(R5_InJournal, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003692 test_bit(R5_Wantcompute, &dev->flags))) {
3693 rcw++;
NeilBrown67f45542014-05-28 13:39:22 +10003694 if (test_bit(R5_Insync, &dev->flags) &&
3695 test_bit(STRIPE_PREREAD_ACTIVE,
3696 &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003697 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003698 "%d for Reconstruct\n", i);
3699 set_bit(R5_LOCKED, &dev->flags);
3700 set_bit(R5_Wantread, &dev->flags);
3701 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003702 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003703 } else {
3704 set_bit(STRIPE_DELAYED, &sh->state);
3705 set_bit(STRIPE_HANDLE, &sh->state);
3706 }
3707 }
3708 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003709 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003710 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3711 (unsigned long long)sh->sector,
3712 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003713 }
NeilBrownb1b02fe2015-02-02 10:44:29 +11003714
3715 if (rcw > disks && rmw > disks &&
3716 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3717 set_bit(STRIPE_DELAYED, &sh->state);
3718
Dan Williamsa4456852007-07-09 11:56:43 -07003719 /* now if nothing is locked, and if we have enough data,
3720 * we can start a write request
3721 */
Dan Williamsf38e1212007-01-02 13:52:30 -07003722 /* since handle_stripe can be called at any time we need to handle the
3723 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07003724 * subsequent call wants to start a write request. raid_run_ops only
3725 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07003726 * simultaneously. If this is not the case then new writes need to be
3727 * held off until the compute completes.
3728 */
Dan Williams976ea8d2008-06-28 08:32:03 +10003729 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
3730 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
Song Liu1e6d6902016-11-17 15:24:39 -08003731 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003732 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07003733}
3734
NeilBrownd1688a62011-10-11 16:49:52 +11003735static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003736 struct stripe_head_state *s, int disks)
3737{
Dan Williamsecc65c92008-06-28 08:31:57 +10003738 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07003739
shli@kernel.org59fc6302014-12-15 12:57:03 +11003740 BUG_ON(sh->batch_head);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003741 set_bit(STRIPE_HANDLE, &sh->state);
3742
Dan Williamsecc65c92008-06-28 08:31:57 +10003743 switch (sh->check_state) {
3744 case check_state_idle:
3745 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07003746 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07003747 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10003748 sh->check_state = check_state_run;
3749 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003750 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003751 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10003752 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07003753 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003754 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10003755 /* fall through */
3756 case check_state_compute_result:
3757 sh->check_state = check_state_idle;
3758 if (!dev)
3759 dev = &sh->dev[sh->pd_idx];
3760
3761 /* check that a write has not made the stripe insync */
3762 if (test_bit(STRIPE_INSYNC, &sh->state))
3763 break;
3764
3765 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07003766 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3767 BUG_ON(s->uptodate != disks);
3768
3769 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10003770 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07003771 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07003772
Dan Williamsa4456852007-07-09 11:56:43 -07003773 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003774 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003775 break;
3776 case check_state_run:
3777 break; /* we will be called again upon completion */
3778 case check_state_check_result:
3779 sh->check_state = check_state_idle;
3780
3781 /* if a failure occurred during the check operation, leave
3782 * STRIPE_INSYNC not set and let the stripe be handled again
3783 */
3784 if (s->failed)
3785 break;
3786
3787 /* handle a successful check operation, if parity is correct
3788 * we are done. Otherwise update the mismatch count and repair
3789 * parity if !MD_RECOVERY_CHECK
3790 */
Dan Williamsad283ea2009-08-29 19:09:26 -07003791 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10003792 /* parity is correct (on disc,
3793 * not in buffer any more)
3794 */
3795 set_bit(STRIPE_INSYNC, &sh->state);
3796 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003797 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10003798 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3799 /* don't try to repair!! */
3800 set_bit(STRIPE_INSYNC, &sh->state);
3801 else {
3802 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003803 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003804 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3805 set_bit(R5_Wantcompute,
3806 &sh->dev[sh->pd_idx].flags);
3807 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003808 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003809 s->uptodate++;
3810 }
3811 }
3812 break;
3813 case check_state_compute_run:
3814 break;
3815 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11003816 pr_err("%s: unknown check_state: %d sector: %llu\n",
Dan Williamsecc65c92008-06-28 08:31:57 +10003817 __func__, sh->check_state,
3818 (unsigned long long) sh->sector);
3819 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003820 }
3821}
3822
NeilBrownd1688a62011-10-11 16:49:52 +11003823static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003824 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003825 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003826{
Dan Williamsa4456852007-07-09 11:56:43 -07003827 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003828 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003829 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003830
shli@kernel.org59fc6302014-12-15 12:57:03 +11003831 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003832 set_bit(STRIPE_HANDLE, &sh->state);
3833
3834 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003835
Dan Williamsa4456852007-07-09 11:56:43 -07003836 /* Want to check and possibly repair P and Q.
3837 * However there could be one 'failed' device, in which
3838 * case we can only check one of them, possibly using the
3839 * other to generate missing data
3840 */
3841
Dan Williamsd82dfee2009-07-14 13:40:57 -07003842 switch (sh->check_state) {
3843 case check_state_idle:
3844 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10003845 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003846 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07003847 * makes sense to check P (If anything else were failed,
3848 * we would have used P to recreate it).
3849 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003850 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07003851 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003852 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003853 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07003854 * anything, so it makes sense to check it
3855 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003856 if (sh->check_state == check_state_run)
3857 sh->check_state = check_state_run_pq;
3858 else
3859 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07003860 }
Dan Williams36d1c642009-07-14 11:48:22 -07003861
Dan Williamsd82dfee2009-07-14 13:40:57 -07003862 /* discard potentially stale zero_sum_result */
3863 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07003864
Dan Williamsd82dfee2009-07-14 13:40:57 -07003865 if (sh->check_state == check_state_run) {
3866 /* async_xor_zero_sum destroys the contents of P */
3867 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3868 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07003869 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003870 if (sh->check_state >= check_state_run &&
3871 sh->check_state <= check_state_run_pq) {
3872 /* async_syndrome_zero_sum preserves P and Q, so
3873 * no need to mark them !uptodate here
3874 */
3875 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3876 break;
3877 }
Dan Williams36d1c642009-07-14 11:48:22 -07003878
Dan Williamsd82dfee2009-07-14 13:40:57 -07003879 /* we have 2-disk failure */
3880 BUG_ON(s->failed != 2);
3881 /* fall through */
3882 case check_state_compute_result:
3883 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003884
Dan Williamsd82dfee2009-07-14 13:40:57 -07003885 /* check that a write has not made the stripe insync */
3886 if (test_bit(STRIPE_INSYNC, &sh->state))
3887 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003888
3889 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003890 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003891 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003892 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003893 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003894 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003895 s->locked++;
3896 set_bit(R5_LOCKED, &dev->flags);
3897 set_bit(R5_Wantwrite, &dev->flags);
3898 }
3899 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003900 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003901 s->locked++;
3902 set_bit(R5_LOCKED, &dev->flags);
3903 set_bit(R5_Wantwrite, &dev->flags);
3904 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003905 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003906 dev = &sh->dev[pd_idx];
3907 s->locked++;
3908 set_bit(R5_LOCKED, &dev->flags);
3909 set_bit(R5_Wantwrite, &dev->flags);
3910 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003911 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003912 dev = &sh->dev[qd_idx];
3913 s->locked++;
3914 set_bit(R5_LOCKED, &dev->flags);
3915 set_bit(R5_Wantwrite, &dev->flags);
3916 }
3917 clear_bit(STRIPE_DEGRADED, &sh->state);
3918
3919 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003920 break;
3921 case check_state_run:
3922 case check_state_run_q:
3923 case check_state_run_pq:
3924 break; /* we will be called again upon completion */
3925 case check_state_check_result:
3926 sh->check_state = check_state_idle;
3927
3928 /* handle a successful check operation, if parity is correct
3929 * we are done. Otherwise update the mismatch count and repair
3930 * parity if !MD_RECOVERY_CHECK
3931 */
3932 if (sh->ops.zero_sum_result == 0) {
3933 /* both parities are correct */
3934 if (!s->failed)
3935 set_bit(STRIPE_INSYNC, &sh->state);
3936 else {
3937 /* in contrast to the raid5 case we can validate
3938 * parity, but still have a failure to write
3939 * back
3940 */
3941 sh->check_state = check_state_compute_result;
3942 /* Returning at this point means that we may go
3943 * off and bring p and/or q uptodate again so
3944 * we make sure to check zero_sum_result again
3945 * to verify if p or q need writeback
3946 */
3947 }
3948 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003949 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003950 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3951 /* don't try to repair!! */
3952 set_bit(STRIPE_INSYNC, &sh->state);
3953 else {
3954 int *target = &sh->ops.target;
3955
3956 sh->ops.target = -1;
3957 sh->ops.target2 = -1;
3958 sh->check_state = check_state_compute_run;
3959 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3960 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3961 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3962 set_bit(R5_Wantcompute,
3963 &sh->dev[pd_idx].flags);
3964 *target = pd_idx;
3965 target = &sh->ops.target2;
3966 s->uptodate++;
3967 }
3968 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3969 set_bit(R5_Wantcompute,
3970 &sh->dev[qd_idx].flags);
3971 *target = qd_idx;
3972 s->uptodate++;
3973 }
3974 }
3975 }
3976 break;
3977 case check_state_compute_run:
3978 break;
3979 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11003980 pr_warn("%s: unknown check_state: %d sector: %llu\n",
3981 __func__, sh->check_state,
3982 (unsigned long long) sh->sector);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003983 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003984 }
3985}
3986
NeilBrownd1688a62011-10-11 16:49:52 +11003987static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07003988{
3989 int i;
3990
3991 /* We have read all the blocks in this stripe and now we need to
3992 * copy some of them into a target stripe for expand.
3993 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07003994 struct dma_async_tx_descriptor *tx = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003995 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003996 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3997 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11003998 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11003999 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07004000 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07004001 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07004002
Shaohua Li6d036f72015-08-13 14:31:57 -07004003 sector_t bn = raid5_compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11004004 sector_t s = raid5_compute_sector(conf, bn, 0,
4005 &dd_idx, NULL);
Shaohua Li6d036f72015-08-13 14:31:57 -07004006 sh2 = raid5_get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07004007 if (sh2 == NULL)
4008 /* so far only the early blocks of this stripe
4009 * have been requested. When later blocks
4010 * get requested, we will try again
4011 */
4012 continue;
4013 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
4014 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
4015 /* must have already done this block */
Shaohua Li6d036f72015-08-13 14:31:57 -07004016 raid5_release_stripe(sh2);
Dan Williamsa4456852007-07-09 11:56:43 -07004017 continue;
4018 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07004019
4020 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07004021 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004022 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07004023 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07004024 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004025
Dan Williamsa4456852007-07-09 11:56:43 -07004026 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
4027 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
4028 for (j = 0; j < conf->raid_disks; j++)
4029 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10004030 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07004031 !test_bit(R5_Expanded, &sh2->dev[j].flags))
4032 break;
4033 if (j == conf->raid_disks) {
4034 set_bit(STRIPE_EXPAND_READY, &sh2->state);
4035 set_bit(STRIPE_HANDLE, &sh2->state);
4036 }
Shaohua Li6d036f72015-08-13 14:31:57 -07004037 raid5_release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004038
Dan Williamsa4456852007-07-09 11:56:43 -07004039 }
NeilBrowna2e08552007-09-11 15:23:36 -07004040 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11004041 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07004042}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
4044/*
4045 * handle_stripe - do things to a stripe.
4046 *
NeilBrown9a3e1102011-12-23 10:17:53 +11004047 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
4048 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11004050 * return some read requests which now have data
4051 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 * schedule a read on some buffers
4053 * schedule a write of some buffers
4054 * return confirmation of parity correctness
4055 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 */
Dan Williamsa4456852007-07-09 11:56:43 -07004057
NeilBrownacfe7262011-07-27 11:00:36 +10004058static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07004059{
NeilBrownd1688a62011-10-11 16:49:52 +11004060 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08004061 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004062 struct r5dev *dev;
4063 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11004064 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07004065
NeilBrownacfe7262011-07-27 11:00:36 +10004066 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07004067
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004068 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state) && !sh->batch_head;
4069 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state) && !sh->batch_head;
NeilBrownacfe7262011-07-27 11:00:36 +10004070 s->failed_num[0] = -1;
4071 s->failed_num[1] = -1;
Shaohua Li6e74a9c2015-10-08 21:54:08 -07004072 s->log_failed = r5l_log_disk_error(conf);
NeilBrownacfe7262011-07-27 11:00:36 +10004073
4074 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07004075 rcu_read_lock();
4076 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004077 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10004078 sector_t first_bad;
4079 int bad_sectors;
4080 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10004081
NeilBrown16a53ec2006-06-26 00:27:38 -07004082 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07004083
Dan Williams45b42332007-07-09 11:56:43 -07004084 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11004085 i, dev->flags,
4086 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004087 /* maybe we can reply to a read
4088 *
4089 * new wantfill requests are only permitted while
4090 * ops_complete_biofill is guaranteed to be inactive
4091 */
4092 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
4093 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
4094 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07004095
4096 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10004097 if (test_bit(R5_LOCKED, &dev->flags))
4098 s->locked++;
4099 if (test_bit(R5_UPTODATE, &dev->flags))
4100 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004101 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004102 s->compute++;
4103 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004104 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004105
NeilBrownacfe7262011-07-27 11:00:36 +10004106 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004107 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10004108 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10004109 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004110 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10004111 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004112 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004113 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004114 }
Dan Williamsa4456852007-07-09 11:56:43 -07004115 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10004116 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11004117 /* Prefer to use the replacement for reads, but only
4118 * if it is recovered enough and has no bad blocks.
4119 */
4120 rdev = rcu_dereference(conf->disks[i].replacement);
4121 if (rdev && !test_bit(Faulty, &rdev->flags) &&
4122 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
4123 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4124 &first_bad, &bad_sectors))
4125 set_bit(R5_ReadRepl, &dev->flags);
4126 else {
NeilBrowne6030cb2015-07-17 13:26:23 +10004127 if (rdev && !test_bit(Faulty, &rdev->flags))
NeilBrown9a3e1102011-12-23 10:17:53 +11004128 set_bit(R5_NeedReplace, &dev->flags);
NeilBrowne6030cb2015-07-17 13:26:23 +10004129 else
4130 clear_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11004131 rdev = rcu_dereference(conf->disks[i].rdev);
4132 clear_bit(R5_ReadRepl, &dev->flags);
4133 }
NeilBrown9283d8c2011-12-08 16:27:57 +11004134 if (rdev && test_bit(Faulty, &rdev->flags))
4135 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10004136 if (rdev) {
4137 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4138 &first_bad, &bad_sectors);
4139 if (s->blocked_rdev == NULL
4140 && (test_bit(Blocked, &rdev->flags)
4141 || is_bad < 0)) {
4142 if (is_bad < 0)
4143 set_bit(BlockedBadBlocks,
4144 &rdev->flags);
4145 s->blocked_rdev = rdev;
4146 atomic_inc(&rdev->nr_pending);
4147 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004148 }
NeilBrown415e72d2010-06-17 17:25:21 +10004149 clear_bit(R5_Insync, &dev->flags);
4150 if (!rdev)
4151 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10004152 else if (is_bad) {
4153 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10004154 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
4155 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10004156 /* treat as in-sync, but with a read error
4157 * which we can now try to correct
4158 */
4159 set_bit(R5_Insync, &dev->flags);
4160 set_bit(R5_ReadError, &dev->flags);
4161 }
4162 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10004163 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11004164 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10004165 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11004166 set_bit(R5_Insync, &dev->flags);
4167 else if (test_bit(R5_UPTODATE, &dev->flags) &&
4168 test_bit(R5_Expanded, &dev->flags))
4169 /* If we've reshaped into here, we assume it is Insync.
4170 * We will shortly update recovery_offset to make
4171 * it official.
4172 */
4173 set_bit(R5_Insync, &dev->flags);
4174
NeilBrown1cc03eb2014-01-06 13:19:42 +11004175 if (test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004176 /* This flag does not apply to '.replacement'
4177 * only to .rdev, so make sure to check that*/
4178 struct md_rdev *rdev2 = rcu_dereference(
4179 conf->disks[i].rdev);
4180 if (rdev2 == rdev)
4181 clear_bit(R5_Insync, &dev->flags);
4182 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004183 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004184 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10004185 } else
4186 clear_bit(R5_WriteError, &dev->flags);
4187 }
NeilBrown1cc03eb2014-01-06 13:19:42 +11004188 if (test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004189 /* This flag does not apply to '.replacement'
4190 * only to .rdev, so make sure to check that*/
4191 struct md_rdev *rdev2 = rcu_dereference(
4192 conf->disks[i].rdev);
4193 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10004194 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004195 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10004196 } else
4197 clear_bit(R5_MadeGood, &dev->flags);
4198 }
NeilBrown977df362011-12-23 10:17:53 +11004199 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
4200 struct md_rdev *rdev2 = rcu_dereference(
4201 conf->disks[i].replacement);
4202 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
4203 s->handle_bad_blocks = 1;
4204 atomic_inc(&rdev2->nr_pending);
4205 } else
4206 clear_bit(R5_MadeGoodRepl, &dev->flags);
4207 }
NeilBrown415e72d2010-06-17 17:25:21 +10004208 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004209 /* The ReadError flag will just be confusing now */
4210 clear_bit(R5_ReadError, &dev->flags);
4211 clear_bit(R5_ReWrite, &dev->flags);
4212 }
NeilBrown415e72d2010-06-17 17:25:21 +10004213 if (test_bit(R5_ReadError, &dev->flags))
4214 clear_bit(R5_Insync, &dev->flags);
4215 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004216 if (s->failed < 2)
4217 s->failed_num[s->failed] = i;
4218 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11004219 if (rdev && !test_bit(Faulty, &rdev->flags))
4220 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10004221 }
Song Liu2ded3702016-11-17 15:24:38 -08004222
4223 if (test_bit(R5_InJournal, &dev->flags))
4224 s->injournal++;
Song Liu1e6d6902016-11-17 15:24:39 -08004225 if (test_bit(R5_InJournal, &dev->flags) && dev->written)
4226 s->just_cached++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004227 }
NeilBrown9a3e1102011-12-23 10:17:53 +11004228 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4229 /* If there is a failed device being replaced,
4230 * we must be recovering.
4231 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10004232 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11004233 * else we can only be replacing
4234 * sync and recovery both need to read all devices, and so
4235 * use the same flag.
4236 */
4237 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10004238 sh->sector >= conf->mddev->recovery_cp ||
4239 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11004240 s->syncing = 1;
4241 else
4242 s->replacing = 1;
4243 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004244 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10004245}
NeilBrownf4168852007-02-28 20:11:53 -08004246
shli@kernel.org59fc6302014-12-15 12:57:03 +11004247static int clear_batch_ready(struct stripe_head *sh)
4248{
NeilBrownb15a9db2015-05-22 15:20:04 +10004249 /* Return '1' if this is a member of batch, or
4250 * '0' if it is a lone stripe or a head which can now be
4251 * handled.
4252 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11004253 struct stripe_head *tmp;
4254 if (!test_and_clear_bit(STRIPE_BATCH_READY, &sh->state))
NeilBrownb15a9db2015-05-22 15:20:04 +10004255 return (sh->batch_head && sh->batch_head != sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11004256 spin_lock(&sh->stripe_lock);
4257 if (!sh->batch_head) {
4258 spin_unlock(&sh->stripe_lock);
4259 return 0;
4260 }
4261
4262 /*
4263 * this stripe could be added to a batch list before we check
4264 * BATCH_READY, skips it
4265 */
4266 if (sh->batch_head != sh) {
4267 spin_unlock(&sh->stripe_lock);
4268 return 1;
4269 }
4270 spin_lock(&sh->batch_lock);
4271 list_for_each_entry(tmp, &sh->batch_list, batch_list)
4272 clear_bit(STRIPE_BATCH_READY, &tmp->state);
4273 spin_unlock(&sh->batch_lock);
4274 spin_unlock(&sh->stripe_lock);
4275
4276 /*
4277 * BATCH_READY is cleared, no new stripes can be added.
4278 * batch_list can be accessed without lock
4279 */
4280 return 0;
4281}
4282
NeilBrown3960ce72015-05-21 12:20:36 +10004283static void break_stripe_batch_list(struct stripe_head *head_sh,
4284 unsigned long handle_flags)
shli@kernel.org72ac7332014-12-15 12:57:03 +11004285{
NeilBrown4e3d62f2015-05-21 11:50:16 +10004286 struct stripe_head *sh, *next;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004287 int i;
NeilBrownfb642b92015-05-21 12:00:47 +10004288 int do_wakeup = 0;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004289
NeilBrownbb270512015-05-08 18:19:40 +10004290 list_for_each_entry_safe(sh, next, &head_sh->batch_list, batch_list) {
4291
shli@kernel.org72ac7332014-12-15 12:57:03 +11004292 list_del_init(&sh->batch_list);
4293
Shaohua Lifb3229d2016-03-09 10:08:38 -08004294 WARN_ONCE(sh->state & ((1 << STRIPE_ACTIVE) |
NeilBrown1b956f72015-05-21 12:40:26 +10004295 (1 << STRIPE_SYNCING) |
4296 (1 << STRIPE_REPLACED) |
NeilBrown1b956f72015-05-21 12:40:26 +10004297 (1 << STRIPE_DELAYED) |
4298 (1 << STRIPE_BIT_DELAY) |
4299 (1 << STRIPE_FULL_WRITE) |
4300 (1 << STRIPE_BIOFILL_RUN) |
4301 (1 << STRIPE_COMPUTE_RUN) |
4302 (1 << STRIPE_OPS_REQ_PENDING) |
4303 (1 << STRIPE_DISCARD) |
4304 (1 << STRIPE_BATCH_READY) |
4305 (1 << STRIPE_BATCH_ERR) |
Shaohua Lifb3229d2016-03-09 10:08:38 -08004306 (1 << STRIPE_BITMAP_PENDING)),
4307 "stripe state: %lx\n", sh->state);
4308 WARN_ONCE(head_sh->state & ((1 << STRIPE_DISCARD) |
4309 (1 << STRIPE_REPLACED)),
4310 "head stripe state: %lx\n", head_sh->state);
NeilBrown1b956f72015-05-21 12:40:26 +10004311
4312 set_mask_bits(&sh->state, ~(STRIPE_EXPAND_SYNC_FLAGS |
NeilBrown550da242016-03-09 12:58:25 +11004313 (1 << STRIPE_PREREAD_ACTIVE) |
NeilBrown1b956f72015-05-21 12:40:26 +10004314 (1 << STRIPE_DEGRADED)),
4315 head_sh->state & (1 << STRIPE_INSYNC));
4316
shli@kernel.org72ac7332014-12-15 12:57:03 +11004317 sh->check_state = head_sh->check_state;
4318 sh->reconstruct_state = head_sh->reconstruct_state;
NeilBrownfb642b92015-05-21 12:00:47 +10004319 for (i = 0; i < sh->disks; i++) {
4320 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
4321 do_wakeup = 1;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004322 sh->dev[i].flags = head_sh->dev[i].flags &
4323 (~((1 << R5_WriteError) | (1 << R5_Overlap)));
NeilBrownfb642b92015-05-21 12:00:47 +10004324 }
shli@kernel.org72ac7332014-12-15 12:57:03 +11004325 spin_lock_irq(&sh->stripe_lock);
4326 sh->batch_head = NULL;
4327 spin_unlock_irq(&sh->stripe_lock);
NeilBrown3960ce72015-05-21 12:20:36 +10004328 if (handle_flags == 0 ||
4329 sh->state & handle_flags)
4330 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07004331 raid5_release_stripe(sh);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004332 }
NeilBrownfb642b92015-05-21 12:00:47 +10004333 spin_lock_irq(&head_sh->stripe_lock);
4334 head_sh->batch_head = NULL;
4335 spin_unlock_irq(&head_sh->stripe_lock);
4336 for (i = 0; i < head_sh->disks; i++)
4337 if (test_and_clear_bit(R5_Overlap, &head_sh->dev[i].flags))
4338 do_wakeup = 1;
NeilBrown3960ce72015-05-21 12:20:36 +10004339 if (head_sh->state & handle_flags)
4340 set_bit(STRIPE_HANDLE, &head_sh->state);
NeilBrownfb642b92015-05-21 12:00:47 +10004341
4342 if (do_wakeup)
4343 wake_up(&head_sh->raid_conf->wait_for_overlap);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004344}
4345
NeilBrowncc940152011-07-26 11:35:35 +10004346static void handle_stripe(struct stripe_head *sh)
4347{
4348 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11004349 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10004350 int i;
NeilBrown84789552011-07-27 11:00:36 +10004351 int prexor;
4352 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004353 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10004354
4355 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11004356 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10004357 /* already being handled, ensure it gets handled
4358 * again when current action finishes */
4359 set_bit(STRIPE_HANDLE, &sh->state);
4360 return;
4361 }
4362
shli@kernel.org59fc6302014-12-15 12:57:03 +11004363 if (clear_batch_ready(sh) ) {
4364 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
4365 return;
4366 }
4367
NeilBrown4e3d62f2015-05-21 11:50:16 +10004368 if (test_and_clear_bit(STRIPE_BATCH_ERR, &sh->state))
NeilBrown3960ce72015-05-21 12:20:36 +10004369 break_stripe_batch_list(sh, 0);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004370
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004371 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state) && !sh->batch_head) {
NeilBrownf8dfcff2013-03-12 12:18:06 +11004372 spin_lock(&sh->stripe_lock);
4373 /* Cannot process 'sync' concurrently with 'discard' */
4374 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
4375 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4376 set_bit(STRIPE_SYNCING, &sh->state);
4377 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10004378 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004379 }
4380 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10004381 }
4382 clear_bit(STRIPE_DELAYED, &sh->state);
4383
4384 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
4385 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
4386 (unsigned long long)sh->sector, sh->state,
4387 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
4388 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10004389
NeilBrownacfe7262011-07-27 11:00:36 +10004390 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10004391
Shaohua Lib70abcb22015-08-13 14:31:58 -07004392 if (test_bit(STRIPE_LOG_TRAPPED, &sh->state))
4393 goto finish;
4394
NeilBrownbc2607f2011-07-28 11:39:22 +10004395 if (s.handle_bad_blocks) {
4396 set_bit(STRIPE_HANDLE, &sh->state);
4397 goto finish;
4398 }
4399
NeilBrown474af965fe2011-07-27 11:00:36 +10004400 if (unlikely(s.blocked_rdev)) {
4401 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11004402 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10004403 set_bit(STRIPE_HANDLE, &sh->state);
4404 goto finish;
4405 }
4406 /* There is nothing for the blocked_rdev to block */
4407 rdev_dec_pending(s.blocked_rdev, conf->mddev);
4408 s.blocked_rdev = NULL;
4409 }
4410
4411 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
4412 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
4413 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
4414 }
4415
4416 pr_debug("locked=%d uptodate=%d to_read=%d"
4417 " to_write=%d failed=%d failed_num=%d,%d\n",
4418 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
4419 s.failed_num[0], s.failed_num[1]);
4420 /* check if the array has lost more than max_degraded devices and,
4421 * if so, some requests might need to be failed.
4422 */
Shaohua Li6e74a9c2015-10-08 21:54:08 -07004423 if (s.failed > conf->max_degraded || s.log_failed) {
NeilBrown9a3f5302011-11-08 16:22:01 +11004424 sh->check_state = 0;
4425 sh->reconstruct_state = 0;
NeilBrown626f2092015-05-22 14:03:10 +10004426 break_stripe_batch_list(sh, 0);
NeilBrown9a3f5302011-11-08 16:22:01 +11004427 if (s.to_read+s.to_write+s.written)
4428 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11004429 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11004430 handle_failed_sync(conf, sh, &s);
4431 }
NeilBrown474af965fe2011-07-27 11:00:36 +10004432
NeilBrown84789552011-07-27 11:00:36 +10004433 /* Now we check to see if any write operations have recently
4434 * completed
4435 */
4436 prexor = 0;
4437 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
4438 prexor = 1;
4439 if (sh->reconstruct_state == reconstruct_state_drain_result ||
4440 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
4441 sh->reconstruct_state = reconstruct_state_idle;
4442
4443 /* All the 'written' buffers and the parity block are ready to
4444 * be written back to disk
4445 */
Shaohua Li9e4447682012-10-11 13:49:49 +11004446 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
4447 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004448 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11004449 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
4450 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004451 for (i = disks; i--; ) {
4452 struct r5dev *dev = &sh->dev[i];
4453 if (test_bit(R5_LOCKED, &dev->flags) &&
4454 (i == sh->pd_idx || i == sh->qd_idx ||
Song Liu1e6d6902016-11-17 15:24:39 -08004455 dev->written || test_bit(R5_InJournal,
4456 &dev->flags))) {
NeilBrown84789552011-07-27 11:00:36 +10004457 pr_debug("Writing block %d\n", i);
4458 set_bit(R5_Wantwrite, &dev->flags);
4459 if (prexor)
4460 continue;
NeilBrown9c4bdf62014-08-13 09:57:07 +10004461 if (s.failed > 1)
4462 continue;
NeilBrown84789552011-07-27 11:00:36 +10004463 if (!test_bit(R5_Insync, &dev->flags) ||
4464 ((i == sh->pd_idx || i == sh->qd_idx) &&
4465 s.failed == 0))
4466 set_bit(STRIPE_INSYNC, &sh->state);
4467 }
4468 }
4469 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4470 s.dec_preread_active = 1;
4471 }
4472
NeilBrownef5b7c62012-11-22 09:13:36 +11004473 /*
4474 * might be able to return some write requests if the parity blocks
4475 * are safe, or on a failed drive
4476 */
4477 pdev = &sh->dev[sh->pd_idx];
4478 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
4479 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
4480 qdev = &sh->dev[sh->qd_idx];
4481 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
4482 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
4483 || conf->level < 6;
4484
4485 if (s.written &&
4486 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
4487 && !test_bit(R5_LOCKED, &pdev->flags)
4488 && (test_bit(R5_UPTODATE, &pdev->flags) ||
4489 test_bit(R5_Discard, &pdev->flags))))) &&
4490 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
4491 && !test_bit(R5_LOCKED, &qdev->flags)
4492 && (test_bit(R5_UPTODATE, &qdev->flags) ||
4493 test_bit(R5_Discard, &qdev->flags))))))
4494 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
4495
Song Liu1e6d6902016-11-17 15:24:39 -08004496 if (s.just_cached)
4497 r5c_handle_cached_data_endio(conf, sh, disks, &s.return_bi);
4498 r5l_stripe_write_finished(sh);
4499
NeilBrownef5b7c62012-11-22 09:13:36 +11004500 /* Now we might consider reading some blocks, either to check/generate
4501 * parity, or to satisfy requests
4502 * or to load a block that is being partially written.
4503 */
4504 if (s.to_read || s.non_overwrite
4505 || (conf->level == 6 && s.to_write && s.failed)
4506 || (s.syncing && (s.uptodate + s.compute < disks))
4507 || s.replacing
4508 || s.expanding)
4509 handle_stripe_fill(sh, &s, disks);
4510
Song Liu2ded3702016-11-17 15:24:38 -08004511 /*
4512 * When the stripe finishes full journal write cycle (write to journal
4513 * and raid disk), this is the clean up procedure so it is ready for
4514 * next operation.
4515 */
4516 r5c_finish_stripe_write_out(conf, sh, &s);
4517
4518 /*
4519 * Now to consider new write requests, cache write back and what else,
4520 * if anything should be read. We do not handle new writes when:
NeilBrown84789552011-07-27 11:00:36 +10004521 * 1/ A 'write' operation (copy+xor) is already in flight.
4522 * 2/ A 'check' operation is in flight, as it may clobber the parity
4523 * block.
Song Liu2ded3702016-11-17 15:24:38 -08004524 * 3/ A r5c cache log write is in flight.
NeilBrown84789552011-07-27 11:00:36 +10004525 */
Song Liu2ded3702016-11-17 15:24:38 -08004526
4527 if (!sh->reconstruct_state && !sh->check_state && !sh->log_io) {
4528 if (!r5c_is_writeback(conf->log)) {
4529 if (s.to_write)
4530 handle_stripe_dirtying(conf, sh, &s, disks);
4531 } else { /* write back cache */
4532 int ret = 0;
4533
4534 /* First, try handle writes in caching phase */
4535 if (s.to_write)
4536 ret = r5c_try_caching_write(conf, sh, &s,
4537 disks);
4538 /*
4539 * If caching phase failed: ret == -EAGAIN
4540 * OR
4541 * stripe under reclaim: !caching && injournal
4542 *
4543 * fall back to handle_stripe_dirtying()
4544 */
4545 if (ret == -EAGAIN ||
4546 /* stripe under reclaim: !caching && injournal */
4547 (!test_bit(STRIPE_R5C_CACHING, &sh->state) &&
4548 s.injournal > 0))
4549 handle_stripe_dirtying(conf, sh, &s, disks);
4550 }
4551 }
NeilBrown84789552011-07-27 11:00:36 +10004552
4553 /* maybe we need to check and possibly fix the parity for this stripe
4554 * Any reads will already have been scheduled, so we just see if enough
4555 * data is available. The parity check is held off while parity
4556 * dependent operations are in flight.
4557 */
4558 if (sh->check_state ||
4559 (s.syncing && s.locked == 0 &&
4560 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
4561 !test_bit(STRIPE_INSYNC, &sh->state))) {
4562 if (conf->level == 6)
4563 handle_parity_checks6(conf, sh, &s, disks);
4564 else
4565 handle_parity_checks5(conf, sh, &s, disks);
4566 }
NeilBrownc5a31002011-07-27 11:00:36 +10004567
NeilBrownf94c0b62013-07-22 12:57:21 +10004568 if ((s.replacing || s.syncing) && s.locked == 0
4569 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
4570 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11004571 /* Write out to replacement devices where possible */
4572 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10004573 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
4574 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11004575 set_bit(R5_WantReplace, &sh->dev[i].flags);
4576 set_bit(R5_LOCKED, &sh->dev[i].flags);
4577 s.locked++;
4578 }
NeilBrownf94c0b62013-07-22 12:57:21 +10004579 if (s.replacing)
4580 set_bit(STRIPE_INSYNC, &sh->state);
4581 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11004582 }
4583 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10004584 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11004585 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10004586 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4587 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004588 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
4589 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10004590 }
4591
4592 /* If the failed drives are just a ReadError, then we might need
4593 * to progress the repair/check process
4594 */
4595 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
4596 for (i = 0; i < s.failed; i++) {
4597 struct r5dev *dev = &sh->dev[s.failed_num[i]];
4598 if (test_bit(R5_ReadError, &dev->flags)
4599 && !test_bit(R5_LOCKED, &dev->flags)
4600 && test_bit(R5_UPTODATE, &dev->flags)
4601 ) {
4602 if (!test_bit(R5_ReWrite, &dev->flags)) {
4603 set_bit(R5_Wantwrite, &dev->flags);
4604 set_bit(R5_ReWrite, &dev->flags);
4605 set_bit(R5_LOCKED, &dev->flags);
4606 s.locked++;
4607 } else {
4608 /* let's read it back */
4609 set_bit(R5_Wantread, &dev->flags);
4610 set_bit(R5_LOCKED, &dev->flags);
4611 s.locked++;
4612 }
4613 }
4614 }
4615
NeilBrown3687c062011-07-27 11:00:36 +10004616 /* Finish reconstruct operations initiated by the expansion process */
4617 if (sh->reconstruct_state == reconstruct_state_result) {
4618 struct stripe_head *sh_src
Shaohua Li6d036f72015-08-13 14:31:57 -07004619 = raid5_get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrown3687c062011-07-27 11:00:36 +10004620 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
4621 /* sh cannot be written until sh_src has been read.
4622 * so arrange for sh to be delayed a little
4623 */
4624 set_bit(STRIPE_DELAYED, &sh->state);
4625 set_bit(STRIPE_HANDLE, &sh->state);
4626 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
4627 &sh_src->state))
4628 atomic_inc(&conf->preread_active_stripes);
Shaohua Li6d036f72015-08-13 14:31:57 -07004629 raid5_release_stripe(sh_src);
NeilBrown3687c062011-07-27 11:00:36 +10004630 goto finish;
4631 }
4632 if (sh_src)
Shaohua Li6d036f72015-08-13 14:31:57 -07004633 raid5_release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07004634
NeilBrown3687c062011-07-27 11:00:36 +10004635 sh->reconstruct_state = reconstruct_state_idle;
4636 clear_bit(STRIPE_EXPANDING, &sh->state);
4637 for (i = conf->raid_disks; i--; ) {
4638 set_bit(R5_Wantwrite, &sh->dev[i].flags);
4639 set_bit(R5_LOCKED, &sh->dev[i].flags);
4640 s.locked++;
4641 }
4642 }
4643
4644 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
4645 !sh->reconstruct_state) {
4646 /* Need to write out all blocks after computing parity */
4647 sh->disks = conf->raid_disks;
4648 stripe_set_idx(sh->sector, conf, 0, sh);
4649 schedule_reconstruction(sh, &s, 1, 1);
4650 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
4651 clear_bit(STRIPE_EXPAND_READY, &sh->state);
4652 atomic_dec(&conf->reshape_stripes);
4653 wake_up(&conf->wait_for_overlap);
4654 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4655 }
4656
4657 if (s.expanding && s.locked == 0 &&
4658 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
4659 handle_stripe_expansion(conf, sh);
4660
4661finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07004662 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10004663 if (unlikely(s.blocked_rdev)) {
4664 if (conf->mddev->external)
4665 md_wait_for_blocked_rdev(s.blocked_rdev,
4666 conf->mddev);
4667 else
4668 /* Internal metadata will immediately
4669 * be written by raid5d, so we don't
4670 * need to wait here.
4671 */
4672 rdev_dec_pending(s.blocked_rdev,
4673 conf->mddev);
4674 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004675
NeilBrownbc2607f2011-07-28 11:39:22 +10004676 if (s.handle_bad_blocks)
4677 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004678 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10004679 struct r5dev *dev = &sh->dev[i];
4680 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
4681 /* We own a safe reference to the rdev */
4682 rdev = conf->disks[i].rdev;
4683 if (!rdev_set_badblocks(rdev, sh->sector,
4684 STRIPE_SECTORS, 0))
4685 md_error(conf->mddev, rdev);
4686 rdev_dec_pending(rdev, conf->mddev);
4687 }
NeilBrownb84db562011-07-28 11:39:23 +10004688 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
4689 rdev = conf->disks[i].rdev;
4690 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004691 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10004692 rdev_dec_pending(rdev, conf->mddev);
4693 }
NeilBrown977df362011-12-23 10:17:53 +11004694 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
4695 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11004696 if (!rdev)
4697 /* rdev have been moved down */
4698 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11004699 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004700 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11004701 rdev_dec_pending(rdev, conf->mddev);
4702 }
NeilBrownbc2607f2011-07-28 11:39:22 +10004703 }
4704
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004705 if (s.ops_request)
4706 raid_run_ops(sh, s.ops_request);
4707
Dan Williamsf0e43bc2008-06-28 08:31:55 +10004708 ops_run_io(sh, &s);
4709
NeilBrownc5709ef2011-07-26 11:35:20 +10004710 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11004711 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02004712 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11004713 * have actually been submitted.
4714 */
4715 atomic_dec(&conf->preread_active_stripes);
4716 if (atomic_read(&conf->preread_active_stripes) <
4717 IO_THRESHOLD)
4718 md_wakeup_thread(conf->mddev->thread);
4719 }
4720
NeilBrownc3cce6c2015-08-14 12:47:33 +10004721 if (!bio_list_empty(&s.return_bi)) {
Tomasz Majchrzak7adb0722016-10-26 09:20:39 +02004722 if (test_bit(MD_CHANGE_PENDING, &conf->mddev->flags)) {
NeilBrownc3cce6c2015-08-14 12:47:33 +10004723 spin_lock_irq(&conf->device_lock);
4724 bio_list_merge(&conf->return_bi, &s.return_bi);
4725 spin_unlock_irq(&conf->device_lock);
4726 md_wakeup_thread(conf->mddev->thread);
4727 } else
4728 return_io(&s.return_bi);
4729 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004730
Dan Williams257a4b42011-11-08 16:22:06 +11004731 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07004732}
4733
NeilBrownd1688a62011-10-11 16:49:52 +11004734static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735{
4736 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
4737 while (!list_empty(&conf->delayed_list)) {
4738 struct list_head *l = conf->delayed_list.next;
4739 struct stripe_head *sh;
4740 sh = list_entry(l, struct stripe_head, lru);
4741 list_del_init(l);
4742 clear_bit(STRIPE_DELAYED, &sh->state);
4743 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4744 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004745 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08004746 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 }
NeilBrown482c0832011-04-18 18:25:42 +10004748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749}
4750
Shaohua Li566c09c2013-11-14 15:16:17 +11004751static void activate_bit_delay(struct r5conf *conf,
4752 struct list_head *temp_inactive_list)
NeilBrown72626682005-09-09 16:23:54 -07004753{
4754 /* device_lock is held */
4755 struct list_head head;
4756 list_add(&head, &conf->bitmap_list);
4757 list_del_init(&conf->bitmap_list);
4758 while (!list_empty(&head)) {
4759 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
Shaohua Li566c09c2013-11-14 15:16:17 +11004760 int hash;
NeilBrown72626682005-09-09 16:23:54 -07004761 list_del_init(&sh->lru);
4762 atomic_inc(&sh->count);
Shaohua Li566c09c2013-11-14 15:16:17 +11004763 hash = sh->hash_lock_index;
4764 __release_stripe(conf, sh, &temp_inactive_list[hash]);
NeilBrown72626682005-09-09 16:23:54 -07004765 }
4766}
4767
NeilBrown5c675f82014-12-15 12:56:56 +11004768static int raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07004769{
NeilBrownd1688a62011-10-11 16:49:52 +11004770 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07004771
4772 /* No difference between reads and writes. Just check
4773 * how busy the stripe_cache is
4774 */
NeilBrown3fa841d2009-09-23 18:10:29 +10004775
NeilBrown54233992015-02-26 12:21:04 +11004776 if (test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state))
NeilBrownf022b2f2006-10-03 01:15:56 -07004777 return 1;
Song Liua39f7af2016-11-17 15:24:40 -08004778
4779 /* Also checks whether there is pressure on r5cache log space */
4780 if (test_bit(R5C_LOG_TIGHT, &conf->cache_state))
4781 return 1;
NeilBrownf022b2f2006-10-03 01:15:56 -07004782 if (conf->quiesce)
4783 return 1;
Shaohua Li4bda5562013-11-14 15:16:17 +11004784 if (atomic_read(&conf->empty_inactive_list_nr))
NeilBrownf022b2f2006-10-03 01:15:56 -07004785 return 1;
4786
4787 return 0;
4788}
4789
NeilBrownfd01b882011-10-11 16:47:53 +11004790static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004791{
NeilBrown3cb5edf2015-07-15 17:24:17 +10004792 struct r5conf *conf = mddev->private;
Kent Overstreet4f024f32013-10-11 15:44:27 -07004793 sector_t sector = bio->bi_iter.bi_sector + get_start_sect(bio->bi_bdev);
NeilBrown3cb5edf2015-07-15 17:24:17 +10004794 unsigned int chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004795 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004796
NeilBrown3cb5edf2015-07-15 17:24:17 +10004797 chunk_sectors = min(conf->chunk_sectors, conf->prev_chunk_sectors);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004798 return chunk_sectors >=
4799 ((sector & (chunk_sectors - 1)) + bio_sectors);
4800}
4801
4802/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004803 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
4804 * later sampled by raid5d.
4805 */
NeilBrownd1688a62011-10-11 16:49:52 +11004806static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004807{
4808 unsigned long flags;
4809
4810 spin_lock_irqsave(&conf->device_lock, flags);
4811
4812 bi->bi_next = conf->retry_read_aligned_list;
4813 conf->retry_read_aligned_list = bi;
4814
4815 spin_unlock_irqrestore(&conf->device_lock, flags);
4816 md_wakeup_thread(conf->mddev->thread);
4817}
4818
NeilBrownd1688a62011-10-11 16:49:52 +11004819static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004820{
4821 struct bio *bi;
4822
4823 bi = conf->retry_read_aligned;
4824 if (bi) {
4825 conf->retry_read_aligned = NULL;
4826 return bi;
4827 }
4828 bi = conf->retry_read_aligned_list;
4829 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08004830 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004831 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02004832 /*
4833 * this sets the active strip count to 1 and the processed
4834 * strip count to zero (upper 8 bits)
4835 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004836 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004837 }
4838
4839 return bi;
4840}
4841
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004842/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004843 * The "raid5_align_endio" should check if the read succeeded and if it
4844 * did, call bio_endio on the original bio (having bio_put the new bio
4845 * first).
4846 * If the read failed..
4847 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004848static void raid5_align_endio(struct bio *bi)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004849{
4850 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11004851 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11004852 struct r5conf *conf;
NeilBrown3cb03002011-10-11 16:45:26 +11004853 struct md_rdev *rdev;
Sasha Levin9b81c842015-08-10 19:05:18 -04004854 int error = bi->bi_error;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004855
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004856 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004857
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004858 rdev = (void*)raid_bi->bi_next;
4859 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11004860 mddev = rdev->mddev;
4861 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004862
4863 rdev_dec_pending(rdev, conf->mddev);
4864
Sasha Levin9b81c842015-08-10 19:05:18 -04004865 if (!error) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004866 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
4867 raid_bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004868 bio_endio(raid_bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004869 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10004870 wake_up(&conf->wait_for_quiescent);
NeilBrown6712ecf2007-09-27 12:47:43 +02004871 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004872 }
4873
Dan Williams45b42332007-07-09 11:56:43 -07004874 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004875
4876 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004877}
4878
Ming Lin7ef6b122015-05-06 22:51:24 -07004879static int raid5_read_one_chunk(struct mddev *mddev, struct bio *raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004880{
NeilBrownd1688a62011-10-11 16:49:52 +11004881 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11004882 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004883 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11004884 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11004885 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004886
4887 if (!in_chunk_boundary(mddev, raid_bio)) {
Ming Lin7ef6b122015-05-06 22:51:24 -07004888 pr_debug("%s: non aligned\n", __func__);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004889 return 0;
4890 }
4891 /*
NeilBrowna167f662010-10-26 18:31:13 +11004892 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004893 */
NeilBrowna167f662010-10-26 18:31:13 +11004894 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004895 if (!align_bi)
4896 return 0;
4897 /*
4898 * set bi_end_io to a new function, and set bi_private to the
4899 * original bio.
4900 */
4901 align_bi->bi_end_io = raid5_align_endio;
4902 align_bi->bi_private = raid_bio;
4903 /*
4904 * compute position
4905 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004906 align_bi->bi_iter.bi_sector =
4907 raid5_compute_sector(conf, raid_bio->bi_iter.bi_sector,
4908 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004909
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004910 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004911 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11004912 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
4913 if (!rdev || test_bit(Faulty, &rdev->flags) ||
4914 rdev->recovery_offset < end_sector) {
4915 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
4916 if (rdev &&
4917 (test_bit(Faulty, &rdev->flags) ||
4918 !(test_bit(In_sync, &rdev->flags) ||
4919 rdev->recovery_offset >= end_sector)))
4920 rdev = NULL;
4921 }
4922 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10004923 sector_t first_bad;
4924 int bad_sectors;
4925
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004926 atomic_inc(&rdev->nr_pending);
4927 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004928 raid_bio->bi_next = (void*)rdev;
4929 align_bi->bi_bdev = rdev->bdev;
Jens Axboeb7c44ed2015-07-24 12:37:59 -06004930 bio_clear_flag(align_bi, BIO_SEG_VALID);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004931
Kent Overstreet7140aaf2013-09-25 13:37:01 -07004932 if (is_badblock(rdev, align_bi->bi_iter.bi_sector,
Kent Overstreet4f024f32013-10-11 15:44:27 -07004933 bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10004934 &first_bad, &bad_sectors)) {
Neil Brown387bb172007-02-08 14:20:29 -08004935 bio_put(align_bi);
4936 rdev_dec_pending(rdev, mddev);
4937 return 0;
4938 }
4939
majianpeng6c0544e2012-06-12 08:31:10 +08004940 /* No reshape active, so we can trust rdev->data_offset */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004941 align_bi->bi_iter.bi_sector += rdev->data_offset;
majianpeng6c0544e2012-06-12 08:31:10 +08004942
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004943 spin_lock_irq(&conf->device_lock);
Yuanhan Liub1b46482015-05-08 18:19:06 +10004944 wait_event_lock_irq(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004945 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01004946 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004947 atomic_inc(&conf->active_aligned_reads);
4948 spin_unlock_irq(&conf->device_lock);
4949
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004950 if (mddev->gendisk)
4951 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4952 align_bi, disk_devt(mddev->gendisk),
Kent Overstreet4f024f32013-10-11 15:44:27 -07004953 raid_bio->bi_iter.bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004954 generic_make_request(align_bi);
4955 return 1;
4956 } else {
4957 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004958 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004959 return 0;
4960 }
4961}
4962
Ming Lin7ef6b122015-05-06 22:51:24 -07004963static struct bio *chunk_aligned_read(struct mddev *mddev, struct bio *raid_bio)
4964{
4965 struct bio *split;
4966
4967 do {
4968 sector_t sector = raid_bio->bi_iter.bi_sector;
4969 unsigned chunk_sects = mddev->chunk_sectors;
4970 unsigned sectors = chunk_sects - (sector & (chunk_sects-1));
4971
4972 if (sectors < bio_sectors(raid_bio)) {
4973 split = bio_split(raid_bio, sectors, GFP_NOIO, fs_bio_set);
4974 bio_chain(split, raid_bio);
4975 } else
4976 split = raid_bio;
4977
4978 if (!raid5_read_one_chunk(mddev, split)) {
4979 if (split != raid_bio)
4980 generic_make_request(raid_bio);
4981 return split;
4982 }
4983 } while (split != raid_bio);
4984
4985 return NULL;
4986}
4987
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004988/* __get_priority_stripe - get the next stripe to process
4989 *
4990 * Full stripe writes are allowed to pass preread active stripes up until
4991 * the bypass_threshold is exceeded. In general the bypass_count
4992 * increments when the handle_list is handled before the hold_list; however, it
4993 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
4994 * stripe with in flight i/o. The bypass_count will be reset when the
4995 * head of the hold_list has changed, i.e. the head was promoted to the
4996 * handle_list.
4997 */
Shaohua Li851c30c2013-08-28 14:30:16 +08004998static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004999{
Shaohua Li851c30c2013-08-28 14:30:16 +08005000 struct stripe_head *sh = NULL, *tmp;
5001 struct list_head *handle_list = NULL;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005002 struct r5worker_group *wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005003
5004 if (conf->worker_cnt_per_group == 0) {
5005 handle_list = &conf->handle_list;
5006 } else if (group != ANY_GROUP) {
5007 handle_list = &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005008 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08005009 } else {
5010 int i;
5011 for (i = 0; i < conf->group_cnt; i++) {
5012 handle_list = &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005013 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08005014 if (!list_empty(handle_list))
5015 break;
5016 }
5017 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005018
5019 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
5020 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08005021 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005022 list_empty(&conf->hold_list) ? "empty" : "busy",
5023 atomic_read(&conf->pending_full_writes), conf->bypass_count);
5024
Shaohua Li851c30c2013-08-28 14:30:16 +08005025 if (!list_empty(handle_list)) {
5026 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005027
5028 if (list_empty(&conf->hold_list))
5029 conf->bypass_count = 0;
5030 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
5031 if (conf->hold_list.next == conf->last_hold)
5032 conf->bypass_count++;
5033 else {
5034 conf->last_hold = conf->hold_list.next;
5035 conf->bypass_count -= conf->bypass_threshold;
5036 if (conf->bypass_count < 0)
5037 conf->bypass_count = 0;
5038 }
5039 }
5040 } else if (!list_empty(&conf->hold_list) &&
5041 ((conf->bypass_threshold &&
5042 conf->bypass_count > conf->bypass_threshold) ||
5043 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08005044
5045 list_for_each_entry(tmp, &conf->hold_list, lru) {
5046 if (conf->worker_cnt_per_group == 0 ||
5047 group == ANY_GROUP ||
5048 !cpu_online(tmp->cpu) ||
5049 cpu_to_group(tmp->cpu) == group) {
5050 sh = tmp;
5051 break;
5052 }
5053 }
5054
5055 if (sh) {
5056 conf->bypass_count -= conf->bypass_threshold;
5057 if (conf->bypass_count < 0)
5058 conf->bypass_count = 0;
5059 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08005060 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005061 }
5062
5063 if (!sh)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005064 return NULL;
5065
Shaohua Libfc90cb2013-08-29 15:40:32 +08005066 if (wg) {
5067 wg->stripes_cnt--;
5068 sh->group = NULL;
5069 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005070 list_del_init(&sh->lru);
Shaohua Lic7a6d352014-04-15 09:12:54 +08005071 BUG_ON(atomic_inc_return(&sh->count) != 1);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005072 return sh;
5073}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005074
Shaohua Li8811b592012-08-02 08:33:00 +10005075struct raid5_plug_cb {
5076 struct blk_plug_cb cb;
5077 struct list_head list;
Shaohua Li566c09c2013-11-14 15:16:17 +11005078 struct list_head temp_inactive_list[NR_STRIPE_HASH_LOCKS];
Shaohua Li8811b592012-08-02 08:33:00 +10005079};
5080
5081static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
5082{
5083 struct raid5_plug_cb *cb = container_of(
5084 blk_cb, struct raid5_plug_cb, cb);
5085 struct stripe_head *sh;
5086 struct mddev *mddev = cb->cb.data;
5087 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11005088 int cnt = 0;
Shaohua Li566c09c2013-11-14 15:16:17 +11005089 int hash;
Shaohua Li8811b592012-08-02 08:33:00 +10005090
5091 if (cb->list.next && !list_empty(&cb->list)) {
5092 spin_lock_irq(&conf->device_lock);
5093 while (!list_empty(&cb->list)) {
5094 sh = list_first_entry(&cb->list, struct stripe_head, lru);
5095 list_del_init(&sh->lru);
5096 /*
5097 * avoid race release_stripe_plug() sees
5098 * STRIPE_ON_UNPLUG_LIST clear but the stripe
5099 * is still in our list
5100 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005101 smp_mb__before_atomic();
Shaohua Li8811b592012-08-02 08:33:00 +10005102 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08005103 /*
5104 * STRIPE_ON_RELEASE_LIST could be set here. In that
5105 * case, the count is always > 1 here
5106 */
Shaohua Li566c09c2013-11-14 15:16:17 +11005107 hash = sh->hash_lock_index;
5108 __release_stripe(conf, sh, &cb->temp_inactive_list[hash]);
NeilBrowna9add5d2012-10-31 11:59:09 +11005109 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10005110 }
5111 spin_unlock_irq(&conf->device_lock);
5112 }
Shaohua Li566c09c2013-11-14 15:16:17 +11005113 release_inactive_stripe_list(conf, cb->temp_inactive_list,
5114 NR_STRIPE_HASH_LOCKS);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06005115 if (mddev->queue)
5116 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10005117 kfree(cb);
5118}
5119
5120static void release_stripe_plug(struct mddev *mddev,
5121 struct stripe_head *sh)
5122{
5123 struct blk_plug_cb *blk_cb = blk_check_plugged(
5124 raid5_unplug, mddev,
5125 sizeof(struct raid5_plug_cb));
5126 struct raid5_plug_cb *cb;
5127
5128 if (!blk_cb) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005129 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005130 return;
5131 }
5132
5133 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
5134
Shaohua Li566c09c2013-11-14 15:16:17 +11005135 if (cb->list.next == NULL) {
5136 int i;
Shaohua Li8811b592012-08-02 08:33:00 +10005137 INIT_LIST_HEAD(&cb->list);
Shaohua Li566c09c2013-11-14 15:16:17 +11005138 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5139 INIT_LIST_HEAD(cb->temp_inactive_list + i);
5140 }
Shaohua Li8811b592012-08-02 08:33:00 +10005141
5142 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
5143 list_add_tail(&sh->lru, &cb->list);
5144 else
Shaohua Li6d036f72015-08-13 14:31:57 -07005145 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005146}
5147
Shaohua Li620125f2012-10-11 13:49:05 +11005148static void make_discard_request(struct mddev *mddev, struct bio *bi)
5149{
5150 struct r5conf *conf = mddev->private;
5151 sector_t logical_sector, last_sector;
5152 struct stripe_head *sh;
5153 int remaining;
5154 int stripe_sectors;
5155
5156 if (mddev->reshape_position != MaxSector)
5157 /* Skip discard while reshape is happening */
5158 return;
5159
Kent Overstreet4f024f32013-10-11 15:44:27 -07005160 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
5161 last_sector = bi->bi_iter.bi_sector + (bi->bi_iter.bi_size>>9);
Shaohua Li620125f2012-10-11 13:49:05 +11005162
5163 bi->bi_next = NULL;
5164 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
5165
5166 stripe_sectors = conf->chunk_sectors *
5167 (conf->raid_disks - conf->max_degraded);
5168 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
5169 stripe_sectors);
5170 sector_div(last_sector, stripe_sectors);
5171
5172 logical_sector *= conf->chunk_sectors;
5173 last_sector *= conf->chunk_sectors;
5174
5175 for (; logical_sector < last_sector;
5176 logical_sector += STRIPE_SECTORS) {
5177 DEFINE_WAIT(w);
5178 int d;
5179 again:
Shaohua Li6d036f72015-08-13 14:31:57 -07005180 sh = raid5_get_active_stripe(conf, logical_sector, 0, 0, 0);
Shaohua Li620125f2012-10-11 13:49:05 +11005181 prepare_to_wait(&conf->wait_for_overlap, &w,
5182 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005183 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
5184 if (test_bit(STRIPE_SYNCING, &sh->state)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005185 raid5_release_stripe(sh);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005186 schedule();
5187 goto again;
5188 }
5189 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11005190 spin_lock_irq(&sh->stripe_lock);
5191 for (d = 0; d < conf->raid_disks; d++) {
5192 if (d == sh->pd_idx || d == sh->qd_idx)
5193 continue;
5194 if (sh->dev[d].towrite || sh->dev[d].toread) {
5195 set_bit(R5_Overlap, &sh->dev[d].flags);
5196 spin_unlock_irq(&sh->stripe_lock);
Shaohua Li6d036f72015-08-13 14:31:57 -07005197 raid5_release_stripe(sh);
Shaohua Li620125f2012-10-11 13:49:05 +11005198 schedule();
5199 goto again;
5200 }
5201 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11005202 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11005203 finish_wait(&conf->wait_for_overlap, &w);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005204 sh->overwrite_disks = 0;
Shaohua Li620125f2012-10-11 13:49:05 +11005205 for (d = 0; d < conf->raid_disks; d++) {
5206 if (d == sh->pd_idx || d == sh->qd_idx)
5207 continue;
5208 sh->dev[d].towrite = bi;
5209 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
5210 raid5_inc_bi_active_stripes(bi);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005211 sh->overwrite_disks++;
Shaohua Li620125f2012-10-11 13:49:05 +11005212 }
5213 spin_unlock_irq(&sh->stripe_lock);
5214 if (conf->mddev->bitmap) {
5215 for (d = 0;
5216 d < conf->raid_disks - conf->max_degraded;
5217 d++)
5218 bitmap_startwrite(mddev->bitmap,
5219 sh->sector,
5220 STRIPE_SECTORS,
5221 0);
5222 sh->bm_seq = conf->seq_flush + 1;
5223 set_bit(STRIPE_BIT_DELAY, &sh->state);
5224 }
5225
5226 set_bit(STRIPE_HANDLE, &sh->state);
5227 clear_bit(STRIPE_DELAYED, &sh->state);
5228 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5229 atomic_inc(&conf->preread_active_stripes);
5230 release_stripe_plug(mddev, sh);
5231 }
5232
5233 remaining = raid5_dec_bi_active_stripes(bi);
5234 if (remaining == 0) {
5235 md_write_end(mddev);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005236 bio_endio(bi);
Shaohua Li620125f2012-10-11 13:49:05 +11005237 }
5238}
5239
Shaohua Li849674e2016-01-20 13:52:20 -08005240static void raid5_make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241{
NeilBrownd1688a62011-10-11 16:49:52 +11005242 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11005243 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244 sector_t new_sector;
5245 sector_t logical_sector, last_sector;
5246 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01005247 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11005248 int remaining;
Shaohua Li27c0f682014-04-09 11:25:47 +08005249 DEFINE_WAIT(w);
5250 bool do_prepare;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
Jens Axboe1eff9d32016-08-05 15:35:16 -06005252 if (unlikely(bi->bi_opf & REQ_PREFLUSH)) {
Shaohua Li828cbe92015-09-02 13:49:49 -07005253 int ret = r5l_handle_flush_request(conf->log, bi);
5254
5255 if (ret == 0)
5256 return;
5257 if (ret == -ENODEV) {
5258 md_flush_request(mddev, bi);
5259 return;
5260 }
5261 /* ret == -EAGAIN, fallback */
NeilBrowne5dcdd82005-09-09 16:23:41 -07005262 }
5263
NeilBrown3d310eb2005-06-21 17:17:26 -07005264 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07005265
Eric Mei9ffc8f72015-03-18 23:39:11 -06005266 /*
5267 * If array is degraded, better not do chunk aligned read because
5268 * later we might have to read it again in order to reconstruct
5269 * data on failed drives.
5270 */
5271 if (rw == READ && mddev->degraded == 0 &&
Song Liu2ded3702016-11-17 15:24:38 -08005272 !r5c_is_writeback(conf->log) &&
Ming Lin7ef6b122015-05-06 22:51:24 -07005273 mddev->reshape_position == MaxSector) {
5274 bi = chunk_aligned_read(mddev, bi);
5275 if (!bi)
5276 return;
5277 }
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005278
Mike Christie796a5cf2016-06-05 14:32:07 -05005279 if (unlikely(bio_op(bi) == REQ_OP_DISCARD)) {
Shaohua Li620125f2012-10-11 13:49:05 +11005280 make_discard_request(mddev, bi);
5281 return;
5282 }
5283
Kent Overstreet4f024f32013-10-11 15:44:27 -07005284 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005285 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 bi->bi_next = NULL;
5287 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07005288
Shaohua Li27c0f682014-04-09 11:25:47 +08005289 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005291 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10005292 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08005293
Shaohua Li27c0f682014-04-09 11:25:47 +08005294 do_prepare = false;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005295 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10005296 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11005297 previous = 0;
Shaohua Li27c0f682014-04-09 11:25:47 +08005298 if (do_prepare)
5299 prepare_to_wait(&conf->wait_for_overlap, &w,
5300 TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005301 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11005302 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08005303 * 64bit on a 32bit platform, and so it might be
5304 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02005305 * Of course reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08005306 * the lock is dropped, so once we get a reference
5307 * to the stripe that we think it is, we will have
5308 * to check again.
5309 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005310 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005311 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005312 ? logical_sector < conf->reshape_progress
5313 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005314 previous = 1;
5315 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10005316 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005317 ? logical_sector < conf->reshape_safe
5318 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08005319 spin_unlock_irq(&conf->device_lock);
5320 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005321 do_prepare = true;
NeilBrownb578d552006-03-27 01:18:12 -08005322 goto retry;
5323 }
5324 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005325 spin_unlock_irq(&conf->device_lock);
5326 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005327
NeilBrown112bf892009-03-31 14:39:38 +11005328 new_sector = raid5_compute_sector(conf, logical_sector,
5329 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11005330 &dd_idx, NULL);
Shaohua Li849674e2016-01-20 13:52:20 -08005331 pr_debug("raid456: raid5_make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10005332 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 (unsigned long long)logical_sector);
5334
Shaohua Li6d036f72015-08-13 14:31:57 -07005335 sh = raid5_get_active_stripe(conf, new_sector, previous,
Jens Axboe1eff9d32016-08-05 15:35:16 -06005336 (bi->bi_opf & REQ_RAHEAD), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11005338 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005339 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08005340 * stripe, so we must do the range check again.
5341 * Expansion could still move past after this
5342 * test, but as we are holding a reference to
5343 * 'sh', we know that if that happens,
5344 * STRIPE_EXPANDING will get set and the expansion
5345 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005346 */
5347 int must_retry = 0;
5348 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005349 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11005350 ? logical_sector >= conf->reshape_progress
5351 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005352 /* mismatch, need to try again */
5353 must_retry = 1;
5354 spin_unlock_irq(&conf->device_lock);
5355 if (must_retry) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005356 raid5_release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07005357 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005358 do_prepare = true;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005359 goto retry;
5360 }
5361 }
NeilBrownc46501b2013-08-27 15:52:13 +10005362 if (read_seqcount_retry(&conf->gen_lock, seq)) {
5363 /* Might have got the wrong stripe_head
5364 * by accident
5365 */
Shaohua Li6d036f72015-08-13 14:31:57 -07005366 raid5_release_stripe(sh);
NeilBrownc46501b2013-08-27 15:52:13 +10005367 goto retry;
5368 }
NeilBrowne62e58a2009-07-01 13:15:35 +10005369
Namhyung Kimffd96e32011-07-18 17:38:51 +10005370 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10005371 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08005372 logical_sector < mddev->suspend_hi) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005373 raid5_release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10005374 /* As the suspend_* range is controlled by
5375 * userspace, we want an interruptible
5376 * wait.
5377 */
5378 flush_signals(current);
5379 prepare_to_wait(&conf->wait_for_overlap,
5380 &w, TASK_INTERRUPTIBLE);
5381 if (logical_sector >= mddev->suspend_lo &&
Shaohua Li27c0f682014-04-09 11:25:47 +08005382 logical_sector < mddev->suspend_hi) {
NeilBrowne62e58a2009-07-01 13:15:35 +10005383 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005384 do_prepare = true;
5385 }
NeilBrowne464eaf2006-03-27 01:18:14 -08005386 goto retry;
5387 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005388
5389 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005390 !add_stripe_bio(sh, bi, dd_idx, rw, previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005391 /* Stripe is busy expanding or
5392 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 * and wait a while
5394 */
NeilBrown482c0832011-04-18 18:25:42 +10005395 md_wakeup_thread(mddev->thread);
Shaohua Li6d036f72015-08-13 14:31:57 -07005396 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005398 do_prepare = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 goto retry;
5400 }
NeilBrown6ed30032008-02-06 01:40:00 -08005401 set_bit(STRIPE_HANDLE, &sh->state);
5402 clear_bit(STRIPE_DELAYED, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11005403 if ((!sh->batch_head || sh == sh->batch_head) &&
Jens Axboe1eff9d32016-08-05 15:35:16 -06005404 (bi->bi_opf & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11005405 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5406 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10005407 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 } else {
5409 /* cannot get stripe for read-ahead, just give-up */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005410 bi->bi_error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411 break;
5412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 }
Shaohua Li27c0f682014-04-09 11:25:47 +08005414 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown7c13edc2011-04-18 18:25:43 +10005415
Shaohua Lie7836bd62012-07-19 16:01:31 +10005416 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08005417 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418
NeilBrown16a53ec2006-06-26 00:27:38 -07005419 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02005421
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005422 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
5423 bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005424 bio_endio(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426}
5427
NeilBrownfd01b882011-10-11 16:47:53 +11005428static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11005429
NeilBrownfd01b882011-10-11 16:47:53 +11005430static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431{
NeilBrown52c03292006-06-26 00:27:43 -07005432 /* reshaping is quite different to recovery/resync so it is
5433 * handled quite separately ... here.
5434 *
5435 * On each call to sync_request, we gather one chunk worth of
5436 * destination stripes and flag them as expanding.
5437 * Then we find all the source stripes and request reads.
5438 * As the reads complete, handle_stripe will copy the data
5439 * into the destination stripe and release that stripe.
5440 */
NeilBrownd1688a62011-10-11 16:49:52 +11005441 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08005443 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08005444 int raid_disks = conf->previous_raid_disks;
5445 int data_disks = raid_disks - conf->max_degraded;
5446 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07005447 int i;
5448 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11005449 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11005450 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11005451 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11005452 struct list_head stripes;
NeilBrown92140482015-07-06 12:28:45 +10005453 sector_t retn;
NeilBrown52c03292006-06-26 00:27:43 -07005454
NeilBrownfef9c612009-03-31 15:16:46 +11005455 if (sector_nr == 0) {
5456 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10005457 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005458 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
5459 sector_nr = raid5_size(mddev, 0, 0)
5460 - conf->reshape_progress;
NeilBrown6cbd8142015-07-24 13:30:32 +10005461 } else if (mddev->reshape_backwards &&
5462 conf->reshape_progress == MaxSector) {
5463 /* shouldn't happen, but just in case, finish up.*/
5464 sector_nr = MaxSector;
NeilBrown2c810cd2012-05-21 09:27:00 +10005465 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005466 conf->reshape_progress > 0)
5467 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005468 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005469 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11005470 mddev->curr_resync_completed = sector_nr;
5471 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11005472 *skipped = 1;
NeilBrown92140482015-07-06 12:28:45 +10005473 retn = sector_nr;
5474 goto finish;
NeilBrownfef9c612009-03-31 15:16:46 +11005475 }
NeilBrown52c03292006-06-26 00:27:43 -07005476 }
5477
NeilBrown7a661382009-03-31 15:21:40 +11005478 /* We need to process a full chunk at a time.
5479 * If old and new chunk sizes differ, we need to process the
5480 * largest of these
5481 */
NeilBrown3cb5edf2015-07-15 17:24:17 +10005482
5483 reshape_sectors = max(conf->chunk_sectors, conf->prev_chunk_sectors);
NeilBrown7a661382009-03-31 15:21:40 +11005484
NeilBrownb5254dd2012-05-21 09:27:01 +10005485 /* We update the metadata at least every 10 seconds, or when
5486 * the data about to be copied would over-write the source of
5487 * the data at the front of the range. i.e. one new_stripe
5488 * along from reshape_progress new_maps to after where
5489 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07005490 */
NeilBrownfef9c612009-03-31 15:16:46 +11005491 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005492 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11005493 readpos = conf->reshape_progress;
5494 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005495 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08005496 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10005497 if (mddev->reshape_backwards) {
NeilBrownc74c0d72015-07-15 17:54:15 +10005498 BUG_ON(writepos < reshape_sectors);
5499 writepos -= reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11005500 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005501 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11005502 } else {
NeilBrown7a661382009-03-31 15:21:40 +11005503 writepos += reshape_sectors;
NeilBrownc74c0d72015-07-15 17:54:15 +10005504 /* readpos and safepos are worst-case calculations.
5505 * A negative number is overly pessimistic, and causes
5506 * obvious problems for unsigned storage. So clip to 0.
5507 */
NeilBrowned37d832009-05-27 21:39:05 +10005508 readpos -= min_t(sector_t, reshape_sectors, readpos);
5509 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11005510 }
NeilBrown52c03292006-06-26 00:27:43 -07005511
NeilBrownb5254dd2012-05-21 09:27:01 +10005512 /* Having calculated the 'writepos' possibly use it
5513 * to set 'stripe_addr' which is where we will write to.
5514 */
5515 if (mddev->reshape_backwards) {
5516 BUG_ON(conf->reshape_progress == 0);
5517 stripe_addr = writepos;
5518 BUG_ON((mddev->dev_sectors &
5519 ~((sector_t)reshape_sectors - 1))
5520 - reshape_sectors - stripe_addr
5521 != sector_nr);
5522 } else {
5523 BUG_ON(writepos != sector_nr + reshape_sectors);
5524 stripe_addr = sector_nr;
5525 }
5526
NeilBrownc8f517c2009-03-31 15:28:40 +11005527 /* 'writepos' is the most advanced device address we might write.
5528 * 'readpos' is the least advanced device address we might read.
5529 * 'safepos' is the least address recorded in the metadata as having
5530 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10005531 * If there is a min_offset_diff, these are adjusted either by
5532 * increasing the safepos/readpos if diff is negative, or
5533 * increasing writepos if diff is positive.
5534 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11005535 * ensure safety in the face of a crash - that must be done by userspace
5536 * making a backup of the data. So in that case there is no particular
5537 * rush to update metadata.
5538 * Otherwise if 'safepos' is behind 'writepos', then we really need to
5539 * update the metadata to advance 'safepos' to match 'readpos' so that
5540 * we can be safe in the event of a crash.
5541 * So we insist on updating metadata if safepos is behind writepos and
5542 * readpos is beyond writepos.
5543 * In any case, update the metadata every 10 seconds.
5544 * Maybe that number should be configurable, but I'm not sure it is
5545 * worth it.... maybe it could be a multiple of safemode_delay???
5546 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005547 if (conf->min_offset_diff < 0) {
5548 safepos += -conf->min_offset_diff;
5549 readpos += -conf->min_offset_diff;
5550 } else
5551 writepos += conf->min_offset_diff;
5552
NeilBrown2c810cd2012-05-21 09:27:00 +10005553 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11005554 ? (safepos > writepos && readpos < writepos)
5555 : (safepos < writepos && readpos > writepos)) ||
5556 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07005557 /* Cannot proceed until we've updated the superblock... */
5558 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005559 atomic_read(&conf->reshape_stripes)==0
5560 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5561 if (atomic_read(&conf->reshape_stripes) != 0)
5562 return 0;
NeilBrownfef9c612009-03-31 15:16:46 +11005563 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005564 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005565 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07005566 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07005567 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07005568 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrownc91abf52013-11-19 12:02:01 +11005569 test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5570 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5571 return 0;
NeilBrown52c03292006-06-26 00:27:43 -07005572 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005573 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07005574 spin_unlock_irq(&conf->device_lock);
5575 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005576 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07005577 }
5578
NeilBrownab69ae12009-03-31 15:26:47 +11005579 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11005580 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07005581 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10005582 int skipped_disk = 0;
Shaohua Li6d036f72015-08-13 14:31:57 -07005583 sh = raid5_get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005584 set_bit(STRIPE_EXPANDING, &sh->state);
5585 atomic_inc(&conf->reshape_stripes);
5586 /* If any of this stripe is beyond the end of the old
5587 * array, then we need to zero those blocks
5588 */
5589 for (j=sh->disks; j--;) {
5590 sector_t s;
5591 if (j == sh->pd_idx)
5592 continue;
NeilBrownf4168852007-02-28 20:11:53 -08005593 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11005594 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08005595 continue;
Shaohua Li6d036f72015-08-13 14:31:57 -07005596 s = raid5_compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11005597 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10005598 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07005599 continue;
5600 }
5601 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
5602 set_bit(R5_Expanded, &sh->dev[j].flags);
5603 set_bit(R5_UPTODATE, &sh->dev[j].flags);
5604 }
NeilBrowna9f326e2009-09-23 18:06:41 +10005605 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07005606 set_bit(STRIPE_EXPAND_READY, &sh->state);
5607 set_bit(STRIPE_HANDLE, &sh->state);
5608 }
NeilBrownab69ae12009-03-31 15:26:47 +11005609 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07005610 }
5611 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005612 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11005613 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005614 else
NeilBrown7a661382009-03-31 15:21:40 +11005615 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07005616 spin_unlock_irq(&conf->device_lock);
5617 /* Ok, those stripe are ready. We can start scheduling
5618 * reads on the source stripes.
5619 * The source stripes are determined by mapping the first and last
5620 * block on the destination stripes.
5621 */
NeilBrown52c03292006-06-26 00:27:43 -07005622 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11005623 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11005624 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07005625 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10005626 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10005627 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11005628 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11005629 if (last_sector >= mddev->dev_sectors)
5630 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07005631 while (first_sector <= last_sector) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005632 sh = raid5_get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005633 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
5634 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07005635 raid5_release_stripe(sh);
NeilBrown52c03292006-06-26 00:27:43 -07005636 first_sector += STRIPE_SECTORS;
5637 }
NeilBrownab69ae12009-03-31 15:26:47 +11005638 /* Now that the sources are clearly marked, we can release
5639 * the destination stripes
5640 */
5641 while (!list_empty(&stripes)) {
5642 sh = list_entry(stripes.next, struct stripe_head, lru);
5643 list_del_init(&sh->lru);
Shaohua Li6d036f72015-08-13 14:31:57 -07005644 raid5_release_stripe(sh);
NeilBrownab69ae12009-03-31 15:26:47 +11005645 }
NeilBrownc6207272008-02-06 01:39:52 -08005646 /* If this takes us to the resync_max point where we have to pause,
5647 * then we need to write out the superblock.
5648 */
NeilBrown7a661382009-03-31 15:21:40 +11005649 sector_nr += reshape_sectors;
NeilBrown92140482015-07-06 12:28:45 +10005650 retn = reshape_sectors;
5651finish:
NeilBrownc5e19d92015-07-17 12:06:02 +10005652 if (mddev->curr_resync_completed > mddev->resync_max ||
5653 (sector_nr - mddev->curr_resync_completed) * 2
NeilBrownc03f6a12009-04-17 11:06:30 +10005654 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08005655 /* Cannot proceed until we've updated the superblock... */
5656 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005657 atomic_read(&conf->reshape_stripes) == 0
5658 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5659 if (atomic_read(&conf->reshape_stripes) != 0)
5660 goto ret;
NeilBrownfef9c612009-03-31 15:16:46 +11005661 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005662 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005663 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08005664 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5665 md_wakeup_thread(mddev->thread);
5666 wait_event(mddev->sb_wait,
5667 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
NeilBrownc91abf52013-11-19 12:02:01 +11005668 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5669 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5670 goto ret;
NeilBrownc6207272008-02-06 01:39:52 -08005671 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005672 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08005673 spin_unlock_irq(&conf->device_lock);
5674 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005675 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08005676 }
NeilBrownc91abf52013-11-19 12:02:01 +11005677ret:
NeilBrown92140482015-07-06 12:28:45 +10005678 return retn;
NeilBrown52c03292006-06-26 00:27:43 -07005679}
5680
Shaohua Li849674e2016-01-20 13:52:20 -08005681static inline sector_t raid5_sync_request(struct mddev *mddev, sector_t sector_nr,
5682 int *skipped)
NeilBrown52c03292006-06-26 00:27:43 -07005683{
NeilBrownd1688a62011-10-11 16:49:52 +11005684 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07005685 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11005686 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11005687 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07005688 int still_degraded = 0;
5689 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
NeilBrown72626682005-09-09 16:23:54 -07005691 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11005693
NeilBrown29269552006-03-27 01:18:10 -08005694 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
5695 end_reshape(conf);
5696 return 0;
5697 }
NeilBrown72626682005-09-09 16:23:54 -07005698
5699 if (mddev->curr_resync < max_sector) /* aborted */
5700 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
5701 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07005702 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07005703 conf->fullsync = 0;
5704 bitmap_close_sync(mddev->bitmap);
5705
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706 return 0;
5707 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08005708
NeilBrown64bd6602009-08-03 10:59:58 +10005709 /* Allow raid5_quiesce to complete */
5710 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
5711
NeilBrown52c03292006-06-26 00:27:43 -07005712 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
5713 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08005714
NeilBrownc6207272008-02-06 01:39:52 -08005715 /* No need to check resync_max as we never do more than one
5716 * stripe, and as resync_max will always be on a chunk boundary,
5717 * if the check in md_do_sync didn't fire, there is no chance
5718 * of overstepping resync_max here
5719 */
5720
NeilBrown16a53ec2006-06-26 00:27:38 -07005721 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722 * to resync, then assert that we are finished, because there is
5723 * nothing we can do.
5724 */
NeilBrown3285edf2006-06-26 00:27:55 -07005725 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005726 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11005727 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07005728 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 return rv;
5730 }
majianpeng6f608042013-04-24 11:42:41 +10005731 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
5732 !conf->fullsync &&
5733 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
5734 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07005735 /* we can skip this block, and probably more */
5736 sync_blocks /= STRIPE_SECTORS;
5737 *skipped = 1;
5738 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
5739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10005741 bitmap_cond_end_sync(mddev->bitmap, sector_nr, false);
NeilBrownb47490c2008-02-06 01:39:50 -08005742
Shaohua Li6d036f72015-08-13 14:31:57 -07005743 sh = raid5_get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744 if (sh == NULL) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005745 sh = raid5_get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07005747 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08005749 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005751 /* Need to check if array will still be degraded after recovery/resync
Eric Mei16d9cfa2015-01-06 09:35:02 -08005752 * Note in case of > 1 drive failures it's possible we're rebuilding
5753 * one drive while leaving another faulty drive in array.
NeilBrown16a53ec2006-06-26 00:27:38 -07005754 */
Eric Mei16d9cfa2015-01-06 09:35:02 -08005755 rcu_read_lock();
5756 for (i = 0; i < conf->raid_disks; i++) {
5757 struct md_rdev *rdev = ACCESS_ONCE(conf->disks[i].rdev);
5758
5759 if (rdev == NULL || test_bit(Faulty, &rdev->flags))
NeilBrown16a53ec2006-06-26 00:27:38 -07005760 still_degraded = 1;
Eric Mei16d9cfa2015-01-06 09:35:02 -08005761 }
5762 rcu_read_unlock();
NeilBrown16a53ec2006-06-26 00:27:38 -07005763
5764 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
5765
NeilBrown83206d62011-07-26 11:19:49 +10005766 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Eivind Sarto053f5b62014-06-09 17:06:19 -07005767 set_bit(STRIPE_HANDLE, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768
Shaohua Li6d036f72015-08-13 14:31:57 -07005769 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770
5771 return STRIPE_SECTORS;
5772}
5773
NeilBrownd1688a62011-10-11 16:49:52 +11005774static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005775{
5776 /* We may not be able to submit a whole bio at once as there
5777 * may not be enough stripe_heads available.
5778 * We cannot pre-allocate enough stripe_heads as we may need
5779 * more than exist in the cache (if we allow ever large chunks).
5780 * So we do one stripe head at a time and record in
5781 * ->bi_hw_segments how many have been done.
5782 *
5783 * We *know* that this entire raid_bio is in one chunk, so
5784 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
5785 */
5786 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11005787 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005788 sector_t sector, logical_sector, last_sector;
5789 int scnt = 0;
5790 int remaining;
5791 int handled = 0;
5792
Kent Overstreet4f024f32013-10-11 15:44:27 -07005793 logical_sector = raid_bio->bi_iter.bi_sector &
5794 ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11005795 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11005796 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005797 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005798
5799 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08005800 logical_sector += STRIPE_SECTORS,
5801 sector += STRIPE_SECTORS,
5802 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005803
Shaohua Lie7836bd62012-07-19 16:01:31 +10005804 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005805 /* already done this stripe */
5806 continue;
5807
Shaohua Li6d036f72015-08-13 14:31:57 -07005808 sh = raid5_get_active_stripe(conf, sector, 0, 1, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005809
5810 if (!sh) {
5811 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10005812 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005813 conf->retry_read_aligned = raid_bio;
5814 return handled;
5815 }
5816
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005817 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0, 0)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005818 raid5_release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10005819 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08005820 conf->retry_read_aligned = raid_bio;
5821 return handled;
5822 }
5823
majianpeng3f9e7c12012-07-31 10:04:21 +10005824 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07005825 handle_stripe(sh);
Shaohua Li6d036f72015-08-13 14:31:57 -07005826 raid5_release_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005827 handled++;
5828 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10005829 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005830 if (remaining == 0) {
5831 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
5832 raid_bio, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005833 bio_endio(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005834 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005835 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10005836 wake_up(&conf->wait_for_quiescent);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005837 return handled;
5838}
5839
Shaohua Libfc90cb2013-08-29 15:40:32 +08005840static int handle_active_stripes(struct r5conf *conf, int group,
Shaohua Li566c09c2013-11-14 15:16:17 +11005841 struct r5worker *worker,
5842 struct list_head *temp_inactive_list)
Shaohua Li46a06402012-08-02 08:33:15 +10005843{
5844 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +11005845 int i, batch_size = 0, hash;
5846 bool release_inactive = false;
Shaohua Li46a06402012-08-02 08:33:15 +10005847
5848 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08005849 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10005850 batch[batch_size++] = sh;
5851
Shaohua Li566c09c2013-11-14 15:16:17 +11005852 if (batch_size == 0) {
5853 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5854 if (!list_empty(temp_inactive_list + i))
5855 break;
Shaohua Lia8c34f92015-09-02 13:49:46 -07005856 if (i == NR_STRIPE_HASH_LOCKS) {
5857 spin_unlock_irq(&conf->device_lock);
5858 r5l_flush_stripe_to_raid(conf->log);
5859 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11005860 return batch_size;
Shaohua Lia8c34f92015-09-02 13:49:46 -07005861 }
Shaohua Li566c09c2013-11-14 15:16:17 +11005862 release_inactive = true;
5863 }
Shaohua Li46a06402012-08-02 08:33:15 +10005864 spin_unlock_irq(&conf->device_lock);
5865
Shaohua Li566c09c2013-11-14 15:16:17 +11005866 release_inactive_stripe_list(conf, temp_inactive_list,
5867 NR_STRIPE_HASH_LOCKS);
5868
Shaohua Lia8c34f92015-09-02 13:49:46 -07005869 r5l_flush_stripe_to_raid(conf->log);
Shaohua Li566c09c2013-11-14 15:16:17 +11005870 if (release_inactive) {
5871 spin_lock_irq(&conf->device_lock);
5872 return 0;
5873 }
5874
Shaohua Li46a06402012-08-02 08:33:15 +10005875 for (i = 0; i < batch_size; i++)
5876 handle_stripe(batch[i]);
Shaohua Lif6bed0e2015-08-13 14:31:59 -07005877 r5l_write_stripe_run(conf->log);
Shaohua Li46a06402012-08-02 08:33:15 +10005878
5879 cond_resched();
5880
5881 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11005882 for (i = 0; i < batch_size; i++) {
5883 hash = batch[i]->hash_lock_index;
5884 __release_stripe(conf, batch[i], &temp_inactive_list[hash]);
5885 }
Shaohua Li46a06402012-08-02 08:33:15 +10005886 return batch_size;
5887}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005888
Shaohua Li851c30c2013-08-28 14:30:16 +08005889static void raid5_do_work(struct work_struct *work)
5890{
5891 struct r5worker *worker = container_of(work, struct r5worker, work);
5892 struct r5worker_group *group = worker->group;
5893 struct r5conf *conf = group->conf;
5894 int group_id = group - conf->worker_groups;
5895 int handled;
5896 struct blk_plug plug;
5897
5898 pr_debug("+++ raid5worker active\n");
5899
5900 blk_start_plug(&plug);
5901 handled = 0;
5902 spin_lock_irq(&conf->device_lock);
5903 while (1) {
5904 int batch_size, released;
5905
Shaohua Li566c09c2013-11-14 15:16:17 +11005906 released = release_stripe_list(conf, worker->temp_inactive_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08005907
Shaohua Li566c09c2013-11-14 15:16:17 +11005908 batch_size = handle_active_stripes(conf, group_id, worker,
5909 worker->temp_inactive_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +08005910 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08005911 if (!batch_size && !released)
5912 break;
5913 handled += batch_size;
5914 }
5915 pr_debug("%d stripes handled\n", handled);
5916
5917 spin_unlock_irq(&conf->device_lock);
5918 blk_finish_plug(&plug);
5919
5920 pr_debug("--- raid5worker inactive\n");
5921}
5922
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923/*
5924 * This is our raid5 kernel thread.
5925 *
5926 * We scan the hash table for stripes which can be handled now.
5927 * During the scan, completed stripes are saved for us by the interrupt
5928 * handler, so that they will not have to wait for our next wakeup.
5929 */
Shaohua Li4ed87312012-10-11 13:34:00 +11005930static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931{
Shaohua Li4ed87312012-10-11 13:34:00 +11005932 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005933 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005935 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936
Dan Williams45b42332007-07-09 11:56:43 -07005937 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938
5939 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940
NeilBrownc3cce6c2015-08-14 12:47:33 +10005941 if (!bio_list_empty(&conf->return_bi) &&
5942 !test_bit(MD_CHANGE_PENDING, &mddev->flags)) {
5943 struct bio_list tmp = BIO_EMPTY_LIST;
5944 spin_lock_irq(&conf->device_lock);
5945 if (!test_bit(MD_CHANGE_PENDING, &mddev->flags)) {
5946 bio_list_merge(&tmp, &conf->return_bi);
5947 bio_list_init(&conf->return_bi);
5948 }
5949 spin_unlock_irq(&conf->device_lock);
5950 return_io(&tmp);
5951 }
5952
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005953 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954 handled = 0;
5955 spin_lock_irq(&conf->device_lock);
5956 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005957 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08005958 int batch_size, released;
5959
Shaohua Li566c09c2013-11-14 15:16:17 +11005960 released = release_stripe_list(conf, conf->temp_inactive_list);
NeilBrownedbe83a2015-02-26 12:47:56 +11005961 if (released)
5962 clear_bit(R5_DID_ALLOC, &conf->cache_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963
NeilBrown0021b7b2012-07-31 09:08:14 +02005964 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10005965 !list_empty(&conf->bitmap_list)) {
5966 /* Now is a good time to flush some bitmap updates */
5967 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08005968 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07005969 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08005970 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10005971 conf->seq_write = conf->seq_flush;
Shaohua Li566c09c2013-11-14 15:16:17 +11005972 activate_bit_delay(conf, conf->temp_inactive_list);
NeilBrown72626682005-09-09 16:23:54 -07005973 }
NeilBrown0021b7b2012-07-31 09:08:14 +02005974 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07005975
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005976 while ((bio = remove_bio_from_retry(conf))) {
5977 int ok;
5978 spin_unlock_irq(&conf->device_lock);
5979 ok = retry_aligned_read(conf, bio);
5980 spin_lock_irq(&conf->device_lock);
5981 if (!ok)
5982 break;
5983 handled++;
5984 }
5985
Shaohua Li566c09c2013-11-14 15:16:17 +11005986 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL,
5987 conf->temp_inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08005988 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 break;
Shaohua Li46a06402012-08-02 08:33:15 +10005990 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991
Shaohua Li46a06402012-08-02 08:33:15 +10005992 if (mddev->flags & ~(1<<MD_CHANGE_PENDING)) {
5993 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10005994 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10005995 spin_lock_irq(&conf->device_lock);
5996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997 }
Dan Williams45b42332007-07-09 11:56:43 -07005998 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
6000 spin_unlock_irq(&conf->device_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10006001 if (test_and_clear_bit(R5_ALLOC_MORE, &conf->cache_state) &&
6002 mutex_trylock(&conf->cache_size_mutex)) {
NeilBrownedbe83a2015-02-26 12:47:56 +11006003 grow_one_stripe(conf, __GFP_NOWARN);
6004 /* Set flag even if allocation failed. This helps
6005 * slow down allocation requests when mem is short
6006 */
6007 set_bit(R5_DID_ALLOC, &conf->cache_state);
NeilBrown2d5b5692015-07-06 12:49:23 +10006008 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11006009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010
Shaohua Li0576b1c2015-08-13 14:32:00 -07006011 r5l_flush_stripe_to_raid(conf->log);
6012
Dan Williamsc9f21aa2008-07-23 12:05:51 -07006013 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006014 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015
Dan Williams45b42332007-07-09 11:56:43 -07006016 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017}
6018
NeilBrown3f294f42005-11-08 21:39:25 -08006019static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006020raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006021{
NeilBrown7b1485b2014-12-15 12:56:59 +11006022 struct r5conf *conf;
6023 int ret = 0;
6024 spin_lock(&mddev->lock);
6025 conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006026 if (conf)
NeilBrownedbe83a2015-02-26 12:47:56 +11006027 ret = sprintf(page, "%d\n", conf->min_nr_stripes);
NeilBrown7b1485b2014-12-15 12:56:59 +11006028 spin_unlock(&mddev->lock);
6029 return ret;
NeilBrown3f294f42005-11-08 21:39:25 -08006030}
6031
NeilBrownc41d4ac2010-06-01 19:37:24 +10006032int
NeilBrownfd01b882011-10-11 16:47:53 +11006033raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10006034{
NeilBrownd1688a62011-10-11 16:49:52 +11006035 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10006036 int err;
6037
6038 if (size <= 16 || size > 32768)
6039 return -EINVAL;
NeilBrown486f0642015-02-25 12:10:35 +11006040
NeilBrownedbe83a2015-02-26 12:47:56 +11006041 conf->min_nr_stripes = size;
NeilBrown2d5b5692015-07-06 12:49:23 +10006042 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006043 while (size < conf->max_nr_stripes &&
6044 drop_one_stripe(conf))
6045 ;
NeilBrown2d5b5692015-07-06 12:49:23 +10006046 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006047
NeilBrownedbe83a2015-02-26 12:47:56 +11006048
NeilBrownc41d4ac2010-06-01 19:37:24 +10006049 err = md_allow_write(mddev);
6050 if (err)
6051 return err;
NeilBrown486f0642015-02-25 12:10:35 +11006052
NeilBrown2d5b5692015-07-06 12:49:23 +10006053 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006054 while (size > conf->max_nr_stripes)
6055 if (!grow_one_stripe(conf, GFP_KERNEL))
6056 break;
NeilBrown2d5b5692015-07-06 12:49:23 +10006057 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006058
NeilBrownc41d4ac2010-06-01 19:37:24 +10006059 return 0;
6060}
6061EXPORT_SYMBOL(raid5_set_cache_size);
6062
NeilBrown3f294f42005-11-08 21:39:25 -08006063static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006064raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08006065{
NeilBrown67918752014-12-15 12:57:01 +11006066 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006067 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07006068 int err;
6069
NeilBrown3f294f42005-11-08 21:39:25 -08006070 if (len >= PAGE_SIZE)
6071 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006072 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08006073 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006074 err = mddev_lock(mddev);
Dan Williamsb5470dc2008-06-27 21:44:04 -07006075 if (err)
6076 return err;
NeilBrown67918752014-12-15 12:57:01 +11006077 conf = mddev->private;
6078 if (!conf)
6079 err = -ENODEV;
6080 else
6081 err = raid5_set_cache_size(mddev, new);
6082 mddev_unlock(mddev);
6083
6084 return err ?: len;
NeilBrown3f294f42005-11-08 21:39:25 -08006085}
NeilBrown007583c2005-11-08 21:39:30 -08006086
NeilBrown96de1e62005-11-08 21:39:39 -08006087static struct md_sysfs_entry
6088raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
6089 raid5_show_stripe_cache_size,
6090 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08006091
6092static ssize_t
Markus Stockhausend06f1912014-12-15 12:57:05 +11006093raid5_show_rmw_level(struct mddev *mddev, char *page)
6094{
6095 struct r5conf *conf = mddev->private;
6096 if (conf)
6097 return sprintf(page, "%d\n", conf->rmw_level);
6098 else
6099 return 0;
6100}
6101
6102static ssize_t
6103raid5_store_rmw_level(struct mddev *mddev, const char *page, size_t len)
6104{
6105 struct r5conf *conf = mddev->private;
6106 unsigned long new;
6107
6108 if (!conf)
6109 return -ENODEV;
6110
6111 if (len >= PAGE_SIZE)
6112 return -EINVAL;
6113
6114 if (kstrtoul(page, 10, &new))
6115 return -EINVAL;
6116
6117 if (new != PARITY_DISABLE_RMW && !raid6_call.xor_syndrome)
6118 return -EINVAL;
6119
6120 if (new != PARITY_DISABLE_RMW &&
6121 new != PARITY_ENABLE_RMW &&
6122 new != PARITY_PREFER_RMW)
6123 return -EINVAL;
6124
6125 conf->rmw_level = new;
6126 return len;
6127}
6128
6129static struct md_sysfs_entry
6130raid5_rmw_level = __ATTR(rmw_level, S_IRUGO | S_IWUSR,
6131 raid5_show_rmw_level,
6132 raid5_store_rmw_level);
6133
6134
6135static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006136raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006137{
NeilBrown7b1485b2014-12-15 12:56:59 +11006138 struct r5conf *conf;
6139 int ret = 0;
6140 spin_lock(&mddev->lock);
6141 conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006142 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006143 ret = sprintf(page, "%d\n", conf->bypass_threshold);
6144 spin_unlock(&mddev->lock);
6145 return ret;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006146}
6147
6148static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006149raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006150{
NeilBrown67918752014-12-15 12:57:01 +11006151 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006152 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006153 int err;
6154
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006155 if (len >= PAGE_SIZE)
6156 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006157 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006158 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006159
6160 err = mddev_lock(mddev);
6161 if (err)
6162 return err;
6163 conf = mddev->private;
6164 if (!conf)
6165 err = -ENODEV;
NeilBrownedbe83a2015-02-26 12:47:56 +11006166 else if (new > conf->min_nr_stripes)
NeilBrown67918752014-12-15 12:57:01 +11006167 err = -EINVAL;
6168 else
6169 conf->bypass_threshold = new;
6170 mddev_unlock(mddev);
6171 return err ?: len;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006172}
6173
6174static struct md_sysfs_entry
6175raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
6176 S_IRUGO | S_IWUSR,
6177 raid5_show_preread_threshold,
6178 raid5_store_preread_threshold);
6179
6180static ssize_t
Shaohua Lid592a992014-05-21 17:57:44 +08006181raid5_show_skip_copy(struct mddev *mddev, char *page)
6182{
NeilBrown7b1485b2014-12-15 12:56:59 +11006183 struct r5conf *conf;
6184 int ret = 0;
6185 spin_lock(&mddev->lock);
6186 conf = mddev->private;
Shaohua Lid592a992014-05-21 17:57:44 +08006187 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006188 ret = sprintf(page, "%d\n", conf->skip_copy);
6189 spin_unlock(&mddev->lock);
6190 return ret;
Shaohua Lid592a992014-05-21 17:57:44 +08006191}
6192
6193static ssize_t
6194raid5_store_skip_copy(struct mddev *mddev, const char *page, size_t len)
6195{
NeilBrown67918752014-12-15 12:57:01 +11006196 struct r5conf *conf;
Shaohua Lid592a992014-05-21 17:57:44 +08006197 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006198 int err;
6199
Shaohua Lid592a992014-05-21 17:57:44 +08006200 if (len >= PAGE_SIZE)
6201 return -EINVAL;
Shaohua Lid592a992014-05-21 17:57:44 +08006202 if (kstrtoul(page, 10, &new))
6203 return -EINVAL;
6204 new = !!new;
Shaohua Lid592a992014-05-21 17:57:44 +08006205
NeilBrown67918752014-12-15 12:57:01 +11006206 err = mddev_lock(mddev);
6207 if (err)
6208 return err;
6209 conf = mddev->private;
6210 if (!conf)
6211 err = -ENODEV;
6212 else if (new != conf->skip_copy) {
6213 mddev_suspend(mddev);
6214 conf->skip_copy = new;
6215 if (new)
6216 mddev->queue->backing_dev_info.capabilities |=
6217 BDI_CAP_STABLE_WRITES;
6218 else
6219 mddev->queue->backing_dev_info.capabilities &=
6220 ~BDI_CAP_STABLE_WRITES;
6221 mddev_resume(mddev);
6222 }
6223 mddev_unlock(mddev);
6224 return err ?: len;
Shaohua Lid592a992014-05-21 17:57:44 +08006225}
6226
6227static struct md_sysfs_entry
6228raid5_skip_copy = __ATTR(skip_copy, S_IRUGO | S_IWUSR,
6229 raid5_show_skip_copy,
6230 raid5_store_skip_copy);
6231
Shaohua Lid592a992014-05-21 17:57:44 +08006232static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006233stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006234{
NeilBrownd1688a62011-10-11 16:49:52 +11006235 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006236 if (conf)
6237 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
6238 else
6239 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08006240}
6241
NeilBrown96de1e62005-11-08 21:39:39 -08006242static struct md_sysfs_entry
6243raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08006244
Shaohua Lib7214202013-08-27 17:50:42 +08006245static ssize_t
6246raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
6247{
NeilBrown7b1485b2014-12-15 12:56:59 +11006248 struct r5conf *conf;
6249 int ret = 0;
6250 spin_lock(&mddev->lock);
6251 conf = mddev->private;
Shaohua Lib7214202013-08-27 17:50:42 +08006252 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006253 ret = sprintf(page, "%d\n", conf->worker_cnt_per_group);
6254 spin_unlock(&mddev->lock);
6255 return ret;
Shaohua Lib7214202013-08-27 17:50:42 +08006256}
6257
majianpeng60aaf932013-11-14 15:16:20 +11006258static int alloc_thread_groups(struct r5conf *conf, int cnt,
6259 int *group_cnt,
6260 int *worker_cnt_per_group,
6261 struct r5worker_group **worker_groups);
Shaohua Lib7214202013-08-27 17:50:42 +08006262static ssize_t
6263raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
6264{
NeilBrown67918752014-12-15 12:57:01 +11006265 struct r5conf *conf;
Shaohua Lib7214202013-08-27 17:50:42 +08006266 unsigned long new;
6267 int err;
majianpeng60aaf932013-11-14 15:16:20 +11006268 struct r5worker_group *new_groups, *old_groups;
6269 int group_cnt, worker_cnt_per_group;
Shaohua Lib7214202013-08-27 17:50:42 +08006270
6271 if (len >= PAGE_SIZE)
6272 return -EINVAL;
Shaohua Lib7214202013-08-27 17:50:42 +08006273 if (kstrtoul(page, 10, &new))
6274 return -EINVAL;
6275
NeilBrown67918752014-12-15 12:57:01 +11006276 err = mddev_lock(mddev);
Shaohua Lib7214202013-08-27 17:50:42 +08006277 if (err)
6278 return err;
NeilBrown67918752014-12-15 12:57:01 +11006279 conf = mddev->private;
6280 if (!conf)
6281 err = -ENODEV;
6282 else if (new != conf->worker_cnt_per_group) {
6283 mddev_suspend(mddev);
6284
6285 old_groups = conf->worker_groups;
6286 if (old_groups)
6287 flush_workqueue(raid5_wq);
6288
6289 err = alloc_thread_groups(conf, new,
6290 &group_cnt, &worker_cnt_per_group,
6291 &new_groups);
6292 if (!err) {
6293 spin_lock_irq(&conf->device_lock);
6294 conf->group_cnt = group_cnt;
6295 conf->worker_cnt_per_group = worker_cnt_per_group;
6296 conf->worker_groups = new_groups;
6297 spin_unlock_irq(&conf->device_lock);
6298
6299 if (old_groups)
6300 kfree(old_groups[0].workers);
6301 kfree(old_groups);
6302 }
6303 mddev_resume(mddev);
6304 }
6305 mddev_unlock(mddev);
6306
6307 return err ?: len;
Shaohua Lib7214202013-08-27 17:50:42 +08006308}
6309
6310static struct md_sysfs_entry
6311raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
6312 raid5_show_group_thread_cnt,
6313 raid5_store_group_thread_cnt);
6314
NeilBrown007583c2005-11-08 21:39:30 -08006315static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08006316 &raid5_stripecache_size.attr,
6317 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006318 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08006319 &raid5_group_thread_cnt.attr,
Shaohua Lid592a992014-05-21 17:57:44 +08006320 &raid5_skip_copy.attr,
Markus Stockhausend06f1912014-12-15 12:57:05 +11006321 &raid5_rmw_level.attr,
Song Liu2c7da142016-11-17 15:24:41 -08006322 &r5c_journal_mode.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08006323 NULL,
6324};
NeilBrown007583c2005-11-08 21:39:30 -08006325static struct attribute_group raid5_attrs_group = {
6326 .name = NULL,
6327 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08006328};
6329
majianpeng60aaf932013-11-14 15:16:20 +11006330static int alloc_thread_groups(struct r5conf *conf, int cnt,
6331 int *group_cnt,
6332 int *worker_cnt_per_group,
6333 struct r5worker_group **worker_groups)
Shaohua Li851c30c2013-08-28 14:30:16 +08006334{
Shaohua Li566c09c2013-11-14 15:16:17 +11006335 int i, j, k;
Shaohua Li851c30c2013-08-28 14:30:16 +08006336 ssize_t size;
6337 struct r5worker *workers;
6338
majianpeng60aaf932013-11-14 15:16:20 +11006339 *worker_cnt_per_group = cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +08006340 if (cnt == 0) {
majianpeng60aaf932013-11-14 15:16:20 +11006341 *group_cnt = 0;
6342 *worker_groups = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08006343 return 0;
6344 }
majianpeng60aaf932013-11-14 15:16:20 +11006345 *group_cnt = num_possible_nodes();
Shaohua Li851c30c2013-08-28 14:30:16 +08006346 size = sizeof(struct r5worker) * cnt;
majianpeng60aaf932013-11-14 15:16:20 +11006347 workers = kzalloc(size * *group_cnt, GFP_NOIO);
6348 *worker_groups = kzalloc(sizeof(struct r5worker_group) *
6349 *group_cnt, GFP_NOIO);
6350 if (!*worker_groups || !workers) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006351 kfree(workers);
majianpeng60aaf932013-11-14 15:16:20 +11006352 kfree(*worker_groups);
Shaohua Li851c30c2013-08-28 14:30:16 +08006353 return -ENOMEM;
6354 }
6355
majianpeng60aaf932013-11-14 15:16:20 +11006356 for (i = 0; i < *group_cnt; i++) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006357 struct r5worker_group *group;
6358
NeilBrown0c775d52013-11-25 11:12:43 +11006359 group = &(*worker_groups)[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08006360 INIT_LIST_HEAD(&group->handle_list);
6361 group->conf = conf;
6362 group->workers = workers + i * cnt;
6363
6364 for (j = 0; j < cnt; j++) {
Shaohua Li566c09c2013-11-14 15:16:17 +11006365 struct r5worker *worker = group->workers + j;
6366 worker->group = group;
6367 INIT_WORK(&worker->work, raid5_do_work);
6368
6369 for (k = 0; k < NR_STRIPE_HASH_LOCKS; k++)
6370 INIT_LIST_HEAD(worker->temp_inactive_list + k);
Shaohua Li851c30c2013-08-28 14:30:16 +08006371 }
6372 }
6373
6374 return 0;
6375}
6376
6377static void free_thread_groups(struct r5conf *conf)
6378{
6379 if (conf->worker_groups)
6380 kfree(conf->worker_groups[0].workers);
6381 kfree(conf->worker_groups);
6382 conf->worker_groups = NULL;
6383}
6384
Dan Williams80c3a6c2009-03-17 18:10:40 -07006385static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11006386raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07006387{
NeilBrownd1688a62011-10-11 16:49:52 +11006388 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006389
6390 if (!sectors)
6391 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006392 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11006393 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11006394 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006395
NeilBrown3cb5edf2015-07-15 17:24:17 +10006396 sectors &= ~((sector_t)conf->chunk_sectors - 1);
6397 sectors &= ~((sector_t)conf->prev_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006398 return sectors * (raid_disks - conf->max_degraded);
6399}
6400
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306401static void free_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6402{
6403 safe_put_page(percpu->spare_page);
shli@kernel.org46d5b782014-12-15 12:57:02 +11006404 if (percpu->scribble)
6405 flex_array_free(percpu->scribble);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306406 percpu->spare_page = NULL;
6407 percpu->scribble = NULL;
6408}
6409
6410static int alloc_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6411{
6412 if (conf->level == 6 && !percpu->spare_page)
6413 percpu->spare_page = alloc_page(GFP_KERNEL);
6414 if (!percpu->scribble)
shli@kernel.org46d5b782014-12-15 12:57:02 +11006415 percpu->scribble = scribble_alloc(max(conf->raid_disks,
NeilBrown738a2732015-05-08 18:19:39 +10006416 conf->previous_raid_disks),
6417 max(conf->chunk_sectors,
6418 conf->prev_chunk_sectors)
6419 / STRIPE_SECTORS,
6420 GFP_KERNEL);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306421
6422 if (!percpu->scribble || (conf->level == 6 && !percpu->spare_page)) {
6423 free_scratch_buffer(conf, percpu);
6424 return -ENOMEM;
6425 }
6426
6427 return 0;
6428}
6429
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006430static int raid456_cpu_dead(unsigned int cpu, struct hlist_node *node)
6431{
6432 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
6433
6434 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
6435 return 0;
6436}
6437
NeilBrownd1688a62011-10-11 16:49:52 +11006438static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006439{
Dan Williams36d1c642009-07-14 11:48:22 -07006440 if (!conf->percpu)
6441 return;
6442
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006443 cpuhp_state_remove_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Dan Williams36d1c642009-07-14 11:48:22 -07006444 free_percpu(conf->percpu);
6445}
6446
NeilBrownd1688a62011-10-11 16:49:52 +11006447static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10006448{
Shaohua Li5c7e81c2015-08-13 14:32:04 -07006449 if (conf->log)
6450 r5l_exit_log(conf->log);
Shaohua Li30c89462016-09-21 09:07:13 -07006451 if (conf->shrinker.nr_deferred)
NeilBrownedbe83a2015-02-26 12:47:56 +11006452 unregister_shrinker(&conf->shrinker);
Shaohua Li5c7e81c2015-08-13 14:32:04 -07006453
Shaohua Li851c30c2013-08-28 14:30:16 +08006454 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006455 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07006456 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006457 kfree(conf->disks);
6458 kfree(conf->stripe_hashtbl);
6459 kfree(conf);
6460}
6461
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006462static int raid456_cpu_up_prepare(unsigned int cpu, struct hlist_node *node)
Dan Williams36d1c642009-07-14 11:48:22 -07006463{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006464 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
Dan Williams36d1c642009-07-14 11:48:22 -07006465 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
6466
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006467 if (alloc_scratch_buffer(conf, percpu)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006468 pr_warn("%s: failed memory allocation for cpu%u\n",
6469 __func__, cpu);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006470 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006471 }
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006472 return 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006473}
Dan Williams36d1c642009-07-14 11:48:22 -07006474
NeilBrownd1688a62011-10-11 16:49:52 +11006475static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006476{
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306477 int err = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006478
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306479 conf->percpu = alloc_percpu(struct raid5_percpu);
6480 if (!conf->percpu)
Dan Williams36d1c642009-07-14 11:48:22 -07006481 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006482
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006483 err = cpuhp_state_add_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Shaohua Li27a353c2016-02-24 17:38:28 -08006484 if (!err) {
6485 conf->scribble_disks = max(conf->raid_disks,
6486 conf->previous_raid_disks);
6487 conf->scribble_sectors = max(conf->chunk_sectors,
6488 conf->prev_chunk_sectors);
6489 }
Dan Williams36d1c642009-07-14 11:48:22 -07006490 return err;
6491}
6492
NeilBrownedbe83a2015-02-26 12:47:56 +11006493static unsigned long raid5_cache_scan(struct shrinker *shrink,
6494 struct shrink_control *sc)
6495{
6496 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
NeilBrown2d5b5692015-07-06 12:49:23 +10006497 unsigned long ret = SHRINK_STOP;
6498
6499 if (mutex_trylock(&conf->cache_size_mutex)) {
6500 ret= 0;
NeilBrown49895bc2015-08-03 17:09:57 +10006501 while (ret < sc->nr_to_scan &&
6502 conf->max_nr_stripes > conf->min_nr_stripes) {
NeilBrown2d5b5692015-07-06 12:49:23 +10006503 if (drop_one_stripe(conf) == 0) {
6504 ret = SHRINK_STOP;
6505 break;
6506 }
6507 ret++;
6508 }
6509 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11006510 }
6511 return ret;
6512}
6513
6514static unsigned long raid5_cache_count(struct shrinker *shrink,
6515 struct shrink_control *sc)
6516{
6517 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
6518
6519 if (conf->max_nr_stripes < conf->min_nr_stripes)
6520 /* unlikely, but not impossible */
6521 return 0;
6522 return conf->max_nr_stripes - conf->min_nr_stripes;
6523}
6524
NeilBrownd1688a62011-10-11 16:49:52 +11006525static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526{
NeilBrownd1688a62011-10-11 16:49:52 +11006527 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006528 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11006529 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10006531 char pers_name[6];
Shaohua Li566c09c2013-11-14 15:16:17 +11006532 int i;
majianpeng60aaf932013-11-14 15:16:20 +11006533 int group_cnt, worker_cnt_per_group;
6534 struct r5worker_group *new_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535
NeilBrown91adb562009-03-31 14:39:39 +11006536 if (mddev->new_level != 5
6537 && mddev->new_level != 4
6538 && mddev->new_level != 6) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006539 pr_warn("md/raid:%s: raid level not set to 4/5/6 (%d)\n",
6540 mdname(mddev), mddev->new_level);
NeilBrown91adb562009-03-31 14:39:39 +11006541 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542 }
NeilBrown91adb562009-03-31 14:39:39 +11006543 if ((mddev->new_level == 5
6544 && !algorithm_valid_raid5(mddev->new_layout)) ||
6545 (mddev->new_level == 6
6546 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006547 pr_warn("md/raid:%s: layout %d not supported\n",
6548 mdname(mddev), mddev->new_layout);
NeilBrown91adb562009-03-31 14:39:39 +11006549 return ERR_PTR(-EIO);
6550 }
6551 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006552 pr_warn("md/raid:%s: not enough configured devices (%d, minimum 4)\n",
6553 mdname(mddev), mddev->raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006554 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11006555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556
Andre Noll664e7c42009-06-18 08:45:27 +10006557 if (!mddev->new_chunk_sectors ||
6558 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
6559 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006560 pr_warn("md/raid:%s: invalid chunk size %d\n",
6561 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11006562 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11006563 }
6564
NeilBrownd1688a62011-10-11 16:49:52 +11006565 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11006566 if (conf == NULL)
6567 goto abort;
Shaohua Li851c30c2013-08-28 14:30:16 +08006568 /* Don't enable multi-threading by default*/
majianpeng60aaf932013-11-14 15:16:20 +11006569 if (!alloc_thread_groups(conf, 0, &group_cnt, &worker_cnt_per_group,
6570 &new_group)) {
6571 conf->group_cnt = group_cnt;
6572 conf->worker_cnt_per_group = worker_cnt_per_group;
6573 conf->worker_groups = new_group;
6574 } else
Shaohua Li851c30c2013-08-28 14:30:16 +08006575 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11006576 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006577 seqcount_init(&conf->gen_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10006578 mutex_init(&conf->cache_size_mutex);
Yuanhan Liub1b46482015-05-08 18:19:06 +10006579 init_waitqueue_head(&conf->wait_for_quiescent);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08006580 init_waitqueue_head(&conf->wait_for_stripe);
Dan Williamsf5efd452009-10-16 15:55:38 +11006581 init_waitqueue_head(&conf->wait_for_overlap);
6582 INIT_LIST_HEAD(&conf->handle_list);
6583 INIT_LIST_HEAD(&conf->hold_list);
6584 INIT_LIST_HEAD(&conf->delayed_list);
6585 INIT_LIST_HEAD(&conf->bitmap_list);
NeilBrownc3cce6c2015-08-14 12:47:33 +10006586 bio_list_init(&conf->return_bi);
Shaohua Li773ca822013-08-27 17:50:39 +08006587 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11006588 atomic_set(&conf->active_stripes, 0);
6589 atomic_set(&conf->preread_active_stripes, 0);
6590 atomic_set(&conf->active_aligned_reads, 0);
6591 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11006592 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11006593
6594 conf->raid_disks = mddev->raid_disks;
6595 if (mddev->reshape_position == MaxSector)
6596 conf->previous_raid_disks = mddev->raid_disks;
6597 else
6598 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006599 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006600
NeilBrown5e5e3e72009-10-16 16:35:30 +11006601 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11006602 GFP_KERNEL);
6603 if (!conf->disks)
6604 goto abort;
6605
6606 conf->mddev = mddev;
6607
6608 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
6609 goto abort;
6610
Shaohua Li566c09c2013-11-14 15:16:17 +11006611 /* We init hash_locks[0] separately to that it can be used
6612 * as the reference lock in the spin_lock_nest_lock() call
6613 * in lock_all_device_hash_locks_irq in order to convince
6614 * lockdep that we know what we are doing.
6615 */
6616 spin_lock_init(conf->hash_locks);
6617 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
6618 spin_lock_init(conf->hash_locks + i);
6619
6620 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6621 INIT_LIST_HEAD(conf->inactive_list + i);
6622
6623 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6624 INIT_LIST_HEAD(conf->temp_inactive_list + i);
6625
Song Liu1e6d6902016-11-17 15:24:39 -08006626 atomic_set(&conf->r5c_cached_full_stripes, 0);
6627 INIT_LIST_HEAD(&conf->r5c_full_stripe_list);
6628 atomic_set(&conf->r5c_cached_partial_stripes, 0);
6629 INIT_LIST_HEAD(&conf->r5c_partial_stripe_list);
6630
Dan Williams36d1c642009-07-14 11:48:22 -07006631 conf->level = mddev->new_level;
shli@kernel.org46d5b782014-12-15 12:57:02 +11006632 conf->chunk_sectors = mddev->new_chunk_sectors;
Dan Williams36d1c642009-07-14 11:48:22 -07006633 if (raid5_alloc_percpu(conf) != 0)
6634 goto abort;
6635
NeilBrown0c55e022010-05-03 14:09:02 +10006636 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006637
NeilBrowndafb20f2012-03-19 12:46:39 +11006638 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11006639 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006640 if (raid_disk >= max_disks
Shaohua Lif2076e72015-10-08 21:54:12 -07006641 || raid_disk < 0 || test_bit(Journal, &rdev->flags))
NeilBrown91adb562009-03-31 14:39:39 +11006642 continue;
6643 disk = conf->disks + raid_disk;
6644
NeilBrown17045f52011-12-23 10:17:53 +11006645 if (test_bit(Replacement, &rdev->flags)) {
6646 if (disk->replacement)
6647 goto abort;
6648 disk->replacement = rdev;
6649 } else {
6650 if (disk->rdev)
6651 goto abort;
6652 disk->rdev = rdev;
6653 }
NeilBrown91adb562009-03-31 14:39:39 +11006654
6655 if (test_bit(In_sync, &rdev->flags)) {
6656 char b[BDEVNAME_SIZE];
NeilBrowncc6167b2016-11-02 14:16:50 +11006657 pr_info("md/raid:%s: device %s operational as raid disk %d\n",
6658 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05006659 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11006660 /* Cannot rely on bitmap to complete recovery */
6661 conf->fullsync = 1;
6662 }
6663
NeilBrown91adb562009-03-31 14:39:39 +11006664 conf->level = mddev->new_level;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006665 if (conf->level == 6) {
NeilBrown91adb562009-03-31 14:39:39 +11006666 conf->max_degraded = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006667 if (raid6_call.xor_syndrome)
6668 conf->rmw_level = PARITY_ENABLE_RMW;
6669 else
6670 conf->rmw_level = PARITY_DISABLE_RMW;
6671 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006672 conf->max_degraded = 1;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006673 conf->rmw_level = PARITY_ENABLE_RMW;
6674 }
NeilBrown91adb562009-03-31 14:39:39 +11006675 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11006676 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11006677 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10006678 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11006679 conf->prev_algo = mddev->layout;
NeilBrown5cac6bc2015-07-17 12:17:50 +10006680 } else {
6681 conf->prev_chunk_sectors = conf->chunk_sectors;
6682 conf->prev_algo = conf->algorithm;
NeilBrowne183eae2009-03-31 15:20:22 +11006683 }
NeilBrown91adb562009-03-31 14:39:39 +11006684
NeilBrownedbe83a2015-02-26 12:47:56 +11006685 conf->min_nr_stripes = NR_STRIPES;
Shaohua Liad5b0f72016-08-30 10:29:33 -07006686 if (mddev->reshape_position != MaxSector) {
6687 int stripes = max_t(int,
6688 ((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4,
6689 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4);
6690 conf->min_nr_stripes = max(NR_STRIPES, stripes);
6691 if (conf->min_nr_stripes != NR_STRIPES)
NeilBrowncc6167b2016-11-02 14:16:50 +11006692 pr_info("md/raid:%s: force stripe size %d for reshape\n",
Shaohua Liad5b0f72016-08-30 10:29:33 -07006693 mdname(mddev), conf->min_nr_stripes);
6694 }
NeilBrownedbe83a2015-02-26 12:47:56 +11006695 memory = conf->min_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11006696 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
Shaohua Li4bda5562013-11-14 15:16:17 +11006697 atomic_set(&conf->empty_inactive_list_nr, NR_STRIPE_HASH_LOCKS);
NeilBrownedbe83a2015-02-26 12:47:56 +11006698 if (grow_stripes(conf, conf->min_nr_stripes)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006699 pr_warn("md/raid:%s: couldn't allocate %dkB for buffers\n",
6700 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11006701 goto abort;
6702 } else
NeilBrowncc6167b2016-11-02 14:16:50 +11006703 pr_debug("md/raid:%s: allocated %dkB\n", mdname(mddev), memory);
NeilBrownedbe83a2015-02-26 12:47:56 +11006704 /*
6705 * Losing a stripe head costs more than the time to refill it,
6706 * it reduces the queue depth and so can hurt throughput.
6707 * So set it rather large, scaled by number of devices.
6708 */
6709 conf->shrinker.seeks = DEFAULT_SEEKS * conf->raid_disks * 4;
6710 conf->shrinker.scan_objects = raid5_cache_scan;
6711 conf->shrinker.count_objects = raid5_cache_count;
6712 conf->shrinker.batch = 128;
6713 conf->shrinker.flags = 0;
Chao Yu6a0f53f2016-09-20 10:33:57 +08006714 if (register_shrinker(&conf->shrinker)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006715 pr_warn("md/raid:%s: couldn't register shrinker.\n",
6716 mdname(mddev));
Chao Yu6a0f53f2016-09-20 10:33:57 +08006717 goto abort;
6718 }
NeilBrown91adb562009-03-31 14:39:39 +11006719
NeilBrown02326052012-07-03 15:56:52 +10006720 sprintf(pers_name, "raid%d", mddev->new_level);
6721 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11006722 if (!conf->thread) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006723 pr_warn("md/raid:%s: couldn't allocate thread.\n",
6724 mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006725 goto abort;
6726 }
6727
6728 return conf;
6729
6730 abort:
6731 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10006732 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11006733 return ERR_PTR(-EIO);
6734 } else
6735 return ERR_PTR(-ENOMEM);
6736}
6737
NeilBrownc148ffd2009-11-13 17:47:00 +11006738static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
6739{
6740 switch (algo) {
6741 case ALGORITHM_PARITY_0:
6742 if (raid_disk < max_degraded)
6743 return 1;
6744 break;
6745 case ALGORITHM_PARITY_N:
6746 if (raid_disk >= raid_disks - max_degraded)
6747 return 1;
6748 break;
6749 case ALGORITHM_PARITY_0_6:
NeilBrownf72ffdd2014-09-30 14:23:59 +10006750 if (raid_disk == 0 ||
NeilBrownc148ffd2009-11-13 17:47:00 +11006751 raid_disk == raid_disks - 1)
6752 return 1;
6753 break;
6754 case ALGORITHM_LEFT_ASYMMETRIC_6:
6755 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6756 case ALGORITHM_LEFT_SYMMETRIC_6:
6757 case ALGORITHM_RIGHT_SYMMETRIC_6:
6758 if (raid_disk == raid_disks - 1)
6759 return 1;
6760 }
6761 return 0;
6762}
6763
Shaohua Li849674e2016-01-20 13:52:20 -08006764static int raid5_run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11006765{
NeilBrownd1688a62011-10-11 16:49:52 +11006766 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10006767 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11006768 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11006769 struct md_rdev *rdev;
Shaohua Li713cf5a2015-08-13 14:32:03 -07006770 struct md_rdev *journal_dev = NULL;
NeilBrownc148ffd2009-11-13 17:47:00 +11006771 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11006772 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10006773 long long min_offset_diff = 0;
6774 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11006775
Andre Noll8c6ac862009-06-18 08:48:06 +10006776 if (mddev->recovery_cp != MaxSector)
NeilBrowncc6167b2016-11-02 14:16:50 +11006777 pr_notice("md/raid:%s: not clean -- starting background reconstruction\n",
6778 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10006779
6780 rdev_for_each(rdev, mddev) {
6781 long long diff;
Shaohua Li713cf5a2015-08-13 14:32:03 -07006782
Shaohua Lif2076e72015-10-08 21:54:12 -07006783 if (test_bit(Journal, &rdev->flags)) {
Shaohua Li713cf5a2015-08-13 14:32:03 -07006784 journal_dev = rdev;
Shaohua Lif2076e72015-10-08 21:54:12 -07006785 continue;
6786 }
NeilBrownb5254dd2012-05-21 09:27:01 +10006787 if (rdev->raid_disk < 0)
6788 continue;
6789 diff = (rdev->new_data_offset - rdev->data_offset);
6790 if (first) {
6791 min_offset_diff = diff;
6792 first = 0;
6793 } else if (mddev->reshape_backwards &&
6794 diff < min_offset_diff)
6795 min_offset_diff = diff;
6796 else if (!mddev->reshape_backwards &&
6797 diff > min_offset_diff)
6798 min_offset_diff = diff;
6799 }
6800
NeilBrownf6705572006-03-27 01:18:11 -08006801 if (mddev->reshape_position != MaxSector) {
6802 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10006803 * Difficulties arise if the stripe we would write to
6804 * next is at or after the stripe we would read from next.
6805 * For a reshape that changes the number of devices, this
6806 * is only possible for a very short time, and mdadm makes
6807 * sure that time appears to have past before assembling
6808 * the array. So we fail if that time hasn't passed.
6809 * For a reshape that keeps the number of devices the same
6810 * mdadm must be monitoring the reshape can keeping the
6811 * critical areas read-only and backed up. It will start
6812 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08006813 */
6814 sector_t here_new, here_old;
6815 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11006816 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrown05256d92015-07-15 17:36:21 +10006817 int chunk_sectors;
6818 int new_data_disks;
NeilBrownf6705572006-03-27 01:18:11 -08006819
Shaohua Li713cf5a2015-08-13 14:32:03 -07006820 if (journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006821 pr_warn("md/raid:%s: don't support reshape with journal - aborting.\n",
6822 mdname(mddev));
Shaohua Li713cf5a2015-08-13 14:32:03 -07006823 return -EINVAL;
6824 }
6825
NeilBrown88ce4932009-03-31 15:24:23 +11006826 if (mddev->new_level != mddev->level) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006827 pr_warn("md/raid:%s: unsupported reshape required - aborting.\n",
6828 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006829 return -EINVAL;
6830 }
NeilBrownf6705572006-03-27 01:18:11 -08006831 old_disks = mddev->raid_disks - mddev->delta_disks;
6832 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08006833 * further up in new geometry must map after here in old
6834 * geometry.
NeilBrown05256d92015-07-15 17:36:21 +10006835 * If the chunk sizes are different, then as we perform reshape
6836 * in units of the largest of the two, reshape_position needs
6837 * be a multiple of the largest chunk size times new data disks.
NeilBrownf6705572006-03-27 01:18:11 -08006838 */
6839 here_new = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10006840 chunk_sectors = max(mddev->chunk_sectors, mddev->new_chunk_sectors);
6841 new_data_disks = mddev->raid_disks - max_degraded;
6842 if (sector_div(here_new, chunk_sectors * new_data_disks)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006843 pr_warn("md/raid:%s: reshape_position not on a stripe boundary\n",
6844 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006845 return -EINVAL;
6846 }
NeilBrown05256d92015-07-15 17:36:21 +10006847 reshape_offset = here_new * chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08006848 /* here_new is the stripe we will write to */
6849 here_old = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10006850 sector_div(here_old, chunk_sectors * (old_disks-max_degraded));
NeilBrownf4168852007-02-28 20:11:53 -08006851 /* here_old is the first stripe that we might need to read
6852 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10006853 if (mddev->delta_disks == 0) {
6854 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10006855 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10006856 * and taking constant backups.
6857 * mdadm always starts a situation like this in
6858 * readonly mode so it can take control before
6859 * allowing any writes. So just check for that.
6860 */
NeilBrownb5254dd2012-05-21 09:27:01 +10006861 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
6862 abs(min_offset_diff) >= mddev->new_chunk_sectors)
6863 /* not really in-place - so OK */;
6864 else if (mddev->ro == 0) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006865 pr_warn("md/raid:%s: in-place reshape must be started in read-only mode - aborting\n",
6866 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10006867 return -EINVAL;
6868 }
NeilBrown2c810cd2012-05-21 09:27:00 +10006869 } else if (mddev->reshape_backwards
NeilBrown05256d92015-07-15 17:36:21 +10006870 ? (here_new * chunk_sectors + min_offset_diff <=
6871 here_old * chunk_sectors)
6872 : (here_new * chunk_sectors >=
6873 here_old * chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08006874 /* Reading from the same stripe as writing to - bad */
NeilBrowncc6167b2016-11-02 14:16:50 +11006875 pr_warn("md/raid:%s: reshape_position too early for auto-recovery - aborting.\n",
6876 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006877 return -EINVAL;
6878 }
NeilBrowncc6167b2016-11-02 14:16:50 +11006879 pr_debug("md/raid:%s: reshape will continue\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006880 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08006881 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006882 BUG_ON(mddev->level != mddev->new_level);
6883 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10006884 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11006885 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08006886 }
6887
NeilBrown245f46c2009-03-31 14:39:39 +11006888 if (mddev->private == NULL)
6889 conf = setup_conf(mddev);
6890 else
6891 conf = mddev->private;
6892
NeilBrown91adb562009-03-31 14:39:39 +11006893 if (IS_ERR(conf))
6894 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08006895
Song Liu486b0f72016-08-19 15:34:01 -07006896 if (test_bit(MD_HAS_JOURNAL, &mddev->flags)) {
6897 if (!journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006898 pr_warn("md/raid:%s: journal disk is missing, force array readonly\n",
6899 mdname(mddev));
Song Liu486b0f72016-08-19 15:34:01 -07006900 mddev->ro = 1;
6901 set_disk_ro(mddev->gendisk, 1);
6902 } else if (mddev->recovery_cp == MaxSector)
6903 set_bit(MD_JOURNAL_CLEAN, &mddev->flags);
Shaohua Li7dde2ad2015-10-08 21:54:10 -07006904 }
6905
NeilBrownb5254dd2012-05-21 09:27:01 +10006906 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11006907 mddev->thread = conf->thread;
6908 conf->thread = NULL;
6909 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910
NeilBrown17045f52011-12-23 10:17:53 +11006911 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
6912 i++) {
6913 rdev = conf->disks[i].rdev;
6914 if (!rdev && conf->disks[i].replacement) {
6915 /* The replacement is all we have yet */
6916 rdev = conf->disks[i].replacement;
6917 conf->disks[i].replacement = NULL;
6918 clear_bit(Replacement, &rdev->flags);
6919 conf->disks[i].rdev = rdev;
6920 }
6921 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11006922 continue;
NeilBrown17045f52011-12-23 10:17:53 +11006923 if (conf->disks[i].replacement &&
6924 conf->reshape_progress != MaxSector) {
6925 /* replacements and reshape simply do not mix. */
NeilBrowncc6167b2016-11-02 14:16:50 +11006926 pr_warn("md: cannot handle concurrent replacement and reshape.\n");
NeilBrown17045f52011-12-23 10:17:53 +11006927 goto abort;
6928 }
NeilBrown2f115882010-06-17 17:41:03 +10006929 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11006930 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10006931 continue;
6932 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006933 /* This disc is not fully in-sync. However if it
6934 * just stored parity (beyond the recovery_offset),
6935 * when we don't need to be concerned about the
6936 * array being dirty.
6937 * When reshape goes 'backwards', we never have
6938 * partially completed devices, so we only need
6939 * to worry about reshape going forwards.
6940 */
6941 /* Hack because v0.91 doesn't store recovery_offset properly. */
6942 if (mddev->major_version == 0 &&
6943 mddev->minor_version > 90)
6944 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07006945
NeilBrownc148ffd2009-11-13 17:47:00 +11006946 if (rdev->recovery_offset < reshape_offset) {
6947 /* We need to check old and new layout */
6948 if (!only_parity(rdev->raid_disk,
6949 conf->algorithm,
6950 conf->raid_disks,
6951 conf->max_degraded))
6952 continue;
6953 }
6954 if (!only_parity(rdev->raid_disk,
6955 conf->prev_algo,
6956 conf->previous_raid_disks,
6957 conf->max_degraded))
6958 continue;
6959 dirty_parity_disks++;
6960 }
NeilBrown91adb562009-03-31 14:39:39 +11006961
NeilBrown17045f52011-12-23 10:17:53 +11006962 /*
6963 * 0 for a fully functional array, 1 or 2 for a degraded array.
6964 */
NeilBrown908f4fb2011-12-23 10:17:50 +11006965 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966
NeilBrown674806d2010-06-16 17:17:53 +10006967 if (has_failed(conf)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006968 pr_crit("md/raid:%s: not enough operational devices (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07006969 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970 goto abort;
6971 }
6972
NeilBrown91adb562009-03-31 14:39:39 +11006973 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10006974 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11006975 mddev->resync_max_sectors = mddev->dev_sectors;
6976
NeilBrownc148ffd2009-11-13 17:47:00 +11006977 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006979 if (mddev->ok_start_degraded)
NeilBrowncc6167b2016-11-02 14:16:50 +11006980 pr_crit("md/raid:%s: starting dirty degraded array - data corruption possible.\n",
6981 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006982 else {
NeilBrowncc6167b2016-11-02 14:16:50 +11006983 pr_crit("md/raid:%s: cannot start dirty degraded array.\n",
6984 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08006985 goto abort;
6986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006987 }
6988
NeilBrowncc6167b2016-11-02 14:16:50 +11006989 pr_info("md/raid:%s: raid level %d active with %d out of %d devices, algorithm %d\n",
6990 mdname(mddev), conf->level,
6991 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
6992 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006993
6994 print_raid5_conf(conf);
6995
NeilBrownfef9c612009-03-31 15:16:46 +11006996 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11006997 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08006998 atomic_set(&conf->reshape_stripes, 0);
6999 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7000 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
7001 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7002 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7003 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007004 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08007005 }
7006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10007008 if (mddev->to_remove == &raid5_attrs_group)
7009 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10007010 else if (mddev->kobj.sd &&
7011 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrowncc6167b2016-11-02 14:16:50 +11007012 pr_warn("raid5: failed to create sysfs attributes for %s\n",
7013 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10007014 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7015
7016 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007017 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11007018 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10007019 /* read-ahead size must cover two whole stripes, which
7020 * is 2 * (datadisks) * chunksize where 'n' is the
7021 * number of raid devices
7022 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023 int data_disks = conf->previous_raid_disks - conf->max_degraded;
7024 int stripe = data_disks *
7025 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
7026 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
7027 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10007028
NeilBrown9f7c2222010-07-26 12:04:13 +10007029 chunk_size = mddev->chunk_sectors << 9;
7030 blk_queue_io_min(mddev->queue, chunk_size);
7031 blk_queue_io_opt(mddev->queue, chunk_size *
7032 (conf->raid_disks - conf->max_degraded));
Kent Overstreetc78afc62013-07-11 22:39:53 -07007033 mddev->queue->limits.raid_partial_stripes_expensive = 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007034 /*
7035 * We can only discard a whole stripe. It doesn't make sense to
7036 * discard data disk but write parity disk
7037 */
7038 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11007039 /* Round up to power of 2, as discard handling
7040 * currently assumes that */
7041 while ((stripe-1) & stripe)
7042 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007043 mddev->queue->limits.discard_alignment = stripe;
7044 mddev->queue->limits.discard_granularity = stripe;
7045 /*
7046 * unaligned part of discard request will be ignored, so can't
NeilBrown8e0e99b2014-10-02 13:45:00 +10007047 * guarantee discard_zeroes_data
Shaohua Li620125f2012-10-11 13:49:05 +11007048 */
7049 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10007050
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007051 blk_queue_max_write_same_sectors(mddev->queue, 0);
7052
NeilBrown05616be2012-05-21 09:27:00 +10007053 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007054 disk_stack_limits(mddev->gendisk, rdev->bdev,
7055 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10007056 disk_stack_limits(mddev->gendisk, rdev->bdev,
7057 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11007058 /*
7059 * discard_zeroes_data is required, otherwise data
7060 * could be lost. Consider a scenario: discard a stripe
7061 * (the stripe could be inconsistent if
7062 * discard_zeroes_data is 0); write one disk of the
7063 * stripe (the stripe could be inconsistent again
7064 * depending on which disks are used to calculate
7065 * parity); the disk is broken; The stripe data of this
7066 * disk is lost.
7067 */
7068 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
7069 !bdev_get_queue(rdev->bdev)->
7070 limits.discard_zeroes_data)
7071 discard_supported = false;
NeilBrown8e0e99b2014-10-02 13:45:00 +10007072 /* Unfortunately, discard_zeroes_data is not currently
7073 * a guarantee - just a hint. So we only allow DISCARD
7074 * if the sysadmin has confirmed that only safe devices
7075 * are in use by setting a module parameter.
7076 */
7077 if (!devices_handle_discard_safely) {
7078 if (discard_supported) {
7079 pr_info("md/raid456: discard support disabled due to uncertainty.\n");
7080 pr_info("Set raid456.devices_handle_discard_safely=Y to override.\n");
7081 }
7082 discard_supported = false;
7083 }
NeilBrown05616be2012-05-21 09:27:00 +10007084 }
Shaohua Li620125f2012-10-11 13:49:05 +11007085
7086 if (discard_supported &&
Jes Sorensene7597e62016-02-16 16:44:24 -05007087 mddev->queue->limits.max_discard_sectors >= (stripe >> 9) &&
7088 mddev->queue->limits.discard_granularity >= stripe)
Shaohua Li620125f2012-10-11 13:49:05 +11007089 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
7090 mddev->queue);
7091 else
7092 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
7093 mddev->queue);
Shaohua Li1dffddd2016-09-08 10:49:06 -07007094
7095 blk_queue_max_hw_sectors(mddev->queue, UINT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096 }
7097
Shaohua Li5c7e81c2015-08-13 14:32:04 -07007098 if (journal_dev) {
7099 char b[BDEVNAME_SIZE];
7100
NeilBrowncc6167b2016-11-02 14:16:50 +11007101 pr_debug("md/raid:%s: using device %s as journal\n",
7102 mdname(mddev), bdevname(journal_dev->bdev, b));
Shaohua Li5c7e81c2015-08-13 14:32:04 -07007103 r5l_init_log(conf, journal_dev);
7104 }
7105
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106 return 0;
7107abort:
NeilBrown01f96c02011-09-21 15:30:20 +10007108 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11007109 print_raid5_conf(conf);
7110 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111 mddev->private = NULL;
NeilBrowncc6167b2016-11-02 14:16:50 +11007112 pr_warn("md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007113 return -EIO;
7114}
7115
NeilBrownafa0f552014-12-15 12:56:58 +11007116static void raid5_free(struct mddev *mddev, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007117{
NeilBrownafa0f552014-12-15 12:56:58 +11007118 struct r5conf *conf = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007119
Dan Williams95fc17a2009-07-31 12:39:15 +10007120 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10007121 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122}
7123
Shaohua Li849674e2016-01-20 13:52:20 -08007124static void raid5_status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007125{
NeilBrownd1688a62011-10-11 16:49:52 +11007126 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127 int i;
7128
Andre Noll9d8f0362009-06-18 08:45:01 +10007129 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
NeilBrown3cb5edf2015-07-15 17:24:17 +10007130 conf->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07007131 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
NeilBrown5fd13352016-06-02 16:19:52 +10007132 rcu_read_lock();
7133 for (i = 0; i < conf->raid_disks; i++) {
7134 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
7135 seq_printf (seq, "%s", rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
7136 }
7137 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007139}
7140
NeilBrownd1688a62011-10-11 16:49:52 +11007141static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142{
7143 int i;
7144 struct disk_info *tmp;
7145
NeilBrowncc6167b2016-11-02 14:16:50 +11007146 pr_debug("RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007147 if (!conf) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007148 pr_debug("(conf==NULL)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149 return;
7150 }
NeilBrowncc6167b2016-11-02 14:16:50 +11007151 pr_debug(" --- level:%d rd:%d wd:%d\n", conf->level,
NeilBrown0c55e022010-05-03 14:09:02 +10007152 conf->raid_disks,
7153 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007154
7155 for (i = 0; i < conf->raid_disks; i++) {
7156 char b[BDEVNAME_SIZE];
7157 tmp = conf->disks + i;
7158 if (tmp->rdev)
NeilBrowncc6167b2016-11-02 14:16:50 +11007159 pr_debug(" disk %d, o:%d, dev:%s\n",
NeilBrown0c55e022010-05-03 14:09:02 +10007160 i, !test_bit(Faulty, &tmp->rdev->flags),
7161 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007162 }
7163}
7164
NeilBrownfd01b882011-10-11 16:47:53 +11007165static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007166{
7167 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11007168 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007169 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10007170 int count = 0;
7171 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172
7173 for (i = 0; i < conf->raid_disks; i++) {
7174 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11007175 if (tmp->replacement
7176 && tmp->replacement->recovery_offset == MaxSector
7177 && !test_bit(Faulty, &tmp->replacement->flags)
7178 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
7179 /* Replacement has just become active. */
7180 if (!tmp->rdev
7181 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
7182 count++;
7183 if (tmp->rdev) {
7184 /* Replaced device not technically faulty,
7185 * but we need to be sure it gets removed
7186 * and never re-added.
7187 */
7188 set_bit(Faulty, &tmp->rdev->flags);
7189 sysfs_notify_dirent_safe(
7190 tmp->rdev->sysfs_state);
7191 }
7192 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
7193 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10007194 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08007195 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07007196 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10007197 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11007198 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199 }
7200 }
NeilBrown6b965622010-08-18 11:56:59 +10007201 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007202 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007203 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007205 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206}
7207
NeilBrownb8321b62011-12-23 10:17:51 +11007208static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209{
NeilBrownd1688a62011-10-11 16:49:52 +11007210 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11007212 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11007213 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214 struct disk_info *p = conf->disks + number;
7215
7216 print_raid5_conf(conf);
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007217 if (test_bit(Journal, &rdev->flags) && conf->log) {
7218 struct r5l_log *log;
Shaohua Lic2bb6242015-10-08 21:54:07 -07007219 /*
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007220 * we can't wait pending write here, as this is called in
7221 * raid5d, wait will deadlock.
Shaohua Lic2bb6242015-10-08 21:54:07 -07007222 */
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007223 if (atomic_read(&mddev->writes_pending))
7224 return -EBUSY;
7225 log = conf->log;
7226 conf->log = NULL;
7227 synchronize_rcu();
7228 r5l_exit_log(log);
7229 return 0;
Shaohua Lic2bb6242015-10-08 21:54:07 -07007230 }
NeilBrown657e3e42011-12-23 10:17:52 +11007231 if (rdev == p->rdev)
7232 rdevp = &p->rdev;
7233 else if (rdev == p->replacement)
7234 rdevp = &p->replacement;
7235 else
7236 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11007237
NeilBrown657e3e42011-12-23 10:17:52 +11007238 if (number >= conf->raid_disks &&
7239 conf->reshape_progress == MaxSector)
7240 clear_bit(In_sync, &rdev->flags);
7241
7242 if (test_bit(In_sync, &rdev->flags) ||
7243 atomic_read(&rdev->nr_pending)) {
7244 err = -EBUSY;
7245 goto abort;
7246 }
7247 /* Only remove non-faulty devices if recovery
7248 * isn't possible.
7249 */
7250 if (!test_bit(Faulty, &rdev->flags) &&
7251 mddev->recovery_disabled != conf->recovery_disabled &&
7252 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11007253 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11007254 number < conf->raid_disks) {
7255 err = -EBUSY;
7256 goto abort;
7257 }
7258 *rdevp = NULL;
NeilBrownd787be42016-06-02 16:19:53 +10007259 if (!test_bit(RemoveSynchronized, &rdev->flags)) {
7260 synchronize_rcu();
7261 if (atomic_read(&rdev->nr_pending)) {
7262 /* lost the race, try later */
7263 err = -EBUSY;
7264 *rdevp = rdev;
7265 }
7266 }
7267 if (p->replacement) {
NeilBrowndd054fc2011-12-23 10:17:53 +11007268 /* We must have just cleared 'rdev' */
7269 p->rdev = p->replacement;
7270 clear_bit(Replacement, &p->replacement->flags);
7271 smp_mb(); /* Make sure other CPUs may see both as identical
7272 * but will never see neither - if they are careful
7273 */
7274 p->replacement = NULL;
7275 clear_bit(WantReplacement, &rdev->flags);
7276 } else
7277 /* We might have just removed the Replacement as faulty-
7278 * clear the bit just in case
7279 */
7280 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007281abort:
7282
7283 print_raid5_conf(conf);
7284 return err;
7285}
7286
NeilBrownfd01b882011-10-11 16:47:53 +11007287static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288{
NeilBrownd1688a62011-10-11 16:49:52 +11007289 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10007290 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007291 int disk;
7292 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10007293 int first = 0;
7294 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007295
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007296 if (test_bit(Journal, &rdev->flags)) {
7297 char b[BDEVNAME_SIZE];
7298 if (conf->log)
7299 return -EBUSY;
7300
7301 rdev->raid_disk = 0;
7302 /*
7303 * The array is in readonly mode if journal is missing, so no
7304 * write requests running. We should be safe
7305 */
7306 r5l_init_log(conf, rdev);
NeilBrowncc6167b2016-11-02 14:16:50 +11007307 pr_debug("md/raid:%s: using device %s as journal\n",
7308 mdname(mddev), bdevname(rdev->bdev, b));
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007309 return 0;
7310 }
NeilBrown7f0da592011-07-28 11:39:22 +10007311 if (mddev->recovery_disabled == conf->recovery_disabled)
7312 return -EBUSY;
7313
NeilBrowndc10c642012-03-19 12:46:37 +11007314 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10007316 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317
Neil Brown6c2fce22008-06-28 08:31:31 +10007318 if (rdev->raid_disk >= 0)
7319 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320
7321 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07007322 * find the disk ... but prefer rdev->saved_raid_disk
7323 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324 */
NeilBrown16a53ec2006-06-26 00:27:38 -07007325 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10007326 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07007327 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10007328 first = rdev->saved_raid_disk;
7329
7330 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11007331 p = conf->disks + disk;
7332 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08007333 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10007335 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07007336 if (rdev->saved_raid_disk != disk)
7337 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08007338 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10007339 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007341 }
7342 for (disk = first; disk <= last; disk++) {
7343 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11007344 if (test_bit(WantReplacement, &p->rdev->flags) &&
7345 p->replacement == NULL) {
7346 clear_bit(In_sync, &rdev->flags);
7347 set_bit(Replacement, &rdev->flags);
7348 rdev->raid_disk = disk;
7349 err = 0;
7350 conf->fullsync = 1;
7351 rcu_assign_pointer(p->replacement, rdev);
7352 break;
7353 }
7354 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007355out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10007357 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007358}
7359
NeilBrownfd01b882011-10-11 16:47:53 +11007360static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361{
7362 /* no resync is happening, and there is enough space
7363 * on all devices, so we can resize.
7364 * We need to make sure resync covers any new space.
7365 * If the array is shrinking we should possibly wait until
7366 * any io in the removed space completes, but it hardly seems
7367 * worth it.
7368 */
NeilBrowna4a61252012-05-22 13:55:27 +10007369 sector_t newsize;
NeilBrown3cb5edf2015-07-15 17:24:17 +10007370 struct r5conf *conf = mddev->private;
7371
Shaohua Li713cf5a2015-08-13 14:32:03 -07007372 if (conf->log)
7373 return -EINVAL;
NeilBrown3cb5edf2015-07-15 17:24:17 +10007374 sectors &= ~((sector_t)conf->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10007375 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
7376 if (mddev->external_size &&
7377 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11007378 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10007379 if (mddev->bitmap) {
7380 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
7381 if (ret)
7382 return ret;
7383 }
7384 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10007385 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007386 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10007387 if (sectors > mddev->dev_sectors &&
7388 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11007389 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007390 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
7391 }
Andre Noll58c0fed2009-03-31 14:33:13 +11007392 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07007393 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394 return 0;
7395}
7396
NeilBrownfd01b882011-10-11 16:47:53 +11007397static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10007398{
7399 /* Can only proceed if there are plenty of stripe_heads.
7400 * We need a minimum of one full stripe,, and for sensible progress
7401 * it is best to have about 4 times that.
7402 * If we require 4 times, then the default 256 4K stripe_heads will
7403 * allow for chunk sizes up to 256K, which is probably OK.
7404 * If the chunk size is greater, user-space should request more
7405 * stripe_heads first.
7406 */
NeilBrownd1688a62011-10-11 16:49:52 +11007407 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10007408 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007409 > conf->min_nr_stripes ||
NeilBrown01ee22b2009-06-18 08:47:20 +10007410 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007411 > conf->min_nr_stripes) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007412 pr_warn("md/raid:%s: reshape: not enough stripes. Needed %lu\n",
7413 mdname(mddev),
7414 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
7415 / STRIPE_SIZE)*4);
NeilBrown01ee22b2009-06-18 08:47:20 +10007416 return 0;
7417 }
7418 return 1;
7419}
7420
NeilBrownfd01b882011-10-11 16:47:53 +11007421static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08007422{
NeilBrownd1688a62011-10-11 16:49:52 +11007423 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08007424
Shaohua Li713cf5a2015-08-13 14:32:03 -07007425 if (conf->log)
7426 return -EINVAL;
NeilBrown88ce4932009-03-31 15:24:23 +11007427 if (mddev->delta_disks == 0 &&
7428 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10007429 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10007430 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10007431 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11007432 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10007433 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11007434 /* We might be able to shrink, but the devices must
7435 * be made bigger first.
7436 * For raid6, 4 is the minimum size.
7437 * Otherwise 2 is the minimum
7438 */
7439 int min = 2;
7440 if (mddev->level == 6)
7441 min = 4;
7442 if (mddev->raid_disks + mddev->delta_disks < min)
7443 return -EINVAL;
7444 }
NeilBrown29269552006-03-27 01:18:10 -08007445
NeilBrown01ee22b2009-06-18 08:47:20 +10007446 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08007447 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08007448
NeilBrown738a2732015-05-08 18:19:39 +10007449 if (mddev->new_chunk_sectors > mddev->chunk_sectors ||
7450 mddev->delta_disks > 0)
7451 if (resize_chunks(conf,
7452 conf->previous_raid_disks
7453 + max(0, mddev->delta_disks),
7454 max(mddev->new_chunk_sectors,
7455 mddev->chunk_sectors)
7456 ) < 0)
7457 return -ENOMEM;
NeilBrowne56108d62012-10-11 14:24:13 +11007458 return resize_stripes(conf, (conf->previous_raid_disks
7459 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08007460}
7461
NeilBrownfd01b882011-10-11 16:47:53 +11007462static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08007463{
NeilBrownd1688a62011-10-11 16:49:52 +11007464 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11007465 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08007466 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07007467 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08007468
NeilBrownf4168852007-02-28 20:11:53 -08007469 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08007470 return -EBUSY;
7471
NeilBrown01ee22b2009-06-18 08:47:20 +10007472 if (!check_stripe_cache(mddev))
7473 return -ENOSPC;
7474
NeilBrown30b67642012-05-22 13:55:28 +10007475 if (has_failed(conf))
7476 return -EINVAL;
7477
NeilBrownc6563a82012-05-21 09:27:00 +10007478 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11007479 if (!test_bit(In_sync, &rdev->flags)
7480 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08007481 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10007482 }
NeilBrown63c70c42006-03-27 01:18:13 -08007483
NeilBrownf4168852007-02-28 20:11:53 -08007484 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08007485 /* Not enough devices even to make a degraded array
7486 * of that size
7487 */
7488 return -EINVAL;
7489
NeilBrownec32a2b2009-03-31 15:17:38 +11007490 /* Refuse to reduce size of the array. Any reductions in
7491 * array size must be through explicit setting of array_size
7492 * attribute.
7493 */
7494 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
7495 < mddev->array_sectors) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007496 pr_warn("md/raid:%s: array size must be reduced before number of disks\n",
7497 mdname(mddev));
NeilBrownec32a2b2009-03-31 15:17:38 +11007498 return -EINVAL;
7499 }
7500
NeilBrownf6705572006-03-27 01:18:11 -08007501 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08007502 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10007503 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007504 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08007505 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007506 conf->prev_chunk_sectors = conf->chunk_sectors;
7507 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11007508 conf->prev_algo = conf->algorithm;
7509 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10007510 conf->generation++;
7511 /* Code that selects data_offset needs to see the generation update
7512 * if reshape_progress has been set - so a memory barrier needed.
7513 */
7514 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10007515 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11007516 conf->reshape_progress = raid5_size(mddev, 0, 0);
7517 else
7518 conf->reshape_progress = 0;
7519 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10007520 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007521 spin_unlock_irq(&conf->device_lock);
7522
NeilBrown4d77e3b2013-08-27 15:57:47 +10007523 /* Now make sure any requests that proceeded on the assumption
7524 * the reshape wasn't running - like Discard or Read - have
7525 * completed.
7526 */
7527 mddev_suspend(mddev);
7528 mddev_resume(mddev);
7529
NeilBrown29269552006-03-27 01:18:10 -08007530 /* Add some new drives, as many as will fit.
7531 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10007532 * Don't add devices if we are reducing the number of
7533 * devices in the array. This is because it is not possible
7534 * to correctly record the "partially reconstructed" state of
7535 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08007536 */
NeilBrown87a8dec2011-01-31 11:57:43 +11007537 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11007538 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11007539 if (rdev->raid_disk < 0 &&
7540 !test_bit(Faulty, &rdev->flags)) {
7541 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11007542 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11007543 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11007544 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11007545 else
NeilBrown87a8dec2011-01-31 11:57:43 +11007546 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10007547
7548 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11007549 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11007550 }
NeilBrown87a8dec2011-01-31 11:57:43 +11007551 } else if (rdev->raid_disk >= conf->previous_raid_disks
7552 && !test_bit(Faulty, &rdev->flags)) {
7553 /* This is a spare that was manually added */
7554 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11007555 }
NeilBrown29269552006-03-27 01:18:10 -08007556
NeilBrown87a8dec2011-01-31 11:57:43 +11007557 /* When a reshape changes the number of devices,
7558 * ->degraded is measured against the larger of the
7559 * pre and post number of devices.
7560 */
NeilBrownec32a2b2009-03-31 15:17:38 +11007561 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007562 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11007563 spin_unlock_irqrestore(&conf->device_lock, flags);
7564 }
NeilBrown63c70c42006-03-27 01:18:13 -08007565 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10007566 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07007567 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08007568
NeilBrown29269552006-03-27 01:18:10 -08007569 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7570 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
NeilBrownea358cd2015-06-12 20:05:04 +10007571 clear_bit(MD_RECOVERY_DONE, &mddev->recovery);
NeilBrown29269552006-03-27 01:18:10 -08007572 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7573 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7574 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007575 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08007576 if (!mddev->sync_thread) {
7577 mddev->recovery = 0;
7578 spin_lock_irq(&conf->device_lock);
NeilBrownba8805b2013-11-14 15:16:15 +11007579 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007580 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownba8805b2013-11-14 15:16:15 +11007581 mddev->new_chunk_sectors =
7582 conf->chunk_sectors = conf->prev_chunk_sectors;
7583 mddev->new_layout = conf->algorithm = conf->prev_algo;
NeilBrown05616be2012-05-21 09:27:00 +10007584 rdev_for_each(rdev, mddev)
7585 rdev->new_data_offset = rdev->data_offset;
7586 smp_wmb();
NeilBrownba8805b2013-11-14 15:16:15 +11007587 conf->generation --;
NeilBrownfef9c612009-03-31 15:16:46 +11007588 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11007589 mddev->reshape_position = MaxSector;
NeilBrownba8805b2013-11-14 15:16:15 +11007590 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007591 spin_unlock_irq(&conf->device_lock);
7592 return -EAGAIN;
7593 }
NeilBrownc8f517c2009-03-31 15:28:40 +11007594 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08007595 md_wakeup_thread(mddev->sync_thread);
7596 md_new_event(mddev);
7597 return 0;
7598}
NeilBrown29269552006-03-27 01:18:10 -08007599
NeilBrownec32a2b2009-03-31 15:17:38 +11007600/* This is called from the reshape thread and should make any
7601 * changes needed in 'conf'
7602 */
NeilBrownd1688a62011-10-11 16:49:52 +11007603static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08007604{
NeilBrown29269552006-03-27 01:18:10 -08007605
NeilBrownf6705572006-03-27 01:18:11 -08007606 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10007607 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07007608
NeilBrownf6705572006-03-27 01:18:11 -08007609 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11007610 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10007611 rdev_for_each(rdev, conf->mddev)
7612 rdev->data_offset = rdev->new_data_offset;
7613 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11007614 conf->reshape_progress = MaxSector;
NeilBrown6cbd8142015-07-24 13:30:32 +10007615 conf->mddev->reshape_position = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08007616 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11007617 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07007618
7619 /* read-ahead size must cover two whole stripes, which is
7620 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
7621 */
NeilBrown4a5add42010-06-01 19:37:28 +10007622 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11007623 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007624 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11007625 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07007626 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
7627 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
7628 }
NeilBrown29269552006-03-27 01:18:10 -08007629 }
NeilBrown29269552006-03-27 01:18:10 -08007630}
7631
NeilBrownec32a2b2009-03-31 15:17:38 +11007632/* This is called from the raid5d thread with mddev_lock held.
7633 * It makes config changes to the device.
7634 */
NeilBrownfd01b882011-10-11 16:47:53 +11007635static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11007636{
NeilBrownd1688a62011-10-11 16:49:52 +11007637 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11007638
7639 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
7640
NeilBrownec32a2b2009-03-31 15:17:38 +11007641 if (mddev->delta_disks > 0) {
7642 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
Heinz Mauelshagenfe67d192016-05-03 22:15:31 +02007643 if (mddev->queue) {
7644 set_capacity(mddev->gendisk, mddev->array_sectors);
7645 revalidate_disk(mddev->gendisk);
7646 }
NeilBrownec32a2b2009-03-31 15:17:38 +11007647 } else {
7648 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11007649 spin_lock_irq(&conf->device_lock);
7650 mddev->degraded = calc_degraded(conf);
7651 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11007652 for (d = conf->raid_disks ;
7653 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10007654 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11007655 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10007656 if (rdev)
7657 clear_bit(In_sync, &rdev->flags);
7658 rdev = conf->disks[d].replacement;
7659 if (rdev)
7660 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10007661 }
NeilBrowncea9c222009-03-31 15:15:05 +11007662 }
NeilBrown88ce4932009-03-31 15:24:23 +11007663 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007664 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11007665 mddev->reshape_position = MaxSector;
7666 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10007667 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11007668 }
7669}
7670
NeilBrownfd01b882011-10-11 16:47:53 +11007671static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07007672{
NeilBrownd1688a62011-10-11 16:49:52 +11007673 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07007674
7675 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08007676 case 2: /* resume for a suspend */
7677 wake_up(&conf->wait_for_overlap);
7678 break;
7679
NeilBrown72626682005-09-09 16:23:54 -07007680 case 1: /* stop all writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007681 lock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007682 /* '2' tells resync/reshape to pause so that all
7683 * active stripes can drain
7684 */
Song Liua39f7af2016-11-17 15:24:40 -08007685 r5c_flush_cache(conf, INT_MAX);
NeilBrown64bd6602009-08-03 10:59:58 +10007686 conf->quiesce = 2;
Yuanhan Liub1b46482015-05-08 18:19:06 +10007687 wait_event_cmd(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08007688 atomic_read(&conf->active_stripes) == 0 &&
7689 atomic_read(&conf->active_aligned_reads) == 0,
Shaohua Li566c09c2013-11-14 15:16:17 +11007690 unlock_all_device_hash_locks_irq(conf),
7691 lock_all_device_hash_locks_irq(conf));
NeilBrown64bd6602009-08-03 10:59:58 +10007692 conf->quiesce = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11007693 unlock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007694 /* allow reshape to continue */
7695 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07007696 break;
7697
7698 case 0: /* re-enable writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007699 lock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007700 conf->quiesce = 0;
Yuanhan Liub1b46482015-05-08 18:19:06 +10007701 wake_up(&conf->wait_for_quiescent);
NeilBrowne464eaf2006-03-27 01:18:14 -08007702 wake_up(&conf->wait_for_overlap);
Shaohua Li566c09c2013-11-14 15:16:17 +11007703 unlock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007704 break;
7705 }
Shaohua Lie6c033f2015-10-04 09:20:12 -07007706 r5l_quiesce(conf->log, state);
NeilBrown72626682005-09-09 16:23:54 -07007707}
NeilBrownb15c2e52006-01-06 00:20:16 -08007708
NeilBrownfd01b882011-10-11 16:47:53 +11007709static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11007710{
NeilBrowne373ab12011-10-11 16:48:59 +11007711 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07007712 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11007713
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007714 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11007715 if (raid0_conf->nr_strip_zones > 1) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007716 pr_warn("md/raid:%s: cannot takeover raid0 with more than one zone.\n",
7717 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007718 return ERR_PTR(-EINVAL);
7719 }
7720
NeilBrowne373ab12011-10-11 16:48:59 +11007721 sectors = raid0_conf->strip_zone[0].zone_end;
7722 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10007723 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007724 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11007725 mddev->new_layout = ALGORITHM_PARITY_N;
7726 mddev->new_chunk_sectors = mddev->chunk_sectors;
7727 mddev->raid_disks += 1;
7728 mddev->delta_disks = 1;
7729 /* make sure it will be not marked as dirty */
7730 mddev->recovery_cp = MaxSector;
7731
7732 return setup_conf(mddev);
7733}
7734
NeilBrownfd01b882011-10-11 16:47:53 +11007735static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007736{
7737 int chunksect;
7738
7739 if (mddev->raid_disks != 2 ||
7740 mddev->degraded > 1)
7741 return ERR_PTR(-EINVAL);
7742
7743 /* Should check if there are write-behind devices? */
7744
7745 chunksect = 64*2; /* 64K by default */
7746
7747 /* The array must be an exact multiple of chunksize */
7748 while (chunksect && (mddev->array_sectors & (chunksect-1)))
7749 chunksect >>= 1;
7750
7751 if ((chunksect<<9) < STRIPE_SIZE)
7752 /* array size does not allow a suitable chunk size */
7753 return ERR_PTR(-EINVAL);
7754
7755 mddev->new_level = 5;
7756 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10007757 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11007758
7759 return setup_conf(mddev);
7760}
7761
NeilBrownfd01b882011-10-11 16:47:53 +11007762static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11007763{
7764 int new_layout;
7765
7766 switch (mddev->layout) {
7767 case ALGORITHM_LEFT_ASYMMETRIC_6:
7768 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
7769 break;
7770 case ALGORITHM_RIGHT_ASYMMETRIC_6:
7771 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
7772 break;
7773 case ALGORITHM_LEFT_SYMMETRIC_6:
7774 new_layout = ALGORITHM_LEFT_SYMMETRIC;
7775 break;
7776 case ALGORITHM_RIGHT_SYMMETRIC_6:
7777 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
7778 break;
7779 case ALGORITHM_PARITY_0_6:
7780 new_layout = ALGORITHM_PARITY_0;
7781 break;
7782 case ALGORITHM_PARITY_N:
7783 new_layout = ALGORITHM_PARITY_N;
7784 break;
7785 default:
7786 return ERR_PTR(-EINVAL);
7787 }
7788 mddev->new_level = 5;
7789 mddev->new_layout = new_layout;
7790 mddev->delta_disks = -1;
7791 mddev->raid_disks -= 1;
7792 return setup_conf(mddev);
7793}
7794
NeilBrownfd01b882011-10-11 16:47:53 +11007795static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11007796{
NeilBrown88ce4932009-03-31 15:24:23 +11007797 /* For a 2-drive array, the layout and chunk size can be changed
7798 * immediately as not restriping is needed.
7799 * For larger arrays we record the new value - after validation
7800 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11007801 */
NeilBrownd1688a62011-10-11 16:49:52 +11007802 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10007803 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11007804
NeilBrown597a7112009-06-18 08:47:42 +10007805 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11007806 return -EINVAL;
7807 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007808 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11007809 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007810 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11007811 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007812 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11007813 /* not factor of array size */
7814 return -EINVAL;
7815 }
7816
7817 /* They look valid */
7818
NeilBrown88ce4932009-03-31 15:24:23 +11007819 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10007820 /* can make the change immediately */
7821 if (mddev->new_layout >= 0) {
7822 conf->algorithm = mddev->new_layout;
7823 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11007824 }
7825 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10007826 conf->chunk_sectors = new_chunk ;
7827 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11007828 }
7829 set_bit(MD_CHANGE_DEVS, &mddev->flags);
7830 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11007831 }
NeilBrown50ac1682009-06-18 08:47:55 +10007832 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11007833}
7834
NeilBrownfd01b882011-10-11 16:47:53 +11007835static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11007836{
NeilBrown597a7112009-06-18 08:47:42 +10007837 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10007838
NeilBrown597a7112009-06-18 08:47:42 +10007839 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11007840 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007841 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007842 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11007843 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007844 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11007845 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007846 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11007847 /* not factor of array size */
7848 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007849 }
NeilBrown88ce4932009-03-31 15:24:23 +11007850
7851 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10007852 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11007853}
7854
NeilBrownfd01b882011-10-11 16:47:53 +11007855static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007856{
7857 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007858 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007859 * raid1 - if there are two drives. We need to know the chunk size
7860 * raid4 - trivial - just use a raid4 layout.
7861 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007862 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007863 if (mddev->level == 0)
7864 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11007865 if (mddev->level == 1)
7866 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11007867 if (mddev->level == 4) {
7868 mddev->new_layout = ALGORITHM_PARITY_N;
7869 mddev->new_level = 5;
7870 return setup_conf(mddev);
7871 }
NeilBrownfc9739c2009-03-31 14:57:20 +11007872 if (mddev->level == 6)
7873 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11007874
7875 return ERR_PTR(-EINVAL);
7876}
7877
NeilBrownfd01b882011-10-11 16:47:53 +11007878static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11007879{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007880 /* raid4 can take over:
7881 * raid0 - if there is only one strip zone
7882 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11007883 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007884 if (mddev->level == 0)
7885 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11007886 if (mddev->level == 5 &&
7887 mddev->layout == ALGORITHM_PARITY_N) {
7888 mddev->new_layout = 0;
7889 mddev->new_level = 4;
7890 return setup_conf(mddev);
7891 }
7892 return ERR_PTR(-EINVAL);
7893}
NeilBrownd562b0c2009-03-31 14:39:39 +11007894
NeilBrown84fc4b52011-10-11 16:49:58 +11007895static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11007896
NeilBrownfd01b882011-10-11 16:47:53 +11007897static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11007898{
7899 /* Currently can only take over a raid5. We map the
7900 * personality to an equivalent raid6 personality
7901 * with the Q block at the end.
7902 */
7903 int new_layout;
7904
7905 if (mddev->pers != &raid5_personality)
7906 return ERR_PTR(-EINVAL);
7907 if (mddev->degraded > 1)
7908 return ERR_PTR(-EINVAL);
7909 if (mddev->raid_disks > 253)
7910 return ERR_PTR(-EINVAL);
7911 if (mddev->raid_disks < 3)
7912 return ERR_PTR(-EINVAL);
7913
7914 switch (mddev->layout) {
7915 case ALGORITHM_LEFT_ASYMMETRIC:
7916 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
7917 break;
7918 case ALGORITHM_RIGHT_ASYMMETRIC:
7919 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
7920 break;
7921 case ALGORITHM_LEFT_SYMMETRIC:
7922 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
7923 break;
7924 case ALGORITHM_RIGHT_SYMMETRIC:
7925 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
7926 break;
7927 case ALGORITHM_PARITY_0:
7928 new_layout = ALGORITHM_PARITY_0_6;
7929 break;
7930 case ALGORITHM_PARITY_N:
7931 new_layout = ALGORITHM_PARITY_N;
7932 break;
7933 default:
7934 return ERR_PTR(-EINVAL);
7935 }
7936 mddev->new_level = 6;
7937 mddev->new_layout = new_layout;
7938 mddev->delta_disks = 1;
7939 mddev->raid_disks += 1;
7940 return setup_conf(mddev);
7941}
7942
NeilBrown84fc4b52011-10-11 16:49:58 +11007943static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07007944{
7945 .name = "raid6",
7946 .level = 6,
7947 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08007948 .make_request = raid5_make_request,
7949 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11007950 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08007951 .status = raid5_status,
7952 .error_handler = raid5_error,
NeilBrown16a53ec2006-06-26 00:27:38 -07007953 .hot_add_disk = raid5_add_disk,
7954 .hot_remove_disk= raid5_remove_disk,
7955 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08007956 .sync_request = raid5_sync_request,
NeilBrown16a53ec2006-06-26 00:27:38 -07007957 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007958 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10007959 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08007960 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007961 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07007962 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11007963 .takeover = raid6_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007964 .congested = raid5_congested,
NeilBrown16a53ec2006-06-26 00:27:38 -07007965};
NeilBrown84fc4b52011-10-11 16:49:58 +11007966static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007967{
7968 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08007969 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007970 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08007971 .make_request = raid5_make_request,
7972 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11007973 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08007974 .status = raid5_status,
7975 .error_handler = raid5_error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976 .hot_add_disk = raid5_add_disk,
7977 .hot_remove_disk= raid5_remove_disk,
7978 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08007979 .sync_request = raid5_sync_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07007981 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08007982 .check_reshape = raid5_check_reshape,
7983 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11007984 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07007985 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11007986 .takeover = raid5_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11007987 .congested = raid5_congested,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007988};
7989
NeilBrown84fc4b52011-10-11 16:49:58 +11007990static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991{
NeilBrown2604b702006-01-06 00:20:36 -08007992 .name = "raid4",
7993 .level = 4,
7994 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08007995 .make_request = raid5_make_request,
7996 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11007997 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08007998 .status = raid5_status,
7999 .error_handler = raid5_error,
NeilBrown2604b702006-01-06 00:20:36 -08008000 .hot_add_disk = raid5_add_disk,
8001 .hot_remove_disk= raid5_remove_disk,
8002 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008003 .sync_request = raid5_sync_request,
NeilBrown2604b702006-01-06 00:20:36 -08008004 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008005 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08008006 .check_reshape = raid5_check_reshape,
8007 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008008 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08008009 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11008010 .takeover = raid4_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008011 .congested = raid5_congested,
NeilBrown2604b702006-01-06 00:20:36 -08008012};
8013
8014static int __init raid5_init(void)
8015{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008016 int ret;
8017
Shaohua Li851c30c2013-08-28 14:30:16 +08008018 raid5_wq = alloc_workqueue("raid5wq",
8019 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
8020 if (!raid5_wq)
8021 return -ENOMEM;
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008022
8023 ret = cpuhp_setup_state_multi(CPUHP_MD_RAID5_PREPARE,
8024 "md/raid5:prepare",
8025 raid456_cpu_up_prepare,
8026 raid456_cpu_dead);
8027 if (ret) {
8028 destroy_workqueue(raid5_wq);
8029 return ret;
8030 }
NeilBrown16a53ec2006-06-26 00:27:38 -07008031 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008032 register_md_personality(&raid5_personality);
8033 register_md_personality(&raid4_personality);
8034 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008035}
8036
NeilBrown2604b702006-01-06 00:20:36 -08008037static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038{
NeilBrown16a53ec2006-06-26 00:27:38 -07008039 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008040 unregister_md_personality(&raid5_personality);
8041 unregister_md_personality(&raid4_personality);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008042 cpuhp_remove_multi_state(CPUHP_MD_RAID5_PREPARE);
Shaohua Li851c30c2013-08-28 14:30:16 +08008043 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008044}
8045
8046module_init(raid5_init);
8047module_exit(raid5_exit);
8048MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11008049MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08008051MODULE_ALIAS("md-raid5");
8052MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08008053MODULE_ALIAS("md-level-5");
8054MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07008055MODULE_ALIAS("md-personality-8"); /* RAID6 */
8056MODULE_ALIAS("md-raid6");
8057MODULE_ALIAS("md-level-6");
8058
8059/* This used to be two separate modules, they were: */
8060MODULE_ALIAS("raid5");
8061MODULE_ALIAS("raid6");