blob: 06d7279bdd048e66369961194bc1d21567a08446 [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 */
Song Liud7bd3982016-11-23 22:50:39 -0800879 if (s->waiting_extra_page)
880 return;
Song Liu1e6d6902016-11-17 15:24:39 -0800881 if (r5l_write_stripe(conf->log, sh) == 0)
882 return;
883 } else { /* caching phase */
884 if (test_bit(STRIPE_LOG_TRAPPED, &sh->state)) {
885 r5c_cache_data(conf->log, sh, s);
886 return;
887 }
888 }
889
Dan Williams91c00922007-01-02 13:52:30 -0700890 for (i = disks; i--; ) {
Mike Christie796a5cf2016-06-05 14:32:07 -0500891 int op, op_flags = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +1100892 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +1100893 struct bio *bi, *rbi;
894 struct md_rdev *rdev, *rrdev = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100895
896 sh = head_sh;
Tejun Heoe9c74692010-09-03 11:56:18 +0200897 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -0500898 op = REQ_OP_WRITE;
Tejun Heoe9c74692010-09-03 11:56:18 +0200899 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600900 op_flags = REQ_FUA;
Shaohua Li9e4447682012-10-11 13:49:49 +1100901 if (test_bit(R5_Discard, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500902 op = REQ_OP_DISCARD;
Tejun Heoe9c74692010-09-03 11:56:18 +0200903 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500904 op = REQ_OP_READ;
NeilBrown9a3e1102011-12-23 10:17:53 +1100905 else if (test_and_clear_bit(R5_WantReplace,
906 &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -0500907 op = REQ_OP_WRITE;
NeilBrown9a3e1102011-12-23 10:17:53 +1100908 replace_only = 1;
909 } else
Dan Williams91c00922007-01-02 13:52:30 -0700910 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +1000911 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500912 op_flags |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -0700913
shli@kernel.org59fc6302014-12-15 12:57:03 +1100914again:
Dan Williams91c00922007-01-02 13:52:30 -0700915 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +1100916 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -0700917
Dan Williams91c00922007-01-02 13:52:30 -0700918 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +1100919 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +1100920 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
921 rdev = rcu_dereference(conf->disks[i].rdev);
922 if (!rdev) {
923 rdev = rrdev;
924 rrdev = NULL;
925 }
Mike Christie796a5cf2016-06-05 14:32:07 -0500926 if (op_is_write(op)) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100927 if (replace_only)
928 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +1100929 if (rdev == rrdev)
930 /* We raced and saw duplicates */
931 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +1100932 } else {
shli@kernel.org59fc6302014-12-15 12:57:03 +1100933 if (test_bit(R5_ReadRepl, &head_sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +1100934 rdev = rrdev;
935 rrdev = NULL;
936 }
NeilBrown977df362011-12-23 10:17:53 +1100937
Dan Williams91c00922007-01-02 13:52:30 -0700938 if (rdev && test_bit(Faulty, &rdev->flags))
939 rdev = NULL;
940 if (rdev)
941 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +1100942 if (rrdev && test_bit(Faulty, &rrdev->flags))
943 rrdev = NULL;
944 if (rrdev)
945 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -0700946 rcu_read_unlock();
947
NeilBrown73e92e52011-07-28 11:39:22 +1000948 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +1100949 * need to check for writes. We never accept write errors
950 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +1000951 */
Mike Christie796a5cf2016-06-05 14:32:07 -0500952 while (op_is_write(op) && rdev &&
NeilBrown73e92e52011-07-28 11:39:22 +1000953 test_bit(WriteErrorSeen, &rdev->flags)) {
954 sector_t first_bad;
955 int bad_sectors;
956 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
957 &first_bad, &bad_sectors);
958 if (!bad)
959 break;
960
961 if (bad < 0) {
962 set_bit(BlockedBadBlocks, &rdev->flags);
963 if (!conf->mddev->external &&
Shaohua Li29530792016-12-08 15:48:19 -0800964 conf->mddev->sb_flags) {
NeilBrown73e92e52011-07-28 11:39:22 +1000965 /* It is very unlikely, but we might
966 * still need to write out the
967 * bad block log - better give it
968 * a chance*/
969 md_check_recovery(conf->mddev);
970 }
majianpeng18507532012-07-03 12:11:54 +1000971 /*
972 * Because md_wait_for_blocked_rdev
973 * will dec nr_pending, we must
974 * increment it first.
975 */
976 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +1000977 md_wait_for_blocked_rdev(rdev, conf->mddev);
978 } else {
979 /* Acknowledged bad block - skip the write */
980 rdev_dec_pending(rdev, conf->mddev);
981 rdev = NULL;
982 }
983 }
984
Dan Williams91c00922007-01-02 13:52:30 -0700985 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100986 if (s->syncing || s->expanding || s->expanded
987 || s->replacing)
Dan Williams91c00922007-01-02 13:52:30 -0700988 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
989
Dan Williams2b7497f2008-06-28 08:31:52 +1000990 set_bit(STRIPE_IO_STARTED, &sh->state);
991
Dan Williams91c00922007-01-02 13:52:30 -0700992 bi->bi_bdev = rdev->bdev;
Mike Christie796a5cf2016-06-05 14:32:07 -0500993 bio_set_op_attrs(bi, op, op_flags);
994 bi->bi_end_io = op_is_write(op)
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700995 ? raid5_end_write_request
996 : raid5_end_read_request;
997 bi->bi_private = sh;
998
Mike Christie6296b962016-06-05 14:32:21 -0500999 pr_debug("%s: for %llu schedule op %d on disc %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001000 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -06001001 bi->bi_opf, i);
Dan Williams91c00922007-01-02 13:52:30 -07001002 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001003 if (sh != head_sh)
1004 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001005 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001006 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001007 + rdev->new_data_offset);
1008 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001009 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001010 + rdev->data_offset);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001011 if (test_bit(R5_ReadNoMerge, &head_sh->dev[i].flags))
Jens Axboe1eff9d32016-08-05 15:35:16 -06001012 bi->bi_opf |= REQ_NOMERGE;
majianpeng3f9e7c12012-07-31 10:04:21 +10001013
Shaohua Lid592a992014-05-21 17:57:44 +08001014 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1015 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1016 sh->dev[i].vec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001017 bi->bi_vcnt = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001018 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1019 bi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001020 bi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001021 /*
1022 * If this is discard request, set bi_vcnt 0. We don't
1023 * want to confuse SCSI because SCSI will replace payload
1024 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001025 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001026 bi->bi_vcnt = 0;
NeilBrown977df362011-12-23 10:17:53 +11001027 if (rrdev)
1028 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001029
1030 if (conf->mddev->gendisk)
1031 trace_block_bio_remap(bdev_get_queue(bi->bi_bdev),
1032 bi, disk_devt(conf->mddev->gendisk),
1033 sh->dev[i].sector);
Dan Williams91c00922007-01-02 13:52:30 -07001034 generic_make_request(bi);
NeilBrown977df362011-12-23 10:17:53 +11001035 }
1036 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001037 if (s->syncing || s->expanding || s->expanded
1038 || s->replacing)
NeilBrown977df362011-12-23 10:17:53 +11001039 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
1040
1041 set_bit(STRIPE_IO_STARTED, &sh->state);
1042
1043 rbi->bi_bdev = rrdev->bdev;
Mike Christie796a5cf2016-06-05 14:32:07 -05001044 bio_set_op_attrs(rbi, op, op_flags);
1045 BUG_ON(!op_is_write(op));
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001046 rbi->bi_end_io = raid5_end_write_request;
1047 rbi->bi_private = sh;
1048
Mike Christie6296b962016-06-05 14:32:21 -05001049 pr_debug("%s: for %llu schedule op %d on "
NeilBrown977df362011-12-23 10:17:53 +11001050 "replacement disc %d\n",
1051 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -06001052 rbi->bi_opf, i);
NeilBrown977df362011-12-23 10:17:53 +11001053 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001054 if (sh != head_sh)
1055 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001056 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001057 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001058 + rrdev->new_data_offset);
1059 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001060 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001061 + rrdev->data_offset);
Shaohua Lid592a992014-05-21 17:57:44 +08001062 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1063 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1064 sh->dev[i].rvec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001065 rbi->bi_vcnt = 1;
NeilBrown977df362011-12-23 10:17:53 +11001066 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1067 rbi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001068 rbi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001069 /*
1070 * If this is discard request, set bi_vcnt 0. We don't
1071 * want to confuse SCSI because SCSI will replace payload
1072 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001073 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001074 rbi->bi_vcnt = 0;
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001075 if (conf->mddev->gendisk)
1076 trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev),
1077 rbi, disk_devt(conf->mddev->gendisk),
1078 sh->dev[i].sector);
NeilBrown977df362011-12-23 10:17:53 +11001079 generic_make_request(rbi);
1080 }
1081 if (!rdev && !rrdev) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001082 if (op_is_write(op))
Dan Williams91c00922007-01-02 13:52:30 -07001083 set_bit(STRIPE_DEGRADED, &sh->state);
Mike Christie6296b962016-06-05 14:32:21 -05001084 pr_debug("skip op %d on disc %d for sector %llu\n",
Jens Axboe1eff9d32016-08-05 15:35:16 -06001085 bi->bi_opf, i, (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001086 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1087 set_bit(STRIPE_HANDLE, &sh->state);
1088 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001089
1090 if (!head_sh->batch_head)
1091 continue;
1092 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1093 batch_list);
1094 if (sh != head_sh)
1095 goto again;
Dan Williams91c00922007-01-02 13:52:30 -07001096 }
1097}
1098
1099static struct dma_async_tx_descriptor *
Shaohua Lid592a992014-05-21 17:57:44 +08001100async_copy_data(int frombio, struct bio *bio, struct page **page,
1101 sector_t sector, struct dma_async_tx_descriptor *tx,
Song Liu1e6d6902016-11-17 15:24:39 -08001102 struct stripe_head *sh, int no_skipcopy)
Dan Williams91c00922007-01-02 13:52:30 -07001103{
Kent Overstreet79886132013-11-23 17:19:00 -08001104 struct bio_vec bvl;
1105 struct bvec_iter iter;
Dan Williams91c00922007-01-02 13:52:30 -07001106 struct page *bio_page;
Dan Williams91c00922007-01-02 13:52:30 -07001107 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -07001108 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -07001109 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001110
Kent Overstreet4f024f32013-10-11 15:44:27 -07001111 if (bio->bi_iter.bi_sector >= sector)
1112 page_offset = (signed)(bio->bi_iter.bi_sector - sector) * 512;
Dan Williams91c00922007-01-02 13:52:30 -07001113 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001114 page_offset = (signed)(sector - bio->bi_iter.bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -07001115
Dan Williams0403e382009-09-08 17:42:50 -07001116 if (frombio)
1117 flags |= ASYNC_TX_FENCE;
1118 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
1119
Kent Overstreet79886132013-11-23 17:19:00 -08001120 bio_for_each_segment(bvl, bio, iter) {
1121 int len = bvl.bv_len;
Dan Williams91c00922007-01-02 13:52:30 -07001122 int clen;
1123 int b_offset = 0;
1124
1125 if (page_offset < 0) {
1126 b_offset = -page_offset;
1127 page_offset += b_offset;
1128 len -= b_offset;
1129 }
1130
1131 if (len > 0 && page_offset + len > STRIPE_SIZE)
1132 clen = STRIPE_SIZE - page_offset;
1133 else
1134 clen = len;
1135
1136 if (clen > 0) {
Kent Overstreet79886132013-11-23 17:19:00 -08001137 b_offset += bvl.bv_offset;
1138 bio_page = bvl.bv_page;
Shaohua Lid592a992014-05-21 17:57:44 +08001139 if (frombio) {
1140 if (sh->raid_conf->skip_copy &&
1141 b_offset == 0 && page_offset == 0 &&
Song Liu1e6d6902016-11-17 15:24:39 -08001142 clen == STRIPE_SIZE &&
1143 !no_skipcopy)
Shaohua Lid592a992014-05-21 17:57:44 +08001144 *page = bio_page;
1145 else
1146 tx = async_memcpy(*page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001147 b_offset, clen, &submit);
Shaohua Lid592a992014-05-21 17:57:44 +08001148 } else
1149 tx = async_memcpy(bio_page, *page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001150 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001151 }
Dan Williamsa08abd82009-06-03 11:43:59 -07001152 /* chain the operations */
1153 submit.depend_tx = tx;
1154
Dan Williams91c00922007-01-02 13:52:30 -07001155 if (clen < len) /* hit end of page */
1156 break;
1157 page_offset += len;
1158 }
1159
1160 return tx;
1161}
1162
1163static void ops_complete_biofill(void *stripe_head_ref)
1164{
1165 struct stripe_head *sh = stripe_head_ref;
NeilBrown34a6f802015-08-14 12:07:57 +10001166 struct bio_list return_bi = BIO_EMPTY_LIST;
Dan Williamse4d84902007-09-24 10:06:13 -07001167 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001168
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001169 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001170 (unsigned long long)sh->sector);
1171
1172 /* clear completed biofills */
1173 for (i = sh->disks; i--; ) {
1174 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -07001175
1176 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -07001177 /* and check if we need to reply to a read request,
1178 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +10001179 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -07001180 */
1181 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001182 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -07001183
Dan Williams91c00922007-01-02 13:52:30 -07001184 BUG_ON(!dev->read);
1185 rbi = dev->read;
1186 dev->read = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001187 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001188 dev->sector + STRIPE_SECTORS) {
1189 rbi2 = r5_next_bio(rbi, dev->sector);
NeilBrown34a6f802015-08-14 12:07:57 +10001190 if (!raid5_dec_bi_active_stripes(rbi))
1191 bio_list_add(&return_bi, rbi);
Dan Williams91c00922007-01-02 13:52:30 -07001192 rbi = rbi2;
1193 }
1194 }
1195 }
Dan Williams83de75c2008-06-28 08:31:58 +10001196 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001197
NeilBrown34a6f802015-08-14 12:07:57 +10001198 return_io(&return_bi);
Dan Williams91c00922007-01-02 13:52:30 -07001199
Dan Williamse4d84902007-09-24 10:06:13 -07001200 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001201 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001202}
1203
1204static void ops_run_biofill(struct stripe_head *sh)
1205{
1206 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -07001207 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001208 int i;
1209
shli@kernel.org59fc6302014-12-15 12:57:03 +11001210 BUG_ON(sh->batch_head);
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001211 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001212 (unsigned long long)sh->sector);
1213
1214 for (i = sh->disks; i--; ) {
1215 struct r5dev *dev = &sh->dev[i];
1216 if (test_bit(R5_Wantfill, &dev->flags)) {
1217 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +10001218 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001219 dev->read = rbi = dev->toread;
1220 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10001221 spin_unlock_irq(&sh->stripe_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001222 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001223 dev->sector + STRIPE_SECTORS) {
Shaohua Lid592a992014-05-21 17:57:44 +08001224 tx = async_copy_data(0, rbi, &dev->page,
Song Liu1e6d6902016-11-17 15:24:39 -08001225 dev->sector, tx, sh, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001226 rbi = r5_next_bio(rbi, dev->sector);
1227 }
1228 }
1229 }
1230
1231 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001232 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
1233 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001234}
1235
Dan Williams4e7d2c02009-08-29 19:13:11 -07001236static void mark_target_uptodate(struct stripe_head *sh, int target)
1237{
1238 struct r5dev *tgt;
1239
1240 if (target < 0)
1241 return;
1242
1243 tgt = &sh->dev[target];
1244 set_bit(R5_UPTODATE, &tgt->flags);
1245 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1246 clear_bit(R5_Wantcompute, &tgt->flags);
1247}
1248
Dan Williamsac6b53b2009-07-14 13:40:19 -07001249static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001250{
1251 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001252
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001253 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001254 (unsigned long long)sh->sector);
1255
Dan Williamsac6b53b2009-07-14 13:40:19 -07001256 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -07001257 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001258 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -07001259
Dan Williamsecc65c92008-06-28 08:31:57 +10001260 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
1261 if (sh->check_state == check_state_compute_run)
1262 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -07001263 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001264 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001265}
1266
Dan Williamsd6f38f32009-07-14 11:50:52 -07001267/* return a pointer to the address conversion region of the scribble buffer */
1268static addr_conv_t *to_addr_conv(struct stripe_head *sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001269 struct raid5_percpu *percpu, int i)
Dan Williams91c00922007-01-02 13:52:30 -07001270{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001271 void *addr;
1272
1273 addr = flex_array_get(percpu->scribble, i);
1274 return addr + sizeof(struct page *) * (sh->disks + 2);
1275}
1276
1277/* return a pointer to the address conversion region of the scribble buffer */
1278static struct page **to_addr_page(struct raid5_percpu *percpu, int i)
1279{
1280 void *addr;
1281
1282 addr = flex_array_get(percpu->scribble, i);
1283 return addr;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001284}
1285
1286static struct dma_async_tx_descriptor *
1287ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
1288{
Dan Williams91c00922007-01-02 13:52:30 -07001289 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001290 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001291 int target = sh->ops.target;
1292 struct r5dev *tgt = &sh->dev[target];
1293 struct page *xor_dest = tgt->page;
1294 int count = 0;
1295 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001296 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001297 int i;
1298
shli@kernel.org59fc6302014-12-15 12:57:03 +11001299 BUG_ON(sh->batch_head);
1300
Dan Williams91c00922007-01-02 13:52:30 -07001301 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001302 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -07001303 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1304
1305 for (i = disks; i--; )
1306 if (i != target)
1307 xor_srcs[count++] = sh->dev[i].page;
1308
1309 atomic_inc(&sh->count);
1310
Dan Williams0403e382009-09-08 17:42:50 -07001311 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001312 ops_complete_compute, sh, to_addr_conv(sh, percpu, 0));
Dan Williams91c00922007-01-02 13:52:30 -07001313 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -07001314 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001315 else
Dan Williamsa08abd82009-06-03 11:43:59 -07001316 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001317
Dan Williams91c00922007-01-02 13:52:30 -07001318 return tx;
1319}
1320
Dan Williamsac6b53b2009-07-14 13:40:19 -07001321/* set_syndrome_sources - populate source buffers for gen_syndrome
1322 * @srcs - (struct page *) array of size sh->disks
1323 * @sh - stripe_head to parse
1324 *
1325 * Populates srcs in proper layout order for the stripe and returns the
1326 * 'count' of sources to be used in a call to async_gen_syndrome. The P
1327 * destination buffer is recorded in srcs[count] and the Q destination
1328 * is recorded in srcs[count+1]].
1329 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001330static int set_syndrome_sources(struct page **srcs,
1331 struct stripe_head *sh,
1332 int srctype)
Dan Williamsac6b53b2009-07-14 13:40:19 -07001333{
1334 int disks = sh->disks;
1335 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1336 int d0_idx = raid6_d0(sh);
1337 int count;
1338 int i;
1339
1340 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001341 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001342
1343 count = 0;
1344 i = d0_idx;
1345 do {
1346 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001347 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001348
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001349 if (i == sh->qd_idx || i == sh->pd_idx ||
1350 (srctype == SYNDROME_SRC_ALL) ||
1351 (srctype == SYNDROME_SRC_WANT_DRAIN &&
Song Liu1e6d6902016-11-17 15:24:39 -08001352 (test_bit(R5_Wantdrain, &dev->flags) ||
1353 test_bit(R5_InJournal, &dev->flags))) ||
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001354 (srctype == SYNDROME_SRC_WRITTEN &&
Song Liu1e6d6902016-11-17 15:24:39 -08001355 dev->written)) {
1356 if (test_bit(R5_InJournal, &dev->flags))
1357 srcs[slot] = sh->dev[i].orig_page;
1358 else
1359 srcs[slot] = sh->dev[i].page;
1360 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001361 i = raid6_next_disk(i, disks);
1362 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001363
NeilBrowne4424fe2009-10-16 16:27:34 +11001364 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001365}
1366
1367static struct dma_async_tx_descriptor *
1368ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1369{
1370 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001371 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001372 int target;
1373 int qd_idx = sh->qd_idx;
1374 struct dma_async_tx_descriptor *tx;
1375 struct async_submit_ctl submit;
1376 struct r5dev *tgt;
1377 struct page *dest;
1378 int i;
1379 int count;
1380
shli@kernel.org59fc6302014-12-15 12:57:03 +11001381 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001382 if (sh->ops.target < 0)
1383 target = sh->ops.target2;
1384 else if (sh->ops.target2 < 0)
1385 target = sh->ops.target;
1386 else
1387 /* we should only have one valid target */
1388 BUG();
1389 BUG_ON(target < 0);
1390 pr_debug("%s: stripe %llu block: %d\n",
1391 __func__, (unsigned long long)sh->sector, target);
1392
1393 tgt = &sh->dev[target];
1394 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1395 dest = tgt->page;
1396
1397 atomic_inc(&sh->count);
1398
1399 if (target == qd_idx) {
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001400 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001401 blocks[count] = NULL; /* regenerating p is not necessary */
1402 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001403 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1404 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001405 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001406 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1407 } else {
1408 /* Compute any data- or p-drive using XOR */
1409 count = 0;
1410 for (i = disks; i-- ; ) {
1411 if (i == target || i == qd_idx)
1412 continue;
1413 blocks[count++] = sh->dev[i].page;
1414 }
1415
Dan Williams0403e382009-09-08 17:42:50 -07001416 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1417 NULL, ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001418 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001419 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1420 }
1421
1422 return tx;
1423}
1424
1425static struct dma_async_tx_descriptor *
1426ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1427{
1428 int i, count, disks = sh->disks;
1429 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1430 int d0_idx = raid6_d0(sh);
1431 int faila = -1, failb = -1;
1432 int target = sh->ops.target;
1433 int target2 = sh->ops.target2;
1434 struct r5dev *tgt = &sh->dev[target];
1435 struct r5dev *tgt2 = &sh->dev[target2];
1436 struct dma_async_tx_descriptor *tx;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001437 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001438 struct async_submit_ctl submit;
1439
shli@kernel.org59fc6302014-12-15 12:57:03 +11001440 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001441 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1442 __func__, (unsigned long long)sh->sector, target, target2);
1443 BUG_ON(target < 0 || target2 < 0);
1444 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1445 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1446
Dan Williams6c910a72009-09-16 12:24:54 -07001447 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001448 * slot number conversion for 'faila' and 'failb'
1449 */
1450 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001451 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001452 count = 0;
1453 i = d0_idx;
1454 do {
1455 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1456
1457 blocks[slot] = sh->dev[i].page;
1458
1459 if (i == target)
1460 faila = slot;
1461 if (i == target2)
1462 failb = slot;
1463 i = raid6_next_disk(i, disks);
1464 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001465
1466 BUG_ON(faila == failb);
1467 if (failb < faila)
1468 swap(faila, failb);
1469 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1470 __func__, (unsigned long long)sh->sector, faila, failb);
1471
1472 atomic_inc(&sh->count);
1473
1474 if (failb == syndrome_disks+1) {
1475 /* Q disk is one of the missing disks */
1476 if (faila == syndrome_disks) {
1477 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001478 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1479 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001480 to_addr_conv(sh, percpu, 0));
NeilBrowne4424fe2009-10-16 16:27:34 +11001481 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001482 STRIPE_SIZE, &submit);
1483 } else {
1484 struct page *dest;
1485 int data_target;
1486 int qd_idx = sh->qd_idx;
1487
1488 /* Missing D+Q: recompute D from P, then recompute Q */
1489 if (target == qd_idx)
1490 data_target = target2;
1491 else
1492 data_target = target;
1493
1494 count = 0;
1495 for (i = disks; i-- ; ) {
1496 if (i == data_target || i == qd_idx)
1497 continue;
1498 blocks[count++] = sh->dev[i].page;
1499 }
1500 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001501 init_async_submit(&submit,
1502 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1503 NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001504 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001505 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1506 &submit);
1507
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001508 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williams0403e382009-09-08 17:42:50 -07001509 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1510 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001511 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001512 return async_gen_syndrome(blocks, 0, count+2,
1513 STRIPE_SIZE, &submit);
1514 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001515 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001516 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1517 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001518 to_addr_conv(sh, percpu, 0));
Dan Williams6c910a72009-09-16 12:24:54 -07001519 if (failb == syndrome_disks) {
1520 /* We're missing D+P. */
1521 return async_raid6_datap_recov(syndrome_disks+2,
1522 STRIPE_SIZE, faila,
1523 blocks, &submit);
1524 } else {
1525 /* We're missing D+D. */
1526 return async_raid6_2data_recov(syndrome_disks+2,
1527 STRIPE_SIZE, faila, failb,
1528 blocks, &submit);
1529 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001530 }
1531}
1532
Dan Williams91c00922007-01-02 13:52:30 -07001533static void ops_complete_prexor(void *stripe_head_ref)
1534{
1535 struct stripe_head *sh = stripe_head_ref;
1536
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001537 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001538 (unsigned long long)sh->sector);
Song Liu1e6d6902016-11-17 15:24:39 -08001539
1540 if (r5c_is_writeback(sh->raid_conf->log))
1541 /*
1542 * raid5-cache write back uses orig_page during prexor.
1543 * After prexor, it is time to free orig_page
1544 */
1545 r5c_release_extra_page(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001546}
1547
1548static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001549ops_run_prexor5(struct stripe_head *sh, struct raid5_percpu *percpu,
1550 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001551{
Dan Williams91c00922007-01-02 13:52:30 -07001552 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001553 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001554 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001555 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001556
1557 /* existing parity data subtracted */
1558 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1559
shli@kernel.org59fc6302014-12-15 12:57:03 +11001560 BUG_ON(sh->batch_head);
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001561 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001562 (unsigned long long)sh->sector);
1563
1564 for (i = disks; i--; ) {
1565 struct r5dev *dev = &sh->dev[i];
1566 /* Only process blocks that are known to be uptodate */
Song Liu1e6d6902016-11-17 15:24:39 -08001567 if (test_bit(R5_InJournal, &dev->flags))
1568 xor_srcs[count++] = dev->orig_page;
1569 else if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001570 xor_srcs[count++] = dev->page;
1571 }
1572
Dan Williams0403e382009-09-08 17:42:50 -07001573 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001574 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Dan Williamsa08abd82009-06-03 11:43:59 -07001575 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001576
1577 return tx;
1578}
1579
1580static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001581ops_run_prexor6(struct stripe_head *sh, struct raid5_percpu *percpu,
1582 struct dma_async_tx_descriptor *tx)
1583{
1584 struct page **blocks = to_addr_page(percpu, 0);
1585 int count;
1586 struct async_submit_ctl submit;
1587
1588 pr_debug("%s: stripe %llu\n", __func__,
1589 (unsigned long long)sh->sector);
1590
1591 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_WANT_DRAIN);
1592
1593 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_PQ_XOR_DST, tx,
1594 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
1595 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1596
1597 return tx;
1598}
1599
1600static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001601ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001602{
Song Liu1e6d6902016-11-17 15:24:39 -08001603 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -07001604 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001605 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001606 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -07001607
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001608 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001609 (unsigned long long)sh->sector);
1610
1611 for (i = disks; i--; ) {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001612 struct r5dev *dev;
Dan Williams91c00922007-01-02 13:52:30 -07001613 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001614
shli@kernel.org59fc6302014-12-15 12:57:03 +11001615 sh = head_sh;
1616 if (test_and_clear_bit(R5_Wantdrain, &head_sh->dev[i].flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001617 struct bio *wbi;
1618
shli@kernel.org59fc6302014-12-15 12:57:03 +11001619again:
1620 dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08001621 /*
1622 * clear R5_InJournal, so when rewriting a page in
1623 * journal, it is not skipped by r5l_log_stripe()
1624 */
1625 clear_bit(R5_InJournal, &dev->flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10001626 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001627 chosen = dev->towrite;
1628 dev->towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11001629 sh->overwrite_disks = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001630 BUG_ON(dev->written);
1631 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001632 spin_unlock_irq(&sh->stripe_lock);
Shaohua Lid592a992014-05-21 17:57:44 +08001633 WARN_ON(dev->page != dev->orig_page);
Dan Williams91c00922007-01-02 13:52:30 -07001634
Kent Overstreet4f024f32013-10-11 15:44:27 -07001635 while (wbi && wbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001636 dev->sector + STRIPE_SECTORS) {
Jens Axboe1eff9d32016-08-05 15:35:16 -06001637 if (wbi->bi_opf & REQ_FUA)
Tejun Heoe9c74692010-09-03 11:56:18 +02001638 set_bit(R5_WantFUA, &dev->flags);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001639 if (wbi->bi_opf & REQ_SYNC)
Shaohua Libc0934f2012-05-22 13:55:05 +10001640 set_bit(R5_SyncIO, &dev->flags);
Mike Christie796a5cf2016-06-05 14:32:07 -05001641 if (bio_op(wbi) == REQ_OP_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001642 set_bit(R5_Discard, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08001643 else {
1644 tx = async_copy_data(1, wbi, &dev->page,
Song Liu1e6d6902016-11-17 15:24:39 -08001645 dev->sector, tx, sh,
1646 r5c_is_writeback(conf->log));
1647 if (dev->page != dev->orig_page &&
1648 !r5c_is_writeback(conf->log)) {
Shaohua Lid592a992014-05-21 17:57:44 +08001649 set_bit(R5_SkipCopy, &dev->flags);
1650 clear_bit(R5_UPTODATE, &dev->flags);
1651 clear_bit(R5_OVERWRITE, &dev->flags);
1652 }
1653 }
Dan Williams91c00922007-01-02 13:52:30 -07001654 wbi = r5_next_bio(wbi, dev->sector);
1655 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001656
1657 if (head_sh->batch_head) {
1658 sh = list_first_entry(&sh->batch_list,
1659 struct stripe_head,
1660 batch_list);
1661 if (sh == head_sh)
1662 continue;
1663 goto again;
1664 }
Dan Williams91c00922007-01-02 13:52:30 -07001665 }
1666 }
1667
1668 return tx;
1669}
1670
Dan Williamsac6b53b2009-07-14 13:40:19 -07001671static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001672{
1673 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001674 int disks = sh->disks;
1675 int pd_idx = sh->pd_idx;
1676 int qd_idx = sh->qd_idx;
1677 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001678 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001679
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001680 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001681 (unsigned long long)sh->sector);
1682
Shaohua Libc0934f2012-05-22 13:55:05 +10001683 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001684 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001685 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001686 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001687 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001688
Dan Williams91c00922007-01-02 13:52:30 -07001689 for (i = disks; i--; ) {
1690 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001691
Tejun Heoe9c74692010-09-03 11:56:18 +02001692 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Lid592a992014-05-21 17:57:44 +08001693 if (!discard && !test_bit(R5_SkipCopy, &dev->flags))
Shaohua Li9e4447682012-10-11 13:49:49 +11001694 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001695 if (fua)
1696 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001697 if (sync)
1698 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001699 }
Dan Williams91c00922007-01-02 13:52:30 -07001700 }
1701
Dan Williamsd8ee0722008-06-28 08:32:06 +10001702 if (sh->reconstruct_state == reconstruct_state_drain_run)
1703 sh->reconstruct_state = reconstruct_state_drain_result;
1704 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1705 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1706 else {
1707 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1708 sh->reconstruct_state = reconstruct_state_result;
1709 }
Dan Williams91c00922007-01-02 13:52:30 -07001710
1711 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001712 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001713}
1714
1715static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001716ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1717 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001718{
Dan Williams91c00922007-01-02 13:52:30 -07001719 int disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001720 struct page **xor_srcs;
Dan Williamsa08abd82009-06-03 11:43:59 -07001721 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001722 int count, pd_idx = sh->pd_idx, i;
Dan Williams91c00922007-01-02 13:52:30 -07001723 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001724 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001725 unsigned long flags;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001726 int j = 0;
1727 struct stripe_head *head_sh = sh;
1728 int last_stripe;
Dan Williams91c00922007-01-02 13:52:30 -07001729
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001730 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001731 (unsigned long long)sh->sector);
1732
Shaohua Li620125f2012-10-11 13:49:05 +11001733 for (i = 0; i < sh->disks; i++) {
1734 if (pd_idx == i)
1735 continue;
1736 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1737 break;
1738 }
1739 if (i >= sh->disks) {
1740 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001741 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1742 ops_complete_reconstruct(sh);
1743 return;
1744 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001745again:
1746 count = 0;
1747 xor_srcs = to_addr_page(percpu, j);
Dan Williams91c00922007-01-02 13:52:30 -07001748 /* check if prexor is active which means only process blocks
1749 * that are part of a read-modify-write (written)
1750 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001751 if (head_sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001752 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001753 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1754 for (i = disks; i--; ) {
1755 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08001756 if (head_sh->dev[i].written ||
1757 test_bit(R5_InJournal, &head_sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -07001758 xor_srcs[count++] = dev->page;
1759 }
1760 } else {
1761 xor_dest = sh->dev[pd_idx].page;
1762 for (i = disks; i--; ) {
1763 struct r5dev *dev = &sh->dev[i];
1764 if (i != pd_idx)
1765 xor_srcs[count++] = dev->page;
1766 }
1767 }
1768
Dan Williams91c00922007-01-02 13:52:30 -07001769 /* 1/ if we prexor'd then the dest is reused as a source
1770 * 2/ if we did not prexor then we are redoing the parity
1771 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1772 * for the synchronous xor case
1773 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001774 last_stripe = !head_sh->batch_head ||
1775 list_first_entry(&sh->batch_list,
1776 struct stripe_head, batch_list) == head_sh;
1777 if (last_stripe) {
1778 flags = ASYNC_TX_ACK |
1779 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
Dan Williams91c00922007-01-02 13:52:30 -07001780
shli@kernel.org59fc6302014-12-15 12:57:03 +11001781 atomic_inc(&head_sh->count);
1782 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, head_sh,
1783 to_addr_conv(sh, percpu, j));
1784 } else {
1785 flags = prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST;
1786 init_async_submit(&submit, flags, tx, NULL, NULL,
1787 to_addr_conv(sh, percpu, j));
1788 }
Dan Williams91c00922007-01-02 13:52:30 -07001789
Dan Williamsa08abd82009-06-03 11:43:59 -07001790 if (unlikely(count == 1))
1791 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1792 else
1793 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001794 if (!last_stripe) {
1795 j++;
1796 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1797 batch_list);
1798 goto again;
1799 }
Dan Williams91c00922007-01-02 13:52:30 -07001800}
1801
Dan Williamsac6b53b2009-07-14 13:40:19 -07001802static void
1803ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1804 struct dma_async_tx_descriptor *tx)
1805{
1806 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001807 struct page **blocks;
1808 int count, i, j = 0;
1809 struct stripe_head *head_sh = sh;
1810 int last_stripe;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001811 int synflags;
1812 unsigned long txflags;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001813
1814 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1815
Shaohua Li620125f2012-10-11 13:49:05 +11001816 for (i = 0; i < sh->disks; i++) {
1817 if (sh->pd_idx == i || sh->qd_idx == i)
1818 continue;
1819 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1820 break;
1821 }
1822 if (i >= sh->disks) {
1823 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001824 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1825 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1826 ops_complete_reconstruct(sh);
1827 return;
1828 }
1829
shli@kernel.org59fc6302014-12-15 12:57:03 +11001830again:
1831 blocks = to_addr_page(percpu, j);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001832
1833 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1834 synflags = SYNDROME_SRC_WRITTEN;
1835 txflags = ASYNC_TX_ACK | ASYNC_TX_PQ_XOR_DST;
1836 } else {
1837 synflags = SYNDROME_SRC_ALL;
1838 txflags = ASYNC_TX_ACK;
1839 }
1840
1841 count = set_syndrome_sources(blocks, sh, synflags);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001842 last_stripe = !head_sh->batch_head ||
1843 list_first_entry(&sh->batch_list,
1844 struct stripe_head, batch_list) == head_sh;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001845
shli@kernel.org59fc6302014-12-15 12:57:03 +11001846 if (last_stripe) {
1847 atomic_inc(&head_sh->count);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001848 init_async_submit(&submit, txflags, tx, ops_complete_reconstruct,
shli@kernel.org59fc6302014-12-15 12:57:03 +11001849 head_sh, to_addr_conv(sh, percpu, j));
1850 } else
1851 init_async_submit(&submit, 0, tx, NULL, NULL,
1852 to_addr_conv(sh, percpu, j));
Shaohua Li48769692015-05-13 09:30:08 -07001853 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001854 if (!last_stripe) {
1855 j++;
1856 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1857 batch_list);
1858 goto again;
1859 }
Dan Williams91c00922007-01-02 13:52:30 -07001860}
1861
1862static void ops_complete_check(void *stripe_head_ref)
1863{
1864 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001865
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001866 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001867 (unsigned long long)sh->sector);
1868
Dan Williamsecc65c92008-06-28 08:31:57 +10001869 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001870 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001871 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001872}
1873
Dan Williamsac6b53b2009-07-14 13:40:19 -07001874static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001875{
Dan Williams91c00922007-01-02 13:52:30 -07001876 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001877 int pd_idx = sh->pd_idx;
1878 int qd_idx = sh->qd_idx;
1879 struct page *xor_dest;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001880 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001881 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001882 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001883 int count;
1884 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001885
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001886 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001887 (unsigned long long)sh->sector);
1888
shli@kernel.org59fc6302014-12-15 12:57:03 +11001889 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001890 count = 0;
1891 xor_dest = sh->dev[pd_idx].page;
1892 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001893 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001894 if (i == pd_idx || i == qd_idx)
1895 continue;
1896 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001897 }
1898
Dan Williamsd6f38f32009-07-14 11:50:52 -07001899 init_async_submit(&submit, 0, NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001900 to_addr_conv(sh, percpu, 0));
Dan Williams099f53c2009-04-08 14:28:37 -07001901 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001902 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001903
Dan Williams91c00922007-01-02 13:52:30 -07001904 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001905 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1906 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001907}
1908
Dan Williamsac6b53b2009-07-14 13:40:19 -07001909static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1910{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001911 struct page **srcs = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001912 struct async_submit_ctl submit;
1913 int count;
1914
1915 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1916 (unsigned long long)sh->sector, checkp);
1917
shli@kernel.org59fc6302014-12-15 12:57:03 +11001918 BUG_ON(sh->batch_head);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001919 count = set_syndrome_sources(srcs, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001920 if (!checkp)
1921 srcs[count] = NULL;
1922
1923 atomic_inc(&sh->count);
1924 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001925 sh, to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001926 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1927 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1928}
1929
NeilBrown51acbce2013-02-28 09:08:34 +11001930static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001931{
1932 int overlap_clear = 0, i, disks = sh->disks;
1933 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001934 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001935 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001936 struct raid5_percpu *percpu;
1937 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001938
Dan Williamsd6f38f32009-07-14 11:50:52 -07001939 cpu = get_cpu();
1940 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001941 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001942 ops_run_biofill(sh);
1943 overlap_clear++;
1944 }
1945
Dan Williams7b3a8712008-06-28 08:32:09 +10001946 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001947 if (level < 6)
1948 tx = ops_run_compute5(sh, percpu);
1949 else {
1950 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1951 tx = ops_run_compute6_1(sh, percpu);
1952 else
1953 tx = ops_run_compute6_2(sh, percpu);
1954 }
1955 /* terminate the chain if reconstruct is not set to be run */
1956 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001957 async_tx_ack(tx);
1958 }
Dan Williams91c00922007-01-02 13:52:30 -07001959
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001960 if (test_bit(STRIPE_OP_PREXOR, &ops_request)) {
1961 if (level < 6)
1962 tx = ops_run_prexor5(sh, percpu, tx);
1963 else
1964 tx = ops_run_prexor6(sh, percpu, tx);
1965 }
Dan Williams91c00922007-01-02 13:52:30 -07001966
Dan Williams600aa102008-06-28 08:32:05 +10001967 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001968 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001969 overlap_clear++;
1970 }
1971
Dan Williamsac6b53b2009-07-14 13:40:19 -07001972 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1973 if (level < 6)
1974 ops_run_reconstruct5(sh, percpu, tx);
1975 else
1976 ops_run_reconstruct6(sh, percpu, tx);
1977 }
Dan Williams91c00922007-01-02 13:52:30 -07001978
Dan Williamsac6b53b2009-07-14 13:40:19 -07001979 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1980 if (sh->check_state == check_state_run)
1981 ops_run_check_p(sh, percpu);
1982 else if (sh->check_state == check_state_run_q)
1983 ops_run_check_pq(sh, percpu, 0);
1984 else if (sh->check_state == check_state_run_pq)
1985 ops_run_check_pq(sh, percpu, 1);
1986 else
1987 BUG();
1988 }
Dan Williams91c00922007-01-02 13:52:30 -07001989
shli@kernel.org59fc6302014-12-15 12:57:03 +11001990 if (overlap_clear && !sh->batch_head)
Dan Williams91c00922007-01-02 13:52:30 -07001991 for (i = disks; i--; ) {
1992 struct r5dev *dev = &sh->dev[i];
1993 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1994 wake_up(&sh->raid_conf->wait_for_overlap);
1995 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001996 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001997}
1998
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07001999static struct stripe_head *alloc_stripe(struct kmem_cache *sc, gfp_t gfp,
2000 int disks)
NeilBrownf18c1a32015-05-08 18:19:04 +10002001{
2002 struct stripe_head *sh;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002003 int i;
NeilBrownf18c1a32015-05-08 18:19:04 +10002004
2005 sh = kmem_cache_zalloc(sc, gfp);
2006 if (sh) {
2007 spin_lock_init(&sh->stripe_lock);
2008 spin_lock_init(&sh->batch_lock);
2009 INIT_LIST_HEAD(&sh->batch_list);
2010 INIT_LIST_HEAD(&sh->lru);
Song Liua39f7af2016-11-17 15:24:40 -08002011 INIT_LIST_HEAD(&sh->r5c);
Song Liud7bd3982016-11-23 22:50:39 -08002012 INIT_LIST_HEAD(&sh->log_list);
NeilBrownf18c1a32015-05-08 18:19:04 +10002013 atomic_set(&sh->count, 1);
Song Liua39f7af2016-11-17 15:24:40 -08002014 sh->log_start = MaxSector;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002015 for (i = 0; i < disks; i++) {
2016 struct r5dev *dev = &sh->dev[i];
2017
Ming Lei3a83f462016-11-22 08:57:21 -07002018 bio_init(&dev->req, &dev->vec, 1);
2019 bio_init(&dev->rreq, &dev->rvec, 1);
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002020 }
NeilBrownf18c1a32015-05-08 18:19:04 +10002021 }
2022 return sh;
2023}
NeilBrown486f0642015-02-25 12:10:35 +11002024static int grow_one_stripe(struct r5conf *conf, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
2026 struct stripe_head *sh;
NeilBrownf18c1a32015-05-08 18:19:04 +10002027
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002028 sh = alloc_stripe(conf->slab_cache, gfp, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -08002029 if (!sh)
2030 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10002031
NeilBrown3f294f42005-11-08 21:39:25 -08002032 sh->raid_conf = conf;
NeilBrown3f294f42005-11-08 21:39:25 -08002033
NeilBrowna9683a72015-02-25 12:02:51 +11002034 if (grow_buffers(sh, gfp)) {
NeilBrowne4e11e32010-06-16 16:45:16 +10002035 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002036 kmem_cache_free(conf->slab_cache, sh);
2037 return 0;
2038 }
NeilBrown486f0642015-02-25 12:10:35 +11002039 sh->hash_lock_index =
2040 conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
NeilBrown3f294f42005-11-08 21:39:25 -08002041 /* we just created an active stripe so... */
NeilBrown3f294f42005-11-08 21:39:25 -08002042 atomic_inc(&conf->active_stripes);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002043
Shaohua Li6d036f72015-08-13 14:31:57 -07002044 raid5_release_stripe(sh);
NeilBrown486f0642015-02-25 12:10:35 +11002045 conf->max_nr_stripes++;
NeilBrown3f294f42005-11-08 21:39:25 -08002046 return 1;
2047}
2048
NeilBrownd1688a62011-10-11 16:49:52 +11002049static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08002050{
Christoph Lametere18b8902006-12-06 20:33:20 -08002051 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11002052 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
NeilBrownf4be6b42010-06-01 19:37:25 +10002054 if (conf->mddev->gendisk)
2055 sprintf(conf->cache_name[0],
2056 "raid%d-%s", conf->level, mdname(conf->mddev));
2057 else
2058 sprintf(conf->cache_name[0],
2059 "raid%d-%p", conf->level, conf->mddev);
2060 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
2061
NeilBrownad01c9e2006-03-27 01:18:07 -08002062 conf->active_name = 0;
2063 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002065 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 if (!sc)
2067 return 1;
2068 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002069 conf->pool_size = devs;
NeilBrown486f0642015-02-25 12:10:35 +11002070 while (num--)
2071 if (!grow_one_stripe(conf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 return 1;
NeilBrown486f0642015-02-25 12:10:35 +11002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 return 0;
2075}
NeilBrown29269552006-03-27 01:18:10 -08002076
Dan Williamsd6f38f32009-07-14 11:50:52 -07002077/**
2078 * scribble_len - return the required size of the scribble region
2079 * @num - total number of disks in the array
2080 *
2081 * The size must be enough to contain:
2082 * 1/ a struct page pointer for each device in the array +2
2083 * 2/ room to convert each entry in (1) to its corresponding dma
2084 * (dma_map_page()) or page (page_address()) address.
2085 *
2086 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
2087 * calculate over all devices (not just the data blocks), using zeros in place
2088 * of the P and Q blocks.
2089 */
shli@kernel.org46d5b782014-12-15 12:57:02 +11002090static struct flex_array *scribble_alloc(int num, int cnt, gfp_t flags)
Dan Williamsd6f38f32009-07-14 11:50:52 -07002091{
shli@kernel.org46d5b782014-12-15 12:57:02 +11002092 struct flex_array *ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002093 size_t len;
2094
2095 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002096 ret = flex_array_alloc(len, cnt, flags);
2097 if (!ret)
2098 return NULL;
2099 /* always prealloc all elements, so no locking is required */
2100 if (flex_array_prealloc(ret, 0, cnt, flags)) {
2101 flex_array_free(ret);
2102 return NULL;
2103 }
2104 return ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002105}
2106
NeilBrown738a2732015-05-08 18:19:39 +10002107static int resize_chunks(struct r5conf *conf, int new_disks, int new_sectors)
2108{
2109 unsigned long cpu;
2110 int err = 0;
2111
Shaohua Li27a353c2016-02-24 17:38:28 -08002112 /*
2113 * Never shrink. And mddev_suspend() could deadlock if this is called
2114 * from raid5d. In that case, scribble_disks and scribble_sectors
2115 * should equal to new_disks and new_sectors
2116 */
2117 if (conf->scribble_disks >= new_disks &&
2118 conf->scribble_sectors >= new_sectors)
2119 return 0;
NeilBrown738a2732015-05-08 18:19:39 +10002120 mddev_suspend(conf->mddev);
2121 get_online_cpus();
2122 for_each_present_cpu(cpu) {
2123 struct raid5_percpu *percpu;
2124 struct flex_array *scribble;
2125
2126 percpu = per_cpu_ptr(conf->percpu, cpu);
2127 scribble = scribble_alloc(new_disks,
2128 new_sectors / STRIPE_SECTORS,
2129 GFP_NOIO);
2130
2131 if (scribble) {
2132 flex_array_free(percpu->scribble);
2133 percpu->scribble = scribble;
2134 } else {
2135 err = -ENOMEM;
2136 break;
2137 }
2138 }
2139 put_online_cpus();
2140 mddev_resume(conf->mddev);
Shaohua Li27a353c2016-02-24 17:38:28 -08002141 if (!err) {
2142 conf->scribble_disks = new_disks;
2143 conf->scribble_sectors = new_sectors;
2144 }
NeilBrown738a2732015-05-08 18:19:39 +10002145 return err;
2146}
2147
NeilBrownd1688a62011-10-11 16:49:52 +11002148static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08002149{
2150 /* Make all the stripes able to hold 'newsize' devices.
2151 * New slots in each stripe get 'page' set to a new page.
2152 *
2153 * This happens in stages:
2154 * 1/ create a new kmem_cache and allocate the required number of
2155 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09002156 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08002157 * to the new stripe_heads. This will have the side effect of
2158 * freezing the array as once all stripe_heads have been collected,
2159 * no IO will be possible. Old stripe heads are freed once their
2160 * pages have been transferred over, and the old kmem_cache is
2161 * freed when all stripes are done.
2162 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
2163 * we simple return a failre status - no need to clean anything up.
2164 * 4/ allocate new pages for the new slots in the new stripe_heads.
2165 * If this fails, we don't bother trying the shrink the
2166 * stripe_heads down again, we just leave them as they are.
2167 * As each stripe_head is processed the new one is released into
2168 * active service.
2169 *
2170 * Once step2 is started, we cannot afford to wait for a write,
2171 * so we use GFP_NOIO allocations.
2172 */
2173 struct stripe_head *osh, *nsh;
2174 LIST_HEAD(newstripes);
2175 struct disk_info *ndisks;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002176 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08002177 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002178 int i;
Shaohua Li566c09c2013-11-14 15:16:17 +11002179 int hash, cnt;
NeilBrownad01c9e2006-03-27 01:18:07 -08002180
2181 if (newsize <= conf->pool_size)
2182 return 0; /* never bother to shrink */
2183
Dan Williamsb5470dc2008-06-27 21:44:04 -07002184 err = md_allow_write(conf->mddev);
2185 if (err)
2186 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002187
NeilBrownad01c9e2006-03-27 01:18:07 -08002188 /* Step 1 */
2189 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
2190 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002191 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002192 if (!sc)
2193 return -ENOMEM;
2194
NeilBrown2d5b5692015-07-06 12:49:23 +10002195 /* Need to ensure auto-resizing doesn't interfere */
2196 mutex_lock(&conf->cache_size_mutex);
2197
NeilBrownad01c9e2006-03-27 01:18:07 -08002198 for (i = conf->max_nr_stripes; i; i--) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002199 nsh = alloc_stripe(sc, GFP_KERNEL, newsize);
NeilBrownad01c9e2006-03-27 01:18:07 -08002200 if (!nsh)
2201 break;
2202
NeilBrownad01c9e2006-03-27 01:18:07 -08002203 nsh->raid_conf = conf;
NeilBrownad01c9e2006-03-27 01:18:07 -08002204 list_add(&nsh->lru, &newstripes);
2205 }
2206 if (i) {
2207 /* didn't get enough, give up */
2208 while (!list_empty(&newstripes)) {
2209 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2210 list_del(&nsh->lru);
2211 kmem_cache_free(sc, nsh);
2212 }
2213 kmem_cache_destroy(sc);
NeilBrown2d5b5692015-07-06 12:49:23 +10002214 mutex_unlock(&conf->cache_size_mutex);
NeilBrownad01c9e2006-03-27 01:18:07 -08002215 return -ENOMEM;
2216 }
2217 /* Step 2 - Must use GFP_NOIO now.
2218 * OK, we have enough stripes, start collecting inactive
2219 * stripes and copying them over
2220 */
Shaohua Li566c09c2013-11-14 15:16:17 +11002221 hash = 0;
2222 cnt = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002223 list_for_each_entry(nsh, &newstripes, lru) {
Shaohua Li566c09c2013-11-14 15:16:17 +11002224 lock_device_hash_lock(conf, hash);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08002225 wait_event_cmd(conf->wait_for_stripe,
Shaohua Li566c09c2013-11-14 15:16:17 +11002226 !list_empty(conf->inactive_list + hash),
2227 unlock_device_hash_lock(conf, hash),
2228 lock_device_hash_lock(conf, hash));
2229 osh = get_free_stripe(conf, hash);
2230 unlock_device_hash_lock(conf, hash);
NeilBrownf18c1a32015-05-08 18:19:04 +10002231
Shaohua Lid592a992014-05-21 17:57:44 +08002232 for(i=0; i<conf->pool_size; i++) {
NeilBrownad01c9e2006-03-27 01:18:07 -08002233 nsh->dev[i].page = osh->dev[i].page;
Shaohua Lid592a992014-05-21 17:57:44 +08002234 nsh->dev[i].orig_page = osh->dev[i].page;
2235 }
Shaohua Li566c09c2013-11-14 15:16:17 +11002236 nsh->hash_lock_index = hash;
NeilBrownad01c9e2006-03-27 01:18:07 -08002237 kmem_cache_free(conf->slab_cache, osh);
Shaohua Li566c09c2013-11-14 15:16:17 +11002238 cnt++;
2239 if (cnt >= conf->max_nr_stripes / NR_STRIPE_HASH_LOCKS +
2240 !!((conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS) > hash)) {
2241 hash++;
2242 cnt = 0;
2243 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002244 }
2245 kmem_cache_destroy(conf->slab_cache);
2246
2247 /* Step 3.
2248 * At this point, we are holding all the stripes so the array
2249 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07002250 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08002251 */
2252 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
2253 if (ndisks) {
Song Liud7bd3982016-11-23 22:50:39 -08002254 for (i = 0; i < conf->pool_size; i++)
NeilBrownad01c9e2006-03-27 01:18:07 -08002255 ndisks[i] = conf->disks[i];
Song Liud7bd3982016-11-23 22:50:39 -08002256
2257 for (i = conf->pool_size; i < newsize; i++) {
2258 ndisks[i].extra_page = alloc_page(GFP_NOIO);
2259 if (!ndisks[i].extra_page)
2260 err = -ENOMEM;
2261 }
2262
2263 if (err) {
2264 for (i = conf->pool_size; i < newsize; i++)
2265 if (ndisks[i].extra_page)
2266 put_page(ndisks[i].extra_page);
2267 kfree(ndisks);
2268 } else {
2269 kfree(conf->disks);
2270 conf->disks = ndisks;
2271 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002272 } else
2273 err = -ENOMEM;
2274
NeilBrown2d5b5692015-07-06 12:49:23 +10002275 mutex_unlock(&conf->cache_size_mutex);
NeilBrownad01c9e2006-03-27 01:18:07 -08002276 /* Step 4, return new stripes to service */
2277 while(!list_empty(&newstripes)) {
2278 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2279 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002280
NeilBrownad01c9e2006-03-27 01:18:07 -08002281 for (i=conf->raid_disks; i < newsize; i++)
2282 if (nsh->dev[i].page == NULL) {
2283 struct page *p = alloc_page(GFP_NOIO);
2284 nsh->dev[i].page = p;
Shaohua Lid592a992014-05-21 17:57:44 +08002285 nsh->dev[i].orig_page = p;
NeilBrownad01c9e2006-03-27 01:18:07 -08002286 if (!p)
2287 err = -ENOMEM;
2288 }
Shaohua Li6d036f72015-08-13 14:31:57 -07002289 raid5_release_stripe(nsh);
NeilBrownad01c9e2006-03-27 01:18:07 -08002290 }
2291 /* critical section pass, GFP_NOIO no longer needed */
2292
2293 conf->slab_cache = sc;
2294 conf->active_name = 1-conf->active_name;
NeilBrown6e9eac22015-05-08 18:19:34 +10002295 if (!err)
2296 conf->pool_size = newsize;
NeilBrownad01c9e2006-03-27 01:18:07 -08002297 return err;
2298}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
NeilBrown486f0642015-02-25 12:10:35 +11002300static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
2302 struct stripe_head *sh;
NeilBrown49895bc2015-08-03 17:09:57 +10002303 int hash = (conf->max_nr_stripes - 1) & STRIPE_HASH_LOCKS_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Shaohua Li566c09c2013-11-14 15:16:17 +11002305 spin_lock_irq(conf->hash_locks + hash);
2306 sh = get_free_stripe(conf, hash);
2307 spin_unlock_irq(conf->hash_locks + hash);
NeilBrown3f294f42005-11-08 21:39:25 -08002308 if (!sh)
2309 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002310 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10002311 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002312 kmem_cache_free(conf->slab_cache, sh);
2313 atomic_dec(&conf->active_stripes);
NeilBrown486f0642015-02-25 12:10:35 +11002314 conf->max_nr_stripes--;
NeilBrown3f294f42005-11-08 21:39:25 -08002315 return 1;
2316}
2317
NeilBrownd1688a62011-10-11 16:49:52 +11002318static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08002319{
NeilBrown486f0642015-02-25 12:10:35 +11002320 while (conf->max_nr_stripes &&
2321 drop_one_stripe(conf))
2322 ;
NeilBrown3f294f42005-11-08 21:39:25 -08002323
Julia Lawall644df1a2015-09-13 14:15:10 +02002324 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 conf->slab_cache = NULL;
2326}
2327
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002328static void raid5_end_read_request(struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329{
NeilBrown99c0fb52009-03-31 14:39:38 +11002330 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002331 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002332 int disks = sh->disks, i;
NeilBrownd6950432006-07-10 04:44:20 -07002333 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11002334 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10002335 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337 for (i=0 ; i<disks; i++)
2338 if (bi == &sh->dev[i].req)
2339 break;
2340
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002341 pr_debug("end_read_request %llu/%d, count: %d, error %d.\n",
Dan Williams45b42332007-07-09 11:56:43 -07002342 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002343 bi->bi_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002345 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002347 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 }
NeilBrown14a75d32011-12-23 10:17:52 +11002349 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11002350 /* If replacement finished while this request was outstanding,
2351 * 'replacement' might be NULL already.
2352 * In that case it moved down to 'rdev'.
2353 * rdev is not removed until all requests are finished.
2354 */
NeilBrown14a75d32011-12-23 10:17:52 +11002355 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002356 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11002357 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
NeilBrown05616be2012-05-21 09:27:00 +10002359 if (use_new_offset(conf, sh))
2360 s = sh->sector + rdev->new_data_offset;
2361 else
2362 s = sh->sector + rdev->data_offset;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002363 if (!bi->bi_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08002365 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11002366 /* Note that this cannot happen on a
2367 * replacement device. We just fail those on
2368 * any error
2369 */
NeilBrowncc6167b2016-11-02 14:16:50 +11002370 pr_info_ratelimited(
2371 "md/raid:%s: read error corrected (%lu sectors at %llu on %s)\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002372 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10002373 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002374 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10002375 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08002376 clear_bit(R5_ReadError, &sh->dev[i].flags);
2377 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10002378 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2379 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2380
NeilBrown14a75d32011-12-23 10:17:52 +11002381 if (atomic_read(&rdev->read_errors))
2382 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11002384 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08002385 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10002386 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07002387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07002389 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11002390 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowncc6167b2016-11-02 14:16:50 +11002391 pr_warn_ratelimited(
2392 "md/raid:%s: read error on replacement device (sector %llu on %s).\n",
NeilBrown14a75d32011-12-23 10:17:52 +11002393 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002394 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11002395 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002396 else if (conf->mddev->degraded >= conf->max_degraded) {
2397 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002398 pr_warn_ratelimited(
2399 "md/raid:%s: read error not correctable (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002400 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002401 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002402 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002403 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08002404 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10002405 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002406 pr_warn_ratelimited(
2407 "md/raid:%s: read error NOT corrected!! (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002408 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002409 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002410 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002411 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08002412 > conf->max_nr_stripes)
NeilBrowncc6167b2016-11-02 14:16:50 +11002413 pr_warn("md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07002414 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08002415 else
2416 retry = 1;
Bian Yuedfa1f62013-11-14 15:16:17 +11002417 if (set_bad && test_bit(In_sync, &rdev->flags)
2418 && !test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2419 retry = 1;
NeilBrownba22dcb2005-11-08 21:39:31 -08002420 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10002421 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
2422 set_bit(R5_ReadError, &sh->dev[i].flags);
2423 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2424 } else
2425 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08002426 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08002427 clear_bit(R5_ReadError, &sh->dev[i].flags);
2428 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10002429 if (!(set_bad
2430 && test_bit(In_sync, &rdev->flags)
2431 && rdev_set_badblocks(
2432 rdev, sh->sector, STRIPE_SECTORS, 0)))
2433 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08002434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 }
NeilBrown14a75d32011-12-23 10:17:52 +11002436 rdev_dec_pending(rdev, conf->mddev);
Shaohua Lic9445552016-09-08 10:43:58 -07002437 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2439 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002440 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441}
2442
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002443static void raid5_end_write_request(struct bio *bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
NeilBrown99c0fb52009-03-31 14:39:38 +11002445 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002446 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002447 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11002448 struct md_rdev *uninitialized_var(rdev);
NeilBrownb84db562011-07-28 11:39:23 +10002449 sector_t first_bad;
2450 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11002451 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
NeilBrown977df362011-12-23 10:17:53 +11002453 for (i = 0 ; i < disks; i++) {
2454 if (bi == &sh->dev[i].req) {
2455 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 break;
NeilBrown977df362011-12-23 10:17:53 +11002457 }
2458 if (bi == &sh->dev[i].rreq) {
2459 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002460 if (rdev)
2461 replacement = 1;
2462 else
2463 /* rdev was removed and 'replacement'
2464 * replaced it. rdev is not removed
2465 * until all requests are finished.
2466 */
2467 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11002468 break;
2469 }
2470 }
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002471 pr_debug("end_write_request %llu/%d, count %d, error: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002473 bi->bi_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002475 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002477 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 }
2479
NeilBrown977df362011-12-23 10:17:53 +11002480 if (replacement) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002481 if (bi->bi_error)
NeilBrown977df362011-12-23 10:17:53 +11002482 md_error(conf->mddev, rdev);
2483 else if (is_badblock(rdev, sh->sector,
2484 STRIPE_SECTORS,
2485 &first_bad, &bad_sectors))
2486 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2487 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002488 if (bi->bi_error) {
NeilBrown9f97e4b2014-01-16 09:35:38 +11002489 set_bit(STRIPE_DEGRADED, &sh->state);
NeilBrown977df362011-12-23 10:17:53 +11002490 set_bit(WriteErrorSeen, &rdev->flags);
2491 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002492 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2493 set_bit(MD_RECOVERY_NEEDED,
2494 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002495 } else if (is_badblock(rdev, sh->sector,
2496 STRIPE_SECTORS,
NeilBrownc0b32972013-04-24 11:42:42 +10002497 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002498 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002499 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2500 /* That was a successful write so make
2501 * sure it looks like we already did
2502 * a re-write.
2503 */
2504 set_bit(R5_ReWrite, &sh->dev[i].flags);
2505 }
NeilBrown977df362011-12-23 10:17:53 +11002506 }
2507 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002509 if (sh->batch_head && bi->bi_error && !replacement)
shli@kernel.org72ac7332014-12-15 12:57:03 +11002510 set_bit(STRIPE_BATCH_ERR, &sh->batch_head->state);
2511
Shaohua Lic9445552016-09-08 10:43:58 -07002512 bio_reset(bi);
NeilBrown977df362011-12-23 10:17:53 +11002513 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2514 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002516 raid5_release_stripe(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002517
2518 if (sh->batch_head && sh != sh->batch_head)
Shaohua Li6d036f72015-08-13 14:31:57 -07002519 raid5_release_stripe(sh->batch_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
2521
NeilBrown784052e2009-03-31 15:19:07 +11002522static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523{
2524 struct r5dev *dev = &sh->dev[i];
2525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 dev->flags = 0;
Shaohua Li6d036f72015-08-13 14:31:57 -07002527 dev->sector = raid5_compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528}
2529
Shaohua Li849674e2016-01-20 13:52:20 -08002530static void raid5_error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531{
2532 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002533 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002534 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002535 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
NeilBrown908f4fb2011-12-23 10:17:50 +11002537 spin_lock_irqsave(&conf->device_lock, flags);
2538 clear_bit(In_sync, &rdev->flags);
2539 mddev->degraded = calc_degraded(conf);
2540 spin_unlock_irqrestore(&conf->device_lock, flags);
2541 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2542
NeilBrownde393cd2011-07-28 11:31:48 +10002543 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10002544 set_bit(Faulty, &rdev->flags);
Shaohua Li29530792016-12-08 15:48:19 -08002545 set_mask_bits(&mddev->sb_flags, 0,
2546 BIT(MD_SB_CHANGE_DEVS) | BIT(MD_SB_CHANGE_PENDING));
NeilBrowncc6167b2016-11-02 14:16:50 +11002547 pr_crit("md/raid:%s: Disk failure on %s, disabling device.\n"
2548 "md/raid:%s: Operation continuing on %d devices.\n",
2549 mdname(mddev),
2550 bdevname(rdev->bdev, b),
2551 mdname(mddev),
2552 conf->raid_disks - mddev->degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07002553}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
2555/*
2556 * Input: a 'big' sector number,
2557 * Output: index of the data and parity disk, and the sector # in them.
2558 */
Shaohua Li6d036f72015-08-13 14:31:57 -07002559sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
2560 int previous, int *dd_idx,
2561 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002563 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002564 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002566 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002567 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002569 int algorithm = previous ? conf->prev_algo
2570 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002571 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2572 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002573 int raid_disks = previous ? conf->previous_raid_disks
2574 : conf->raid_disks;
2575 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
2577 /* First compute the information on this sector */
2578
2579 /*
2580 * Compute the chunk number and the sector offset inside the chunk
2581 */
2582 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2583 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585 /*
2586 * Compute the stripe number
2587 */
NeilBrown35f2a592010-04-20 14:13:34 +10002588 stripe = chunk_number;
2589 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002590 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 /*
2592 * Select the parity disk based on the user selected algorithm.
2593 */
NeilBrown84789552011-07-27 11:00:36 +10002594 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002595 switch(conf->level) {
2596 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002597 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002598 break;
2599 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002600 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002602 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002603 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 (*dd_idx)++;
2605 break;
2606 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002607 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002608 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 (*dd_idx)++;
2610 break;
2611 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002612 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002613 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 break;
2615 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002616 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002617 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002619 case ALGORITHM_PARITY_0:
2620 pd_idx = 0;
2621 (*dd_idx)++;
2622 break;
2623 case ALGORITHM_PARITY_N:
2624 pd_idx = data_disks;
2625 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002627 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002628 }
2629 break;
2630 case 6:
2631
NeilBrowne183eae2009-03-31 15:20:22 +11002632 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002633 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002634 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002635 qd_idx = pd_idx + 1;
2636 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002637 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002638 qd_idx = 0;
2639 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002640 (*dd_idx) += 2; /* D D P Q D */
2641 break;
2642 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002643 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002644 qd_idx = pd_idx + 1;
2645 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002646 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002647 qd_idx = 0;
2648 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002649 (*dd_idx) += 2; /* D D P Q D */
2650 break;
2651 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002652 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002653 qd_idx = (pd_idx + 1) % raid_disks;
2654 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002655 break;
2656 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002657 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002658 qd_idx = (pd_idx + 1) % raid_disks;
2659 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002660 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002661
2662 case ALGORITHM_PARITY_0:
2663 pd_idx = 0;
2664 qd_idx = 1;
2665 (*dd_idx) += 2;
2666 break;
2667 case ALGORITHM_PARITY_N:
2668 pd_idx = data_disks;
2669 qd_idx = data_disks + 1;
2670 break;
2671
2672 case ALGORITHM_ROTATING_ZERO_RESTART:
2673 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2674 * of blocks for computing Q is different.
2675 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002676 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002677 qd_idx = pd_idx + 1;
2678 if (pd_idx == raid_disks-1) {
2679 (*dd_idx)++; /* Q D D D P */
2680 qd_idx = 0;
2681 } else if (*dd_idx >= pd_idx)
2682 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002683 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002684 break;
2685
2686 case ALGORITHM_ROTATING_N_RESTART:
2687 /* Same a left_asymmetric, by first stripe is
2688 * D D D P Q rather than
2689 * Q D D D P
2690 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002691 stripe2 += 1;
2692 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002693 qd_idx = pd_idx + 1;
2694 if (pd_idx == raid_disks-1) {
2695 (*dd_idx)++; /* Q D D D P */
2696 qd_idx = 0;
2697 } else if (*dd_idx >= pd_idx)
2698 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002699 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002700 break;
2701
2702 case ALGORITHM_ROTATING_N_CONTINUE:
2703 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002704 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002705 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2706 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002707 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002708 break;
2709
2710 case ALGORITHM_LEFT_ASYMMETRIC_6:
2711 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002712 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002713 if (*dd_idx >= pd_idx)
2714 (*dd_idx)++;
2715 qd_idx = raid_disks - 1;
2716 break;
2717
2718 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002719 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002720 if (*dd_idx >= pd_idx)
2721 (*dd_idx)++;
2722 qd_idx = raid_disks - 1;
2723 break;
2724
2725 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002726 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002727 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2728 qd_idx = raid_disks - 1;
2729 break;
2730
2731 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002732 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002733 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2734 qd_idx = raid_disks - 1;
2735 break;
2736
2737 case ALGORITHM_PARITY_0_6:
2738 pd_idx = 0;
2739 (*dd_idx)++;
2740 qd_idx = raid_disks - 1;
2741 break;
2742
NeilBrown16a53ec2006-06-26 00:27:38 -07002743 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002744 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002745 }
2746 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 }
2748
NeilBrown911d4ee2009-03-31 14:39:38 +11002749 if (sh) {
2750 sh->pd_idx = pd_idx;
2751 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002752 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 /*
2755 * Finally, compute the new sector number
2756 */
2757 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2758 return new_sector;
2759}
2760
Shaohua Li6d036f72015-08-13 14:31:57 -07002761sector_t raid5_compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762{
NeilBrownd1688a62011-10-11 16:49:52 +11002763 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002764 int raid_disks = sh->disks;
2765 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002767 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2768 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002769 int algorithm = previous ? conf->prev_algo
2770 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 sector_t stripe;
2772 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002773 sector_t chunk_number;
2774 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002776 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2779 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
NeilBrown16a53ec2006-06-26 00:27:38 -07002781 if (i == sh->pd_idx)
2782 return 0;
2783 switch(conf->level) {
2784 case 4: break;
2785 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002786 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 case ALGORITHM_LEFT_ASYMMETRIC:
2788 case ALGORITHM_RIGHT_ASYMMETRIC:
2789 if (i > sh->pd_idx)
2790 i--;
2791 break;
2792 case ALGORITHM_LEFT_SYMMETRIC:
2793 case ALGORITHM_RIGHT_SYMMETRIC:
2794 if (i < sh->pd_idx)
2795 i += raid_disks;
2796 i -= (sh->pd_idx + 1);
2797 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002798 case ALGORITHM_PARITY_0:
2799 i -= 1;
2800 break;
2801 case ALGORITHM_PARITY_N:
2802 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002804 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002805 }
2806 break;
2807 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002808 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002809 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002810 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002811 case ALGORITHM_LEFT_ASYMMETRIC:
2812 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002813 case ALGORITHM_ROTATING_ZERO_RESTART:
2814 case ALGORITHM_ROTATING_N_RESTART:
2815 if (sh->pd_idx == raid_disks-1)
2816 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002817 else if (i > sh->pd_idx)
2818 i -= 2; /* D D P Q D */
2819 break;
2820 case ALGORITHM_LEFT_SYMMETRIC:
2821 case ALGORITHM_RIGHT_SYMMETRIC:
2822 if (sh->pd_idx == raid_disks-1)
2823 i--; /* Q D D D P */
2824 else {
2825 /* D D P Q D */
2826 if (i < sh->pd_idx)
2827 i += raid_disks;
2828 i -= (sh->pd_idx + 2);
2829 }
2830 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002831 case ALGORITHM_PARITY_0:
2832 i -= 2;
2833 break;
2834 case ALGORITHM_PARITY_N:
2835 break;
2836 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002837 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002838 if (sh->pd_idx == 0)
2839 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002840 else {
2841 /* D D Q P D */
2842 if (i < sh->pd_idx)
2843 i += raid_disks;
2844 i -= (sh->pd_idx + 1);
2845 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002846 break;
2847 case ALGORITHM_LEFT_ASYMMETRIC_6:
2848 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2849 if (i > sh->pd_idx)
2850 i--;
2851 break;
2852 case ALGORITHM_LEFT_SYMMETRIC_6:
2853 case ALGORITHM_RIGHT_SYMMETRIC_6:
2854 if (i < sh->pd_idx)
2855 i += data_disks + 1;
2856 i -= (sh->pd_idx + 1);
2857 break;
2858 case ALGORITHM_PARITY_0_6:
2859 i -= 1;
2860 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002861 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002862 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002863 }
2864 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 }
2866
2867 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002868 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
NeilBrown112bf892009-03-31 14:39:38 +11002870 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002871 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002872 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2873 || sh2.qd_idx != sh->qd_idx) {
NeilBrowncc6167b2016-11-02 14:16:50 +11002874 pr_warn("md/raid:%s: compute_blocknr: map not correct\n",
2875 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 return 0;
2877 }
2878 return r_sector;
2879}
2880
Dan Williams600aa102008-06-28 08:32:05 +10002881static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002882schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002883 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002884{
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002885 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002886 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002887 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002888
Dan Williamse33129d2007-01-02 13:52:30 -07002889 if (rcw) {
Song Liu1e6d6902016-11-17 15:24:39 -08002890 /*
2891 * In some cases, handle_stripe_dirtying initially decided to
2892 * run rmw and allocates extra page for prexor. However, rcw is
2893 * cheaper later on. We need to free the extra page now,
2894 * because we won't be able to do that in ops_complete_prexor().
2895 */
2896 r5c_release_extra_page(sh);
Dan Williamse33129d2007-01-02 13:52:30 -07002897
2898 for (i = disks; i--; ) {
2899 struct r5dev *dev = &sh->dev[i];
2900
2901 if (dev->towrite) {
2902 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002903 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002904 if (!expand)
2905 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002906 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08002907 } else if (test_bit(R5_InJournal, &dev->flags)) {
2908 set_bit(R5_LOCKED, &dev->flags);
2909 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002910 }
2911 }
NeilBrownce7d3632013-03-04 12:37:14 +11002912 /* if we are not expanding this is a proper write request, and
2913 * there will be bios with new data to be drained into the
2914 * stripe cache
2915 */
2916 if (!expand) {
2917 if (!s->locked)
2918 /* False alarm, nothing to do */
2919 return;
2920 sh->reconstruct_state = reconstruct_state_drain_run;
2921 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2922 } else
2923 sh->reconstruct_state = reconstruct_state_run;
2924
2925 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
2926
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002927 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002928 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002929 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002930 } else {
2931 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2932 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002933 BUG_ON(level == 6 &&
2934 (!(test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags) ||
2935 test_bit(R5_Wantcompute, &sh->dev[qd_idx].flags))));
Dan Williamse33129d2007-01-02 13:52:30 -07002936
Dan Williamse33129d2007-01-02 13:52:30 -07002937 for (i = disks; i--; ) {
2938 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002939 if (i == pd_idx || i == qd_idx)
Dan Williamse33129d2007-01-02 13:52:30 -07002940 continue;
2941
Dan Williamse33129d2007-01-02 13:52:30 -07002942 if (dev->towrite &&
2943 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002944 test_bit(R5_Wantcompute, &dev->flags))) {
2945 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002946 set_bit(R5_LOCKED, &dev->flags);
2947 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002948 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08002949 } else if (test_bit(R5_InJournal, &dev->flags)) {
2950 set_bit(R5_LOCKED, &dev->flags);
2951 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002952 }
2953 }
NeilBrownce7d3632013-03-04 12:37:14 +11002954 if (!s->locked)
2955 /* False alarm - nothing to do */
2956 return;
2957 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
2958 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2959 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2960 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002961 }
2962
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002963 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002964 * are in flight
2965 */
2966 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2967 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002968 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002969
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002970 if (level == 6) {
2971 int qd_idx = sh->qd_idx;
2972 struct r5dev *dev = &sh->dev[qd_idx];
2973
2974 set_bit(R5_LOCKED, &dev->flags);
2975 clear_bit(R5_UPTODATE, &dev->flags);
2976 s->locked++;
2977 }
2978
Dan Williams600aa102008-06-28 08:32:05 +10002979 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07002980 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002981 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002982}
NeilBrown16a53ec2006-06-26 00:27:38 -07002983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984/*
2985 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002986 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 * The bi_next chain must be in order.
2988 */
shli@kernel.orgda41ba62014-12-15 12:57:03 +11002989static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx,
2990 int forwrite, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991{
2992 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11002993 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002994 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
NeilBrowncbe47ec2011-07-26 11:20:35 +10002996 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07002997 (unsigned long long)bi->bi_iter.bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 (unsigned long long)sh->sector);
2999
Shaohua Lib17459c2012-07-19 16:01:31 +10003000 /*
3001 * If several bio share a stripe. The bio bi_phys_segments acts as a
3002 * reference count to avoid race. The reference count should already be
3003 * increased before this function is called (for example, in
Shaohua Li849674e2016-01-20 13:52:20 -08003004 * raid5_make_request()), so other bio sharing this stripe will not free the
Shaohua Lib17459c2012-07-19 16:01:31 +10003005 * stripe. If a stripe is owned by one stripe, the stripe lock will
3006 * protect it.
3007 */
3008 spin_lock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003009 /* Don't allow new IO added to stripes in batch list */
3010 if (sh->batch_head)
3011 goto overlap;
NeilBrown72626682005-09-09 16:23:54 -07003012 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003014 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07003015 firstwrite = 1;
3016 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 bip = &sh->dev[dd_idx].toread;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003018 while (*bip && (*bip)->bi_iter.bi_sector < bi->bi_iter.bi_sector) {
3019 if (bio_end_sector(*bip) > bi->bi_iter.bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 goto overlap;
3021 bip = & (*bip)->bi_next;
3022 }
Kent Overstreet4f024f32013-10-11 15:44:27 -07003023 if (*bip && (*bip)->bi_iter.bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 goto overlap;
3025
shli@kernel.orgda41ba62014-12-15 12:57:03 +11003026 if (!forwrite || previous)
3027 clear_bit(STRIPE_BATCH_READY, &sh->state);
3028
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02003029 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 if (*bip)
3031 bi->bi_next = *bip;
3032 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003033 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07003034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 if (forwrite) {
3036 /* check if page is covered */
3037 sector_t sector = sh->dev[dd_idx].sector;
3038 for (bi=sh->dev[dd_idx].towrite;
3039 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07003040 bi && bi->bi_iter.bi_sector <= sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07003042 if (bio_end_sector(bi) >= sector)
3043 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 }
3045 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
shli@kernel.org7a87f432014-12-15 12:57:03 +11003046 if (!test_and_set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags))
3047 sh->overwrite_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003049
3050 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07003051 (unsigned long long)(*bip)->bi_iter.bi_sector,
NeilBrowncbe47ec2011-07-26 11:20:35 +10003052 (unsigned long long)sh->sector, dd_idx);
3053
3054 if (conf->mddev->bitmap && firstwrite) {
NeilBrownd0852df52015-05-27 08:43:45 +10003055 /* Cannot hold spinlock over bitmap_startwrite,
3056 * but must ensure this isn't added to a batch until
3057 * we have added to the bitmap and set bm_seq.
3058 * So set STRIPE_BITMAP_PENDING to prevent
3059 * batching.
3060 * If multiple add_stripe_bio() calls race here they
3061 * much all set STRIPE_BITMAP_PENDING. So only the first one
3062 * to complete "bitmap_startwrite" gets to set
3063 * STRIPE_BIT_DELAY. This is important as once a stripe
3064 * is added to a batch, STRIPE_BIT_DELAY cannot be changed
3065 * any more.
3066 */
3067 set_bit(STRIPE_BITMAP_PENDING, &sh->state);
3068 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10003069 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
3070 STRIPE_SECTORS, 0);
NeilBrownd0852df52015-05-27 08:43:45 +10003071 spin_lock_irq(&sh->stripe_lock);
3072 clear_bit(STRIPE_BITMAP_PENDING, &sh->state);
3073 if (!sh->batch_head) {
3074 sh->bm_seq = conf->seq_flush+1;
3075 set_bit(STRIPE_BIT_DELAY, &sh->state);
3076 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003077 }
NeilBrownd0852df52015-05-27 08:43:45 +10003078 spin_unlock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003079
3080 if (stripe_can_batch(sh))
3081 stripe_add_to_batch_list(conf, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 return 1;
3083
3084 overlap:
3085 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10003086 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 return 0;
3088}
3089
NeilBrownd1688a62011-10-11 16:49:52 +11003090static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08003091
NeilBrownd1688a62011-10-11 16:49:52 +11003092static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003093 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08003094{
NeilBrown784052e2009-03-31 15:19:07 +11003095 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10003096 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11003097 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003098 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11003099 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003100
NeilBrown112bf892009-03-31 14:39:38 +11003101 raid5_compute_sector(conf,
3102 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08003103 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11003104 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003105 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003106}
3107
Dan Williamsa4456852007-07-09 11:56:43 -07003108static void
NeilBrownd1688a62011-10-11 16:49:52 +11003109handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003110 struct stripe_head_state *s, int disks,
NeilBrown34a6f802015-08-14 12:07:57 +10003111 struct bio_list *return_bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003112{
3113 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003114 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003115 for (i = disks; i--; ) {
3116 struct bio *bi;
3117 int bitmap_end = 0;
3118
3119 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11003120 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07003121 rcu_read_lock();
3122 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownf5b67ae2016-06-02 16:19:53 +10003123 if (rdev && test_bit(In_sync, &rdev->flags) &&
3124 !test_bit(Faulty, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10003125 atomic_inc(&rdev->nr_pending);
3126 else
3127 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003128 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10003129 if (rdev) {
3130 if (!rdev_set_badblocks(
3131 rdev,
3132 sh->sector,
3133 STRIPE_SECTORS, 0))
3134 md_error(conf->mddev, rdev);
3135 rdev_dec_pending(rdev, conf->mddev);
3136 }
Dan Williamsa4456852007-07-09 11:56:43 -07003137 }
Shaohua Lib17459c2012-07-19 16:01:31 +10003138 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003139 /* fail all writes first */
3140 bi = sh->dev[i].towrite;
3141 sh->dev[i].towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11003142 sh->overwrite_disks = 0;
Shaohua Lib17459c2012-07-19 16:01:31 +10003143 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11003144 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003145 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07003146
Shaohua Li0576b1c2015-08-13 14:32:00 -07003147 r5l_stripe_write_finished(sh);
3148
Dan Williamsa4456852007-07-09 11:56:43 -07003149 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3150 wake_up(&conf->wait_for_overlap);
3151
Kent Overstreet4f024f32013-10-11 15:44:27 -07003152 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003153 sh->dev[i].sector + STRIPE_SECTORS) {
3154 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003155
3156 bi->bi_error = -EIO;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003157 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003158 md_write_end(conf->mddev);
NeilBrown34a6f802015-08-14 12:07:57 +10003159 bio_list_add(return_bi, bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003160 }
3161 bi = nextbi;
3162 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003163 if (bitmap_end)
3164 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3165 STRIPE_SECTORS, 0, 0);
3166 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003167 /* and fail all 'written' */
3168 bi = sh->dev[i].written;
3169 sh->dev[i].written = NULL;
Shaohua Lid592a992014-05-21 17:57:44 +08003170 if (test_and_clear_bit(R5_SkipCopy, &sh->dev[i].flags)) {
3171 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
3172 sh->dev[i].page = sh->dev[i].orig_page;
3173 }
3174
Dan Williamsa4456852007-07-09 11:56:43 -07003175 if (bi) bitmap_end = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003176 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003177 sh->dev[i].sector + STRIPE_SECTORS) {
3178 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003179
3180 bi->bi_error = -EIO;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003181 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003182 md_write_end(conf->mddev);
NeilBrown34a6f802015-08-14 12:07:57 +10003183 bio_list_add(return_bi, bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003184 }
3185 bi = bi2;
3186 }
3187
Dan Williamsb5e98d62007-01-02 13:52:31 -07003188 /* fail any reads if this device is non-operational and
3189 * the data has not reached the cache yet.
3190 */
3191 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
Shaohua Li6e74a9c2015-10-08 21:54:08 -07003192 s->failed > conf->max_degraded &&
Dan Williamsb5e98d62007-01-02 13:52:31 -07003193 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
3194 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11003195 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003196 bi = sh->dev[i].toread;
3197 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11003198 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003199 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3200 wake_up(&conf->wait_for_overlap);
Shaohua Liebda7802015-09-18 10:20:13 -07003201 if (bi)
3202 s->to_read--;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003203 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003204 sh->dev[i].sector + STRIPE_SECTORS) {
3205 struct bio *nextbi =
3206 r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003207
3208 bi->bi_error = -EIO;
NeilBrown34a6f802015-08-14 12:07:57 +10003209 if (!raid5_dec_bi_active_stripes(bi))
3210 bio_list_add(return_bi, bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003211 bi = nextbi;
3212 }
3213 }
Dan Williamsa4456852007-07-09 11:56:43 -07003214 if (bitmap_end)
3215 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3216 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10003217 /* If we were in the middle of a write the parity block might
3218 * still be locked - so just clear all R5_LOCKED flags
3219 */
3220 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003221 }
Shaohua Liebda7802015-09-18 10:20:13 -07003222 s->to_write = 0;
3223 s->written = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003224
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003225 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3226 if (atomic_dec_and_test(&conf->pending_full_writes))
3227 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07003228}
3229
NeilBrown7f0da592011-07-28 11:39:22 +10003230static void
NeilBrownd1688a62011-10-11 16:49:52 +11003231handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10003232 struct stripe_head_state *s)
3233{
3234 int abort = 0;
3235 int i;
3236
shli@kernel.org59fc6302014-12-15 12:57:03 +11003237 BUG_ON(sh->batch_head);
NeilBrown7f0da592011-07-28 11:39:22 +10003238 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003239 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3240 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10003241 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11003242 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10003243 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10003244 * Don't even need to abort as that is handled elsewhere
3245 * if needed, and not always wanted e.g. if there is a known
3246 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11003247 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10003248 * non-sync devices, or abort the recovery
3249 */
NeilBrown18b98372012-04-01 23:48:38 +10003250 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
3251 /* During recovery devices cannot be removed, so
3252 * locking and refcounting of rdevs is not needed
3253 */
NeilBrowne50d3992016-06-02 16:19:52 +10003254 rcu_read_lock();
NeilBrown18b98372012-04-01 23:48:38 +10003255 for (i = 0; i < conf->raid_disks; i++) {
NeilBrowne50d3992016-06-02 16:19:52 +10003256 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrown18b98372012-04-01 23:48:38 +10003257 if (rdev
3258 && !test_bit(Faulty, &rdev->flags)
3259 && !test_bit(In_sync, &rdev->flags)
3260 && !rdev_set_badblocks(rdev, sh->sector,
3261 STRIPE_SECTORS, 0))
3262 abort = 1;
NeilBrowne50d3992016-06-02 16:19:52 +10003263 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown18b98372012-04-01 23:48:38 +10003264 if (rdev
3265 && !test_bit(Faulty, &rdev->flags)
3266 && !test_bit(In_sync, &rdev->flags)
3267 && !rdev_set_badblocks(rdev, sh->sector,
3268 STRIPE_SECTORS, 0))
3269 abort = 1;
3270 }
NeilBrowne50d3992016-06-02 16:19:52 +10003271 rcu_read_unlock();
NeilBrown18b98372012-04-01 23:48:38 +10003272 if (abort)
3273 conf->recovery_disabled =
3274 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10003275 }
NeilBrown18b98372012-04-01 23:48:38 +10003276 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10003277}
3278
NeilBrown9a3e1102011-12-23 10:17:53 +11003279static int want_replace(struct stripe_head *sh, int disk_idx)
3280{
3281 struct md_rdev *rdev;
3282 int rv = 0;
NeilBrown3f232d62016-06-02 16:19:52 +10003283
3284 rcu_read_lock();
3285 rdev = rcu_dereference(sh->raid_conf->disks[disk_idx].replacement);
NeilBrown9a3e1102011-12-23 10:17:53 +11003286 if (rdev
3287 && !test_bit(Faulty, &rdev->flags)
3288 && !test_bit(In_sync, &rdev->flags)
3289 && (rdev->recovery_offset <= sh->sector
3290 || rdev->mddev->recovery_cp <= sh->sector))
3291 rv = 1;
NeilBrown3f232d62016-06-02 16:19:52 +10003292 rcu_read_unlock();
NeilBrown9a3e1102011-12-23 10:17:53 +11003293 return rv;
3294}
3295
NeilBrown93b3dbc2011-07-27 11:00:36 +10003296/* fetch_block - checks the given member device to see if its data needs
Dan Williams1fe797e2008-06-28 09:16:30 +10003297 * to be read or computed to satisfy a request.
3298 *
3299 * Returns 1 when no more member devices need to be checked, otherwise returns
NeilBrown93b3dbc2011-07-27 11:00:36 +10003300 * 0 to tell the loop in handle_stripe_fill to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07003301 */
NeilBrown2c58f062015-02-02 11:32:23 +11003302
3303static int need_this_block(struct stripe_head *sh, struct stripe_head_state *s,
3304 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07003305{
3306 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10003307 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
3308 &sh->dev[s->failed_num[1]] };
NeilBrownea664c82015-02-02 14:03:28 +11003309 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07003310
NeilBrowna79cfe12015-02-02 11:37:59 +11003311
3312 if (test_bit(R5_LOCKED, &dev->flags) ||
3313 test_bit(R5_UPTODATE, &dev->flags))
3314 /* No point reading this as we already have it or have
3315 * decided to get it.
3316 */
3317 return 0;
3318
3319 if (dev->toread ||
3320 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)))
3321 /* We need this block to directly satisfy a request */
3322 return 1;
3323
3324 if (s->syncing || s->expanding ||
3325 (s->replacing && want_replace(sh, disk_idx)))
3326 /* When syncing, or expanding we read everything.
3327 * When replacing, we need the replaced block.
3328 */
3329 return 1;
3330
3331 if ((s->failed >= 1 && fdev[0]->toread) ||
3332 (s->failed >= 2 && fdev[1]->toread))
3333 /* If we want to read from a failed device, then
3334 * we need to actually read every other device.
3335 */
3336 return 1;
3337
NeilBrowna9d56952015-02-02 11:49:10 +11003338 /* Sometimes neither read-modify-write nor reconstruct-write
3339 * cycles can work. In those cases we read every block we
3340 * can. Then the parity-update is certain to have enough to
3341 * work with.
3342 * This can only be a problem when we need to write something,
3343 * and some device has failed. If either of those tests
3344 * fail we need look no further.
3345 */
3346 if (!s->failed || !s->to_write)
3347 return 0;
3348
3349 if (test_bit(R5_Insync, &dev->flags) &&
3350 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3351 /* Pre-reads at not permitted until after short delay
3352 * to gather multiple requests. However if this
3353 * device is no Insync, the block could only be be computed
3354 * and there is no need to delay that.
3355 */
3356 return 0;
NeilBrownea664c82015-02-02 14:03:28 +11003357
NeilBrown36707bb2015-09-24 15:25:36 +10003358 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrownea664c82015-02-02 14:03:28 +11003359 if (fdev[i]->towrite &&
3360 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3361 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3362 /* If we have a partial write to a failed
3363 * device, then we will need to reconstruct
3364 * the content of that device, so all other
3365 * devices must be read.
3366 */
3367 return 1;
3368 }
3369
3370 /* If we are forced to do a reconstruct-write, either because
3371 * the current RAID6 implementation only supports that, or
3372 * or because parity cannot be trusted and we are currently
3373 * recovering it, there is extra need to be careful.
3374 * If one of the devices that we would need to read, because
3375 * it is not being overwritten (and maybe not written at all)
3376 * is missing/faulty, then we need to read everything we can.
3377 */
3378 if (sh->raid_conf->level != 6 &&
3379 sh->sector < sh->raid_conf->mddev->recovery_cp)
3380 /* reconstruct-write isn't being forced */
3381 return 0;
NeilBrown36707bb2015-09-24 15:25:36 +10003382 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrown10d82c52015-05-08 18:19:33 +10003383 if (s->failed_num[i] != sh->pd_idx &&
3384 s->failed_num[i] != sh->qd_idx &&
3385 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
NeilBrownea664c82015-02-02 14:03:28 +11003386 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3387 return 1;
3388 }
3389
NeilBrown2c58f062015-02-02 11:32:23 +11003390 return 0;
3391}
3392
3393static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
3394 int disk_idx, int disks)
3395{
3396 struct r5dev *dev = &sh->dev[disk_idx];
3397
3398 /* is the data in this block needed, and can we get it? */
3399 if (need_this_block(sh, s, disk_idx, disks)) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003400 /* we would like to get this block, possibly by computing it,
3401 * otherwise read it if the backing disk is insync
3402 */
3403 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
3404 BUG_ON(test_bit(R5_Wantread, &dev->flags));
NeilBrownb0c783b2015-05-08 18:19:32 +10003405 BUG_ON(sh->batch_head);
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003406 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10003407 (s->failed && (disk_idx == s->failed_num[0] ||
3408 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003409 /* have disk failed, and we're requested to fetch it;
3410 * do compute it
3411 */
3412 pr_debug("Computing stripe %llu block %d\n",
3413 (unsigned long long)sh->sector, disk_idx);
3414 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3415 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3416 set_bit(R5_Wantcompute, &dev->flags);
3417 sh->ops.target = disk_idx;
3418 sh->ops.target2 = -1; /* no 2nd target */
3419 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10003420 /* Careful: from this point on 'uptodate' is in the eye
3421 * of raid_run_ops which services 'compute' operations
3422 * before writes. R5_Wantcompute flags a block that will
3423 * be R5_UPTODATE by the time it is needed for a
3424 * subsequent operation.
3425 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003426 s->uptodate++;
3427 return 1;
3428 } else if (s->uptodate == disks-2 && s->failed >= 2) {
3429 /* Computing 2-failure is *very* expensive; only
3430 * do it if failed >= 2
3431 */
3432 int other;
3433 for (other = disks; other--; ) {
3434 if (other == disk_idx)
3435 continue;
3436 if (!test_bit(R5_UPTODATE,
3437 &sh->dev[other].flags))
3438 break;
3439 }
3440 BUG_ON(other < 0);
3441 pr_debug("Computing stripe %llu blocks %d,%d\n",
3442 (unsigned long long)sh->sector,
3443 disk_idx, other);
3444 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3445 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3446 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
3447 set_bit(R5_Wantcompute, &sh->dev[other].flags);
3448 sh->ops.target = disk_idx;
3449 sh->ops.target2 = other;
3450 s->uptodate += 2;
3451 s->req_compute = 1;
3452 return 1;
3453 } else if (test_bit(R5_Insync, &dev->flags)) {
3454 set_bit(R5_LOCKED, &dev->flags);
3455 set_bit(R5_Wantread, &dev->flags);
3456 s->locked++;
3457 pr_debug("Reading block %d (sync=%d)\n",
3458 disk_idx, s->syncing);
3459 }
3460 }
3461
3462 return 0;
3463}
3464
3465/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10003466 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003467 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10003468static void handle_stripe_fill(struct stripe_head *sh,
3469 struct stripe_head_state *s,
3470 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003471{
3472 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003473
3474 /* look for blocks to read/compute, skip this if a compute
3475 * is already in flight, or if the stripe contents are in the
3476 * midst of changing due to a write
3477 */
3478 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
3479 !sh->reconstruct_state)
3480 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10003481 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003482 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003483 set_bit(STRIPE_HANDLE, &sh->state);
3484}
3485
NeilBrown787b76f2015-05-21 12:56:41 +10003486static void break_stripe_batch_list(struct stripe_head *head_sh,
3487 unsigned long handle_flags);
Dan Williams1fe797e2008-06-28 09:16:30 +10003488/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07003489 * any written block on an uptodate or failed drive can be returned.
3490 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
3491 * never LOCKED, so we don't need to test 'failed' directly.
3492 */
NeilBrownd1688a62011-10-11 16:49:52 +11003493static void handle_stripe_clean_event(struct r5conf *conf,
NeilBrown34a6f802015-08-14 12:07:57 +10003494 struct stripe_head *sh, int disks, struct bio_list *return_bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003495{
3496 int i;
3497 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003498 int discard_pending = 0;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003499 struct stripe_head *head_sh = sh;
3500 bool do_endio = false;
Dan Williamsa4456852007-07-09 11:56:43 -07003501
3502 for (i = disks; i--; )
3503 if (sh->dev[i].written) {
3504 dev = &sh->dev[i];
3505 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003506 (test_bit(R5_UPTODATE, &dev->flags) ||
Shaohua Lid592a992014-05-21 17:57:44 +08003507 test_bit(R5_Discard, &dev->flags) ||
3508 test_bit(R5_SkipCopy, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003509 /* We can return any write requests */
3510 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003511 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11003512 if (test_and_clear_bit(R5_Discard, &dev->flags))
3513 clear_bit(R5_UPTODATE, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08003514 if (test_and_clear_bit(R5_SkipCopy, &dev->flags)) {
3515 WARN_ON(test_bit(R5_UPTODATE, &dev->flags));
Shaohua Lid592a992014-05-21 17:57:44 +08003516 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003517 do_endio = true;
3518
3519returnbi:
3520 dev->page = dev->orig_page;
Dan Williamsa4456852007-07-09 11:56:43 -07003521 wbi = dev->written;
3522 dev->written = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003523 while (wbi && wbi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003524 dev->sector + STRIPE_SECTORS) {
3525 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003526 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003527 md_write_end(conf->mddev);
NeilBrown34a6f802015-08-14 12:07:57 +10003528 bio_list_add(return_bi, wbi);
Dan Williamsa4456852007-07-09 11:56:43 -07003529 }
3530 wbi = wbi2;
3531 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003532 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3533 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07003534 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003535 0);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003536 if (head_sh->batch_head) {
3537 sh = list_first_entry(&sh->batch_list,
3538 struct stripe_head,
3539 batch_list);
3540 if (sh != head_sh) {
3541 dev = &sh->dev[i];
3542 goto returnbi;
3543 }
3544 }
3545 sh = head_sh;
3546 dev = &sh->dev[i];
NeilBrownf8dfcff2013-03-12 12:18:06 +11003547 } else if (test_bit(R5_Discard, &dev->flags))
3548 discard_pending = 1;
3549 }
Shaohua Lif6bed0e2015-08-13 14:31:59 -07003550
Shaohua Li0576b1c2015-08-13 14:32:00 -07003551 r5l_stripe_write_finished(sh);
3552
NeilBrownf8dfcff2013-03-12 12:18:06 +11003553 if (!discard_pending &&
3554 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003555 int hash;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003556 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
3557 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
3558 if (sh->qd_idx >= 0) {
3559 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
3560 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
3561 }
3562 /* now that discard is done we can proceed with any sync */
3563 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08003564 /*
3565 * SCSI discard will change some bio fields and the stripe has
3566 * no updated data, so remove it from hash list and the stripe
3567 * will be reinitialized
3568 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11003569unhash:
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003570 hash = sh->hash_lock_index;
3571 spin_lock_irq(conf->hash_locks + hash);
Shaohua Lid47648f2013-10-19 14:51:42 +08003572 remove_hash(sh);
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003573 spin_unlock_irq(conf->hash_locks + hash);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003574 if (head_sh->batch_head) {
3575 sh = list_first_entry(&sh->batch_list,
3576 struct stripe_head, batch_list);
3577 if (sh != head_sh)
3578 goto unhash;
3579 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003580 sh = head_sh;
3581
NeilBrownf8dfcff2013-03-12 12:18:06 +11003582 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
3583 set_bit(STRIPE_HANDLE, &sh->state);
3584
3585 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003586
3587 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3588 if (atomic_dec_and_test(&conf->pending_full_writes))
3589 md_wakeup_thread(conf->mddev->thread);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003590
NeilBrown787b76f2015-05-21 12:56:41 +10003591 if (head_sh->batch_head && do_endio)
3592 break_stripe_batch_list(head_sh, STRIPE_EXPAND_SYNC_FLAGS);
Dan Williamsa4456852007-07-09 11:56:43 -07003593}
3594
Song Liud7bd3982016-11-23 22:50:39 -08003595static int handle_stripe_dirtying(struct r5conf *conf,
3596 struct stripe_head *sh,
3597 struct stripe_head_state *s,
3598 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003599{
3600 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11003601 sector_t recovery_cp = conf->mddev->recovery_cp;
3602
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003603 /* Check whether resync is now happening or should start.
Alexander Lyakasa7854482012-10-11 13:50:12 +11003604 * If yes, then the array is dirty (after unclean shutdown or
3605 * initial creation), so parity in some stripes might be inconsistent.
3606 * In this case, we need to always do reconstruct-write, to ensure
3607 * that in case of drive failure or read-error correction, we
3608 * generate correct data from the parity.
3609 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003610 if (conf->rmw_level == PARITY_DISABLE_RMW ||
NeilBrown26ac1072015-02-18 11:35:14 +11003611 (recovery_cp < MaxSector && sh->sector >= recovery_cp &&
3612 s->failed == 0)) {
Alexander Lyakasa7854482012-10-11 13:50:12 +11003613 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10003614 * look like rcw is cheaper
3615 */
3616 rcw = 1; rmw = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003617 pr_debug("force RCW rmw_level=%u, recovery_cp=%llu sh->sector=%llu\n",
3618 conf->rmw_level, (unsigned long long)recovery_cp,
Alexander Lyakasa7854482012-10-11 13:50:12 +11003619 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10003620 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003621 /* would I have to read this buffer for read_modify_write */
3622 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08003623 if ((dev->towrite || i == sh->pd_idx || i == sh->qd_idx ||
3624 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003625 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu1e6d6902016-11-17 15:24:39 -08003626 !((test_bit(R5_UPTODATE, &dev->flags) &&
3627 (!test_bit(R5_InJournal, &dev->flags) ||
3628 dev->page != dev->orig_page)) ||
Dan Williamsf38e1212007-01-02 13:52:30 -07003629 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003630 if (test_bit(R5_Insync, &dev->flags))
3631 rmw++;
3632 else
3633 rmw += 2*disks; /* cannot read it */
3634 }
3635 /* Would I have to read this buffer for reconstruct_write */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003636 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
3637 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003638 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003639 !(test_bit(R5_UPTODATE, &dev->flags) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003640 test_bit(R5_InJournal, &dev->flags) ||
3641 test_bit(R5_Wantcompute, &dev->flags))) {
NeilBrown67f45542014-05-28 13:39:22 +10003642 if (test_bit(R5_Insync, &dev->flags))
3643 rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07003644 else
3645 rcw += 2*disks;
3646 }
3647 }
Song Liu1e6d6902016-11-17 15:24:39 -08003648
Dan Williams45b42332007-07-09 11:56:43 -07003649 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003650 (unsigned long long)sh->sector, rmw, rcw);
3651 set_bit(STRIPE_HANDLE, &sh->state);
Song Liu41257582016-05-23 17:25:06 -07003652 if ((rmw < rcw || (rmw == rcw && conf->rmw_level == PARITY_PREFER_RMW)) && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003653 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003654 if (conf->mddev->queue)
3655 blk_add_trace_msg(conf->mddev->queue,
3656 "raid5 rmw %llu %d",
3657 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07003658 for (i = disks; i--; ) {
3659 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08003660 if (test_bit(R5_InJournal, &dev->flags) &&
3661 dev->page == dev->orig_page &&
3662 !test_bit(R5_LOCKED, &sh->dev[sh->pd_idx].flags)) {
3663 /* alloc page for prexor */
Song Liud7bd3982016-11-23 22:50:39 -08003664 struct page *p = alloc_page(GFP_NOIO);
Song Liu1e6d6902016-11-17 15:24:39 -08003665
Song Liud7bd3982016-11-23 22:50:39 -08003666 if (p) {
3667 dev->orig_page = p;
3668 continue;
3669 }
3670
3671 /*
3672 * alloc_page() failed, try use
3673 * disk_info->extra_page
3674 */
3675 if (!test_and_set_bit(R5C_EXTRA_PAGE_IN_USE,
3676 &conf->cache_state)) {
3677 r5c_use_extra_page(sh);
3678 break;
3679 }
3680
3681 /* extra_page in use, add to delayed_list */
3682 set_bit(STRIPE_DELAYED, &sh->state);
3683 s->waiting_extra_page = 1;
3684 return -EAGAIN;
Song Liu1e6d6902016-11-17 15:24:39 -08003685 }
Song Liud7bd3982016-11-23 22:50:39 -08003686 }
Song Liu1e6d6902016-11-17 15:24:39 -08003687
Song Liud7bd3982016-11-23 22:50:39 -08003688 for (i = disks; i--; ) {
3689 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08003690 if ((dev->towrite ||
3691 i == sh->pd_idx || i == sh->qd_idx ||
3692 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003693 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu1e6d6902016-11-17 15:24:39 -08003694 !((test_bit(R5_UPTODATE, &dev->flags) &&
3695 (!test_bit(R5_InJournal, &dev->flags) ||
3696 dev->page != dev->orig_page)) ||
3697 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003698 test_bit(R5_Insync, &dev->flags)) {
NeilBrown67f45542014-05-28 13:39:22 +10003699 if (test_bit(STRIPE_PREREAD_ACTIVE,
3700 &sh->state)) {
3701 pr_debug("Read_old block %d for r-m-w\n",
3702 i);
Dan Williamsa4456852007-07-09 11:56:43 -07003703 set_bit(R5_LOCKED, &dev->flags);
3704 set_bit(R5_Wantread, &dev->flags);
3705 s->locked++;
3706 } else {
3707 set_bit(STRIPE_DELAYED, &sh->state);
3708 set_bit(STRIPE_HANDLE, &sh->state);
3709 }
3710 }
3711 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003712 }
Song Liu41257582016-05-23 17:25:06 -07003713 if ((rcw < rmw || (rcw == rmw && conf->rmw_level != PARITY_PREFER_RMW)) && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003714 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003715 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003716 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003717 for (i = disks; i--; ) {
3718 struct r5dev *dev = &sh->dev[i];
3719 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003720 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003721 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003722 !(test_bit(R5_UPTODATE, &dev->flags) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003723 test_bit(R5_InJournal, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003724 test_bit(R5_Wantcompute, &dev->flags))) {
3725 rcw++;
NeilBrown67f45542014-05-28 13:39:22 +10003726 if (test_bit(R5_Insync, &dev->flags) &&
3727 test_bit(STRIPE_PREREAD_ACTIVE,
3728 &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003729 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003730 "%d for Reconstruct\n", i);
3731 set_bit(R5_LOCKED, &dev->flags);
3732 set_bit(R5_Wantread, &dev->flags);
3733 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003734 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003735 } else {
3736 set_bit(STRIPE_DELAYED, &sh->state);
3737 set_bit(STRIPE_HANDLE, &sh->state);
3738 }
3739 }
3740 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003741 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003742 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3743 (unsigned long long)sh->sector,
3744 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003745 }
NeilBrownb1b02fe2015-02-02 10:44:29 +11003746
3747 if (rcw > disks && rmw > disks &&
3748 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3749 set_bit(STRIPE_DELAYED, &sh->state);
3750
Dan Williamsa4456852007-07-09 11:56:43 -07003751 /* now if nothing is locked, and if we have enough data,
3752 * we can start a write request
3753 */
Dan Williamsf38e1212007-01-02 13:52:30 -07003754 /* since handle_stripe can be called at any time we need to handle the
3755 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07003756 * subsequent call wants to start a write request. raid_run_ops only
3757 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07003758 * simultaneously. If this is not the case then new writes need to be
3759 * held off until the compute completes.
3760 */
Dan Williams976ea8d2008-06-28 08:32:03 +10003761 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
3762 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
Song Liu1e6d6902016-11-17 15:24:39 -08003763 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003764 schedule_reconstruction(sh, s, rcw == 0, 0);
Song Liud7bd3982016-11-23 22:50:39 -08003765 return 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003766}
3767
NeilBrownd1688a62011-10-11 16:49:52 +11003768static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003769 struct stripe_head_state *s, int disks)
3770{
Dan Williamsecc65c92008-06-28 08:31:57 +10003771 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07003772
shli@kernel.org59fc6302014-12-15 12:57:03 +11003773 BUG_ON(sh->batch_head);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003774 set_bit(STRIPE_HANDLE, &sh->state);
3775
Dan Williamsecc65c92008-06-28 08:31:57 +10003776 switch (sh->check_state) {
3777 case check_state_idle:
3778 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07003779 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07003780 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10003781 sh->check_state = check_state_run;
3782 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003783 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003784 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10003785 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07003786 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003787 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10003788 /* fall through */
3789 case check_state_compute_result:
3790 sh->check_state = check_state_idle;
3791 if (!dev)
3792 dev = &sh->dev[sh->pd_idx];
3793
3794 /* check that a write has not made the stripe insync */
3795 if (test_bit(STRIPE_INSYNC, &sh->state))
3796 break;
3797
3798 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07003799 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3800 BUG_ON(s->uptodate != disks);
3801
3802 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10003803 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07003804 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07003805
Dan Williamsa4456852007-07-09 11:56:43 -07003806 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003807 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003808 break;
3809 case check_state_run:
3810 break; /* we will be called again upon completion */
3811 case check_state_check_result:
3812 sh->check_state = check_state_idle;
3813
3814 /* if a failure occurred during the check operation, leave
3815 * STRIPE_INSYNC not set and let the stripe be handled again
3816 */
3817 if (s->failed)
3818 break;
3819
3820 /* handle a successful check operation, if parity is correct
3821 * we are done. Otherwise update the mismatch count and repair
3822 * parity if !MD_RECOVERY_CHECK
3823 */
Dan Williamsad283ea2009-08-29 19:09:26 -07003824 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10003825 /* parity is correct (on disc,
3826 * not in buffer any more)
3827 */
3828 set_bit(STRIPE_INSYNC, &sh->state);
3829 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003830 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10003831 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3832 /* don't try to repair!! */
3833 set_bit(STRIPE_INSYNC, &sh->state);
3834 else {
3835 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003836 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003837 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3838 set_bit(R5_Wantcompute,
3839 &sh->dev[sh->pd_idx].flags);
3840 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003841 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003842 s->uptodate++;
3843 }
3844 }
3845 break;
3846 case check_state_compute_run:
3847 break;
3848 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11003849 pr_err("%s: unknown check_state: %d sector: %llu\n",
Dan Williamsecc65c92008-06-28 08:31:57 +10003850 __func__, sh->check_state,
3851 (unsigned long long) sh->sector);
3852 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003853 }
3854}
3855
NeilBrownd1688a62011-10-11 16:49:52 +11003856static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003857 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003858 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003859{
Dan Williamsa4456852007-07-09 11:56:43 -07003860 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003861 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003862 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003863
shli@kernel.org59fc6302014-12-15 12:57:03 +11003864 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003865 set_bit(STRIPE_HANDLE, &sh->state);
3866
3867 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003868
Dan Williamsa4456852007-07-09 11:56:43 -07003869 /* Want to check and possibly repair P and Q.
3870 * However there could be one 'failed' device, in which
3871 * case we can only check one of them, possibly using the
3872 * other to generate missing data
3873 */
3874
Dan Williamsd82dfee2009-07-14 13:40:57 -07003875 switch (sh->check_state) {
3876 case check_state_idle:
3877 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10003878 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003879 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07003880 * makes sense to check P (If anything else were failed,
3881 * we would have used P to recreate it).
3882 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003883 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07003884 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003885 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003886 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07003887 * anything, so it makes sense to check it
3888 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003889 if (sh->check_state == check_state_run)
3890 sh->check_state = check_state_run_pq;
3891 else
3892 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07003893 }
Dan Williams36d1c642009-07-14 11:48:22 -07003894
Dan Williamsd82dfee2009-07-14 13:40:57 -07003895 /* discard potentially stale zero_sum_result */
3896 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07003897
Dan Williamsd82dfee2009-07-14 13:40:57 -07003898 if (sh->check_state == check_state_run) {
3899 /* async_xor_zero_sum destroys the contents of P */
3900 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3901 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07003902 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003903 if (sh->check_state >= check_state_run &&
3904 sh->check_state <= check_state_run_pq) {
3905 /* async_syndrome_zero_sum preserves P and Q, so
3906 * no need to mark them !uptodate here
3907 */
3908 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3909 break;
3910 }
Dan Williams36d1c642009-07-14 11:48:22 -07003911
Dan Williamsd82dfee2009-07-14 13:40:57 -07003912 /* we have 2-disk failure */
3913 BUG_ON(s->failed != 2);
3914 /* fall through */
3915 case check_state_compute_result:
3916 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003917
Dan Williamsd82dfee2009-07-14 13:40:57 -07003918 /* check that a write has not made the stripe insync */
3919 if (test_bit(STRIPE_INSYNC, &sh->state))
3920 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003921
3922 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003923 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003924 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003925 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003926 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003927 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003928 s->locked++;
3929 set_bit(R5_LOCKED, &dev->flags);
3930 set_bit(R5_Wantwrite, &dev->flags);
3931 }
3932 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003933 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003934 s->locked++;
3935 set_bit(R5_LOCKED, &dev->flags);
3936 set_bit(R5_Wantwrite, &dev->flags);
3937 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003938 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003939 dev = &sh->dev[pd_idx];
3940 s->locked++;
3941 set_bit(R5_LOCKED, &dev->flags);
3942 set_bit(R5_Wantwrite, &dev->flags);
3943 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003944 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003945 dev = &sh->dev[qd_idx];
3946 s->locked++;
3947 set_bit(R5_LOCKED, &dev->flags);
3948 set_bit(R5_Wantwrite, &dev->flags);
3949 }
3950 clear_bit(STRIPE_DEGRADED, &sh->state);
3951
3952 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003953 break;
3954 case check_state_run:
3955 case check_state_run_q:
3956 case check_state_run_pq:
3957 break; /* we will be called again upon completion */
3958 case check_state_check_result:
3959 sh->check_state = check_state_idle;
3960
3961 /* handle a successful check operation, if parity is correct
3962 * we are done. Otherwise update the mismatch count and repair
3963 * parity if !MD_RECOVERY_CHECK
3964 */
3965 if (sh->ops.zero_sum_result == 0) {
3966 /* both parities are correct */
3967 if (!s->failed)
3968 set_bit(STRIPE_INSYNC, &sh->state);
3969 else {
3970 /* in contrast to the raid5 case we can validate
3971 * parity, but still have a failure to write
3972 * back
3973 */
3974 sh->check_state = check_state_compute_result;
3975 /* Returning at this point means that we may go
3976 * off and bring p and/or q uptodate again so
3977 * we make sure to check zero_sum_result again
3978 * to verify if p or q need writeback
3979 */
3980 }
3981 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003982 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003983 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3984 /* don't try to repair!! */
3985 set_bit(STRIPE_INSYNC, &sh->state);
3986 else {
3987 int *target = &sh->ops.target;
3988
3989 sh->ops.target = -1;
3990 sh->ops.target2 = -1;
3991 sh->check_state = check_state_compute_run;
3992 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3993 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3994 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3995 set_bit(R5_Wantcompute,
3996 &sh->dev[pd_idx].flags);
3997 *target = pd_idx;
3998 target = &sh->ops.target2;
3999 s->uptodate++;
4000 }
4001 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
4002 set_bit(R5_Wantcompute,
4003 &sh->dev[qd_idx].flags);
4004 *target = qd_idx;
4005 s->uptodate++;
4006 }
4007 }
4008 }
4009 break;
4010 case check_state_compute_run:
4011 break;
4012 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11004013 pr_warn("%s: unknown check_state: %d sector: %llu\n",
4014 __func__, sh->check_state,
4015 (unsigned long long) sh->sector);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004016 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07004017 }
4018}
4019
NeilBrownd1688a62011-10-11 16:49:52 +11004020static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07004021{
4022 int i;
4023
4024 /* We have read all the blocks in this stripe and now we need to
4025 * copy some of them into a target stripe for expand.
4026 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07004027 struct dma_async_tx_descriptor *tx = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11004028 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07004029 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4030 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11004031 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11004032 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07004033 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07004034 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07004035
Shaohua Li6d036f72015-08-13 14:31:57 -07004036 sector_t bn = raid5_compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11004037 sector_t s = raid5_compute_sector(conf, bn, 0,
4038 &dd_idx, NULL);
Shaohua Li6d036f72015-08-13 14:31:57 -07004039 sh2 = raid5_get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07004040 if (sh2 == NULL)
4041 /* so far only the early blocks of this stripe
4042 * have been requested. When later blocks
4043 * get requested, we will try again
4044 */
4045 continue;
4046 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
4047 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
4048 /* must have already done this block */
Shaohua Li6d036f72015-08-13 14:31:57 -07004049 raid5_release_stripe(sh2);
Dan Williamsa4456852007-07-09 11:56:43 -07004050 continue;
4051 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07004052
4053 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07004054 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004055 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07004056 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07004057 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004058
Dan Williamsa4456852007-07-09 11:56:43 -07004059 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
4060 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
4061 for (j = 0; j < conf->raid_disks; j++)
4062 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10004063 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07004064 !test_bit(R5_Expanded, &sh2->dev[j].flags))
4065 break;
4066 if (j == conf->raid_disks) {
4067 set_bit(STRIPE_EXPAND_READY, &sh2->state);
4068 set_bit(STRIPE_HANDLE, &sh2->state);
4069 }
Shaohua Li6d036f72015-08-13 14:31:57 -07004070 raid5_release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004071
Dan Williamsa4456852007-07-09 11:56:43 -07004072 }
NeilBrowna2e08552007-09-11 15:23:36 -07004073 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11004074 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07004075}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
4077/*
4078 * handle_stripe - do things to a stripe.
4079 *
NeilBrown9a3e1102011-12-23 10:17:53 +11004080 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
4081 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11004083 * return some read requests which now have data
4084 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 * schedule a read on some buffers
4086 * schedule a write of some buffers
4087 * return confirmation of parity correctness
4088 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 */
Dan Williamsa4456852007-07-09 11:56:43 -07004090
NeilBrownacfe7262011-07-27 11:00:36 +10004091static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07004092{
NeilBrownd1688a62011-10-11 16:49:52 +11004093 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08004094 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004095 struct r5dev *dev;
4096 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11004097 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07004098
NeilBrownacfe7262011-07-27 11:00:36 +10004099 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07004100
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004101 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state) && !sh->batch_head;
4102 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state) && !sh->batch_head;
NeilBrownacfe7262011-07-27 11:00:36 +10004103 s->failed_num[0] = -1;
4104 s->failed_num[1] = -1;
Shaohua Li6e74a9c2015-10-08 21:54:08 -07004105 s->log_failed = r5l_log_disk_error(conf);
NeilBrownacfe7262011-07-27 11:00:36 +10004106
4107 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07004108 rcu_read_lock();
4109 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004110 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10004111 sector_t first_bad;
4112 int bad_sectors;
4113 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10004114
NeilBrown16a53ec2006-06-26 00:27:38 -07004115 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07004116
Dan Williams45b42332007-07-09 11:56:43 -07004117 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11004118 i, dev->flags,
4119 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004120 /* maybe we can reply to a read
4121 *
4122 * new wantfill requests are only permitted while
4123 * ops_complete_biofill is guaranteed to be inactive
4124 */
4125 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
4126 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
4127 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07004128
4129 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10004130 if (test_bit(R5_LOCKED, &dev->flags))
4131 s->locked++;
4132 if (test_bit(R5_UPTODATE, &dev->flags))
4133 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004134 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004135 s->compute++;
4136 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004137 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004138
NeilBrownacfe7262011-07-27 11:00:36 +10004139 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004140 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10004141 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10004142 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004143 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10004144 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004145 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004146 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004147 }
Dan Williamsa4456852007-07-09 11:56:43 -07004148 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10004149 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11004150 /* Prefer to use the replacement for reads, but only
4151 * if it is recovered enough and has no bad blocks.
4152 */
4153 rdev = rcu_dereference(conf->disks[i].replacement);
4154 if (rdev && !test_bit(Faulty, &rdev->flags) &&
4155 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
4156 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4157 &first_bad, &bad_sectors))
4158 set_bit(R5_ReadRepl, &dev->flags);
4159 else {
NeilBrowne6030cb2015-07-17 13:26:23 +10004160 if (rdev && !test_bit(Faulty, &rdev->flags))
NeilBrown9a3e1102011-12-23 10:17:53 +11004161 set_bit(R5_NeedReplace, &dev->flags);
NeilBrowne6030cb2015-07-17 13:26:23 +10004162 else
4163 clear_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11004164 rdev = rcu_dereference(conf->disks[i].rdev);
4165 clear_bit(R5_ReadRepl, &dev->flags);
4166 }
NeilBrown9283d8c2011-12-08 16:27:57 +11004167 if (rdev && test_bit(Faulty, &rdev->flags))
4168 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10004169 if (rdev) {
4170 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4171 &first_bad, &bad_sectors);
4172 if (s->blocked_rdev == NULL
4173 && (test_bit(Blocked, &rdev->flags)
4174 || is_bad < 0)) {
4175 if (is_bad < 0)
4176 set_bit(BlockedBadBlocks,
4177 &rdev->flags);
4178 s->blocked_rdev = rdev;
4179 atomic_inc(&rdev->nr_pending);
4180 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004181 }
NeilBrown415e72d2010-06-17 17:25:21 +10004182 clear_bit(R5_Insync, &dev->flags);
4183 if (!rdev)
4184 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10004185 else if (is_bad) {
4186 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10004187 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
4188 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10004189 /* treat as in-sync, but with a read error
4190 * which we can now try to correct
4191 */
4192 set_bit(R5_Insync, &dev->flags);
4193 set_bit(R5_ReadError, &dev->flags);
4194 }
4195 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10004196 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11004197 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10004198 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11004199 set_bit(R5_Insync, &dev->flags);
4200 else if (test_bit(R5_UPTODATE, &dev->flags) &&
4201 test_bit(R5_Expanded, &dev->flags))
4202 /* If we've reshaped into here, we assume it is Insync.
4203 * We will shortly update recovery_offset to make
4204 * it official.
4205 */
4206 set_bit(R5_Insync, &dev->flags);
4207
NeilBrown1cc03eb2014-01-06 13:19:42 +11004208 if (test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004209 /* This flag does not apply to '.replacement'
4210 * only to .rdev, so make sure to check that*/
4211 struct md_rdev *rdev2 = rcu_dereference(
4212 conf->disks[i].rdev);
4213 if (rdev2 == rdev)
4214 clear_bit(R5_Insync, &dev->flags);
4215 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004216 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004217 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10004218 } else
4219 clear_bit(R5_WriteError, &dev->flags);
4220 }
NeilBrown1cc03eb2014-01-06 13:19:42 +11004221 if (test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004222 /* This flag does not apply to '.replacement'
4223 * only to .rdev, so make sure to check that*/
4224 struct md_rdev *rdev2 = rcu_dereference(
4225 conf->disks[i].rdev);
4226 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10004227 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004228 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10004229 } else
4230 clear_bit(R5_MadeGood, &dev->flags);
4231 }
NeilBrown977df362011-12-23 10:17:53 +11004232 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
4233 struct md_rdev *rdev2 = rcu_dereference(
4234 conf->disks[i].replacement);
4235 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
4236 s->handle_bad_blocks = 1;
4237 atomic_inc(&rdev2->nr_pending);
4238 } else
4239 clear_bit(R5_MadeGoodRepl, &dev->flags);
4240 }
NeilBrown415e72d2010-06-17 17:25:21 +10004241 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004242 /* The ReadError flag will just be confusing now */
4243 clear_bit(R5_ReadError, &dev->flags);
4244 clear_bit(R5_ReWrite, &dev->flags);
4245 }
NeilBrown415e72d2010-06-17 17:25:21 +10004246 if (test_bit(R5_ReadError, &dev->flags))
4247 clear_bit(R5_Insync, &dev->flags);
4248 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004249 if (s->failed < 2)
4250 s->failed_num[s->failed] = i;
4251 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11004252 if (rdev && !test_bit(Faulty, &rdev->flags))
4253 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10004254 }
Song Liu2ded3702016-11-17 15:24:38 -08004255
4256 if (test_bit(R5_InJournal, &dev->flags))
4257 s->injournal++;
Song Liu1e6d6902016-11-17 15:24:39 -08004258 if (test_bit(R5_InJournal, &dev->flags) && dev->written)
4259 s->just_cached++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004260 }
NeilBrown9a3e1102011-12-23 10:17:53 +11004261 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4262 /* If there is a failed device being replaced,
4263 * we must be recovering.
4264 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10004265 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11004266 * else we can only be replacing
4267 * sync and recovery both need to read all devices, and so
4268 * use the same flag.
4269 */
4270 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10004271 sh->sector >= conf->mddev->recovery_cp ||
4272 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11004273 s->syncing = 1;
4274 else
4275 s->replacing = 1;
4276 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004277 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10004278}
NeilBrownf4168852007-02-28 20:11:53 -08004279
shli@kernel.org59fc6302014-12-15 12:57:03 +11004280static int clear_batch_ready(struct stripe_head *sh)
4281{
NeilBrownb15a9db2015-05-22 15:20:04 +10004282 /* Return '1' if this is a member of batch, or
4283 * '0' if it is a lone stripe or a head which can now be
4284 * handled.
4285 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11004286 struct stripe_head *tmp;
4287 if (!test_and_clear_bit(STRIPE_BATCH_READY, &sh->state))
NeilBrownb15a9db2015-05-22 15:20:04 +10004288 return (sh->batch_head && sh->batch_head != sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11004289 spin_lock(&sh->stripe_lock);
4290 if (!sh->batch_head) {
4291 spin_unlock(&sh->stripe_lock);
4292 return 0;
4293 }
4294
4295 /*
4296 * this stripe could be added to a batch list before we check
4297 * BATCH_READY, skips it
4298 */
4299 if (sh->batch_head != sh) {
4300 spin_unlock(&sh->stripe_lock);
4301 return 1;
4302 }
4303 spin_lock(&sh->batch_lock);
4304 list_for_each_entry(tmp, &sh->batch_list, batch_list)
4305 clear_bit(STRIPE_BATCH_READY, &tmp->state);
4306 spin_unlock(&sh->batch_lock);
4307 spin_unlock(&sh->stripe_lock);
4308
4309 /*
4310 * BATCH_READY is cleared, no new stripes can be added.
4311 * batch_list can be accessed without lock
4312 */
4313 return 0;
4314}
4315
NeilBrown3960ce72015-05-21 12:20:36 +10004316static void break_stripe_batch_list(struct stripe_head *head_sh,
4317 unsigned long handle_flags)
shli@kernel.org72ac7332014-12-15 12:57:03 +11004318{
NeilBrown4e3d62f2015-05-21 11:50:16 +10004319 struct stripe_head *sh, *next;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004320 int i;
NeilBrownfb642b92015-05-21 12:00:47 +10004321 int do_wakeup = 0;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004322
NeilBrownbb270512015-05-08 18:19:40 +10004323 list_for_each_entry_safe(sh, next, &head_sh->batch_list, batch_list) {
4324
shli@kernel.org72ac7332014-12-15 12:57:03 +11004325 list_del_init(&sh->batch_list);
4326
Shaohua Lifb3229d2016-03-09 10:08:38 -08004327 WARN_ONCE(sh->state & ((1 << STRIPE_ACTIVE) |
NeilBrown1b956f72015-05-21 12:40:26 +10004328 (1 << STRIPE_SYNCING) |
4329 (1 << STRIPE_REPLACED) |
NeilBrown1b956f72015-05-21 12:40:26 +10004330 (1 << STRIPE_DELAYED) |
4331 (1 << STRIPE_BIT_DELAY) |
4332 (1 << STRIPE_FULL_WRITE) |
4333 (1 << STRIPE_BIOFILL_RUN) |
4334 (1 << STRIPE_COMPUTE_RUN) |
4335 (1 << STRIPE_OPS_REQ_PENDING) |
4336 (1 << STRIPE_DISCARD) |
4337 (1 << STRIPE_BATCH_READY) |
4338 (1 << STRIPE_BATCH_ERR) |
Shaohua Lifb3229d2016-03-09 10:08:38 -08004339 (1 << STRIPE_BITMAP_PENDING)),
4340 "stripe state: %lx\n", sh->state);
4341 WARN_ONCE(head_sh->state & ((1 << STRIPE_DISCARD) |
4342 (1 << STRIPE_REPLACED)),
4343 "head stripe state: %lx\n", head_sh->state);
NeilBrown1b956f72015-05-21 12:40:26 +10004344
4345 set_mask_bits(&sh->state, ~(STRIPE_EXPAND_SYNC_FLAGS |
NeilBrown550da242016-03-09 12:58:25 +11004346 (1 << STRIPE_PREREAD_ACTIVE) |
NeilBrown1b956f72015-05-21 12:40:26 +10004347 (1 << STRIPE_DEGRADED)),
4348 head_sh->state & (1 << STRIPE_INSYNC));
4349
shli@kernel.org72ac7332014-12-15 12:57:03 +11004350 sh->check_state = head_sh->check_state;
4351 sh->reconstruct_state = head_sh->reconstruct_state;
NeilBrownfb642b92015-05-21 12:00:47 +10004352 for (i = 0; i < sh->disks; i++) {
4353 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
4354 do_wakeup = 1;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004355 sh->dev[i].flags = head_sh->dev[i].flags &
4356 (~((1 << R5_WriteError) | (1 << R5_Overlap)));
NeilBrownfb642b92015-05-21 12:00:47 +10004357 }
shli@kernel.org72ac7332014-12-15 12:57:03 +11004358 spin_lock_irq(&sh->stripe_lock);
4359 sh->batch_head = NULL;
4360 spin_unlock_irq(&sh->stripe_lock);
NeilBrown3960ce72015-05-21 12:20:36 +10004361 if (handle_flags == 0 ||
4362 sh->state & handle_flags)
4363 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07004364 raid5_release_stripe(sh);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004365 }
NeilBrownfb642b92015-05-21 12:00:47 +10004366 spin_lock_irq(&head_sh->stripe_lock);
4367 head_sh->batch_head = NULL;
4368 spin_unlock_irq(&head_sh->stripe_lock);
4369 for (i = 0; i < head_sh->disks; i++)
4370 if (test_and_clear_bit(R5_Overlap, &head_sh->dev[i].flags))
4371 do_wakeup = 1;
NeilBrown3960ce72015-05-21 12:20:36 +10004372 if (head_sh->state & handle_flags)
4373 set_bit(STRIPE_HANDLE, &head_sh->state);
NeilBrownfb642b92015-05-21 12:00:47 +10004374
4375 if (do_wakeup)
4376 wake_up(&head_sh->raid_conf->wait_for_overlap);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004377}
4378
NeilBrowncc940152011-07-26 11:35:35 +10004379static void handle_stripe(struct stripe_head *sh)
4380{
4381 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11004382 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10004383 int i;
NeilBrown84789552011-07-27 11:00:36 +10004384 int prexor;
4385 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004386 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10004387
4388 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11004389 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10004390 /* already being handled, ensure it gets handled
4391 * again when current action finishes */
4392 set_bit(STRIPE_HANDLE, &sh->state);
4393 return;
4394 }
4395
shli@kernel.org59fc6302014-12-15 12:57:03 +11004396 if (clear_batch_ready(sh) ) {
4397 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
4398 return;
4399 }
4400
NeilBrown4e3d62f2015-05-21 11:50:16 +10004401 if (test_and_clear_bit(STRIPE_BATCH_ERR, &sh->state))
NeilBrown3960ce72015-05-21 12:20:36 +10004402 break_stripe_batch_list(sh, 0);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004403
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004404 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state) && !sh->batch_head) {
NeilBrownf8dfcff2013-03-12 12:18:06 +11004405 spin_lock(&sh->stripe_lock);
4406 /* Cannot process 'sync' concurrently with 'discard' */
4407 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
4408 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4409 set_bit(STRIPE_SYNCING, &sh->state);
4410 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10004411 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004412 }
4413 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10004414 }
4415 clear_bit(STRIPE_DELAYED, &sh->state);
4416
4417 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
4418 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
4419 (unsigned long long)sh->sector, sh->state,
4420 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
4421 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10004422
NeilBrownacfe7262011-07-27 11:00:36 +10004423 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10004424
Shaohua Lib70abcb2015-08-13 14:31:58 -07004425 if (test_bit(STRIPE_LOG_TRAPPED, &sh->state))
4426 goto finish;
4427
NeilBrownbc2607f2011-07-28 11:39:22 +10004428 if (s.handle_bad_blocks) {
4429 set_bit(STRIPE_HANDLE, &sh->state);
4430 goto finish;
4431 }
4432
NeilBrown474af965fe2011-07-27 11:00:36 +10004433 if (unlikely(s.blocked_rdev)) {
4434 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11004435 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10004436 set_bit(STRIPE_HANDLE, &sh->state);
4437 goto finish;
4438 }
4439 /* There is nothing for the blocked_rdev to block */
4440 rdev_dec_pending(s.blocked_rdev, conf->mddev);
4441 s.blocked_rdev = NULL;
4442 }
4443
4444 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
4445 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
4446 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
4447 }
4448
4449 pr_debug("locked=%d uptodate=%d to_read=%d"
4450 " to_write=%d failed=%d failed_num=%d,%d\n",
4451 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
4452 s.failed_num[0], s.failed_num[1]);
4453 /* check if the array has lost more than max_degraded devices and,
4454 * if so, some requests might need to be failed.
4455 */
Shaohua Li6e74a9c2015-10-08 21:54:08 -07004456 if (s.failed > conf->max_degraded || s.log_failed) {
NeilBrown9a3f5302011-11-08 16:22:01 +11004457 sh->check_state = 0;
4458 sh->reconstruct_state = 0;
NeilBrown626f2092015-05-22 14:03:10 +10004459 break_stripe_batch_list(sh, 0);
NeilBrown9a3f5302011-11-08 16:22:01 +11004460 if (s.to_read+s.to_write+s.written)
4461 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11004462 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11004463 handle_failed_sync(conf, sh, &s);
4464 }
NeilBrown474af965fe2011-07-27 11:00:36 +10004465
NeilBrown84789552011-07-27 11:00:36 +10004466 /* Now we check to see if any write operations have recently
4467 * completed
4468 */
4469 prexor = 0;
4470 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
4471 prexor = 1;
4472 if (sh->reconstruct_state == reconstruct_state_drain_result ||
4473 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
4474 sh->reconstruct_state = reconstruct_state_idle;
4475
4476 /* All the 'written' buffers and the parity block are ready to
4477 * be written back to disk
4478 */
Shaohua Li9e4447682012-10-11 13:49:49 +11004479 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
4480 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004481 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11004482 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
4483 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004484 for (i = disks; i--; ) {
4485 struct r5dev *dev = &sh->dev[i];
4486 if (test_bit(R5_LOCKED, &dev->flags) &&
4487 (i == sh->pd_idx || i == sh->qd_idx ||
Song Liu1e6d6902016-11-17 15:24:39 -08004488 dev->written || test_bit(R5_InJournal,
4489 &dev->flags))) {
NeilBrown84789552011-07-27 11:00:36 +10004490 pr_debug("Writing block %d\n", i);
4491 set_bit(R5_Wantwrite, &dev->flags);
4492 if (prexor)
4493 continue;
NeilBrown9c4bdf62014-08-13 09:57:07 +10004494 if (s.failed > 1)
4495 continue;
NeilBrown84789552011-07-27 11:00:36 +10004496 if (!test_bit(R5_Insync, &dev->flags) ||
4497 ((i == sh->pd_idx || i == sh->qd_idx) &&
4498 s.failed == 0))
4499 set_bit(STRIPE_INSYNC, &sh->state);
4500 }
4501 }
4502 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4503 s.dec_preread_active = 1;
4504 }
4505
NeilBrownef5b7c62012-11-22 09:13:36 +11004506 /*
4507 * might be able to return some write requests if the parity blocks
4508 * are safe, or on a failed drive
4509 */
4510 pdev = &sh->dev[sh->pd_idx];
4511 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
4512 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
4513 qdev = &sh->dev[sh->qd_idx];
4514 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
4515 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
4516 || conf->level < 6;
4517
4518 if (s.written &&
4519 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
4520 && !test_bit(R5_LOCKED, &pdev->flags)
4521 && (test_bit(R5_UPTODATE, &pdev->flags) ||
4522 test_bit(R5_Discard, &pdev->flags))))) &&
4523 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
4524 && !test_bit(R5_LOCKED, &qdev->flags)
4525 && (test_bit(R5_UPTODATE, &qdev->flags) ||
4526 test_bit(R5_Discard, &qdev->flags))))))
4527 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
4528
Song Liu1e6d6902016-11-17 15:24:39 -08004529 if (s.just_cached)
4530 r5c_handle_cached_data_endio(conf, sh, disks, &s.return_bi);
4531 r5l_stripe_write_finished(sh);
4532
NeilBrownef5b7c62012-11-22 09:13:36 +11004533 /* Now we might consider reading some blocks, either to check/generate
4534 * parity, or to satisfy requests
4535 * or to load a block that is being partially written.
4536 */
4537 if (s.to_read || s.non_overwrite
4538 || (conf->level == 6 && s.to_write && s.failed)
4539 || (s.syncing && (s.uptodate + s.compute < disks))
4540 || s.replacing
4541 || s.expanding)
4542 handle_stripe_fill(sh, &s, disks);
4543
Song Liu2ded3702016-11-17 15:24:38 -08004544 /*
4545 * When the stripe finishes full journal write cycle (write to journal
4546 * and raid disk), this is the clean up procedure so it is ready for
4547 * next operation.
4548 */
4549 r5c_finish_stripe_write_out(conf, sh, &s);
4550
4551 /*
4552 * Now to consider new write requests, cache write back and what else,
4553 * if anything should be read. We do not handle new writes when:
NeilBrown84789552011-07-27 11:00:36 +10004554 * 1/ A 'write' operation (copy+xor) is already in flight.
4555 * 2/ A 'check' operation is in flight, as it may clobber the parity
4556 * block.
Song Liu2ded3702016-11-17 15:24:38 -08004557 * 3/ A r5c cache log write is in flight.
NeilBrown84789552011-07-27 11:00:36 +10004558 */
Song Liu2ded3702016-11-17 15:24:38 -08004559
4560 if (!sh->reconstruct_state && !sh->check_state && !sh->log_io) {
4561 if (!r5c_is_writeback(conf->log)) {
4562 if (s.to_write)
4563 handle_stripe_dirtying(conf, sh, &s, disks);
4564 } else { /* write back cache */
4565 int ret = 0;
4566
4567 /* First, try handle writes in caching phase */
4568 if (s.to_write)
4569 ret = r5c_try_caching_write(conf, sh, &s,
4570 disks);
4571 /*
4572 * If caching phase failed: ret == -EAGAIN
4573 * OR
4574 * stripe under reclaim: !caching && injournal
4575 *
4576 * fall back to handle_stripe_dirtying()
4577 */
4578 if (ret == -EAGAIN ||
4579 /* stripe under reclaim: !caching && injournal */
4580 (!test_bit(STRIPE_R5C_CACHING, &sh->state) &&
Song Liud7bd3982016-11-23 22:50:39 -08004581 s.injournal > 0)) {
4582 ret = handle_stripe_dirtying(conf, sh, &s,
4583 disks);
4584 if (ret == -EAGAIN)
4585 goto finish;
4586 }
Song Liu2ded3702016-11-17 15:24:38 -08004587 }
4588 }
NeilBrown84789552011-07-27 11:00:36 +10004589
4590 /* maybe we need to check and possibly fix the parity for this stripe
4591 * Any reads will already have been scheduled, so we just see if enough
4592 * data is available. The parity check is held off while parity
4593 * dependent operations are in flight.
4594 */
4595 if (sh->check_state ||
4596 (s.syncing && s.locked == 0 &&
4597 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
4598 !test_bit(STRIPE_INSYNC, &sh->state))) {
4599 if (conf->level == 6)
4600 handle_parity_checks6(conf, sh, &s, disks);
4601 else
4602 handle_parity_checks5(conf, sh, &s, disks);
4603 }
NeilBrownc5a31002011-07-27 11:00:36 +10004604
NeilBrownf94c0b62013-07-22 12:57:21 +10004605 if ((s.replacing || s.syncing) && s.locked == 0
4606 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
4607 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11004608 /* Write out to replacement devices where possible */
4609 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10004610 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
4611 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11004612 set_bit(R5_WantReplace, &sh->dev[i].flags);
4613 set_bit(R5_LOCKED, &sh->dev[i].flags);
4614 s.locked++;
4615 }
NeilBrownf94c0b62013-07-22 12:57:21 +10004616 if (s.replacing)
4617 set_bit(STRIPE_INSYNC, &sh->state);
4618 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11004619 }
4620 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10004621 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11004622 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10004623 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4624 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004625 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
4626 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10004627 }
4628
4629 /* If the failed drives are just a ReadError, then we might need
4630 * to progress the repair/check process
4631 */
4632 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
4633 for (i = 0; i < s.failed; i++) {
4634 struct r5dev *dev = &sh->dev[s.failed_num[i]];
4635 if (test_bit(R5_ReadError, &dev->flags)
4636 && !test_bit(R5_LOCKED, &dev->flags)
4637 && test_bit(R5_UPTODATE, &dev->flags)
4638 ) {
4639 if (!test_bit(R5_ReWrite, &dev->flags)) {
4640 set_bit(R5_Wantwrite, &dev->flags);
4641 set_bit(R5_ReWrite, &dev->flags);
4642 set_bit(R5_LOCKED, &dev->flags);
4643 s.locked++;
4644 } else {
4645 /* let's read it back */
4646 set_bit(R5_Wantread, &dev->flags);
4647 set_bit(R5_LOCKED, &dev->flags);
4648 s.locked++;
4649 }
4650 }
4651 }
4652
NeilBrown3687c062011-07-27 11:00:36 +10004653 /* Finish reconstruct operations initiated by the expansion process */
4654 if (sh->reconstruct_state == reconstruct_state_result) {
4655 struct stripe_head *sh_src
Shaohua Li6d036f72015-08-13 14:31:57 -07004656 = raid5_get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrown3687c062011-07-27 11:00:36 +10004657 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
4658 /* sh cannot be written until sh_src has been read.
4659 * so arrange for sh to be delayed a little
4660 */
4661 set_bit(STRIPE_DELAYED, &sh->state);
4662 set_bit(STRIPE_HANDLE, &sh->state);
4663 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
4664 &sh_src->state))
4665 atomic_inc(&conf->preread_active_stripes);
Shaohua Li6d036f72015-08-13 14:31:57 -07004666 raid5_release_stripe(sh_src);
NeilBrown3687c062011-07-27 11:00:36 +10004667 goto finish;
4668 }
4669 if (sh_src)
Shaohua Li6d036f72015-08-13 14:31:57 -07004670 raid5_release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07004671
NeilBrown3687c062011-07-27 11:00:36 +10004672 sh->reconstruct_state = reconstruct_state_idle;
4673 clear_bit(STRIPE_EXPANDING, &sh->state);
4674 for (i = conf->raid_disks; i--; ) {
4675 set_bit(R5_Wantwrite, &sh->dev[i].flags);
4676 set_bit(R5_LOCKED, &sh->dev[i].flags);
4677 s.locked++;
4678 }
4679 }
4680
4681 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
4682 !sh->reconstruct_state) {
4683 /* Need to write out all blocks after computing parity */
4684 sh->disks = conf->raid_disks;
4685 stripe_set_idx(sh->sector, conf, 0, sh);
4686 schedule_reconstruction(sh, &s, 1, 1);
4687 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
4688 clear_bit(STRIPE_EXPAND_READY, &sh->state);
4689 atomic_dec(&conf->reshape_stripes);
4690 wake_up(&conf->wait_for_overlap);
4691 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4692 }
4693
4694 if (s.expanding && s.locked == 0 &&
4695 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
4696 handle_stripe_expansion(conf, sh);
4697
4698finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07004699 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10004700 if (unlikely(s.blocked_rdev)) {
4701 if (conf->mddev->external)
4702 md_wait_for_blocked_rdev(s.blocked_rdev,
4703 conf->mddev);
4704 else
4705 /* Internal metadata will immediately
4706 * be written by raid5d, so we don't
4707 * need to wait here.
4708 */
4709 rdev_dec_pending(s.blocked_rdev,
4710 conf->mddev);
4711 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004712
NeilBrownbc2607f2011-07-28 11:39:22 +10004713 if (s.handle_bad_blocks)
4714 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004715 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10004716 struct r5dev *dev = &sh->dev[i];
4717 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
4718 /* We own a safe reference to the rdev */
4719 rdev = conf->disks[i].rdev;
4720 if (!rdev_set_badblocks(rdev, sh->sector,
4721 STRIPE_SECTORS, 0))
4722 md_error(conf->mddev, rdev);
4723 rdev_dec_pending(rdev, conf->mddev);
4724 }
NeilBrownb84db562011-07-28 11:39:23 +10004725 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
4726 rdev = conf->disks[i].rdev;
4727 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004728 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10004729 rdev_dec_pending(rdev, conf->mddev);
4730 }
NeilBrown977df362011-12-23 10:17:53 +11004731 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
4732 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11004733 if (!rdev)
4734 /* rdev have been moved down */
4735 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11004736 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004737 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11004738 rdev_dec_pending(rdev, conf->mddev);
4739 }
NeilBrownbc2607f2011-07-28 11:39:22 +10004740 }
4741
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004742 if (s.ops_request)
4743 raid_run_ops(sh, s.ops_request);
4744
Dan Williamsf0e43bc2008-06-28 08:31:55 +10004745 ops_run_io(sh, &s);
4746
NeilBrownc5709ef2011-07-26 11:35:20 +10004747 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11004748 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02004749 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11004750 * have actually been submitted.
4751 */
4752 atomic_dec(&conf->preread_active_stripes);
4753 if (atomic_read(&conf->preread_active_stripes) <
4754 IO_THRESHOLD)
4755 md_wakeup_thread(conf->mddev->thread);
4756 }
4757
NeilBrownc3cce6c2015-08-14 12:47:33 +10004758 if (!bio_list_empty(&s.return_bi)) {
Shaohua Li29530792016-12-08 15:48:19 -08004759 if (test_bit(MD_SB_CHANGE_PENDING, &conf->mddev->sb_flags)) {
NeilBrownc3cce6c2015-08-14 12:47:33 +10004760 spin_lock_irq(&conf->device_lock);
4761 bio_list_merge(&conf->return_bi, &s.return_bi);
4762 spin_unlock_irq(&conf->device_lock);
4763 md_wakeup_thread(conf->mddev->thread);
4764 } else
4765 return_io(&s.return_bi);
4766 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004767
Dan Williams257a4b42011-11-08 16:22:06 +11004768 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07004769}
4770
NeilBrownd1688a62011-10-11 16:49:52 +11004771static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772{
4773 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
4774 while (!list_empty(&conf->delayed_list)) {
4775 struct list_head *l = conf->delayed_list.next;
4776 struct stripe_head *sh;
4777 sh = list_entry(l, struct stripe_head, lru);
4778 list_del_init(l);
4779 clear_bit(STRIPE_DELAYED, &sh->state);
4780 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4781 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004782 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08004783 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 }
NeilBrown482c0832011-04-18 18:25:42 +10004785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786}
4787
Shaohua Li566c09c2013-11-14 15:16:17 +11004788static void activate_bit_delay(struct r5conf *conf,
4789 struct list_head *temp_inactive_list)
NeilBrown72626682005-09-09 16:23:54 -07004790{
4791 /* device_lock is held */
4792 struct list_head head;
4793 list_add(&head, &conf->bitmap_list);
4794 list_del_init(&conf->bitmap_list);
4795 while (!list_empty(&head)) {
4796 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
Shaohua Li566c09c2013-11-14 15:16:17 +11004797 int hash;
NeilBrown72626682005-09-09 16:23:54 -07004798 list_del_init(&sh->lru);
4799 atomic_inc(&sh->count);
Shaohua Li566c09c2013-11-14 15:16:17 +11004800 hash = sh->hash_lock_index;
4801 __release_stripe(conf, sh, &temp_inactive_list[hash]);
NeilBrown72626682005-09-09 16:23:54 -07004802 }
4803}
4804
NeilBrown5c675f82014-12-15 12:56:56 +11004805static int raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07004806{
NeilBrownd1688a62011-10-11 16:49:52 +11004807 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07004808
4809 /* No difference between reads and writes. Just check
4810 * how busy the stripe_cache is
4811 */
NeilBrown3fa841d2009-09-23 18:10:29 +10004812
NeilBrown54233992015-02-26 12:21:04 +11004813 if (test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state))
NeilBrownf022b2f2006-10-03 01:15:56 -07004814 return 1;
Song Liua39f7af2016-11-17 15:24:40 -08004815
4816 /* Also checks whether there is pressure on r5cache log space */
4817 if (test_bit(R5C_LOG_TIGHT, &conf->cache_state))
4818 return 1;
NeilBrownf022b2f2006-10-03 01:15:56 -07004819 if (conf->quiesce)
4820 return 1;
Shaohua Li4bda5562013-11-14 15:16:17 +11004821 if (atomic_read(&conf->empty_inactive_list_nr))
NeilBrownf022b2f2006-10-03 01:15:56 -07004822 return 1;
4823
4824 return 0;
4825}
4826
NeilBrownfd01b882011-10-11 16:47:53 +11004827static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004828{
NeilBrown3cb5edf2015-07-15 17:24:17 +10004829 struct r5conf *conf = mddev->private;
Kent Overstreet4f024f32013-10-11 15:44:27 -07004830 sector_t sector = bio->bi_iter.bi_sector + get_start_sect(bio->bi_bdev);
NeilBrown3cb5edf2015-07-15 17:24:17 +10004831 unsigned int chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004832 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004833
NeilBrown3cb5edf2015-07-15 17:24:17 +10004834 chunk_sectors = min(conf->chunk_sectors, conf->prev_chunk_sectors);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004835 return chunk_sectors >=
4836 ((sector & (chunk_sectors - 1)) + bio_sectors);
4837}
4838
4839/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004840 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
4841 * later sampled by raid5d.
4842 */
NeilBrownd1688a62011-10-11 16:49:52 +11004843static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004844{
4845 unsigned long flags;
4846
4847 spin_lock_irqsave(&conf->device_lock, flags);
4848
4849 bi->bi_next = conf->retry_read_aligned_list;
4850 conf->retry_read_aligned_list = bi;
4851
4852 spin_unlock_irqrestore(&conf->device_lock, flags);
4853 md_wakeup_thread(conf->mddev->thread);
4854}
4855
NeilBrownd1688a62011-10-11 16:49:52 +11004856static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004857{
4858 struct bio *bi;
4859
4860 bi = conf->retry_read_aligned;
4861 if (bi) {
4862 conf->retry_read_aligned = NULL;
4863 return bi;
4864 }
4865 bi = conf->retry_read_aligned_list;
4866 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08004867 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004868 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02004869 /*
4870 * this sets the active strip count to 1 and the processed
4871 * strip count to zero (upper 8 bits)
4872 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004873 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004874 }
4875
4876 return bi;
4877}
4878
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004879/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004880 * The "raid5_align_endio" should check if the read succeeded and if it
4881 * did, call bio_endio on the original bio (having bio_put the new bio
4882 * first).
4883 * If the read failed..
4884 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004885static void raid5_align_endio(struct bio *bi)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004886{
4887 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11004888 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11004889 struct r5conf *conf;
NeilBrown3cb03002011-10-11 16:45:26 +11004890 struct md_rdev *rdev;
Sasha Levin9b81c842015-08-10 19:05:18 -04004891 int error = bi->bi_error;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004892
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004893 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004894
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004895 rdev = (void*)raid_bi->bi_next;
4896 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11004897 mddev = rdev->mddev;
4898 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004899
4900 rdev_dec_pending(rdev, conf->mddev);
4901
Sasha Levin9b81c842015-08-10 19:05:18 -04004902 if (!error) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004903 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
4904 raid_bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004905 bio_endio(raid_bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004906 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10004907 wake_up(&conf->wait_for_quiescent);
NeilBrown6712ecf2007-09-27 12:47:43 +02004908 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004909 }
4910
Dan Williams45b42332007-07-09 11:56:43 -07004911 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004912
4913 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004914}
4915
Ming Lin7ef6b122015-05-06 22:51:24 -07004916static int raid5_read_one_chunk(struct mddev *mddev, struct bio *raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004917{
NeilBrownd1688a62011-10-11 16:49:52 +11004918 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11004919 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004920 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11004921 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11004922 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004923
4924 if (!in_chunk_boundary(mddev, raid_bio)) {
Ming Lin7ef6b122015-05-06 22:51:24 -07004925 pr_debug("%s: non aligned\n", __func__);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004926 return 0;
4927 }
4928 /*
NeilBrowna167f662010-10-26 18:31:13 +11004929 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004930 */
NeilBrowna167f662010-10-26 18:31:13 +11004931 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004932 if (!align_bi)
4933 return 0;
4934 /*
4935 * set bi_end_io to a new function, and set bi_private to the
4936 * original bio.
4937 */
4938 align_bi->bi_end_io = raid5_align_endio;
4939 align_bi->bi_private = raid_bio;
4940 /*
4941 * compute position
4942 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004943 align_bi->bi_iter.bi_sector =
4944 raid5_compute_sector(conf, raid_bio->bi_iter.bi_sector,
4945 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004946
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004947 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004948 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11004949 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
4950 if (!rdev || test_bit(Faulty, &rdev->flags) ||
4951 rdev->recovery_offset < end_sector) {
4952 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
4953 if (rdev &&
4954 (test_bit(Faulty, &rdev->flags) ||
4955 !(test_bit(In_sync, &rdev->flags) ||
4956 rdev->recovery_offset >= end_sector)))
4957 rdev = NULL;
4958 }
4959 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10004960 sector_t first_bad;
4961 int bad_sectors;
4962
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004963 atomic_inc(&rdev->nr_pending);
4964 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004965 raid_bio->bi_next = (void*)rdev;
4966 align_bi->bi_bdev = rdev->bdev;
Jens Axboeb7c44ed2015-07-24 12:37:59 -06004967 bio_clear_flag(align_bi, BIO_SEG_VALID);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004968
Kent Overstreet7140aaf2013-09-25 13:37:01 -07004969 if (is_badblock(rdev, align_bi->bi_iter.bi_sector,
Kent Overstreet4f024f32013-10-11 15:44:27 -07004970 bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10004971 &first_bad, &bad_sectors)) {
Neil Brown387bb172007-02-08 14:20:29 -08004972 bio_put(align_bi);
4973 rdev_dec_pending(rdev, mddev);
4974 return 0;
4975 }
4976
majianpeng6c0544e2012-06-12 08:31:10 +08004977 /* No reshape active, so we can trust rdev->data_offset */
Kent Overstreet4f024f32013-10-11 15:44:27 -07004978 align_bi->bi_iter.bi_sector += rdev->data_offset;
majianpeng6c0544e2012-06-12 08:31:10 +08004979
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004980 spin_lock_irq(&conf->device_lock);
Yuanhan Liub1b46482015-05-08 18:19:06 +10004981 wait_event_lock_irq(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004982 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01004983 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004984 atomic_inc(&conf->active_aligned_reads);
4985 spin_unlock_irq(&conf->device_lock);
4986
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004987 if (mddev->gendisk)
4988 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4989 align_bi, disk_devt(mddev->gendisk),
Kent Overstreet4f024f32013-10-11 15:44:27 -07004990 raid_bio->bi_iter.bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004991 generic_make_request(align_bi);
4992 return 1;
4993 } else {
4994 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004995 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004996 return 0;
4997 }
4998}
4999
Ming Lin7ef6b122015-05-06 22:51:24 -07005000static struct bio *chunk_aligned_read(struct mddev *mddev, struct bio *raid_bio)
5001{
5002 struct bio *split;
5003
5004 do {
5005 sector_t sector = raid_bio->bi_iter.bi_sector;
5006 unsigned chunk_sects = mddev->chunk_sectors;
5007 unsigned sectors = chunk_sects - (sector & (chunk_sects-1));
5008
5009 if (sectors < bio_sectors(raid_bio)) {
5010 split = bio_split(raid_bio, sectors, GFP_NOIO, fs_bio_set);
5011 bio_chain(split, raid_bio);
5012 } else
5013 split = raid_bio;
5014
5015 if (!raid5_read_one_chunk(mddev, split)) {
5016 if (split != raid_bio)
5017 generic_make_request(raid_bio);
5018 return split;
5019 }
5020 } while (split != raid_bio);
5021
5022 return NULL;
5023}
5024
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005025/* __get_priority_stripe - get the next stripe to process
5026 *
5027 * Full stripe writes are allowed to pass preread active stripes up until
5028 * the bypass_threshold is exceeded. In general the bypass_count
5029 * increments when the handle_list is handled before the hold_list; however, it
5030 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
5031 * stripe with in flight i/o. The bypass_count will be reset when the
5032 * head of the hold_list has changed, i.e. the head was promoted to the
5033 * handle_list.
5034 */
Shaohua Li851c30c2013-08-28 14:30:16 +08005035static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005036{
Shaohua Li851c30c2013-08-28 14:30:16 +08005037 struct stripe_head *sh = NULL, *tmp;
5038 struct list_head *handle_list = NULL;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005039 struct r5worker_group *wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005040
5041 if (conf->worker_cnt_per_group == 0) {
5042 handle_list = &conf->handle_list;
5043 } else if (group != ANY_GROUP) {
5044 handle_list = &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005045 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08005046 } else {
5047 int i;
5048 for (i = 0; i < conf->group_cnt; i++) {
5049 handle_list = &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005050 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08005051 if (!list_empty(handle_list))
5052 break;
5053 }
5054 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005055
5056 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
5057 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08005058 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005059 list_empty(&conf->hold_list) ? "empty" : "busy",
5060 atomic_read(&conf->pending_full_writes), conf->bypass_count);
5061
Shaohua Li851c30c2013-08-28 14:30:16 +08005062 if (!list_empty(handle_list)) {
5063 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005064
5065 if (list_empty(&conf->hold_list))
5066 conf->bypass_count = 0;
5067 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
5068 if (conf->hold_list.next == conf->last_hold)
5069 conf->bypass_count++;
5070 else {
5071 conf->last_hold = conf->hold_list.next;
5072 conf->bypass_count -= conf->bypass_threshold;
5073 if (conf->bypass_count < 0)
5074 conf->bypass_count = 0;
5075 }
5076 }
5077 } else if (!list_empty(&conf->hold_list) &&
5078 ((conf->bypass_threshold &&
5079 conf->bypass_count > conf->bypass_threshold) ||
5080 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08005081
5082 list_for_each_entry(tmp, &conf->hold_list, lru) {
5083 if (conf->worker_cnt_per_group == 0 ||
5084 group == ANY_GROUP ||
5085 !cpu_online(tmp->cpu) ||
5086 cpu_to_group(tmp->cpu) == group) {
5087 sh = tmp;
5088 break;
5089 }
5090 }
5091
5092 if (sh) {
5093 conf->bypass_count -= conf->bypass_threshold;
5094 if (conf->bypass_count < 0)
5095 conf->bypass_count = 0;
5096 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08005097 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005098 }
5099
5100 if (!sh)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005101 return NULL;
5102
Shaohua Libfc90cb2013-08-29 15:40:32 +08005103 if (wg) {
5104 wg->stripes_cnt--;
5105 sh->group = NULL;
5106 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005107 list_del_init(&sh->lru);
Shaohua Lic7a6d352014-04-15 09:12:54 +08005108 BUG_ON(atomic_inc_return(&sh->count) != 1);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005109 return sh;
5110}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005111
Shaohua Li8811b592012-08-02 08:33:00 +10005112struct raid5_plug_cb {
5113 struct blk_plug_cb cb;
5114 struct list_head list;
Shaohua Li566c09c2013-11-14 15:16:17 +11005115 struct list_head temp_inactive_list[NR_STRIPE_HASH_LOCKS];
Shaohua Li8811b592012-08-02 08:33:00 +10005116};
5117
5118static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
5119{
5120 struct raid5_plug_cb *cb = container_of(
5121 blk_cb, struct raid5_plug_cb, cb);
5122 struct stripe_head *sh;
5123 struct mddev *mddev = cb->cb.data;
5124 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11005125 int cnt = 0;
Shaohua Li566c09c2013-11-14 15:16:17 +11005126 int hash;
Shaohua Li8811b592012-08-02 08:33:00 +10005127
5128 if (cb->list.next && !list_empty(&cb->list)) {
5129 spin_lock_irq(&conf->device_lock);
5130 while (!list_empty(&cb->list)) {
5131 sh = list_first_entry(&cb->list, struct stripe_head, lru);
5132 list_del_init(&sh->lru);
5133 /*
5134 * avoid race release_stripe_plug() sees
5135 * STRIPE_ON_UNPLUG_LIST clear but the stripe
5136 * is still in our list
5137 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005138 smp_mb__before_atomic();
Shaohua Li8811b592012-08-02 08:33:00 +10005139 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08005140 /*
5141 * STRIPE_ON_RELEASE_LIST could be set here. In that
5142 * case, the count is always > 1 here
5143 */
Shaohua Li566c09c2013-11-14 15:16:17 +11005144 hash = sh->hash_lock_index;
5145 __release_stripe(conf, sh, &cb->temp_inactive_list[hash]);
NeilBrowna9add5d2012-10-31 11:59:09 +11005146 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10005147 }
5148 spin_unlock_irq(&conf->device_lock);
5149 }
Shaohua Li566c09c2013-11-14 15:16:17 +11005150 release_inactive_stripe_list(conf, cb->temp_inactive_list,
5151 NR_STRIPE_HASH_LOCKS);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06005152 if (mddev->queue)
5153 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10005154 kfree(cb);
5155}
5156
5157static void release_stripe_plug(struct mddev *mddev,
5158 struct stripe_head *sh)
5159{
5160 struct blk_plug_cb *blk_cb = blk_check_plugged(
5161 raid5_unplug, mddev,
5162 sizeof(struct raid5_plug_cb));
5163 struct raid5_plug_cb *cb;
5164
5165 if (!blk_cb) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005166 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005167 return;
5168 }
5169
5170 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
5171
Shaohua Li566c09c2013-11-14 15:16:17 +11005172 if (cb->list.next == NULL) {
5173 int i;
Shaohua Li8811b592012-08-02 08:33:00 +10005174 INIT_LIST_HEAD(&cb->list);
Shaohua Li566c09c2013-11-14 15:16:17 +11005175 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5176 INIT_LIST_HEAD(cb->temp_inactive_list + i);
5177 }
Shaohua Li8811b592012-08-02 08:33:00 +10005178
5179 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
5180 list_add_tail(&sh->lru, &cb->list);
5181 else
Shaohua Li6d036f72015-08-13 14:31:57 -07005182 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005183}
5184
Shaohua Li620125f2012-10-11 13:49:05 +11005185static void make_discard_request(struct mddev *mddev, struct bio *bi)
5186{
5187 struct r5conf *conf = mddev->private;
5188 sector_t logical_sector, last_sector;
5189 struct stripe_head *sh;
5190 int remaining;
5191 int stripe_sectors;
5192
5193 if (mddev->reshape_position != MaxSector)
5194 /* Skip discard while reshape is happening */
5195 return;
5196
Kent Overstreet4f024f32013-10-11 15:44:27 -07005197 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
5198 last_sector = bi->bi_iter.bi_sector + (bi->bi_iter.bi_size>>9);
Shaohua Li620125f2012-10-11 13:49:05 +11005199
5200 bi->bi_next = NULL;
5201 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
5202
5203 stripe_sectors = conf->chunk_sectors *
5204 (conf->raid_disks - conf->max_degraded);
5205 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
5206 stripe_sectors);
5207 sector_div(last_sector, stripe_sectors);
5208
5209 logical_sector *= conf->chunk_sectors;
5210 last_sector *= conf->chunk_sectors;
5211
5212 for (; logical_sector < last_sector;
5213 logical_sector += STRIPE_SECTORS) {
5214 DEFINE_WAIT(w);
5215 int d;
5216 again:
Shaohua Li6d036f72015-08-13 14:31:57 -07005217 sh = raid5_get_active_stripe(conf, logical_sector, 0, 0, 0);
Shaohua Li620125f2012-10-11 13:49:05 +11005218 prepare_to_wait(&conf->wait_for_overlap, &w,
5219 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005220 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
5221 if (test_bit(STRIPE_SYNCING, &sh->state)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005222 raid5_release_stripe(sh);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005223 schedule();
5224 goto again;
5225 }
5226 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11005227 spin_lock_irq(&sh->stripe_lock);
5228 for (d = 0; d < conf->raid_disks; d++) {
5229 if (d == sh->pd_idx || d == sh->qd_idx)
5230 continue;
5231 if (sh->dev[d].towrite || sh->dev[d].toread) {
5232 set_bit(R5_Overlap, &sh->dev[d].flags);
5233 spin_unlock_irq(&sh->stripe_lock);
Shaohua Li6d036f72015-08-13 14:31:57 -07005234 raid5_release_stripe(sh);
Shaohua Li620125f2012-10-11 13:49:05 +11005235 schedule();
5236 goto again;
5237 }
5238 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11005239 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11005240 finish_wait(&conf->wait_for_overlap, &w);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005241 sh->overwrite_disks = 0;
Shaohua Li620125f2012-10-11 13:49:05 +11005242 for (d = 0; d < conf->raid_disks; d++) {
5243 if (d == sh->pd_idx || d == sh->qd_idx)
5244 continue;
5245 sh->dev[d].towrite = bi;
5246 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
5247 raid5_inc_bi_active_stripes(bi);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005248 sh->overwrite_disks++;
Shaohua Li620125f2012-10-11 13:49:05 +11005249 }
5250 spin_unlock_irq(&sh->stripe_lock);
5251 if (conf->mddev->bitmap) {
5252 for (d = 0;
5253 d < conf->raid_disks - conf->max_degraded;
5254 d++)
5255 bitmap_startwrite(mddev->bitmap,
5256 sh->sector,
5257 STRIPE_SECTORS,
5258 0);
5259 sh->bm_seq = conf->seq_flush + 1;
5260 set_bit(STRIPE_BIT_DELAY, &sh->state);
5261 }
5262
5263 set_bit(STRIPE_HANDLE, &sh->state);
5264 clear_bit(STRIPE_DELAYED, &sh->state);
5265 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5266 atomic_inc(&conf->preread_active_stripes);
5267 release_stripe_plug(mddev, sh);
5268 }
5269
5270 remaining = raid5_dec_bi_active_stripes(bi);
5271 if (remaining == 0) {
5272 md_write_end(mddev);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005273 bio_endio(bi);
Shaohua Li620125f2012-10-11 13:49:05 +11005274 }
5275}
5276
Shaohua Li849674e2016-01-20 13:52:20 -08005277static void raid5_make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278{
NeilBrownd1688a62011-10-11 16:49:52 +11005279 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11005280 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281 sector_t new_sector;
5282 sector_t logical_sector, last_sector;
5283 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01005284 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11005285 int remaining;
Shaohua Li27c0f682014-04-09 11:25:47 +08005286 DEFINE_WAIT(w);
5287 bool do_prepare;
Song Liu3bddb7f2016-11-18 16:46:50 -08005288 bool do_flush = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289
Jens Axboe1eff9d32016-08-05 15:35:16 -06005290 if (unlikely(bi->bi_opf & REQ_PREFLUSH)) {
Shaohua Li828cbe92015-09-02 13:49:49 -07005291 int ret = r5l_handle_flush_request(conf->log, bi);
5292
5293 if (ret == 0)
5294 return;
5295 if (ret == -ENODEV) {
5296 md_flush_request(mddev, bi);
5297 return;
5298 }
5299 /* ret == -EAGAIN, fallback */
Song Liu3bddb7f2016-11-18 16:46:50 -08005300 /*
5301 * if r5l_handle_flush_request() didn't clear REQ_PREFLUSH,
5302 * we need to flush journal device
5303 */
5304 do_flush = bi->bi_opf & REQ_PREFLUSH;
NeilBrowne5dcdd82005-09-09 16:23:41 -07005305 }
5306
NeilBrown3d310eb2005-06-21 17:17:26 -07005307 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07005308
Eric Mei9ffc8f72015-03-18 23:39:11 -06005309 /*
5310 * If array is degraded, better not do chunk aligned read because
5311 * later we might have to read it again in order to reconstruct
5312 * data on failed drives.
5313 */
5314 if (rw == READ && mddev->degraded == 0 &&
Song Liu2ded3702016-11-17 15:24:38 -08005315 !r5c_is_writeback(conf->log) &&
Ming Lin7ef6b122015-05-06 22:51:24 -07005316 mddev->reshape_position == MaxSector) {
5317 bi = chunk_aligned_read(mddev, bi);
5318 if (!bi)
5319 return;
5320 }
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005321
Mike Christie796a5cf2016-06-05 14:32:07 -05005322 if (unlikely(bio_op(bi) == REQ_OP_DISCARD)) {
Shaohua Li620125f2012-10-11 13:49:05 +11005323 make_discard_request(mddev, bi);
5324 return;
5325 }
5326
Kent Overstreet4f024f32013-10-11 15:44:27 -07005327 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005328 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 bi->bi_next = NULL;
5330 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07005331
Shaohua Li27c0f682014-04-09 11:25:47 +08005332 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005334 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10005335 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08005336
Shaohua Li27c0f682014-04-09 11:25:47 +08005337 do_prepare = false;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005338 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10005339 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11005340 previous = 0;
Shaohua Li27c0f682014-04-09 11:25:47 +08005341 if (do_prepare)
5342 prepare_to_wait(&conf->wait_for_overlap, &w,
5343 TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005344 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11005345 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f762006-03-27 01:18:15 -08005346 * 64bit on a 32bit platform, and so it might be
5347 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02005348 * Of course reshape_progress could change after
NeilBrowndf8e7f762006-03-27 01:18:15 -08005349 * the lock is dropped, so once we get a reference
5350 * to the stripe that we think it is, we will have
5351 * to check again.
5352 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005353 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005354 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005355 ? logical_sector < conf->reshape_progress
5356 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005357 previous = 1;
5358 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10005359 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005360 ? logical_sector < conf->reshape_safe
5361 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08005362 spin_unlock_irq(&conf->device_lock);
5363 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005364 do_prepare = true;
NeilBrownb578d552006-03-27 01:18:12 -08005365 goto retry;
5366 }
5367 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005368 spin_unlock_irq(&conf->device_lock);
5369 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005370
NeilBrown112bf892009-03-31 14:39:38 +11005371 new_sector = raid5_compute_sector(conf, logical_sector,
5372 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11005373 &dd_idx, NULL);
Shaohua Li849674e2016-01-20 13:52:20 -08005374 pr_debug("raid456: raid5_make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10005375 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 (unsigned long long)logical_sector);
5377
Shaohua Li6d036f72015-08-13 14:31:57 -07005378 sh = raid5_get_active_stripe(conf, new_sector, previous,
Jens Axboe1eff9d32016-08-05 15:35:16 -06005379 (bi->bi_opf & REQ_RAHEAD), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11005381 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005382 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f762006-03-27 01:18:15 -08005383 * stripe, so we must do the range check again.
5384 * Expansion could still move past after this
5385 * test, but as we are holding a reference to
5386 * 'sh', we know that if that happens,
5387 * STRIPE_EXPANDING will get set and the expansion
5388 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005389 */
5390 int must_retry = 0;
5391 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005392 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11005393 ? logical_sector >= conf->reshape_progress
5394 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005395 /* mismatch, need to try again */
5396 must_retry = 1;
5397 spin_unlock_irq(&conf->device_lock);
5398 if (must_retry) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005399 raid5_release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07005400 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005401 do_prepare = true;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005402 goto retry;
5403 }
5404 }
NeilBrownc46501b2013-08-27 15:52:13 +10005405 if (read_seqcount_retry(&conf->gen_lock, seq)) {
5406 /* Might have got the wrong stripe_head
5407 * by accident
5408 */
Shaohua Li6d036f72015-08-13 14:31:57 -07005409 raid5_release_stripe(sh);
NeilBrownc46501b2013-08-27 15:52:13 +10005410 goto retry;
5411 }
NeilBrowne62e58a2009-07-01 13:15:35 +10005412
Namhyung Kimffd96e32011-07-18 17:38:51 +10005413 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10005414 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08005415 logical_sector < mddev->suspend_hi) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005416 raid5_release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10005417 /* As the suspend_* range is controlled by
5418 * userspace, we want an interruptible
5419 * wait.
5420 */
5421 flush_signals(current);
5422 prepare_to_wait(&conf->wait_for_overlap,
5423 &w, TASK_INTERRUPTIBLE);
5424 if (logical_sector >= mddev->suspend_lo &&
Shaohua Li27c0f682014-04-09 11:25:47 +08005425 logical_sector < mddev->suspend_hi) {
NeilBrowne62e58a2009-07-01 13:15:35 +10005426 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005427 do_prepare = true;
5428 }
NeilBrowne464eaf2006-03-27 01:18:14 -08005429 goto retry;
5430 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005431
5432 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005433 !add_stripe_bio(sh, bi, dd_idx, rw, previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005434 /* Stripe is busy expanding or
5435 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 * and wait a while
5437 */
NeilBrown482c0832011-04-18 18:25:42 +10005438 md_wakeup_thread(mddev->thread);
Shaohua Li6d036f72015-08-13 14:31:57 -07005439 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005441 do_prepare = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442 goto retry;
5443 }
Song Liu3bddb7f2016-11-18 16:46:50 -08005444 if (do_flush) {
5445 set_bit(STRIPE_R5C_PREFLUSH, &sh->state);
5446 /* we only need flush for one stripe */
5447 do_flush = false;
5448 }
5449
NeilBrown6ed30032008-02-06 01:40:00 -08005450 set_bit(STRIPE_HANDLE, &sh->state);
5451 clear_bit(STRIPE_DELAYED, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11005452 if ((!sh->batch_head || sh == sh->batch_head) &&
Jens Axboe1eff9d32016-08-05 15:35:16 -06005453 (bi->bi_opf & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11005454 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5455 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10005456 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457 } else {
5458 /* cannot get stripe for read-ahead, just give-up */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005459 bi->bi_error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 break;
5461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 }
Shaohua Li27c0f682014-04-09 11:25:47 +08005463 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown7c13edc2011-04-18 18:25:43 +10005464
Shaohua Lie7836bd62012-07-19 16:01:31 +10005465 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08005466 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467
NeilBrown16a53ec2006-06-26 00:27:38 -07005468 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02005470
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005471 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
5472 bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005473 bio_endio(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475}
5476
NeilBrownfd01b882011-10-11 16:47:53 +11005477static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11005478
NeilBrownfd01b882011-10-11 16:47:53 +11005479static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480{
NeilBrown52c03292006-06-26 00:27:43 -07005481 /* reshaping is quite different to recovery/resync so it is
5482 * handled quite separately ... here.
5483 *
5484 * On each call to sync_request, we gather one chunk worth of
5485 * destination stripes and flag them as expanding.
5486 * Then we find all the source stripes and request reads.
5487 * As the reads complete, handle_stripe will copy the data
5488 * into the destination stripe and release that stripe.
5489 */
NeilBrownd1688a62011-10-11 16:49:52 +11005490 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08005492 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08005493 int raid_disks = conf->previous_raid_disks;
5494 int data_disks = raid_disks - conf->max_degraded;
5495 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07005496 int i;
5497 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11005498 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11005499 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11005500 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11005501 struct list_head stripes;
NeilBrown92140482015-07-06 12:28:45 +10005502 sector_t retn;
NeilBrown52c03292006-06-26 00:27:43 -07005503
NeilBrownfef9c612009-03-31 15:16:46 +11005504 if (sector_nr == 0) {
5505 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10005506 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005507 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
5508 sector_nr = raid5_size(mddev, 0, 0)
5509 - conf->reshape_progress;
NeilBrown6cbd8142015-07-24 13:30:32 +10005510 } else if (mddev->reshape_backwards &&
5511 conf->reshape_progress == MaxSector) {
5512 /* shouldn't happen, but just in case, finish up.*/
5513 sector_nr = MaxSector;
NeilBrown2c810cd2012-05-21 09:27:00 +10005514 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005515 conf->reshape_progress > 0)
5516 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005517 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005518 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11005519 mddev->curr_resync_completed = sector_nr;
5520 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11005521 *skipped = 1;
NeilBrown92140482015-07-06 12:28:45 +10005522 retn = sector_nr;
5523 goto finish;
NeilBrownfef9c612009-03-31 15:16:46 +11005524 }
NeilBrown52c03292006-06-26 00:27:43 -07005525 }
5526
NeilBrown7a661382009-03-31 15:21:40 +11005527 /* We need to process a full chunk at a time.
5528 * If old and new chunk sizes differ, we need to process the
5529 * largest of these
5530 */
NeilBrown3cb5edf2015-07-15 17:24:17 +10005531
5532 reshape_sectors = max(conf->chunk_sectors, conf->prev_chunk_sectors);
NeilBrown7a661382009-03-31 15:21:40 +11005533
NeilBrownb5254dd2012-05-21 09:27:01 +10005534 /* We update the metadata at least every 10 seconds, or when
5535 * the data about to be copied would over-write the source of
5536 * the data at the front of the range. i.e. one new_stripe
5537 * along from reshape_progress new_maps to after where
5538 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07005539 */
NeilBrownfef9c612009-03-31 15:16:46 +11005540 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005541 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11005542 readpos = conf->reshape_progress;
5543 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005544 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08005545 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10005546 if (mddev->reshape_backwards) {
NeilBrownc74c0d72015-07-15 17:54:15 +10005547 BUG_ON(writepos < reshape_sectors);
5548 writepos -= reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11005549 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005550 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11005551 } else {
NeilBrown7a661382009-03-31 15:21:40 +11005552 writepos += reshape_sectors;
NeilBrownc74c0d72015-07-15 17:54:15 +10005553 /* readpos and safepos are worst-case calculations.
5554 * A negative number is overly pessimistic, and causes
5555 * obvious problems for unsigned storage. So clip to 0.
5556 */
NeilBrowned37d832009-05-27 21:39:05 +10005557 readpos -= min_t(sector_t, reshape_sectors, readpos);
5558 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11005559 }
NeilBrown52c03292006-06-26 00:27:43 -07005560
NeilBrownb5254dd2012-05-21 09:27:01 +10005561 /* Having calculated the 'writepos' possibly use it
5562 * to set 'stripe_addr' which is where we will write to.
5563 */
5564 if (mddev->reshape_backwards) {
5565 BUG_ON(conf->reshape_progress == 0);
5566 stripe_addr = writepos;
5567 BUG_ON((mddev->dev_sectors &
5568 ~((sector_t)reshape_sectors - 1))
5569 - reshape_sectors - stripe_addr
5570 != sector_nr);
5571 } else {
5572 BUG_ON(writepos != sector_nr + reshape_sectors);
5573 stripe_addr = sector_nr;
5574 }
5575
NeilBrownc8f517c2009-03-31 15:28:40 +11005576 /* 'writepos' is the most advanced device address we might write.
5577 * 'readpos' is the least advanced device address we might read.
5578 * 'safepos' is the least address recorded in the metadata as having
5579 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10005580 * If there is a min_offset_diff, these are adjusted either by
5581 * increasing the safepos/readpos if diff is negative, or
5582 * increasing writepos if diff is positive.
5583 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11005584 * ensure safety in the face of a crash - that must be done by userspace
5585 * making a backup of the data. So in that case there is no particular
5586 * rush to update metadata.
5587 * Otherwise if 'safepos' is behind 'writepos', then we really need to
5588 * update the metadata to advance 'safepos' to match 'readpos' so that
5589 * we can be safe in the event of a crash.
5590 * So we insist on updating metadata if safepos is behind writepos and
5591 * readpos is beyond writepos.
5592 * In any case, update the metadata every 10 seconds.
5593 * Maybe that number should be configurable, but I'm not sure it is
5594 * worth it.... maybe it could be a multiple of safemode_delay???
5595 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005596 if (conf->min_offset_diff < 0) {
5597 safepos += -conf->min_offset_diff;
5598 readpos += -conf->min_offset_diff;
5599 } else
5600 writepos += conf->min_offset_diff;
5601
NeilBrown2c810cd2012-05-21 09:27:00 +10005602 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11005603 ? (safepos > writepos && readpos < writepos)
5604 : (safepos < writepos && readpos > writepos)) ||
5605 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07005606 /* Cannot proceed until we've updated the superblock... */
5607 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005608 atomic_read(&conf->reshape_stripes)==0
5609 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5610 if (atomic_read(&conf->reshape_stripes) != 0)
5611 return 0;
NeilBrownfef9c612009-03-31 15:16:46 +11005612 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005613 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005614 conf->reshape_checkpoint = jiffies;
Shaohua Li29530792016-12-08 15:48:19 -08005615 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrown52c03292006-06-26 00:27:43 -07005616 md_wakeup_thread(mddev->thread);
Shaohua Li29530792016-12-08 15:48:19 -08005617 wait_event(mddev->sb_wait, mddev->sb_flags == 0 ||
NeilBrownc91abf52013-11-19 12:02:01 +11005618 test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5619 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5620 return 0;
NeilBrown52c03292006-06-26 00:27:43 -07005621 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005622 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07005623 spin_unlock_irq(&conf->device_lock);
5624 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005625 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07005626 }
5627
NeilBrownab69ae12009-03-31 15:26:47 +11005628 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11005629 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07005630 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10005631 int skipped_disk = 0;
Shaohua Li6d036f72015-08-13 14:31:57 -07005632 sh = raid5_get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005633 set_bit(STRIPE_EXPANDING, &sh->state);
5634 atomic_inc(&conf->reshape_stripes);
5635 /* If any of this stripe is beyond the end of the old
5636 * array, then we need to zero those blocks
5637 */
5638 for (j=sh->disks; j--;) {
5639 sector_t s;
5640 if (j == sh->pd_idx)
5641 continue;
NeilBrownf4168852007-02-28 20:11:53 -08005642 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11005643 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08005644 continue;
Shaohua Li6d036f72015-08-13 14:31:57 -07005645 s = raid5_compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11005646 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10005647 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07005648 continue;
5649 }
5650 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
5651 set_bit(R5_Expanded, &sh->dev[j].flags);
5652 set_bit(R5_UPTODATE, &sh->dev[j].flags);
5653 }
NeilBrowna9f326e2009-09-23 18:06:41 +10005654 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07005655 set_bit(STRIPE_EXPAND_READY, &sh->state);
5656 set_bit(STRIPE_HANDLE, &sh->state);
5657 }
NeilBrownab69ae12009-03-31 15:26:47 +11005658 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07005659 }
5660 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005661 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11005662 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005663 else
NeilBrown7a661382009-03-31 15:21:40 +11005664 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07005665 spin_unlock_irq(&conf->device_lock);
5666 /* Ok, those stripe are ready. We can start scheduling
5667 * reads on the source stripes.
5668 * The source stripes are determined by mapping the first and last
5669 * block on the destination stripes.
5670 */
NeilBrown52c03292006-06-26 00:27:43 -07005671 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11005672 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11005673 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07005674 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10005675 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10005676 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11005677 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11005678 if (last_sector >= mddev->dev_sectors)
5679 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07005680 while (first_sector <= last_sector) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005681 sh = raid5_get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005682 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
5683 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07005684 raid5_release_stripe(sh);
NeilBrown52c03292006-06-26 00:27:43 -07005685 first_sector += STRIPE_SECTORS;
5686 }
NeilBrownab69ae12009-03-31 15:26:47 +11005687 /* Now that the sources are clearly marked, we can release
5688 * the destination stripes
5689 */
5690 while (!list_empty(&stripes)) {
5691 sh = list_entry(stripes.next, struct stripe_head, lru);
5692 list_del_init(&sh->lru);
Shaohua Li6d036f72015-08-13 14:31:57 -07005693 raid5_release_stripe(sh);
NeilBrownab69ae12009-03-31 15:26:47 +11005694 }
NeilBrownc6207272008-02-06 01:39:52 -08005695 /* If this takes us to the resync_max point where we have to pause,
5696 * then we need to write out the superblock.
5697 */
NeilBrown7a661382009-03-31 15:21:40 +11005698 sector_nr += reshape_sectors;
NeilBrown92140482015-07-06 12:28:45 +10005699 retn = reshape_sectors;
5700finish:
NeilBrownc5e19d92015-07-17 12:06:02 +10005701 if (mddev->curr_resync_completed > mddev->resync_max ||
5702 (sector_nr - mddev->curr_resync_completed) * 2
NeilBrownc03f6a12009-04-17 11:06:30 +10005703 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08005704 /* Cannot proceed until we've updated the superblock... */
5705 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005706 atomic_read(&conf->reshape_stripes) == 0
5707 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5708 if (atomic_read(&conf->reshape_stripes) != 0)
5709 goto ret;
NeilBrownfef9c612009-03-31 15:16:46 +11005710 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005711 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005712 conf->reshape_checkpoint = jiffies;
Shaohua Li29530792016-12-08 15:48:19 -08005713 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrownc6207272008-02-06 01:39:52 -08005714 md_wakeup_thread(mddev->thread);
5715 wait_event(mddev->sb_wait,
Shaohua Li29530792016-12-08 15:48:19 -08005716 !test_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags)
NeilBrownc91abf52013-11-19 12:02:01 +11005717 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5718 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5719 goto ret;
NeilBrownc6207272008-02-06 01:39:52 -08005720 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005721 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08005722 spin_unlock_irq(&conf->device_lock);
5723 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005724 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08005725 }
NeilBrownc91abf52013-11-19 12:02:01 +11005726ret:
NeilBrown92140482015-07-06 12:28:45 +10005727 return retn;
NeilBrown52c03292006-06-26 00:27:43 -07005728}
5729
Shaohua Li849674e2016-01-20 13:52:20 -08005730static inline sector_t raid5_sync_request(struct mddev *mddev, sector_t sector_nr,
5731 int *skipped)
NeilBrown52c03292006-06-26 00:27:43 -07005732{
NeilBrownd1688a62011-10-11 16:49:52 +11005733 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07005734 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11005735 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11005736 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07005737 int still_degraded = 0;
5738 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
NeilBrown72626682005-09-09 16:23:54 -07005740 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11005742
NeilBrown29269552006-03-27 01:18:10 -08005743 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
5744 end_reshape(conf);
5745 return 0;
5746 }
NeilBrown72626682005-09-09 16:23:54 -07005747
5748 if (mddev->curr_resync < max_sector) /* aborted */
5749 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
5750 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07005751 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07005752 conf->fullsync = 0;
5753 bitmap_close_sync(mddev->bitmap);
5754
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 return 0;
5756 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08005757
NeilBrown64bd6602009-08-03 10:59:58 +10005758 /* Allow raid5_quiesce to complete */
5759 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
5760
NeilBrown52c03292006-06-26 00:27:43 -07005761 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
5762 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08005763
NeilBrownc6207272008-02-06 01:39:52 -08005764 /* No need to check resync_max as we never do more than one
5765 * stripe, and as resync_max will always be on a chunk boundary,
5766 * if the check in md_do_sync didn't fire, there is no chance
5767 * of overstepping resync_max here
5768 */
5769
NeilBrown16a53ec2006-06-26 00:27:38 -07005770 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771 * to resync, then assert that we are finished, because there is
5772 * nothing we can do.
5773 */
NeilBrown3285edf2006-06-26 00:27:55 -07005774 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005775 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11005776 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07005777 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778 return rv;
5779 }
majianpeng6f608042013-04-24 11:42:41 +10005780 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
5781 !conf->fullsync &&
5782 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
5783 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07005784 /* we can skip this block, and probably more */
5785 sync_blocks /= STRIPE_SECTORS;
5786 *skipped = 1;
5787 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
5788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10005790 bitmap_cond_end_sync(mddev->bitmap, sector_nr, false);
NeilBrownb47490c2008-02-06 01:39:50 -08005791
Shaohua Li6d036f72015-08-13 14:31:57 -07005792 sh = raid5_get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793 if (sh == NULL) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005794 sh = raid5_get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07005796 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08005798 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005800 /* Need to check if array will still be degraded after recovery/resync
Eric Mei16d9cfa2015-01-06 09:35:02 -08005801 * Note in case of > 1 drive failures it's possible we're rebuilding
5802 * one drive while leaving another faulty drive in array.
NeilBrown16a53ec2006-06-26 00:27:38 -07005803 */
Eric Mei16d9cfa2015-01-06 09:35:02 -08005804 rcu_read_lock();
5805 for (i = 0; i < conf->raid_disks; i++) {
5806 struct md_rdev *rdev = ACCESS_ONCE(conf->disks[i].rdev);
5807
5808 if (rdev == NULL || test_bit(Faulty, &rdev->flags))
NeilBrown16a53ec2006-06-26 00:27:38 -07005809 still_degraded = 1;
Eric Mei16d9cfa2015-01-06 09:35:02 -08005810 }
5811 rcu_read_unlock();
NeilBrown16a53ec2006-06-26 00:27:38 -07005812
5813 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
5814
NeilBrown83206d62011-07-26 11:19:49 +10005815 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Eivind Sarto053f5b62014-06-09 17:06:19 -07005816 set_bit(STRIPE_HANDLE, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817
Shaohua Li6d036f72015-08-13 14:31:57 -07005818 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819
5820 return STRIPE_SECTORS;
5821}
5822
NeilBrownd1688a62011-10-11 16:49:52 +11005823static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005824{
5825 /* We may not be able to submit a whole bio at once as there
5826 * may not be enough stripe_heads available.
5827 * We cannot pre-allocate enough stripe_heads as we may need
5828 * more than exist in the cache (if we allow ever large chunks).
5829 * So we do one stripe head at a time and record in
5830 * ->bi_hw_segments how many have been done.
5831 *
5832 * We *know* that this entire raid_bio is in one chunk, so
5833 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
5834 */
5835 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11005836 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005837 sector_t sector, logical_sector, last_sector;
5838 int scnt = 0;
5839 int remaining;
5840 int handled = 0;
5841
Kent Overstreet4f024f32013-10-11 15:44:27 -07005842 logical_sector = raid_bio->bi_iter.bi_sector &
5843 ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11005844 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11005845 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005846 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005847
5848 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08005849 logical_sector += STRIPE_SECTORS,
5850 sector += STRIPE_SECTORS,
5851 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005852
Shaohua Lie7836bd62012-07-19 16:01:31 +10005853 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005854 /* already done this stripe */
5855 continue;
5856
Shaohua Li6d036f72015-08-13 14:31:57 -07005857 sh = raid5_get_active_stripe(conf, sector, 0, 1, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005858
5859 if (!sh) {
5860 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10005861 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005862 conf->retry_read_aligned = raid_bio;
5863 return handled;
5864 }
5865
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005866 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0, 0)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005867 raid5_release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10005868 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08005869 conf->retry_read_aligned = raid_bio;
5870 return handled;
5871 }
5872
majianpeng3f9e7c12012-07-31 10:04:21 +10005873 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07005874 handle_stripe(sh);
Shaohua Li6d036f72015-08-13 14:31:57 -07005875 raid5_release_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005876 handled++;
5877 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10005878 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005879 if (remaining == 0) {
5880 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
5881 raid_bio, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005882 bio_endio(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005883 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005884 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10005885 wake_up(&conf->wait_for_quiescent);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005886 return handled;
5887}
5888
Shaohua Libfc90cb2013-08-29 15:40:32 +08005889static int handle_active_stripes(struct r5conf *conf, int group,
Shaohua Li566c09c2013-11-14 15:16:17 +11005890 struct r5worker *worker,
5891 struct list_head *temp_inactive_list)
Shaohua Li46a06402012-08-02 08:33:15 +10005892{
5893 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +11005894 int i, batch_size = 0, hash;
5895 bool release_inactive = false;
Shaohua Li46a06402012-08-02 08:33:15 +10005896
5897 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08005898 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10005899 batch[batch_size++] = sh;
5900
Shaohua Li566c09c2013-11-14 15:16:17 +11005901 if (batch_size == 0) {
5902 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5903 if (!list_empty(temp_inactive_list + i))
5904 break;
Shaohua Lia8c34f92015-09-02 13:49:46 -07005905 if (i == NR_STRIPE_HASH_LOCKS) {
5906 spin_unlock_irq(&conf->device_lock);
5907 r5l_flush_stripe_to_raid(conf->log);
5908 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11005909 return batch_size;
Shaohua Lia8c34f92015-09-02 13:49:46 -07005910 }
Shaohua Li566c09c2013-11-14 15:16:17 +11005911 release_inactive = true;
5912 }
Shaohua Li46a06402012-08-02 08:33:15 +10005913 spin_unlock_irq(&conf->device_lock);
5914
Shaohua Li566c09c2013-11-14 15:16:17 +11005915 release_inactive_stripe_list(conf, temp_inactive_list,
5916 NR_STRIPE_HASH_LOCKS);
5917
Shaohua Lia8c34f92015-09-02 13:49:46 -07005918 r5l_flush_stripe_to_raid(conf->log);
Shaohua Li566c09c2013-11-14 15:16:17 +11005919 if (release_inactive) {
5920 spin_lock_irq(&conf->device_lock);
5921 return 0;
5922 }
5923
Shaohua Li46a06402012-08-02 08:33:15 +10005924 for (i = 0; i < batch_size; i++)
5925 handle_stripe(batch[i]);
Shaohua Lif6bed0e2015-08-13 14:31:59 -07005926 r5l_write_stripe_run(conf->log);
Shaohua Li46a06402012-08-02 08:33:15 +10005927
5928 cond_resched();
5929
5930 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11005931 for (i = 0; i < batch_size; i++) {
5932 hash = batch[i]->hash_lock_index;
5933 __release_stripe(conf, batch[i], &temp_inactive_list[hash]);
5934 }
Shaohua Li46a06402012-08-02 08:33:15 +10005935 return batch_size;
5936}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005937
Shaohua Li851c30c2013-08-28 14:30:16 +08005938static void raid5_do_work(struct work_struct *work)
5939{
5940 struct r5worker *worker = container_of(work, struct r5worker, work);
5941 struct r5worker_group *group = worker->group;
5942 struct r5conf *conf = group->conf;
5943 int group_id = group - conf->worker_groups;
5944 int handled;
5945 struct blk_plug plug;
5946
5947 pr_debug("+++ raid5worker active\n");
5948
5949 blk_start_plug(&plug);
5950 handled = 0;
5951 spin_lock_irq(&conf->device_lock);
5952 while (1) {
5953 int batch_size, released;
5954
Shaohua Li566c09c2013-11-14 15:16:17 +11005955 released = release_stripe_list(conf, worker->temp_inactive_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08005956
Shaohua Li566c09c2013-11-14 15:16:17 +11005957 batch_size = handle_active_stripes(conf, group_id, worker,
5958 worker->temp_inactive_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +08005959 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08005960 if (!batch_size && !released)
5961 break;
5962 handled += batch_size;
5963 }
5964 pr_debug("%d stripes handled\n", handled);
5965
5966 spin_unlock_irq(&conf->device_lock);
5967 blk_finish_plug(&plug);
5968
5969 pr_debug("--- raid5worker inactive\n");
5970}
5971
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972/*
5973 * This is our raid5 kernel thread.
5974 *
5975 * We scan the hash table for stripes which can be handled now.
5976 * During the scan, completed stripes are saved for us by the interrupt
5977 * handler, so that they will not have to wait for our next wakeup.
5978 */
Shaohua Li4ed87312012-10-11 13:34:00 +11005979static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980{
Shaohua Li4ed87312012-10-11 13:34:00 +11005981 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005982 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005984 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985
Dan Williams45b42332007-07-09 11:56:43 -07005986 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987
5988 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989
NeilBrownc3cce6c2015-08-14 12:47:33 +10005990 if (!bio_list_empty(&conf->return_bi) &&
Shaohua Li29530792016-12-08 15:48:19 -08005991 !test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)) {
NeilBrownc3cce6c2015-08-14 12:47:33 +10005992 struct bio_list tmp = BIO_EMPTY_LIST;
5993 spin_lock_irq(&conf->device_lock);
Shaohua Li29530792016-12-08 15:48:19 -08005994 if (!test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)) {
NeilBrownc3cce6c2015-08-14 12:47:33 +10005995 bio_list_merge(&tmp, &conf->return_bi);
5996 bio_list_init(&conf->return_bi);
5997 }
5998 spin_unlock_irq(&conf->device_lock);
5999 return_io(&tmp);
6000 }
6001
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006002 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003 handled = 0;
6004 spin_lock_irq(&conf->device_lock);
6005 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006006 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08006007 int batch_size, released;
6008
Shaohua Li566c09c2013-11-14 15:16:17 +11006009 released = release_stripe_list(conf, conf->temp_inactive_list);
NeilBrownedbe83a2015-02-26 12:47:56 +11006010 if (released)
6011 clear_bit(R5_DID_ALLOC, &conf->cache_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012
NeilBrown0021b7b2012-07-31 09:08:14 +02006013 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10006014 !list_empty(&conf->bitmap_list)) {
6015 /* Now is a good time to flush some bitmap updates */
6016 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08006017 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07006018 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08006019 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10006020 conf->seq_write = conf->seq_flush;
Shaohua Li566c09c2013-11-14 15:16:17 +11006021 activate_bit_delay(conf, conf->temp_inactive_list);
NeilBrown72626682005-09-09 16:23:54 -07006022 }
NeilBrown0021b7b2012-07-31 09:08:14 +02006023 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07006024
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006025 while ((bio = remove_bio_from_retry(conf))) {
6026 int ok;
6027 spin_unlock_irq(&conf->device_lock);
6028 ok = retry_aligned_read(conf, bio);
6029 spin_lock_irq(&conf->device_lock);
6030 if (!ok)
6031 break;
6032 handled++;
6033 }
6034
Shaohua Li566c09c2013-11-14 15:16:17 +11006035 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL,
6036 conf->temp_inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08006037 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038 break;
Shaohua Li46a06402012-08-02 08:33:15 +10006039 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040
Shaohua Li29530792016-12-08 15:48:19 -08006041 if (mddev->sb_flags & ~(1 << MD_SB_CHANGE_PENDING)) {
Shaohua Li46a06402012-08-02 08:33:15 +10006042 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10006043 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10006044 spin_lock_irq(&conf->device_lock);
6045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 }
Dan Williams45b42332007-07-09 11:56:43 -07006047 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048
6049 spin_unlock_irq(&conf->device_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10006050 if (test_and_clear_bit(R5_ALLOC_MORE, &conf->cache_state) &&
6051 mutex_trylock(&conf->cache_size_mutex)) {
NeilBrownedbe83a2015-02-26 12:47:56 +11006052 grow_one_stripe(conf, __GFP_NOWARN);
6053 /* Set flag even if allocation failed. This helps
6054 * slow down allocation requests when mem is short
6055 */
6056 set_bit(R5_DID_ALLOC, &conf->cache_state);
NeilBrown2d5b5692015-07-06 12:49:23 +10006057 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11006058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059
Shaohua Li0576b1c2015-08-13 14:32:00 -07006060 r5l_flush_stripe_to_raid(conf->log);
6061
Dan Williamsc9f21aa2008-07-23 12:05:51 -07006062 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006063 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064
Dan Williams45b42332007-07-09 11:56:43 -07006065 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066}
6067
NeilBrown3f294f42005-11-08 21:39:25 -08006068static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006069raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006070{
NeilBrown7b1485b2014-12-15 12:56:59 +11006071 struct r5conf *conf;
6072 int ret = 0;
6073 spin_lock(&mddev->lock);
6074 conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006075 if (conf)
NeilBrownedbe83a2015-02-26 12:47:56 +11006076 ret = sprintf(page, "%d\n", conf->min_nr_stripes);
NeilBrown7b1485b2014-12-15 12:56:59 +11006077 spin_unlock(&mddev->lock);
6078 return ret;
NeilBrown3f294f42005-11-08 21:39:25 -08006079}
6080
NeilBrownc41d4ac2010-06-01 19:37:24 +10006081int
NeilBrownfd01b882011-10-11 16:47:53 +11006082raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10006083{
NeilBrownd1688a62011-10-11 16:49:52 +11006084 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10006085 int err;
6086
6087 if (size <= 16 || size > 32768)
6088 return -EINVAL;
NeilBrown486f0642015-02-25 12:10:35 +11006089
NeilBrownedbe83a2015-02-26 12:47:56 +11006090 conf->min_nr_stripes = size;
NeilBrown2d5b5692015-07-06 12:49:23 +10006091 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006092 while (size < conf->max_nr_stripes &&
6093 drop_one_stripe(conf))
6094 ;
NeilBrown2d5b5692015-07-06 12:49:23 +10006095 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006096
NeilBrownedbe83a2015-02-26 12:47:56 +11006097
NeilBrownc41d4ac2010-06-01 19:37:24 +10006098 err = md_allow_write(mddev);
6099 if (err)
6100 return err;
NeilBrown486f0642015-02-25 12:10:35 +11006101
NeilBrown2d5b5692015-07-06 12:49:23 +10006102 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006103 while (size > conf->max_nr_stripes)
6104 if (!grow_one_stripe(conf, GFP_KERNEL))
6105 break;
NeilBrown2d5b5692015-07-06 12:49:23 +10006106 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006107
NeilBrownc41d4ac2010-06-01 19:37:24 +10006108 return 0;
6109}
6110EXPORT_SYMBOL(raid5_set_cache_size);
6111
NeilBrown3f294f42005-11-08 21:39:25 -08006112static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006113raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08006114{
NeilBrown67918752014-12-15 12:57:01 +11006115 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006116 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07006117 int err;
6118
NeilBrown3f294f42005-11-08 21:39:25 -08006119 if (len >= PAGE_SIZE)
6120 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006121 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08006122 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006123 err = mddev_lock(mddev);
Dan Williamsb5470dc2008-06-27 21:44:04 -07006124 if (err)
6125 return err;
NeilBrown67918752014-12-15 12:57:01 +11006126 conf = mddev->private;
6127 if (!conf)
6128 err = -ENODEV;
6129 else
6130 err = raid5_set_cache_size(mddev, new);
6131 mddev_unlock(mddev);
6132
6133 return err ?: len;
NeilBrown3f294f42005-11-08 21:39:25 -08006134}
NeilBrown007583c2005-11-08 21:39:30 -08006135
NeilBrown96de1e62005-11-08 21:39:39 -08006136static struct md_sysfs_entry
6137raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
6138 raid5_show_stripe_cache_size,
6139 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08006140
6141static ssize_t
Markus Stockhausend06f1912014-12-15 12:57:05 +11006142raid5_show_rmw_level(struct mddev *mddev, char *page)
6143{
6144 struct r5conf *conf = mddev->private;
6145 if (conf)
6146 return sprintf(page, "%d\n", conf->rmw_level);
6147 else
6148 return 0;
6149}
6150
6151static ssize_t
6152raid5_store_rmw_level(struct mddev *mddev, const char *page, size_t len)
6153{
6154 struct r5conf *conf = mddev->private;
6155 unsigned long new;
6156
6157 if (!conf)
6158 return -ENODEV;
6159
6160 if (len >= PAGE_SIZE)
6161 return -EINVAL;
6162
6163 if (kstrtoul(page, 10, &new))
6164 return -EINVAL;
6165
6166 if (new != PARITY_DISABLE_RMW && !raid6_call.xor_syndrome)
6167 return -EINVAL;
6168
6169 if (new != PARITY_DISABLE_RMW &&
6170 new != PARITY_ENABLE_RMW &&
6171 new != PARITY_PREFER_RMW)
6172 return -EINVAL;
6173
6174 conf->rmw_level = new;
6175 return len;
6176}
6177
6178static struct md_sysfs_entry
6179raid5_rmw_level = __ATTR(rmw_level, S_IRUGO | S_IWUSR,
6180 raid5_show_rmw_level,
6181 raid5_store_rmw_level);
6182
6183
6184static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006185raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006186{
NeilBrown7b1485b2014-12-15 12:56:59 +11006187 struct r5conf *conf;
6188 int ret = 0;
6189 spin_lock(&mddev->lock);
6190 conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006191 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006192 ret = sprintf(page, "%d\n", conf->bypass_threshold);
6193 spin_unlock(&mddev->lock);
6194 return ret;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006195}
6196
6197static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006198raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006199{
NeilBrown67918752014-12-15 12:57:01 +11006200 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006201 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006202 int err;
6203
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006204 if (len >= PAGE_SIZE)
6205 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006206 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006207 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006208
6209 err = mddev_lock(mddev);
6210 if (err)
6211 return err;
6212 conf = mddev->private;
6213 if (!conf)
6214 err = -ENODEV;
NeilBrownedbe83a2015-02-26 12:47:56 +11006215 else if (new > conf->min_nr_stripes)
NeilBrown67918752014-12-15 12:57:01 +11006216 err = -EINVAL;
6217 else
6218 conf->bypass_threshold = new;
6219 mddev_unlock(mddev);
6220 return err ?: len;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006221}
6222
6223static struct md_sysfs_entry
6224raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
6225 S_IRUGO | S_IWUSR,
6226 raid5_show_preread_threshold,
6227 raid5_store_preread_threshold);
6228
6229static ssize_t
Shaohua Lid592a992014-05-21 17:57:44 +08006230raid5_show_skip_copy(struct mddev *mddev, char *page)
6231{
NeilBrown7b1485b2014-12-15 12:56:59 +11006232 struct r5conf *conf;
6233 int ret = 0;
6234 spin_lock(&mddev->lock);
6235 conf = mddev->private;
Shaohua Lid592a992014-05-21 17:57:44 +08006236 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006237 ret = sprintf(page, "%d\n", conf->skip_copy);
6238 spin_unlock(&mddev->lock);
6239 return ret;
Shaohua Lid592a992014-05-21 17:57:44 +08006240}
6241
6242static ssize_t
6243raid5_store_skip_copy(struct mddev *mddev, const char *page, size_t len)
6244{
NeilBrown67918752014-12-15 12:57:01 +11006245 struct r5conf *conf;
Shaohua Lid592a992014-05-21 17:57:44 +08006246 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006247 int err;
6248
Shaohua Lid592a992014-05-21 17:57:44 +08006249 if (len >= PAGE_SIZE)
6250 return -EINVAL;
Shaohua Lid592a992014-05-21 17:57:44 +08006251 if (kstrtoul(page, 10, &new))
6252 return -EINVAL;
6253 new = !!new;
Shaohua Lid592a992014-05-21 17:57:44 +08006254
NeilBrown67918752014-12-15 12:57:01 +11006255 err = mddev_lock(mddev);
6256 if (err)
6257 return err;
6258 conf = mddev->private;
6259 if (!conf)
6260 err = -ENODEV;
6261 else if (new != conf->skip_copy) {
6262 mddev_suspend(mddev);
6263 conf->skip_copy = new;
6264 if (new)
6265 mddev->queue->backing_dev_info.capabilities |=
6266 BDI_CAP_STABLE_WRITES;
6267 else
6268 mddev->queue->backing_dev_info.capabilities &=
6269 ~BDI_CAP_STABLE_WRITES;
6270 mddev_resume(mddev);
6271 }
6272 mddev_unlock(mddev);
6273 return err ?: len;
Shaohua Lid592a992014-05-21 17:57:44 +08006274}
6275
6276static struct md_sysfs_entry
6277raid5_skip_copy = __ATTR(skip_copy, S_IRUGO | S_IWUSR,
6278 raid5_show_skip_copy,
6279 raid5_store_skip_copy);
6280
Shaohua Lid592a992014-05-21 17:57:44 +08006281static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006282stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006283{
NeilBrownd1688a62011-10-11 16:49:52 +11006284 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006285 if (conf)
6286 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
6287 else
6288 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08006289}
6290
NeilBrown96de1e62005-11-08 21:39:39 -08006291static struct md_sysfs_entry
6292raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08006293
Shaohua Lib7214202013-08-27 17:50:42 +08006294static ssize_t
6295raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
6296{
NeilBrown7b1485b2014-12-15 12:56:59 +11006297 struct r5conf *conf;
6298 int ret = 0;
6299 spin_lock(&mddev->lock);
6300 conf = mddev->private;
Shaohua Lib7214202013-08-27 17:50:42 +08006301 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006302 ret = sprintf(page, "%d\n", conf->worker_cnt_per_group);
6303 spin_unlock(&mddev->lock);
6304 return ret;
Shaohua Lib7214202013-08-27 17:50:42 +08006305}
6306
majianpeng60aaf932013-11-14 15:16:20 +11006307static int alloc_thread_groups(struct r5conf *conf, int cnt,
6308 int *group_cnt,
6309 int *worker_cnt_per_group,
6310 struct r5worker_group **worker_groups);
Shaohua Lib7214202013-08-27 17:50:42 +08006311static ssize_t
6312raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
6313{
NeilBrown67918752014-12-15 12:57:01 +11006314 struct r5conf *conf;
Shaohua Lib7214202013-08-27 17:50:42 +08006315 unsigned long new;
6316 int err;
majianpeng60aaf932013-11-14 15:16:20 +11006317 struct r5worker_group *new_groups, *old_groups;
6318 int group_cnt, worker_cnt_per_group;
Shaohua Lib7214202013-08-27 17:50:42 +08006319
6320 if (len >= PAGE_SIZE)
6321 return -EINVAL;
Shaohua Lib7214202013-08-27 17:50:42 +08006322 if (kstrtoul(page, 10, &new))
6323 return -EINVAL;
6324
NeilBrown67918752014-12-15 12:57:01 +11006325 err = mddev_lock(mddev);
Shaohua Lib7214202013-08-27 17:50:42 +08006326 if (err)
6327 return err;
NeilBrown67918752014-12-15 12:57:01 +11006328 conf = mddev->private;
6329 if (!conf)
6330 err = -ENODEV;
6331 else if (new != conf->worker_cnt_per_group) {
6332 mddev_suspend(mddev);
6333
6334 old_groups = conf->worker_groups;
6335 if (old_groups)
6336 flush_workqueue(raid5_wq);
6337
6338 err = alloc_thread_groups(conf, new,
6339 &group_cnt, &worker_cnt_per_group,
6340 &new_groups);
6341 if (!err) {
6342 spin_lock_irq(&conf->device_lock);
6343 conf->group_cnt = group_cnt;
6344 conf->worker_cnt_per_group = worker_cnt_per_group;
6345 conf->worker_groups = new_groups;
6346 spin_unlock_irq(&conf->device_lock);
6347
6348 if (old_groups)
6349 kfree(old_groups[0].workers);
6350 kfree(old_groups);
6351 }
6352 mddev_resume(mddev);
6353 }
6354 mddev_unlock(mddev);
6355
6356 return err ?: len;
Shaohua Lib7214202013-08-27 17:50:42 +08006357}
6358
6359static struct md_sysfs_entry
6360raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
6361 raid5_show_group_thread_cnt,
6362 raid5_store_group_thread_cnt);
6363
NeilBrown007583c2005-11-08 21:39:30 -08006364static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08006365 &raid5_stripecache_size.attr,
6366 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006367 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08006368 &raid5_group_thread_cnt.attr,
Shaohua Lid592a992014-05-21 17:57:44 +08006369 &raid5_skip_copy.attr,
Markus Stockhausend06f1912014-12-15 12:57:05 +11006370 &raid5_rmw_level.attr,
Song Liu2c7da142016-11-17 15:24:41 -08006371 &r5c_journal_mode.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08006372 NULL,
6373};
NeilBrown007583c2005-11-08 21:39:30 -08006374static struct attribute_group raid5_attrs_group = {
6375 .name = NULL,
6376 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08006377};
6378
majianpeng60aaf932013-11-14 15:16:20 +11006379static int alloc_thread_groups(struct r5conf *conf, int cnt,
6380 int *group_cnt,
6381 int *worker_cnt_per_group,
6382 struct r5worker_group **worker_groups)
Shaohua Li851c30c2013-08-28 14:30:16 +08006383{
Shaohua Li566c09c2013-11-14 15:16:17 +11006384 int i, j, k;
Shaohua Li851c30c2013-08-28 14:30:16 +08006385 ssize_t size;
6386 struct r5worker *workers;
6387
majianpeng60aaf932013-11-14 15:16:20 +11006388 *worker_cnt_per_group = cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +08006389 if (cnt == 0) {
majianpeng60aaf932013-11-14 15:16:20 +11006390 *group_cnt = 0;
6391 *worker_groups = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08006392 return 0;
6393 }
majianpeng60aaf932013-11-14 15:16:20 +11006394 *group_cnt = num_possible_nodes();
Shaohua Li851c30c2013-08-28 14:30:16 +08006395 size = sizeof(struct r5worker) * cnt;
majianpeng60aaf932013-11-14 15:16:20 +11006396 workers = kzalloc(size * *group_cnt, GFP_NOIO);
6397 *worker_groups = kzalloc(sizeof(struct r5worker_group) *
6398 *group_cnt, GFP_NOIO);
6399 if (!*worker_groups || !workers) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006400 kfree(workers);
majianpeng60aaf932013-11-14 15:16:20 +11006401 kfree(*worker_groups);
Shaohua Li851c30c2013-08-28 14:30:16 +08006402 return -ENOMEM;
6403 }
6404
majianpeng60aaf932013-11-14 15:16:20 +11006405 for (i = 0; i < *group_cnt; i++) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006406 struct r5worker_group *group;
6407
NeilBrown0c775d52013-11-25 11:12:43 +11006408 group = &(*worker_groups)[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08006409 INIT_LIST_HEAD(&group->handle_list);
6410 group->conf = conf;
6411 group->workers = workers + i * cnt;
6412
6413 for (j = 0; j < cnt; j++) {
Shaohua Li566c09c2013-11-14 15:16:17 +11006414 struct r5worker *worker = group->workers + j;
6415 worker->group = group;
6416 INIT_WORK(&worker->work, raid5_do_work);
6417
6418 for (k = 0; k < NR_STRIPE_HASH_LOCKS; k++)
6419 INIT_LIST_HEAD(worker->temp_inactive_list + k);
Shaohua Li851c30c2013-08-28 14:30:16 +08006420 }
6421 }
6422
6423 return 0;
6424}
6425
6426static void free_thread_groups(struct r5conf *conf)
6427{
6428 if (conf->worker_groups)
6429 kfree(conf->worker_groups[0].workers);
6430 kfree(conf->worker_groups);
6431 conf->worker_groups = NULL;
6432}
6433
Dan Williams80c3a6c2009-03-17 18:10:40 -07006434static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11006435raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07006436{
NeilBrownd1688a62011-10-11 16:49:52 +11006437 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006438
6439 if (!sectors)
6440 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006441 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11006442 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11006443 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006444
NeilBrown3cb5edf2015-07-15 17:24:17 +10006445 sectors &= ~((sector_t)conf->chunk_sectors - 1);
6446 sectors &= ~((sector_t)conf->prev_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006447 return sectors * (raid_disks - conf->max_degraded);
6448}
6449
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306450static void free_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6451{
6452 safe_put_page(percpu->spare_page);
shli@kernel.org46d5b782014-12-15 12:57:02 +11006453 if (percpu->scribble)
6454 flex_array_free(percpu->scribble);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306455 percpu->spare_page = NULL;
6456 percpu->scribble = NULL;
6457}
6458
6459static int alloc_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6460{
6461 if (conf->level == 6 && !percpu->spare_page)
6462 percpu->spare_page = alloc_page(GFP_KERNEL);
6463 if (!percpu->scribble)
shli@kernel.org46d5b782014-12-15 12:57:02 +11006464 percpu->scribble = scribble_alloc(max(conf->raid_disks,
NeilBrown738a2732015-05-08 18:19:39 +10006465 conf->previous_raid_disks),
6466 max(conf->chunk_sectors,
6467 conf->prev_chunk_sectors)
6468 / STRIPE_SECTORS,
6469 GFP_KERNEL);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306470
6471 if (!percpu->scribble || (conf->level == 6 && !percpu->spare_page)) {
6472 free_scratch_buffer(conf, percpu);
6473 return -ENOMEM;
6474 }
6475
6476 return 0;
6477}
6478
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006479static int raid456_cpu_dead(unsigned int cpu, struct hlist_node *node)
6480{
6481 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
6482
6483 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
6484 return 0;
6485}
6486
NeilBrownd1688a62011-10-11 16:49:52 +11006487static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006488{
Dan Williams36d1c642009-07-14 11:48:22 -07006489 if (!conf->percpu)
6490 return;
6491
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006492 cpuhp_state_remove_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Dan Williams36d1c642009-07-14 11:48:22 -07006493 free_percpu(conf->percpu);
6494}
6495
NeilBrownd1688a62011-10-11 16:49:52 +11006496static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10006497{
Song Liud7bd3982016-11-23 22:50:39 -08006498 int i;
6499
Shaohua Li5c7e81c2015-08-13 14:32:04 -07006500 if (conf->log)
6501 r5l_exit_log(conf->log);
Shaohua Li30c89462016-09-21 09:07:13 -07006502 if (conf->shrinker.nr_deferred)
NeilBrownedbe83a2015-02-26 12:47:56 +11006503 unregister_shrinker(&conf->shrinker);
Shaohua Li5c7e81c2015-08-13 14:32:04 -07006504
Shaohua Li851c30c2013-08-28 14:30:16 +08006505 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006506 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07006507 raid5_free_percpu(conf);
Song Liud7bd3982016-11-23 22:50:39 -08006508 for (i = 0; i < conf->pool_size; i++)
6509 if (conf->disks[i].extra_page)
6510 put_page(conf->disks[i].extra_page);
Dan Williams95fc17a2009-07-31 12:39:15 +10006511 kfree(conf->disks);
6512 kfree(conf->stripe_hashtbl);
6513 kfree(conf);
6514}
6515
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006516static int raid456_cpu_up_prepare(unsigned int cpu, struct hlist_node *node)
Dan Williams36d1c642009-07-14 11:48:22 -07006517{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006518 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
Dan Williams36d1c642009-07-14 11:48:22 -07006519 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
6520
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006521 if (alloc_scratch_buffer(conf, percpu)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006522 pr_warn("%s: failed memory allocation for cpu%u\n",
6523 __func__, cpu);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006524 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006525 }
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006526 return 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006527}
Dan Williams36d1c642009-07-14 11:48:22 -07006528
NeilBrownd1688a62011-10-11 16:49:52 +11006529static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006530{
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306531 int err = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006532
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306533 conf->percpu = alloc_percpu(struct raid5_percpu);
6534 if (!conf->percpu)
Dan Williams36d1c642009-07-14 11:48:22 -07006535 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006536
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006537 err = cpuhp_state_add_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Shaohua Li27a353c2016-02-24 17:38:28 -08006538 if (!err) {
6539 conf->scribble_disks = max(conf->raid_disks,
6540 conf->previous_raid_disks);
6541 conf->scribble_sectors = max(conf->chunk_sectors,
6542 conf->prev_chunk_sectors);
6543 }
Dan Williams36d1c642009-07-14 11:48:22 -07006544 return err;
6545}
6546
NeilBrownedbe83a2015-02-26 12:47:56 +11006547static unsigned long raid5_cache_scan(struct shrinker *shrink,
6548 struct shrink_control *sc)
6549{
6550 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
NeilBrown2d5b5692015-07-06 12:49:23 +10006551 unsigned long ret = SHRINK_STOP;
6552
6553 if (mutex_trylock(&conf->cache_size_mutex)) {
6554 ret= 0;
NeilBrown49895bc2015-08-03 17:09:57 +10006555 while (ret < sc->nr_to_scan &&
6556 conf->max_nr_stripes > conf->min_nr_stripes) {
NeilBrown2d5b5692015-07-06 12:49:23 +10006557 if (drop_one_stripe(conf) == 0) {
6558 ret = SHRINK_STOP;
6559 break;
6560 }
6561 ret++;
6562 }
6563 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11006564 }
6565 return ret;
6566}
6567
6568static unsigned long raid5_cache_count(struct shrinker *shrink,
6569 struct shrink_control *sc)
6570{
6571 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
6572
6573 if (conf->max_nr_stripes < conf->min_nr_stripes)
6574 /* unlikely, but not impossible */
6575 return 0;
6576 return conf->max_nr_stripes - conf->min_nr_stripes;
6577}
6578
NeilBrownd1688a62011-10-11 16:49:52 +11006579static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580{
NeilBrownd1688a62011-10-11 16:49:52 +11006581 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006582 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11006583 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10006585 char pers_name[6];
Shaohua Li566c09c2013-11-14 15:16:17 +11006586 int i;
majianpeng60aaf932013-11-14 15:16:20 +11006587 int group_cnt, worker_cnt_per_group;
6588 struct r5worker_group *new_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589
NeilBrown91adb562009-03-31 14:39:39 +11006590 if (mddev->new_level != 5
6591 && mddev->new_level != 4
6592 && mddev->new_level != 6) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006593 pr_warn("md/raid:%s: raid level not set to 4/5/6 (%d)\n",
6594 mdname(mddev), mddev->new_level);
NeilBrown91adb562009-03-31 14:39:39 +11006595 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596 }
NeilBrown91adb562009-03-31 14:39:39 +11006597 if ((mddev->new_level == 5
6598 && !algorithm_valid_raid5(mddev->new_layout)) ||
6599 (mddev->new_level == 6
6600 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006601 pr_warn("md/raid:%s: layout %d not supported\n",
6602 mdname(mddev), mddev->new_layout);
NeilBrown91adb562009-03-31 14:39:39 +11006603 return ERR_PTR(-EIO);
6604 }
6605 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006606 pr_warn("md/raid:%s: not enough configured devices (%d, minimum 4)\n",
6607 mdname(mddev), mddev->raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006608 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11006609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610
Andre Noll664e7c42009-06-18 08:45:27 +10006611 if (!mddev->new_chunk_sectors ||
6612 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
6613 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006614 pr_warn("md/raid:%s: invalid chunk size %d\n",
6615 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11006616 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11006617 }
6618
NeilBrownd1688a62011-10-11 16:49:52 +11006619 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11006620 if (conf == NULL)
6621 goto abort;
Shaohua Li851c30c2013-08-28 14:30:16 +08006622 /* Don't enable multi-threading by default*/
majianpeng60aaf932013-11-14 15:16:20 +11006623 if (!alloc_thread_groups(conf, 0, &group_cnt, &worker_cnt_per_group,
6624 &new_group)) {
6625 conf->group_cnt = group_cnt;
6626 conf->worker_cnt_per_group = worker_cnt_per_group;
6627 conf->worker_groups = new_group;
6628 } else
Shaohua Li851c30c2013-08-28 14:30:16 +08006629 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11006630 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006631 seqcount_init(&conf->gen_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10006632 mutex_init(&conf->cache_size_mutex);
Yuanhan Liub1b46482015-05-08 18:19:06 +10006633 init_waitqueue_head(&conf->wait_for_quiescent);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08006634 init_waitqueue_head(&conf->wait_for_stripe);
Dan Williamsf5efd452009-10-16 15:55:38 +11006635 init_waitqueue_head(&conf->wait_for_overlap);
6636 INIT_LIST_HEAD(&conf->handle_list);
6637 INIT_LIST_HEAD(&conf->hold_list);
6638 INIT_LIST_HEAD(&conf->delayed_list);
6639 INIT_LIST_HEAD(&conf->bitmap_list);
NeilBrownc3cce6c2015-08-14 12:47:33 +10006640 bio_list_init(&conf->return_bi);
Shaohua Li773ca822013-08-27 17:50:39 +08006641 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11006642 atomic_set(&conf->active_stripes, 0);
6643 atomic_set(&conf->preread_active_stripes, 0);
6644 atomic_set(&conf->active_aligned_reads, 0);
6645 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11006646 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11006647
6648 conf->raid_disks = mddev->raid_disks;
6649 if (mddev->reshape_position == MaxSector)
6650 conf->previous_raid_disks = mddev->raid_disks;
6651 else
6652 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006653 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006654
NeilBrown5e5e3e72009-10-16 16:35:30 +11006655 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11006656 GFP_KERNEL);
Song Liud7bd3982016-11-23 22:50:39 -08006657
NeilBrown91adb562009-03-31 14:39:39 +11006658 if (!conf->disks)
6659 goto abort;
6660
Song Liud7bd3982016-11-23 22:50:39 -08006661 for (i = 0; i < max_disks; i++) {
6662 conf->disks[i].extra_page = alloc_page(GFP_KERNEL);
6663 if (!conf->disks[i].extra_page)
6664 goto abort;
6665 }
6666
NeilBrown91adb562009-03-31 14:39:39 +11006667 conf->mddev = mddev;
6668
6669 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
6670 goto abort;
6671
Shaohua Li566c09c2013-11-14 15:16:17 +11006672 /* We init hash_locks[0] separately to that it can be used
6673 * as the reference lock in the spin_lock_nest_lock() call
6674 * in lock_all_device_hash_locks_irq in order to convince
6675 * lockdep that we know what we are doing.
6676 */
6677 spin_lock_init(conf->hash_locks);
6678 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
6679 spin_lock_init(conf->hash_locks + i);
6680
6681 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6682 INIT_LIST_HEAD(conf->inactive_list + i);
6683
6684 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6685 INIT_LIST_HEAD(conf->temp_inactive_list + i);
6686
Song Liu1e6d6902016-11-17 15:24:39 -08006687 atomic_set(&conf->r5c_cached_full_stripes, 0);
6688 INIT_LIST_HEAD(&conf->r5c_full_stripe_list);
6689 atomic_set(&conf->r5c_cached_partial_stripes, 0);
6690 INIT_LIST_HEAD(&conf->r5c_partial_stripe_list);
6691
Dan Williams36d1c642009-07-14 11:48:22 -07006692 conf->level = mddev->new_level;
shli@kernel.org46d5b782014-12-15 12:57:02 +11006693 conf->chunk_sectors = mddev->new_chunk_sectors;
Dan Williams36d1c642009-07-14 11:48:22 -07006694 if (raid5_alloc_percpu(conf) != 0)
6695 goto abort;
6696
NeilBrown0c55e022010-05-03 14:09:02 +10006697 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006698
NeilBrowndafb20f2012-03-19 12:46:39 +11006699 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11006700 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006701 if (raid_disk >= max_disks
Shaohua Lif2076e72015-10-08 21:54:12 -07006702 || raid_disk < 0 || test_bit(Journal, &rdev->flags))
NeilBrown91adb562009-03-31 14:39:39 +11006703 continue;
6704 disk = conf->disks + raid_disk;
6705
NeilBrown17045f52011-12-23 10:17:53 +11006706 if (test_bit(Replacement, &rdev->flags)) {
6707 if (disk->replacement)
6708 goto abort;
6709 disk->replacement = rdev;
6710 } else {
6711 if (disk->rdev)
6712 goto abort;
6713 disk->rdev = rdev;
6714 }
NeilBrown91adb562009-03-31 14:39:39 +11006715
6716 if (test_bit(In_sync, &rdev->flags)) {
6717 char b[BDEVNAME_SIZE];
NeilBrowncc6167b2016-11-02 14:16:50 +11006718 pr_info("md/raid:%s: device %s operational as raid disk %d\n",
6719 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05006720 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11006721 /* Cannot rely on bitmap to complete recovery */
6722 conf->fullsync = 1;
6723 }
6724
NeilBrown91adb562009-03-31 14:39:39 +11006725 conf->level = mddev->new_level;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006726 if (conf->level == 6) {
NeilBrown91adb562009-03-31 14:39:39 +11006727 conf->max_degraded = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006728 if (raid6_call.xor_syndrome)
6729 conf->rmw_level = PARITY_ENABLE_RMW;
6730 else
6731 conf->rmw_level = PARITY_DISABLE_RMW;
6732 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006733 conf->max_degraded = 1;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006734 conf->rmw_level = PARITY_ENABLE_RMW;
6735 }
NeilBrown91adb562009-03-31 14:39:39 +11006736 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11006737 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11006738 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10006739 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11006740 conf->prev_algo = mddev->layout;
NeilBrown5cac6bc2015-07-17 12:17:50 +10006741 } else {
6742 conf->prev_chunk_sectors = conf->chunk_sectors;
6743 conf->prev_algo = conf->algorithm;
NeilBrowne183eae2009-03-31 15:20:22 +11006744 }
NeilBrown91adb562009-03-31 14:39:39 +11006745
NeilBrownedbe83a2015-02-26 12:47:56 +11006746 conf->min_nr_stripes = NR_STRIPES;
Shaohua Liad5b0f72016-08-30 10:29:33 -07006747 if (mddev->reshape_position != MaxSector) {
6748 int stripes = max_t(int,
6749 ((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4,
6750 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4);
6751 conf->min_nr_stripes = max(NR_STRIPES, stripes);
6752 if (conf->min_nr_stripes != NR_STRIPES)
NeilBrowncc6167b2016-11-02 14:16:50 +11006753 pr_info("md/raid:%s: force stripe size %d for reshape\n",
Shaohua Liad5b0f72016-08-30 10:29:33 -07006754 mdname(mddev), conf->min_nr_stripes);
6755 }
NeilBrownedbe83a2015-02-26 12:47:56 +11006756 memory = conf->min_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11006757 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
Shaohua Li4bda5562013-11-14 15:16:17 +11006758 atomic_set(&conf->empty_inactive_list_nr, NR_STRIPE_HASH_LOCKS);
NeilBrownedbe83a2015-02-26 12:47:56 +11006759 if (grow_stripes(conf, conf->min_nr_stripes)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006760 pr_warn("md/raid:%s: couldn't allocate %dkB for buffers\n",
6761 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11006762 goto abort;
6763 } else
NeilBrowncc6167b2016-11-02 14:16:50 +11006764 pr_debug("md/raid:%s: allocated %dkB\n", mdname(mddev), memory);
NeilBrownedbe83a2015-02-26 12:47:56 +11006765 /*
6766 * Losing a stripe head costs more than the time to refill it,
6767 * it reduces the queue depth and so can hurt throughput.
6768 * So set it rather large, scaled by number of devices.
6769 */
6770 conf->shrinker.seeks = DEFAULT_SEEKS * conf->raid_disks * 4;
6771 conf->shrinker.scan_objects = raid5_cache_scan;
6772 conf->shrinker.count_objects = raid5_cache_count;
6773 conf->shrinker.batch = 128;
6774 conf->shrinker.flags = 0;
Chao Yu6a0f53f2016-09-20 10:33:57 +08006775 if (register_shrinker(&conf->shrinker)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006776 pr_warn("md/raid:%s: couldn't register shrinker.\n",
6777 mdname(mddev));
Chao Yu6a0f53f2016-09-20 10:33:57 +08006778 goto abort;
6779 }
NeilBrown91adb562009-03-31 14:39:39 +11006780
NeilBrown02326052012-07-03 15:56:52 +10006781 sprintf(pers_name, "raid%d", mddev->new_level);
6782 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11006783 if (!conf->thread) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006784 pr_warn("md/raid:%s: couldn't allocate thread.\n",
6785 mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006786 goto abort;
6787 }
6788
6789 return conf;
6790
6791 abort:
6792 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10006793 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11006794 return ERR_PTR(-EIO);
6795 } else
6796 return ERR_PTR(-ENOMEM);
6797}
6798
NeilBrownc148ffd2009-11-13 17:47:00 +11006799static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
6800{
6801 switch (algo) {
6802 case ALGORITHM_PARITY_0:
6803 if (raid_disk < max_degraded)
6804 return 1;
6805 break;
6806 case ALGORITHM_PARITY_N:
6807 if (raid_disk >= raid_disks - max_degraded)
6808 return 1;
6809 break;
6810 case ALGORITHM_PARITY_0_6:
NeilBrownf72ffdd2014-09-30 14:23:59 +10006811 if (raid_disk == 0 ||
NeilBrownc148ffd2009-11-13 17:47:00 +11006812 raid_disk == raid_disks - 1)
6813 return 1;
6814 break;
6815 case ALGORITHM_LEFT_ASYMMETRIC_6:
6816 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6817 case ALGORITHM_LEFT_SYMMETRIC_6:
6818 case ALGORITHM_RIGHT_SYMMETRIC_6:
6819 if (raid_disk == raid_disks - 1)
6820 return 1;
6821 }
6822 return 0;
6823}
6824
Shaohua Li849674e2016-01-20 13:52:20 -08006825static int raid5_run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11006826{
NeilBrownd1688a62011-10-11 16:49:52 +11006827 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10006828 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11006829 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11006830 struct md_rdev *rdev;
Shaohua Li713cf5a2015-08-13 14:32:03 -07006831 struct md_rdev *journal_dev = NULL;
NeilBrownc148ffd2009-11-13 17:47:00 +11006832 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11006833 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10006834 long long min_offset_diff = 0;
6835 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11006836
Andre Noll8c6ac8682009-06-18 08:48:06 +10006837 if (mddev->recovery_cp != MaxSector)
NeilBrowncc6167b2016-11-02 14:16:50 +11006838 pr_notice("md/raid:%s: not clean -- starting background reconstruction\n",
6839 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10006840
6841 rdev_for_each(rdev, mddev) {
6842 long long diff;
Shaohua Li713cf5a2015-08-13 14:32:03 -07006843
Shaohua Lif2076e72015-10-08 21:54:12 -07006844 if (test_bit(Journal, &rdev->flags)) {
Shaohua Li713cf5a2015-08-13 14:32:03 -07006845 journal_dev = rdev;
Shaohua Lif2076e72015-10-08 21:54:12 -07006846 continue;
6847 }
NeilBrownb5254dd2012-05-21 09:27:01 +10006848 if (rdev->raid_disk < 0)
6849 continue;
6850 diff = (rdev->new_data_offset - rdev->data_offset);
6851 if (first) {
6852 min_offset_diff = diff;
6853 first = 0;
6854 } else if (mddev->reshape_backwards &&
6855 diff < min_offset_diff)
6856 min_offset_diff = diff;
6857 else if (!mddev->reshape_backwards &&
6858 diff > min_offset_diff)
6859 min_offset_diff = diff;
6860 }
6861
NeilBrownf6705572006-03-27 01:18:11 -08006862 if (mddev->reshape_position != MaxSector) {
6863 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10006864 * Difficulties arise if the stripe we would write to
6865 * next is at or after the stripe we would read from next.
6866 * For a reshape that changes the number of devices, this
6867 * is only possible for a very short time, and mdadm makes
6868 * sure that time appears to have past before assembling
6869 * the array. So we fail if that time hasn't passed.
6870 * For a reshape that keeps the number of devices the same
6871 * mdadm must be monitoring the reshape can keeping the
6872 * critical areas read-only and backed up. It will start
6873 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08006874 */
6875 sector_t here_new, here_old;
6876 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11006877 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrown05256d92015-07-15 17:36:21 +10006878 int chunk_sectors;
6879 int new_data_disks;
NeilBrownf6705572006-03-27 01:18:11 -08006880
Shaohua Li713cf5a2015-08-13 14:32:03 -07006881 if (journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006882 pr_warn("md/raid:%s: don't support reshape with journal - aborting.\n",
6883 mdname(mddev));
Shaohua Li713cf5a2015-08-13 14:32:03 -07006884 return -EINVAL;
6885 }
6886
NeilBrown88ce4932009-03-31 15:24:23 +11006887 if (mddev->new_level != mddev->level) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006888 pr_warn("md/raid:%s: unsupported reshape required - aborting.\n",
6889 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006890 return -EINVAL;
6891 }
NeilBrownf6705572006-03-27 01:18:11 -08006892 old_disks = mddev->raid_disks - mddev->delta_disks;
6893 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08006894 * further up in new geometry must map after here in old
6895 * geometry.
NeilBrown05256d92015-07-15 17:36:21 +10006896 * If the chunk sizes are different, then as we perform reshape
6897 * in units of the largest of the two, reshape_position needs
6898 * be a multiple of the largest chunk size times new data disks.
NeilBrownf6705572006-03-27 01:18:11 -08006899 */
6900 here_new = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10006901 chunk_sectors = max(mddev->chunk_sectors, mddev->new_chunk_sectors);
6902 new_data_disks = mddev->raid_disks - max_degraded;
6903 if (sector_div(here_new, chunk_sectors * new_data_disks)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006904 pr_warn("md/raid:%s: reshape_position not on a stripe boundary\n",
6905 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006906 return -EINVAL;
6907 }
NeilBrown05256d92015-07-15 17:36:21 +10006908 reshape_offset = here_new * chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08006909 /* here_new is the stripe we will write to */
6910 here_old = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10006911 sector_div(here_old, chunk_sectors * (old_disks-max_degraded));
NeilBrownf4168852007-02-28 20:11:53 -08006912 /* here_old is the first stripe that we might need to read
6913 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10006914 if (mddev->delta_disks == 0) {
6915 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10006916 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10006917 * and taking constant backups.
6918 * mdadm always starts a situation like this in
6919 * readonly mode so it can take control before
6920 * allowing any writes. So just check for that.
6921 */
NeilBrownb5254dd2012-05-21 09:27:01 +10006922 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
6923 abs(min_offset_diff) >= mddev->new_chunk_sectors)
6924 /* not really in-place - so OK */;
6925 else if (mddev->ro == 0) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006926 pr_warn("md/raid:%s: in-place reshape must be started in read-only mode - aborting\n",
6927 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10006928 return -EINVAL;
6929 }
NeilBrown2c810cd2012-05-21 09:27:00 +10006930 } else if (mddev->reshape_backwards
NeilBrown05256d92015-07-15 17:36:21 +10006931 ? (here_new * chunk_sectors + min_offset_diff <=
6932 here_old * chunk_sectors)
6933 : (here_new * chunk_sectors >=
6934 here_old * chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08006935 /* Reading from the same stripe as writing to - bad */
NeilBrowncc6167b2016-11-02 14:16:50 +11006936 pr_warn("md/raid:%s: reshape_position too early for auto-recovery - aborting.\n",
6937 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006938 return -EINVAL;
6939 }
NeilBrowncc6167b2016-11-02 14:16:50 +11006940 pr_debug("md/raid:%s: reshape will continue\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08006941 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08006942 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006943 BUG_ON(mddev->level != mddev->new_level);
6944 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10006945 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11006946 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08006947 }
6948
NeilBrown245f46c2009-03-31 14:39:39 +11006949 if (mddev->private == NULL)
6950 conf = setup_conf(mddev);
6951 else
6952 conf = mddev->private;
6953
NeilBrown91adb562009-03-31 14:39:39 +11006954 if (IS_ERR(conf))
6955 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08006956
Song Liu486b0f72016-08-19 15:34:01 -07006957 if (test_bit(MD_HAS_JOURNAL, &mddev->flags)) {
6958 if (!journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006959 pr_warn("md/raid:%s: journal disk is missing, force array readonly\n",
6960 mdname(mddev));
Song Liu486b0f72016-08-19 15:34:01 -07006961 mddev->ro = 1;
6962 set_disk_ro(mddev->gendisk, 1);
6963 } else if (mddev->recovery_cp == MaxSector)
6964 set_bit(MD_JOURNAL_CLEAN, &mddev->flags);
Shaohua Li7dde2ad2015-10-08 21:54:10 -07006965 }
6966
NeilBrownb5254dd2012-05-21 09:27:01 +10006967 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11006968 mddev->thread = conf->thread;
6969 conf->thread = NULL;
6970 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971
NeilBrown17045f52011-12-23 10:17:53 +11006972 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
6973 i++) {
6974 rdev = conf->disks[i].rdev;
6975 if (!rdev && conf->disks[i].replacement) {
6976 /* The replacement is all we have yet */
6977 rdev = conf->disks[i].replacement;
6978 conf->disks[i].replacement = NULL;
6979 clear_bit(Replacement, &rdev->flags);
6980 conf->disks[i].rdev = rdev;
6981 }
6982 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11006983 continue;
NeilBrown17045f52011-12-23 10:17:53 +11006984 if (conf->disks[i].replacement &&
6985 conf->reshape_progress != MaxSector) {
6986 /* replacements and reshape simply do not mix. */
NeilBrowncc6167b2016-11-02 14:16:50 +11006987 pr_warn("md: cannot handle concurrent replacement and reshape.\n");
NeilBrown17045f52011-12-23 10:17:53 +11006988 goto abort;
6989 }
NeilBrown2f115882010-06-17 17:41:03 +10006990 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11006991 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10006992 continue;
6993 }
NeilBrownc148ffd2009-11-13 17:47:00 +11006994 /* This disc is not fully in-sync. However if it
6995 * just stored parity (beyond the recovery_offset),
6996 * when we don't need to be concerned about the
6997 * array being dirty.
6998 * When reshape goes 'backwards', we never have
6999 * partially completed devices, so we only need
7000 * to worry about reshape going forwards.
7001 */
7002 /* Hack because v0.91 doesn't store recovery_offset properly. */
7003 if (mddev->major_version == 0 &&
7004 mddev->minor_version > 90)
7005 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007006
NeilBrownc148ffd2009-11-13 17:47:00 +11007007 if (rdev->recovery_offset < reshape_offset) {
7008 /* We need to check old and new layout */
7009 if (!only_parity(rdev->raid_disk,
7010 conf->algorithm,
7011 conf->raid_disks,
7012 conf->max_degraded))
7013 continue;
7014 }
7015 if (!only_parity(rdev->raid_disk,
7016 conf->prev_algo,
7017 conf->previous_raid_disks,
7018 conf->max_degraded))
7019 continue;
7020 dirty_parity_disks++;
7021 }
NeilBrown91adb562009-03-31 14:39:39 +11007022
NeilBrown17045f52011-12-23 10:17:53 +11007023 /*
7024 * 0 for a fully functional array, 1 or 2 for a degraded array.
7025 */
NeilBrown908f4fb2011-12-23 10:17:50 +11007026 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027
NeilBrown674806d2010-06-16 17:17:53 +10007028 if (has_failed(conf)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007029 pr_crit("md/raid:%s: not enough operational devices (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07007030 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031 goto abort;
7032 }
7033
NeilBrown91adb562009-03-31 14:39:39 +11007034 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10007035 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11007036 mddev->resync_max_sectors = mddev->dev_sectors;
7037
NeilBrownc148ffd2009-11-13 17:47:00 +11007038 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007040 if (mddev->ok_start_degraded)
NeilBrowncc6167b2016-11-02 14:16:50 +11007041 pr_crit("md/raid:%s: starting dirty degraded array - data corruption possible.\n",
7042 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007043 else {
NeilBrowncc6167b2016-11-02 14:16:50 +11007044 pr_crit("md/raid:%s: cannot start dirty degraded array.\n",
7045 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007046 goto abort;
7047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048 }
7049
NeilBrowncc6167b2016-11-02 14:16:50 +11007050 pr_info("md/raid:%s: raid level %d active with %d out of %d devices, algorithm %d\n",
7051 mdname(mddev), conf->level,
7052 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
7053 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054
7055 print_raid5_conf(conf);
7056
NeilBrownfef9c612009-03-31 15:16:46 +11007057 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11007058 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08007059 atomic_set(&conf->reshape_stripes, 0);
7060 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7061 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
7062 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7063 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7064 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007065 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08007066 }
7067
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10007069 if (mddev->to_remove == &raid5_attrs_group)
7070 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10007071 else if (mddev->kobj.sd &&
7072 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrowncc6167b2016-11-02 14:16:50 +11007073 pr_warn("raid5: failed to create sysfs attributes for %s\n",
7074 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10007075 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7076
7077 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007078 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11007079 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10007080 /* read-ahead size must cover two whole stripes, which
7081 * is 2 * (datadisks) * chunksize where 'n' is the
7082 * number of raid devices
7083 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084 int data_disks = conf->previous_raid_disks - conf->max_degraded;
7085 int stripe = data_disks *
7086 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
7087 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
7088 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10007089
NeilBrown9f7c2222010-07-26 12:04:13 +10007090 chunk_size = mddev->chunk_sectors << 9;
7091 blk_queue_io_min(mddev->queue, chunk_size);
7092 blk_queue_io_opt(mddev->queue, chunk_size *
7093 (conf->raid_disks - conf->max_degraded));
Kent Overstreetc78afc62013-07-11 22:39:53 -07007094 mddev->queue->limits.raid_partial_stripes_expensive = 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007095 /*
7096 * We can only discard a whole stripe. It doesn't make sense to
7097 * discard data disk but write parity disk
7098 */
7099 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11007100 /* Round up to power of 2, as discard handling
7101 * currently assumes that */
7102 while ((stripe-1) & stripe)
7103 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007104 mddev->queue->limits.discard_alignment = stripe;
7105 mddev->queue->limits.discard_granularity = stripe;
Konstantin Khlebnikove8d7c332016-11-27 19:32:32 +03007106
7107 /*
7108 * We use 16-bit counter of active stripes in bi_phys_segments
7109 * (minus one for over-loaded initialization)
7110 */
7111 blk_queue_max_hw_sectors(mddev->queue, 0xfffe * STRIPE_SECTORS);
7112 blk_queue_max_discard_sectors(mddev->queue,
7113 0xfffe * STRIPE_SECTORS);
7114
Shaohua Li620125f2012-10-11 13:49:05 +11007115 /*
7116 * unaligned part of discard request will be ignored, so can't
NeilBrown8e0e99b2014-10-02 13:45:00 +10007117 * guarantee discard_zeroes_data
Shaohua Li620125f2012-10-11 13:49:05 +11007118 */
7119 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10007120
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007121 blk_queue_max_write_same_sectors(mddev->queue, 0);
7122
NeilBrown05616be2012-05-21 09:27:00 +10007123 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007124 disk_stack_limits(mddev->gendisk, rdev->bdev,
7125 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10007126 disk_stack_limits(mddev->gendisk, rdev->bdev,
7127 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11007128 /*
7129 * discard_zeroes_data is required, otherwise data
7130 * could be lost. Consider a scenario: discard a stripe
7131 * (the stripe could be inconsistent if
7132 * discard_zeroes_data is 0); write one disk of the
7133 * stripe (the stripe could be inconsistent again
7134 * depending on which disks are used to calculate
7135 * parity); the disk is broken; The stripe data of this
7136 * disk is lost.
7137 */
7138 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
7139 !bdev_get_queue(rdev->bdev)->
7140 limits.discard_zeroes_data)
7141 discard_supported = false;
NeilBrown8e0e99b2014-10-02 13:45:00 +10007142 /* Unfortunately, discard_zeroes_data is not currently
7143 * a guarantee - just a hint. So we only allow DISCARD
7144 * if the sysadmin has confirmed that only safe devices
7145 * are in use by setting a module parameter.
7146 */
7147 if (!devices_handle_discard_safely) {
7148 if (discard_supported) {
7149 pr_info("md/raid456: discard support disabled due to uncertainty.\n");
7150 pr_info("Set raid456.devices_handle_discard_safely=Y to override.\n");
7151 }
7152 discard_supported = false;
7153 }
NeilBrown05616be2012-05-21 09:27:00 +10007154 }
Shaohua Li620125f2012-10-11 13:49:05 +11007155
7156 if (discard_supported &&
Jes Sorensene7597e62016-02-16 16:44:24 -05007157 mddev->queue->limits.max_discard_sectors >= (stripe >> 9) &&
7158 mddev->queue->limits.discard_granularity >= stripe)
Shaohua Li620125f2012-10-11 13:49:05 +11007159 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
7160 mddev->queue);
7161 else
7162 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
7163 mddev->queue);
Shaohua Li1dffddd2016-09-08 10:49:06 -07007164
7165 blk_queue_max_hw_sectors(mddev->queue, UINT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007166 }
7167
Shaohua Li5c7e81c2015-08-13 14:32:04 -07007168 if (journal_dev) {
7169 char b[BDEVNAME_SIZE];
7170
NeilBrowncc6167b2016-11-02 14:16:50 +11007171 pr_debug("md/raid:%s: using device %s as journal\n",
7172 mdname(mddev), bdevname(journal_dev->bdev, b));
Song Liu5aabf7c2016-11-17 15:24:44 -08007173 if (r5l_init_log(conf, journal_dev))
7174 goto abort;
Shaohua Li5c7e81c2015-08-13 14:32:04 -07007175 }
7176
Linus Torvalds1da177e2005-04-16 15:20:36 -07007177 return 0;
7178abort:
NeilBrown01f96c02011-09-21 15:30:20 +10007179 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11007180 print_raid5_conf(conf);
7181 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007182 mddev->private = NULL;
NeilBrowncc6167b2016-11-02 14:16:50 +11007183 pr_warn("md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184 return -EIO;
7185}
7186
NeilBrownafa0f552014-12-15 12:56:58 +11007187static void raid5_free(struct mddev *mddev, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007188{
NeilBrownafa0f552014-12-15 12:56:58 +11007189 struct r5conf *conf = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190
Dan Williams95fc17a2009-07-31 12:39:15 +10007191 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10007192 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007193}
7194
Shaohua Li849674e2016-01-20 13:52:20 -08007195static void raid5_status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007196{
NeilBrownd1688a62011-10-11 16:49:52 +11007197 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007198 int i;
7199
Andre Noll9d8f0362009-06-18 08:45:01 +10007200 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
NeilBrown3cb5edf2015-07-15 17:24:17 +10007201 conf->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07007202 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
NeilBrown5fd13352016-06-02 16:19:52 +10007203 rcu_read_lock();
7204 for (i = 0; i < conf->raid_disks; i++) {
7205 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
7206 seq_printf (seq, "%s", rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
7207 }
7208 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210}
7211
NeilBrownd1688a62011-10-11 16:49:52 +11007212static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007213{
7214 int i;
7215 struct disk_info *tmp;
7216
NeilBrowncc6167b2016-11-02 14:16:50 +11007217 pr_debug("RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218 if (!conf) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007219 pr_debug("(conf==NULL)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220 return;
7221 }
NeilBrowncc6167b2016-11-02 14:16:50 +11007222 pr_debug(" --- level:%d rd:%d wd:%d\n", conf->level,
NeilBrown0c55e022010-05-03 14:09:02 +10007223 conf->raid_disks,
7224 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225
7226 for (i = 0; i < conf->raid_disks; i++) {
7227 char b[BDEVNAME_SIZE];
7228 tmp = conf->disks + i;
7229 if (tmp->rdev)
NeilBrowncc6167b2016-11-02 14:16:50 +11007230 pr_debug(" disk %d, o:%d, dev:%s\n",
NeilBrown0c55e022010-05-03 14:09:02 +10007231 i, !test_bit(Faulty, &tmp->rdev->flags),
7232 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007233 }
7234}
7235
NeilBrownfd01b882011-10-11 16:47:53 +11007236static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237{
7238 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11007239 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10007241 int count = 0;
7242 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243
7244 for (i = 0; i < conf->raid_disks; i++) {
7245 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11007246 if (tmp->replacement
7247 && tmp->replacement->recovery_offset == MaxSector
7248 && !test_bit(Faulty, &tmp->replacement->flags)
7249 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
7250 /* Replacement has just become active. */
7251 if (!tmp->rdev
7252 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
7253 count++;
7254 if (tmp->rdev) {
7255 /* Replaced device not technically faulty,
7256 * but we need to be sure it gets removed
7257 * and never re-added.
7258 */
7259 set_bit(Faulty, &tmp->rdev->flags);
7260 sysfs_notify_dirent_safe(
7261 tmp->rdev->sysfs_state);
7262 }
7263 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
7264 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10007265 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08007266 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07007267 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10007268 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11007269 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007270 }
7271 }
NeilBrown6b965622010-08-18 11:56:59 +10007272 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007273 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007274 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007276 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007277}
7278
NeilBrownb8321b62011-12-23 10:17:51 +11007279static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007280{
NeilBrownd1688a62011-10-11 16:49:52 +11007281 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11007283 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11007284 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285 struct disk_info *p = conf->disks + number;
7286
7287 print_raid5_conf(conf);
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007288 if (test_bit(Journal, &rdev->flags) && conf->log) {
7289 struct r5l_log *log;
Shaohua Lic2bb6242015-10-08 21:54:07 -07007290 /*
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007291 * we can't wait pending write here, as this is called in
7292 * raid5d, wait will deadlock.
Shaohua Lic2bb6242015-10-08 21:54:07 -07007293 */
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007294 if (atomic_read(&mddev->writes_pending))
7295 return -EBUSY;
7296 log = conf->log;
7297 conf->log = NULL;
7298 synchronize_rcu();
7299 r5l_exit_log(log);
7300 return 0;
Shaohua Lic2bb6242015-10-08 21:54:07 -07007301 }
NeilBrown657e3e42011-12-23 10:17:52 +11007302 if (rdev == p->rdev)
7303 rdevp = &p->rdev;
7304 else if (rdev == p->replacement)
7305 rdevp = &p->replacement;
7306 else
7307 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11007308
NeilBrown657e3e42011-12-23 10:17:52 +11007309 if (number >= conf->raid_disks &&
7310 conf->reshape_progress == MaxSector)
7311 clear_bit(In_sync, &rdev->flags);
7312
7313 if (test_bit(In_sync, &rdev->flags) ||
7314 atomic_read(&rdev->nr_pending)) {
7315 err = -EBUSY;
7316 goto abort;
7317 }
7318 /* Only remove non-faulty devices if recovery
7319 * isn't possible.
7320 */
7321 if (!test_bit(Faulty, &rdev->flags) &&
7322 mddev->recovery_disabled != conf->recovery_disabled &&
7323 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11007324 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11007325 number < conf->raid_disks) {
7326 err = -EBUSY;
7327 goto abort;
7328 }
7329 *rdevp = NULL;
NeilBrownd787be42016-06-02 16:19:53 +10007330 if (!test_bit(RemoveSynchronized, &rdev->flags)) {
7331 synchronize_rcu();
7332 if (atomic_read(&rdev->nr_pending)) {
7333 /* lost the race, try later */
7334 err = -EBUSY;
7335 *rdevp = rdev;
7336 }
7337 }
7338 if (p->replacement) {
NeilBrowndd054fc2011-12-23 10:17:53 +11007339 /* We must have just cleared 'rdev' */
7340 p->rdev = p->replacement;
7341 clear_bit(Replacement, &p->replacement->flags);
7342 smp_mb(); /* Make sure other CPUs may see both as identical
7343 * but will never see neither - if they are careful
7344 */
7345 p->replacement = NULL;
7346 clear_bit(WantReplacement, &rdev->flags);
7347 } else
7348 /* We might have just removed the Replacement as faulty-
7349 * clear the bit just in case
7350 */
7351 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352abort:
7353
7354 print_raid5_conf(conf);
7355 return err;
7356}
7357
NeilBrownfd01b882011-10-11 16:47:53 +11007358static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359{
NeilBrownd1688a62011-10-11 16:49:52 +11007360 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10007361 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362 int disk;
7363 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10007364 int first = 0;
7365 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007366
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007367 if (test_bit(Journal, &rdev->flags)) {
7368 char b[BDEVNAME_SIZE];
7369 if (conf->log)
7370 return -EBUSY;
7371
7372 rdev->raid_disk = 0;
7373 /*
7374 * The array is in readonly mode if journal is missing, so no
7375 * write requests running. We should be safe
7376 */
7377 r5l_init_log(conf, rdev);
NeilBrowncc6167b2016-11-02 14:16:50 +11007378 pr_debug("md/raid:%s: using device %s as journal\n",
7379 mdname(mddev), bdevname(rdev->bdev, b));
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007380 return 0;
7381 }
NeilBrown7f0da592011-07-28 11:39:22 +10007382 if (mddev->recovery_disabled == conf->recovery_disabled)
7383 return -EBUSY;
7384
NeilBrowndc10c642012-03-19 12:46:37 +11007385 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10007387 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007388
Neil Brown6c2fce22008-06-28 08:31:31 +10007389 if (rdev->raid_disk >= 0)
7390 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391
7392 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07007393 * find the disk ... but prefer rdev->saved_raid_disk
7394 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007395 */
NeilBrown16a53ec2006-06-26 00:27:38 -07007396 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10007397 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07007398 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10007399 first = rdev->saved_raid_disk;
7400
7401 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11007402 p = conf->disks + disk;
7403 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08007404 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007405 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10007406 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07007407 if (rdev->saved_raid_disk != disk)
7408 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08007409 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10007410 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007412 }
7413 for (disk = first; disk <= last; disk++) {
7414 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11007415 if (test_bit(WantReplacement, &p->rdev->flags) &&
7416 p->replacement == NULL) {
7417 clear_bit(In_sync, &rdev->flags);
7418 set_bit(Replacement, &rdev->flags);
7419 rdev->raid_disk = disk;
7420 err = 0;
7421 conf->fullsync = 1;
7422 rcu_assign_pointer(p->replacement, rdev);
7423 break;
7424 }
7425 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007426out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007427 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10007428 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429}
7430
NeilBrownfd01b882011-10-11 16:47:53 +11007431static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007432{
7433 /* no resync is happening, and there is enough space
7434 * on all devices, so we can resize.
7435 * We need to make sure resync covers any new space.
7436 * If the array is shrinking we should possibly wait until
7437 * any io in the removed space completes, but it hardly seems
7438 * worth it.
7439 */
NeilBrowna4a61252012-05-22 13:55:27 +10007440 sector_t newsize;
NeilBrown3cb5edf2015-07-15 17:24:17 +10007441 struct r5conf *conf = mddev->private;
7442
Shaohua Li713cf5a2015-08-13 14:32:03 -07007443 if (conf->log)
7444 return -EINVAL;
NeilBrown3cb5edf2015-07-15 17:24:17 +10007445 sectors &= ~((sector_t)conf->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10007446 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
7447 if (mddev->external_size &&
7448 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11007449 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10007450 if (mddev->bitmap) {
7451 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
7452 if (ret)
7453 return ret;
7454 }
7455 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10007456 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007457 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10007458 if (sectors > mddev->dev_sectors &&
7459 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11007460 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
7462 }
Andre Noll58c0fed2009-03-31 14:33:13 +11007463 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07007464 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465 return 0;
7466}
7467
NeilBrownfd01b882011-10-11 16:47:53 +11007468static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10007469{
7470 /* Can only proceed if there are plenty of stripe_heads.
7471 * We need a minimum of one full stripe,, and for sensible progress
7472 * it is best to have about 4 times that.
7473 * If we require 4 times, then the default 256 4K stripe_heads will
7474 * allow for chunk sizes up to 256K, which is probably OK.
7475 * If the chunk size is greater, user-space should request more
7476 * stripe_heads first.
7477 */
NeilBrownd1688a62011-10-11 16:49:52 +11007478 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10007479 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007480 > conf->min_nr_stripes ||
NeilBrown01ee22b2009-06-18 08:47:20 +10007481 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007482 > conf->min_nr_stripes) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007483 pr_warn("md/raid:%s: reshape: not enough stripes. Needed %lu\n",
7484 mdname(mddev),
7485 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
7486 / STRIPE_SIZE)*4);
NeilBrown01ee22b2009-06-18 08:47:20 +10007487 return 0;
7488 }
7489 return 1;
7490}
7491
NeilBrownfd01b882011-10-11 16:47:53 +11007492static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08007493{
NeilBrownd1688a62011-10-11 16:49:52 +11007494 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08007495
Shaohua Li713cf5a2015-08-13 14:32:03 -07007496 if (conf->log)
7497 return -EINVAL;
NeilBrown88ce4932009-03-31 15:24:23 +11007498 if (mddev->delta_disks == 0 &&
7499 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10007500 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10007501 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10007502 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11007503 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10007504 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11007505 /* We might be able to shrink, but the devices must
7506 * be made bigger first.
7507 * For raid6, 4 is the minimum size.
7508 * Otherwise 2 is the minimum
7509 */
7510 int min = 2;
7511 if (mddev->level == 6)
7512 min = 4;
7513 if (mddev->raid_disks + mddev->delta_disks < min)
7514 return -EINVAL;
7515 }
NeilBrown29269552006-03-27 01:18:10 -08007516
NeilBrown01ee22b2009-06-18 08:47:20 +10007517 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08007518 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08007519
NeilBrown738a2732015-05-08 18:19:39 +10007520 if (mddev->new_chunk_sectors > mddev->chunk_sectors ||
7521 mddev->delta_disks > 0)
7522 if (resize_chunks(conf,
7523 conf->previous_raid_disks
7524 + max(0, mddev->delta_disks),
7525 max(mddev->new_chunk_sectors,
7526 mddev->chunk_sectors)
7527 ) < 0)
7528 return -ENOMEM;
NeilBrowne56108d62012-10-11 14:24:13 +11007529 return resize_stripes(conf, (conf->previous_raid_disks
7530 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08007531}
7532
NeilBrownfd01b882011-10-11 16:47:53 +11007533static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08007534{
NeilBrownd1688a62011-10-11 16:49:52 +11007535 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11007536 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08007537 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07007538 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08007539
NeilBrownf4168852007-02-28 20:11:53 -08007540 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08007541 return -EBUSY;
7542
NeilBrown01ee22b2009-06-18 08:47:20 +10007543 if (!check_stripe_cache(mddev))
7544 return -ENOSPC;
7545
NeilBrown30b67642012-05-22 13:55:28 +10007546 if (has_failed(conf))
7547 return -EINVAL;
7548
NeilBrownc6563a82012-05-21 09:27:00 +10007549 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11007550 if (!test_bit(In_sync, &rdev->flags)
7551 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08007552 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10007553 }
NeilBrown63c70c42006-03-27 01:18:13 -08007554
NeilBrownf4168852007-02-28 20:11:53 -08007555 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08007556 /* Not enough devices even to make a degraded array
7557 * of that size
7558 */
7559 return -EINVAL;
7560
NeilBrownec32a2b2009-03-31 15:17:38 +11007561 /* Refuse to reduce size of the array. Any reductions in
7562 * array size must be through explicit setting of array_size
7563 * attribute.
7564 */
7565 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
7566 < mddev->array_sectors) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007567 pr_warn("md/raid:%s: array size must be reduced before number of disks\n",
7568 mdname(mddev));
NeilBrownec32a2b2009-03-31 15:17:38 +11007569 return -EINVAL;
7570 }
7571
NeilBrownf6705572006-03-27 01:18:11 -08007572 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08007573 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10007574 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007575 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08007576 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007577 conf->prev_chunk_sectors = conf->chunk_sectors;
7578 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11007579 conf->prev_algo = conf->algorithm;
7580 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10007581 conf->generation++;
7582 /* Code that selects data_offset needs to see the generation update
7583 * if reshape_progress has been set - so a memory barrier needed.
7584 */
7585 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10007586 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11007587 conf->reshape_progress = raid5_size(mddev, 0, 0);
7588 else
7589 conf->reshape_progress = 0;
7590 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10007591 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007592 spin_unlock_irq(&conf->device_lock);
7593
NeilBrown4d77e3b2013-08-27 15:57:47 +10007594 /* Now make sure any requests that proceeded on the assumption
7595 * the reshape wasn't running - like Discard or Read - have
7596 * completed.
7597 */
7598 mddev_suspend(mddev);
7599 mddev_resume(mddev);
7600
NeilBrown29269552006-03-27 01:18:10 -08007601 /* Add some new drives, as many as will fit.
7602 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10007603 * Don't add devices if we are reducing the number of
7604 * devices in the array. This is because it is not possible
7605 * to correctly record the "partially reconstructed" state of
7606 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08007607 */
NeilBrown87a8dec2011-01-31 11:57:43 +11007608 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11007609 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11007610 if (rdev->raid_disk < 0 &&
7611 !test_bit(Faulty, &rdev->flags)) {
7612 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11007613 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11007614 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11007615 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11007616 else
NeilBrown87a8dec2011-01-31 11:57:43 +11007617 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10007618
7619 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11007620 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11007621 }
NeilBrown87a8dec2011-01-31 11:57:43 +11007622 } else if (rdev->raid_disk >= conf->previous_raid_disks
7623 && !test_bit(Faulty, &rdev->flags)) {
7624 /* This is a spare that was manually added */
7625 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11007626 }
NeilBrown29269552006-03-27 01:18:10 -08007627
NeilBrown87a8dec2011-01-31 11:57:43 +11007628 /* When a reshape changes the number of devices,
7629 * ->degraded is measured against the larger of the
7630 * pre and post number of devices.
7631 */
NeilBrownec32a2b2009-03-31 15:17:38 +11007632 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11007633 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11007634 spin_unlock_irqrestore(&conf->device_lock, flags);
7635 }
NeilBrown63c70c42006-03-27 01:18:13 -08007636 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10007637 mddev->reshape_position = conf->reshape_progress;
Shaohua Li29530792016-12-08 15:48:19 -08007638 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrownf6705572006-03-27 01:18:11 -08007639
NeilBrown29269552006-03-27 01:18:10 -08007640 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7641 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
NeilBrownea358cd2015-06-12 20:05:04 +10007642 clear_bit(MD_RECOVERY_DONE, &mddev->recovery);
NeilBrown29269552006-03-27 01:18:10 -08007643 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7644 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7645 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007646 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08007647 if (!mddev->sync_thread) {
7648 mddev->recovery = 0;
7649 spin_lock_irq(&conf->device_lock);
NeilBrownba8805b2013-11-14 15:16:15 +11007650 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007651 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownba8805b2013-11-14 15:16:15 +11007652 mddev->new_chunk_sectors =
7653 conf->chunk_sectors = conf->prev_chunk_sectors;
7654 mddev->new_layout = conf->algorithm = conf->prev_algo;
NeilBrown05616be2012-05-21 09:27:00 +10007655 rdev_for_each(rdev, mddev)
7656 rdev->new_data_offset = rdev->data_offset;
7657 smp_wmb();
NeilBrownba8805b2013-11-14 15:16:15 +11007658 conf->generation --;
NeilBrownfef9c612009-03-31 15:16:46 +11007659 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11007660 mddev->reshape_position = MaxSector;
NeilBrownba8805b2013-11-14 15:16:15 +11007661 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007662 spin_unlock_irq(&conf->device_lock);
7663 return -EAGAIN;
7664 }
NeilBrownc8f517c2009-03-31 15:28:40 +11007665 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08007666 md_wakeup_thread(mddev->sync_thread);
7667 md_new_event(mddev);
7668 return 0;
7669}
NeilBrown29269552006-03-27 01:18:10 -08007670
NeilBrownec32a2b2009-03-31 15:17:38 +11007671/* This is called from the reshape thread and should make any
7672 * changes needed in 'conf'
7673 */
NeilBrownd1688a62011-10-11 16:49:52 +11007674static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08007675{
NeilBrown29269552006-03-27 01:18:10 -08007676
NeilBrownf6705572006-03-27 01:18:11 -08007677 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10007678 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07007679
NeilBrownf6705572006-03-27 01:18:11 -08007680 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11007681 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10007682 rdev_for_each(rdev, conf->mddev)
7683 rdev->data_offset = rdev->new_data_offset;
7684 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11007685 conf->reshape_progress = MaxSector;
NeilBrown6cbd8142015-07-24 13:30:32 +10007686 conf->mddev->reshape_position = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08007687 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11007688 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07007689
7690 /* read-ahead size must cover two whole stripes, which is
7691 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
7692 */
NeilBrown4a5add42010-06-01 19:37:28 +10007693 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11007694 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007695 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11007696 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07007697 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
7698 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
7699 }
NeilBrown29269552006-03-27 01:18:10 -08007700 }
NeilBrown29269552006-03-27 01:18:10 -08007701}
7702
NeilBrownec32a2b2009-03-31 15:17:38 +11007703/* This is called from the raid5d thread with mddev_lock held.
7704 * It makes config changes to the device.
7705 */
NeilBrownfd01b882011-10-11 16:47:53 +11007706static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11007707{
NeilBrownd1688a62011-10-11 16:49:52 +11007708 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11007709
7710 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
7711
NeilBrownec32a2b2009-03-31 15:17:38 +11007712 if (mddev->delta_disks > 0) {
7713 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
Heinz Mauelshagenfe67d192016-05-03 22:15:31 +02007714 if (mddev->queue) {
7715 set_capacity(mddev->gendisk, mddev->array_sectors);
7716 revalidate_disk(mddev->gendisk);
7717 }
NeilBrownec32a2b2009-03-31 15:17:38 +11007718 } else {
7719 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11007720 spin_lock_irq(&conf->device_lock);
7721 mddev->degraded = calc_degraded(conf);
7722 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11007723 for (d = conf->raid_disks ;
7724 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10007725 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11007726 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10007727 if (rdev)
7728 clear_bit(In_sync, &rdev->flags);
7729 rdev = conf->disks[d].replacement;
7730 if (rdev)
7731 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10007732 }
NeilBrowncea9c222009-03-31 15:15:05 +11007733 }
NeilBrown88ce4932009-03-31 15:24:23 +11007734 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007735 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11007736 mddev->reshape_position = MaxSector;
7737 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10007738 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11007739 }
7740}
7741
NeilBrownfd01b882011-10-11 16:47:53 +11007742static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07007743{
NeilBrownd1688a62011-10-11 16:49:52 +11007744 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07007745
7746 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08007747 case 2: /* resume for a suspend */
7748 wake_up(&conf->wait_for_overlap);
7749 break;
7750
NeilBrown72626682005-09-09 16:23:54 -07007751 case 1: /* stop all writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007752 lock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007753 /* '2' tells resync/reshape to pause so that all
7754 * active stripes can drain
7755 */
Song Liua39f7af2016-11-17 15:24:40 -08007756 r5c_flush_cache(conf, INT_MAX);
NeilBrown64bd6602009-08-03 10:59:58 +10007757 conf->quiesce = 2;
Yuanhan Liub1b46482015-05-08 18:19:06 +10007758 wait_event_cmd(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08007759 atomic_read(&conf->active_stripes) == 0 &&
7760 atomic_read(&conf->active_aligned_reads) == 0,
Shaohua Li566c09c2013-11-14 15:16:17 +11007761 unlock_all_device_hash_locks_irq(conf),
7762 lock_all_device_hash_locks_irq(conf));
NeilBrown64bd6602009-08-03 10:59:58 +10007763 conf->quiesce = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11007764 unlock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007765 /* allow reshape to continue */
7766 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07007767 break;
7768
7769 case 0: /* re-enable writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007770 lock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007771 conf->quiesce = 0;
Yuanhan Liub1b46482015-05-08 18:19:06 +10007772 wake_up(&conf->wait_for_quiescent);
NeilBrowne464eaf2006-03-27 01:18:14 -08007773 wake_up(&conf->wait_for_overlap);
Shaohua Li566c09c2013-11-14 15:16:17 +11007774 unlock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007775 break;
7776 }
Shaohua Lie6c033f2015-10-04 09:20:12 -07007777 r5l_quiesce(conf->log, state);
NeilBrown72626682005-09-09 16:23:54 -07007778}
NeilBrownb15c2e52006-01-06 00:20:16 -08007779
NeilBrownfd01b882011-10-11 16:47:53 +11007780static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11007781{
NeilBrowne373ab12011-10-11 16:48:59 +11007782 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07007783 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11007784
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007785 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11007786 if (raid0_conf->nr_strip_zones > 1) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007787 pr_warn("md/raid:%s: cannot takeover raid0 with more than one zone.\n",
7788 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007789 return ERR_PTR(-EINVAL);
7790 }
7791
NeilBrowne373ab12011-10-11 16:48:59 +11007792 sectors = raid0_conf->strip_zone[0].zone_end;
7793 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10007794 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007795 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11007796 mddev->new_layout = ALGORITHM_PARITY_N;
7797 mddev->new_chunk_sectors = mddev->chunk_sectors;
7798 mddev->raid_disks += 1;
7799 mddev->delta_disks = 1;
7800 /* make sure it will be not marked as dirty */
7801 mddev->recovery_cp = MaxSector;
7802
7803 return setup_conf(mddev);
7804}
7805
NeilBrownfd01b882011-10-11 16:47:53 +11007806static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007807{
7808 int chunksect;
Shaohua Li6995f0b2016-12-08 15:48:17 -08007809 void *ret;
NeilBrownd562b0c2009-03-31 14:39:39 +11007810
7811 if (mddev->raid_disks != 2 ||
7812 mddev->degraded > 1)
7813 return ERR_PTR(-EINVAL);
7814
7815 /* Should check if there are write-behind devices? */
7816
7817 chunksect = 64*2; /* 64K by default */
7818
7819 /* The array must be an exact multiple of chunksize */
7820 while (chunksect && (mddev->array_sectors & (chunksect-1)))
7821 chunksect >>= 1;
7822
7823 if ((chunksect<<9) < STRIPE_SIZE)
7824 /* array size does not allow a suitable chunk size */
7825 return ERR_PTR(-EINVAL);
7826
7827 mddev->new_level = 5;
7828 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10007829 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11007830
Shaohua Li6995f0b2016-12-08 15:48:17 -08007831 ret = setup_conf(mddev);
7832 if (!IS_ERR_VALUE(ret))
7833 clear_bit(MD_FAILFAST_SUPPORTED, &mddev->flags);
7834 return ret;
NeilBrownd562b0c2009-03-31 14:39:39 +11007835}
7836
NeilBrownfd01b882011-10-11 16:47:53 +11007837static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11007838{
7839 int new_layout;
7840
7841 switch (mddev->layout) {
7842 case ALGORITHM_LEFT_ASYMMETRIC_6:
7843 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
7844 break;
7845 case ALGORITHM_RIGHT_ASYMMETRIC_6:
7846 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
7847 break;
7848 case ALGORITHM_LEFT_SYMMETRIC_6:
7849 new_layout = ALGORITHM_LEFT_SYMMETRIC;
7850 break;
7851 case ALGORITHM_RIGHT_SYMMETRIC_6:
7852 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
7853 break;
7854 case ALGORITHM_PARITY_0_6:
7855 new_layout = ALGORITHM_PARITY_0;
7856 break;
7857 case ALGORITHM_PARITY_N:
7858 new_layout = ALGORITHM_PARITY_N;
7859 break;
7860 default:
7861 return ERR_PTR(-EINVAL);
7862 }
7863 mddev->new_level = 5;
7864 mddev->new_layout = new_layout;
7865 mddev->delta_disks = -1;
7866 mddev->raid_disks -= 1;
7867 return setup_conf(mddev);
7868}
7869
NeilBrownfd01b882011-10-11 16:47:53 +11007870static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11007871{
NeilBrown88ce4932009-03-31 15:24:23 +11007872 /* For a 2-drive array, the layout and chunk size can be changed
7873 * immediately as not restriping is needed.
7874 * For larger arrays we record the new value - after validation
7875 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11007876 */
NeilBrownd1688a62011-10-11 16:49:52 +11007877 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10007878 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11007879
NeilBrown597a7112009-06-18 08:47:42 +10007880 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11007881 return -EINVAL;
7882 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007883 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11007884 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007885 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11007886 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007887 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11007888 /* not factor of array size */
7889 return -EINVAL;
7890 }
7891
7892 /* They look valid */
7893
NeilBrown88ce4932009-03-31 15:24:23 +11007894 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10007895 /* can make the change immediately */
7896 if (mddev->new_layout >= 0) {
7897 conf->algorithm = mddev->new_layout;
7898 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11007899 }
7900 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10007901 conf->chunk_sectors = new_chunk ;
7902 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11007903 }
Shaohua Li29530792016-12-08 15:48:19 -08007904 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrown88ce4932009-03-31 15:24:23 +11007905 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11007906 }
NeilBrown50ac1682009-06-18 08:47:55 +10007907 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11007908}
7909
NeilBrownfd01b882011-10-11 16:47:53 +11007910static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11007911{
NeilBrown597a7112009-06-18 08:47:42 +10007912 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10007913
NeilBrown597a7112009-06-18 08:47:42 +10007914 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11007915 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007916 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10007917 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11007918 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007919 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11007920 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10007921 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11007922 /* not factor of array size */
7923 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11007924 }
NeilBrown88ce4932009-03-31 15:24:23 +11007925
7926 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10007927 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11007928}
7929
NeilBrownfd01b882011-10-11 16:47:53 +11007930static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007931{
7932 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007933 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007934 * raid1 - if there are two drives. We need to know the chunk size
7935 * raid4 - trivial - just use a raid4 layout.
7936 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11007937 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007938 if (mddev->level == 0)
7939 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11007940 if (mddev->level == 1)
7941 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11007942 if (mddev->level == 4) {
7943 mddev->new_layout = ALGORITHM_PARITY_N;
7944 mddev->new_level = 5;
7945 return setup_conf(mddev);
7946 }
NeilBrownfc9739c2009-03-31 14:57:20 +11007947 if (mddev->level == 6)
7948 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11007949
7950 return ERR_PTR(-EINVAL);
7951}
7952
NeilBrownfd01b882011-10-11 16:47:53 +11007953static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11007954{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007955 /* raid4 can take over:
7956 * raid0 - if there is only one strip zone
7957 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11007958 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007959 if (mddev->level == 0)
7960 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11007961 if (mddev->level == 5 &&
7962 mddev->layout == ALGORITHM_PARITY_N) {
7963 mddev->new_layout = 0;
7964 mddev->new_level = 4;
7965 return setup_conf(mddev);
7966 }
7967 return ERR_PTR(-EINVAL);
7968}
NeilBrownd562b0c2009-03-31 14:39:39 +11007969
NeilBrown84fc4b52011-10-11 16:49:58 +11007970static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11007971
NeilBrownfd01b882011-10-11 16:47:53 +11007972static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11007973{
7974 /* Currently can only take over a raid5. We map the
7975 * personality to an equivalent raid6 personality
7976 * with the Q block at the end.
7977 */
7978 int new_layout;
7979
7980 if (mddev->pers != &raid5_personality)
7981 return ERR_PTR(-EINVAL);
7982 if (mddev->degraded > 1)
7983 return ERR_PTR(-EINVAL);
7984 if (mddev->raid_disks > 253)
7985 return ERR_PTR(-EINVAL);
7986 if (mddev->raid_disks < 3)
7987 return ERR_PTR(-EINVAL);
7988
7989 switch (mddev->layout) {
7990 case ALGORITHM_LEFT_ASYMMETRIC:
7991 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
7992 break;
7993 case ALGORITHM_RIGHT_ASYMMETRIC:
7994 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
7995 break;
7996 case ALGORITHM_LEFT_SYMMETRIC:
7997 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
7998 break;
7999 case ALGORITHM_RIGHT_SYMMETRIC:
8000 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
8001 break;
8002 case ALGORITHM_PARITY_0:
8003 new_layout = ALGORITHM_PARITY_0_6;
8004 break;
8005 case ALGORITHM_PARITY_N:
8006 new_layout = ALGORITHM_PARITY_N;
8007 break;
8008 default:
8009 return ERR_PTR(-EINVAL);
8010 }
8011 mddev->new_level = 6;
8012 mddev->new_layout = new_layout;
8013 mddev->delta_disks = 1;
8014 mddev->raid_disks += 1;
8015 return setup_conf(mddev);
8016}
8017
NeilBrown84fc4b52011-10-11 16:49:58 +11008018static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07008019{
8020 .name = "raid6",
8021 .level = 6,
8022 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008023 .make_request = raid5_make_request,
8024 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11008025 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008026 .status = raid5_status,
8027 .error_handler = raid5_error,
NeilBrown16a53ec2006-06-26 00:27:38 -07008028 .hot_add_disk = raid5_add_disk,
8029 .hot_remove_disk= raid5_remove_disk,
8030 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008031 .sync_request = raid5_sync_request,
NeilBrown16a53ec2006-06-26 00:27:38 -07008032 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008033 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10008034 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08008035 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008036 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07008037 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11008038 .takeover = raid6_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008039 .congested = raid5_congested,
NeilBrown16a53ec2006-06-26 00:27:38 -07008040};
NeilBrown84fc4b52011-10-11 16:49:58 +11008041static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07008042{
8043 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08008044 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008045 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008046 .make_request = raid5_make_request,
8047 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11008048 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008049 .status = raid5_status,
8050 .error_handler = raid5_error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051 .hot_add_disk = raid5_add_disk,
8052 .hot_remove_disk= raid5_remove_disk,
8053 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008054 .sync_request = raid5_sync_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008055 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008056 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08008057 .check_reshape = raid5_check_reshape,
8058 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008059 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07008060 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11008061 .takeover = raid5_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008062 .congested = raid5_congested,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063};
8064
NeilBrown84fc4b52011-10-11 16:49:58 +11008065static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07008066{
NeilBrown2604b702006-01-06 00:20:36 -08008067 .name = "raid4",
8068 .level = 4,
8069 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008070 .make_request = raid5_make_request,
8071 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11008072 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008073 .status = raid5_status,
8074 .error_handler = raid5_error,
NeilBrown2604b702006-01-06 00:20:36 -08008075 .hot_add_disk = raid5_add_disk,
8076 .hot_remove_disk= raid5_remove_disk,
8077 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008078 .sync_request = raid5_sync_request,
NeilBrown2604b702006-01-06 00:20:36 -08008079 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008080 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08008081 .check_reshape = raid5_check_reshape,
8082 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008083 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08008084 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11008085 .takeover = raid4_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008086 .congested = raid5_congested,
NeilBrown2604b702006-01-06 00:20:36 -08008087};
8088
8089static int __init raid5_init(void)
8090{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008091 int ret;
8092
Shaohua Li851c30c2013-08-28 14:30:16 +08008093 raid5_wq = alloc_workqueue("raid5wq",
8094 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
8095 if (!raid5_wq)
8096 return -ENOMEM;
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008097
8098 ret = cpuhp_setup_state_multi(CPUHP_MD_RAID5_PREPARE,
8099 "md/raid5:prepare",
8100 raid456_cpu_up_prepare,
8101 raid456_cpu_dead);
8102 if (ret) {
8103 destroy_workqueue(raid5_wq);
8104 return ret;
8105 }
NeilBrown16a53ec2006-06-26 00:27:38 -07008106 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008107 register_md_personality(&raid5_personality);
8108 register_md_personality(&raid4_personality);
8109 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008110}
8111
NeilBrown2604b702006-01-06 00:20:36 -08008112static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008113{
NeilBrown16a53ec2006-06-26 00:27:38 -07008114 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008115 unregister_md_personality(&raid5_personality);
8116 unregister_md_personality(&raid4_personality);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008117 cpuhp_remove_multi_state(CPUHP_MD_RAID5_PREPARE);
Shaohua Li851c30c2013-08-28 14:30:16 +08008118 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119}
8120
8121module_init(raid5_init);
8122module_exit(raid5_exit);
8123MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11008124MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08008126MODULE_ALIAS("md-raid5");
8127MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08008128MODULE_ALIAS("md-level-5");
8129MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07008130MODULE_ALIAS("md-personality-8"); /* RAID6 */
8131MODULE_ALIAS("md-raid6");
8132MODULE_ALIAS("md-level-6");
8133
8134/* This used to be two separate modules, they were: */
8135MODULE_ALIAS("raid5");
8136MODULE_ALIAS("raid6");