blob: 44c8ceba13fe82952519a1960b6444f7ae0a867e [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>
Ingo Molnar3f07c012017-02-08 18:51:30 +010058#include <linux/sched/signal.h>
59
NeilBrowna9add5d2012-10-31 11:59:09 +110060#include <trace/events/block.h>
Shaohua Liaaf9f122017-03-03 22:06:12 -080061#include <linux/list_sort.h>
NeilBrowna9add5d2012-10-31 11:59:09 +110062
NeilBrown43b2e5d2009-03-31 14:33:13 +110063#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110064#include "raid5.h"
Trela Maciej54071b32010-03-08 16:02:42 +110065#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110066#include "bitmap.h"
Artur Paszkiewiczff875732017-03-09 09:59:58 +010067#include "raid5-log.h"
NeilBrown72626682005-09-09 16:23:54 -070068
Shaohua Li394ed8e2017-01-04 16:10:19 -080069#define UNSUPPORTED_MDDEV_FLAGS (1L << MD_FAILFAST_SUPPORTED)
70
Shaohua Li851c30c2013-08-28 14:30:16 +080071#define cpu_to_group(cpu) cpu_to_node(cpu)
72#define ANY_GROUP NUMA_NO_NODE
73
NeilBrown8e0e99b2014-10-02 13:45:00 +100074static bool devices_handle_discard_safely = false;
75module_param(devices_handle_discard_safely, bool, 0644);
76MODULE_PARM_DESC(devices_handle_discard_safely,
77 "Set to Y if all devices in each array reliably return zeroes on reads from discarded regions");
Shaohua Li851c30c2013-08-28 14:30:16 +080078static struct workqueue_struct *raid5_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
NeilBrownd1688a62011-10-11 16:49:52 +110080static inline struct hlist_head *stripe_hash(struct r5conf *conf, sector_t sect)
NeilBrowndb298e12011-10-07 14:23:00 +110081{
82 int hash = (sect >> STRIPE_SHIFT) & HASH_MASK;
83 return &conf->stripe_hashtbl[hash];
84}
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Shaohua Li566c09c2013-11-14 15:16:17 +110086static inline int stripe_hash_locks_hash(sector_t sect)
87{
88 return (sect >> STRIPE_SHIFT) & STRIPE_HASH_LOCKS_MASK;
89}
90
91static inline void lock_device_hash_lock(struct r5conf *conf, int hash)
92{
93 spin_lock_irq(conf->hash_locks + hash);
94 spin_lock(&conf->device_lock);
95}
96
97static inline void unlock_device_hash_lock(struct r5conf *conf, int hash)
98{
99 spin_unlock(&conf->device_lock);
100 spin_unlock_irq(conf->hash_locks + hash);
101}
102
103static inline void lock_all_device_hash_locks_irq(struct r5conf *conf)
104{
105 int i;
106 local_irq_disable();
107 spin_lock(conf->hash_locks);
108 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
109 spin_lock_nest_lock(conf->hash_locks + i, conf->hash_locks);
110 spin_lock(&conf->device_lock);
111}
112
113static inline void unlock_all_device_hash_locks_irq(struct r5conf *conf)
114{
115 int i;
116 spin_unlock(&conf->device_lock);
117 for (i = NR_STRIPE_HASH_LOCKS; i; i--)
118 spin_unlock(conf->hash_locks + i - 1);
119 local_irq_enable();
120}
121
NeilBrownd0dabf72009-03-31 14:39:38 +1100122/* Find first data disk in a raid6 stripe */
123static inline int raid6_d0(struct stripe_head *sh)
124{
NeilBrown67cc2b82009-03-31 14:39:38 +1100125 if (sh->ddf_layout)
126 /* ddf always start from first device */
127 return 0;
128 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100129 if (sh->qd_idx == sh->disks - 1)
130 return 0;
131 else
132 return sh->qd_idx + 1;
133}
NeilBrown16a53ec2006-06-26 00:27:38 -0700134static inline int raid6_next_disk(int disk, int raid_disks)
135{
136 disk++;
137 return (disk < raid_disks) ? disk : 0;
138}
Dan Williamsa4456852007-07-09 11:56:43 -0700139
NeilBrownd0dabf72009-03-31 14:39:38 +1100140/* When walking through the disks in a raid5, starting at raid6_d0,
141 * We need to map each disk to a 'slot', where the data disks are slot
142 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
143 * is raid_disks-1. This help does that mapping.
144 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100145static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
146 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100147{
Dan Williams66295422009-10-19 18:09:32 -0700148 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100149
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 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100153 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100154 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100155 return syndrome_disks + 1;
NeilBrowne4424fe2009-10-16 16:27:34 +1100156 if (!sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700157 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100158 return slot;
159}
160
NeilBrownd1688a62011-10-11 16:49:52 +1100161static void print_raid5_conf (struct r5conf *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Dan Williams600aa102008-06-28 08:32:05 +1000163static int stripe_operations_active(struct stripe_head *sh)
164{
165 return sh->check_state || sh->reconstruct_state ||
166 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
167 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
168}
169
Shaohua Li535ae4e2017-02-15 19:37:32 -0800170static bool stripe_is_lowprio(struct stripe_head *sh)
171{
172 return (test_bit(STRIPE_R5C_FULL_STRIPE, &sh->state) ||
173 test_bit(STRIPE_R5C_PARTIAL_STRIPE, &sh->state)) &&
174 !test_bit(STRIPE_R5C_CACHING, &sh->state);
175}
176
Shaohua Li851c30c2013-08-28 14:30:16 +0800177static void raid5_wakeup_stripe_thread(struct stripe_head *sh)
178{
179 struct r5conf *conf = sh->raid_conf;
180 struct r5worker_group *group;
Shaohua Libfc90cb2013-08-29 15:40:32 +0800181 int thread_cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +0800182 int i, cpu = sh->cpu;
183
184 if (!cpu_online(cpu)) {
185 cpu = cpumask_any(cpu_online_mask);
186 sh->cpu = cpu;
187 }
188
189 if (list_empty(&sh->lru)) {
190 struct r5worker_group *group;
191 group = conf->worker_groups + cpu_to_group(cpu);
Shaohua Li535ae4e2017-02-15 19:37:32 -0800192 if (stripe_is_lowprio(sh))
193 list_add_tail(&sh->lru, &group->loprio_list);
194 else
195 list_add_tail(&sh->lru, &group->handle_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800196 group->stripes_cnt++;
197 sh->group = group;
Shaohua Li851c30c2013-08-28 14:30:16 +0800198 }
199
200 if (conf->worker_cnt_per_group == 0) {
201 md_wakeup_thread(conf->mddev->thread);
202 return;
203 }
204
205 group = conf->worker_groups + cpu_to_group(sh->cpu);
206
Shaohua Libfc90cb2013-08-29 15:40:32 +0800207 group->workers[0].working = true;
208 /* at least one worker should run to avoid race */
209 queue_work_on(sh->cpu, raid5_wq, &group->workers[0].work);
210
211 thread_cnt = group->stripes_cnt / MAX_STRIPE_BATCH - 1;
212 /* wakeup more workers */
213 for (i = 1; i < conf->worker_cnt_per_group && thread_cnt > 0; i++) {
214 if (group->workers[i].working == false) {
215 group->workers[i].working = true;
216 queue_work_on(sh->cpu, raid5_wq,
217 &group->workers[i].work);
218 thread_cnt--;
219 }
220 }
Shaohua Li851c30c2013-08-28 14:30:16 +0800221}
222
Shaohua Li566c09c2013-11-14 15:16:17 +1100223static void do_release_stripe(struct r5conf *conf, struct stripe_head *sh,
224 struct list_head *temp_inactive_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Song Liu1e6d6902016-11-17 15:24:39 -0800226 int i;
227 int injournal = 0; /* number of date pages with R5_InJournal */
228
Shaohua Li4eb788d2012-07-19 16:01:31 +1000229 BUG_ON(!list_empty(&sh->lru));
230 BUG_ON(atomic_read(&conf->active_stripes)==0);
Song Liu1e6d6902016-11-17 15:24:39 -0800231
232 if (r5c_is_writeback(conf->log))
233 for (i = sh->disks; i--; )
234 if (test_bit(R5_InJournal, &sh->dev[i].flags))
235 injournal++;
Song Liua39f7af2016-11-17 15:24:40 -0800236 /*
237 * When quiesce in r5c write back, set STRIPE_HANDLE for stripes with
238 * data in journal, so they are not released to cached lists
239 */
240 if (conf->quiesce && r5c_is_writeback(conf->log) &&
241 !test_bit(STRIPE_HANDLE, &sh->state) && injournal != 0) {
242 if (test_bit(STRIPE_R5C_CACHING, &sh->state))
243 r5c_make_stripe_write_out(sh);
244 set_bit(STRIPE_HANDLE, &sh->state);
245 }
Song Liu1e6d6902016-11-17 15:24:39 -0800246
Shaohua Li4eb788d2012-07-19 16:01:31 +1000247 if (test_bit(STRIPE_HANDLE, &sh->state)) {
248 if (test_bit(STRIPE_DELAYED, &sh->state) &&
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500249 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
Shaohua Li4eb788d2012-07-19 16:01:31 +1000250 list_add_tail(&sh->lru, &conf->delayed_list);
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500251 else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
Shaohua Li4eb788d2012-07-19 16:01:31 +1000252 sh->bm_seq - conf->seq_write > 0)
253 list_add_tail(&sh->lru, &conf->bitmap_list);
254 else {
255 clear_bit(STRIPE_DELAYED, &sh->state);
256 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Shaohua Li851c30c2013-08-28 14:30:16 +0800257 if (conf->worker_cnt_per_group == 0) {
Shaohua Li535ae4e2017-02-15 19:37:32 -0800258 if (stripe_is_lowprio(sh))
259 list_add_tail(&sh->lru,
260 &conf->loprio_list);
261 else
262 list_add_tail(&sh->lru,
263 &conf->handle_list);
Shaohua Li851c30c2013-08-28 14:30:16 +0800264 } else {
265 raid5_wakeup_stripe_thread(sh);
266 return;
267 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000268 }
269 md_wakeup_thread(conf->mddev->thread);
270 } else {
271 BUG_ON(stripe_operations_active(sh));
272 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
273 if (atomic_dec_return(&conf->preread_active_stripes)
274 < IO_THRESHOLD)
275 md_wakeup_thread(conf->mddev->thread);
276 atomic_dec(&conf->active_stripes);
Song Liu1e6d6902016-11-17 15:24:39 -0800277 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
278 if (!r5c_is_writeback(conf->log))
279 list_add_tail(&sh->lru, temp_inactive_list);
280 else {
281 WARN_ON(test_bit(R5_InJournal, &sh->dev[sh->pd_idx].flags));
282 if (injournal == 0)
283 list_add_tail(&sh->lru, temp_inactive_list);
284 else if (injournal == conf->raid_disks - conf->max_degraded) {
285 /* full stripe */
286 if (!test_and_set_bit(STRIPE_R5C_FULL_STRIPE, &sh->state))
287 atomic_inc(&conf->r5c_cached_full_stripes);
288 if (test_and_clear_bit(STRIPE_R5C_PARTIAL_STRIPE, &sh->state))
289 atomic_dec(&conf->r5c_cached_partial_stripes);
290 list_add_tail(&sh->lru, &conf->r5c_full_stripe_list);
Song Liua39f7af2016-11-17 15:24:40 -0800291 r5c_check_cached_full_stripe(conf);
Song Liu03b047f2017-01-11 13:39:14 -0800292 } else
293 /*
294 * STRIPE_R5C_PARTIAL_STRIPE is set in
295 * r5c_try_caching_write(). No need to
296 * set it again.
297 */
Song Liu1e6d6902016-11-17 15:24:39 -0800298 list_add_tail(&sh->lru, &conf->r5c_partial_stripe_list);
Song Liu1e6d6902016-11-17 15:24:39 -0800299 }
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302}
NeilBrownd0dabf72009-03-31 14:39:38 +1100303
Shaohua Li566c09c2013-11-14 15:16:17 +1100304static void __release_stripe(struct r5conf *conf, struct stripe_head *sh,
305 struct list_head *temp_inactive_list)
Shaohua Li4eb788d2012-07-19 16:01:31 +1000306{
307 if (atomic_dec_and_test(&sh->count))
Shaohua Li566c09c2013-11-14 15:16:17 +1100308 do_release_stripe(conf, sh, temp_inactive_list);
309}
310
311/*
312 * @hash could be NR_STRIPE_HASH_LOCKS, then we have a list of inactive_list
313 *
314 * Be careful: Only one task can add/delete stripes from temp_inactive_list at
315 * given time. Adding stripes only takes device lock, while deleting stripes
316 * only takes hash lock.
317 */
318static void release_inactive_stripe_list(struct r5conf *conf,
319 struct list_head *temp_inactive_list,
320 int hash)
321{
322 int size;
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800323 bool do_wakeup = false;
Shaohua Li566c09c2013-11-14 15:16:17 +1100324 unsigned long flags;
325
326 if (hash == NR_STRIPE_HASH_LOCKS) {
327 size = NR_STRIPE_HASH_LOCKS;
328 hash = NR_STRIPE_HASH_LOCKS - 1;
329 } else
330 size = 1;
331 while (size) {
332 struct list_head *list = &temp_inactive_list[size - 1];
333
334 /*
Shaohua Li6d036f72015-08-13 14:31:57 -0700335 * We don't hold any lock here yet, raid5_get_active_stripe() might
Shaohua Li566c09c2013-11-14 15:16:17 +1100336 * remove stripes from the list
337 */
338 if (!list_empty_careful(list)) {
339 spin_lock_irqsave(conf->hash_locks + hash, flags);
Shaohua Li4bda5562013-11-14 15:16:17 +1100340 if (list_empty(conf->inactive_list + hash) &&
341 !list_empty(list))
342 atomic_dec(&conf->empty_inactive_list_nr);
Shaohua Li566c09c2013-11-14 15:16:17 +1100343 list_splice_tail_init(list, conf->inactive_list + hash);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800344 do_wakeup = true;
Shaohua Li566c09c2013-11-14 15:16:17 +1100345 spin_unlock_irqrestore(conf->hash_locks + hash, flags);
346 }
347 size--;
348 hash--;
349 }
350
351 if (do_wakeup) {
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800352 wake_up(&conf->wait_for_stripe);
Yuanhan Liub1b46482015-05-08 18:19:06 +1000353 if (atomic_read(&conf->active_stripes) == 0)
354 wake_up(&conf->wait_for_quiescent);
Shaohua Li566c09c2013-11-14 15:16:17 +1100355 if (conf->retry_read_aligned)
356 md_wakeup_thread(conf->mddev->thread);
357 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000358}
359
Shaohua Li773ca822013-08-27 17:50:39 +0800360/* should hold conf->device_lock already */
Shaohua Li566c09c2013-11-14 15:16:17 +1100361static int release_stripe_list(struct r5conf *conf,
362 struct list_head *temp_inactive_list)
Shaohua Li773ca822013-08-27 17:50:39 +0800363{
Byungchul Parkeae82632017-02-14 16:26:24 +0900364 struct stripe_head *sh, *t;
Shaohua Li773ca822013-08-27 17:50:39 +0800365 int count = 0;
366 struct llist_node *head;
367
368 head = llist_del_all(&conf->released_stripes);
Shaohua Lid265d9d2013-08-28 14:29:05 +0800369 head = llist_reverse_order(head);
Byungchul Parkeae82632017-02-14 16:26:24 +0900370 llist_for_each_entry_safe(sh, t, head, release_list) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100371 int hash;
372
Shaohua Li773ca822013-08-27 17:50:39 +0800373 /* sh could be readded after STRIPE_ON_RELEASE_LIST is cleard */
374 smp_mb();
375 clear_bit(STRIPE_ON_RELEASE_LIST, &sh->state);
376 /*
377 * Don't worry the bit is set here, because if the bit is set
378 * again, the count is always > 1. This is true for
379 * STRIPE_ON_UNPLUG_LIST bit too.
380 */
Shaohua Li566c09c2013-11-14 15:16:17 +1100381 hash = sh->hash_lock_index;
382 __release_stripe(conf, sh, &temp_inactive_list[hash]);
Shaohua Li773ca822013-08-27 17:50:39 +0800383 count++;
384 }
385
386 return count;
387}
388
Shaohua Li6d036f72015-08-13 14:31:57 -0700389void raid5_release_stripe(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
NeilBrownd1688a62011-10-11 16:49:52 +1100391 struct r5conf *conf = sh->raid_conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 unsigned long flags;
Shaohua Li566c09c2013-11-14 15:16:17 +1100393 struct list_head list;
394 int hash;
Shaohua Li773ca822013-08-27 17:50:39 +0800395 bool wakeup;
NeilBrown16a53ec2006-06-26 00:27:38 -0700396
Eivind Sartocf170f32014-05-28 13:39:23 +1000397 /* Avoid release_list until the last reference.
398 */
399 if (atomic_add_unless(&sh->count, -1, 1))
400 return;
401
majianpengad4068d2013-11-14 15:16:15 +1100402 if (unlikely(!conf->mddev->thread) ||
403 test_and_set_bit(STRIPE_ON_RELEASE_LIST, &sh->state))
Shaohua Li773ca822013-08-27 17:50:39 +0800404 goto slow_path;
405 wakeup = llist_add(&sh->release_list, &conf->released_stripes);
406 if (wakeup)
407 md_wakeup_thread(conf->mddev->thread);
408 return;
409slow_path:
Shaohua Li4eb788d2012-07-19 16:01:31 +1000410 local_irq_save(flags);
Shaohua Li773ca822013-08-27 17:50:39 +0800411 /* we are ok here if STRIPE_ON_RELEASE_LIST is set or not */
Shaohua Li4eb788d2012-07-19 16:01:31 +1000412 if (atomic_dec_and_lock(&sh->count, &conf->device_lock)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100413 INIT_LIST_HEAD(&list);
414 hash = sh->hash_lock_index;
415 do_release_stripe(conf, sh, &list);
Shaohua Li4eb788d2012-07-19 16:01:31 +1000416 spin_unlock(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +1100417 release_inactive_stripe_list(conf, &list, hash);
Shaohua Li4eb788d2012-07-19 16:01:31 +1000418 }
419 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
NeilBrownfccddba2006-01-06 00:20:33 -0800422static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Dan Williams45b42332007-07-09 11:56:43 -0700424 pr_debug("remove_hash(), stripe %llu\n",
425 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
NeilBrownfccddba2006-01-06 00:20:33 -0800427 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
NeilBrownd1688a62011-10-11 16:49:52 +1100430static inline void insert_hash(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
NeilBrownfccddba2006-01-06 00:20:33 -0800432 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Dan Williams45b42332007-07-09 11:56:43 -0700434 pr_debug("insert_hash(), stripe %llu\n",
435 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
NeilBrownfccddba2006-01-06 00:20:33 -0800437 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/* find an idle stripe, make sure it is unhashed, and return it. */
Shaohua Li566c09c2013-11-14 15:16:17 +1100441static struct stripe_head *get_free_stripe(struct r5conf *conf, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 struct stripe_head *sh = NULL;
444 struct list_head *first;
445
Shaohua Li566c09c2013-11-14 15:16:17 +1100446 if (list_empty(conf->inactive_list + hash))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 goto out;
Shaohua Li566c09c2013-11-14 15:16:17 +1100448 first = (conf->inactive_list + hash)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 sh = list_entry(first, struct stripe_head, lru);
450 list_del_init(first);
451 remove_hash(sh);
452 atomic_inc(&conf->active_stripes);
Shaohua Li566c09c2013-11-14 15:16:17 +1100453 BUG_ON(hash != sh->hash_lock_index);
Shaohua Li4bda5562013-11-14 15:16:17 +1100454 if (list_empty(conf->inactive_list + hash))
455 atomic_inc(&conf->empty_inactive_list_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456out:
457 return sh;
458}
459
NeilBrowne4e11e32010-06-16 16:45:16 +1000460static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 struct page *p;
463 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000464 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
NeilBrowne4e11e32010-06-16 16:45:16 +1000466 for (i = 0; i < num ; i++) {
Shaohua Lid592a992014-05-21 17:57:44 +0800467 WARN_ON(sh->dev[i].page != sh->dev[i].orig_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 p = sh->dev[i].page;
469 if (!p)
470 continue;
471 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800472 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
Artur Paszkiewicz3418d032017-03-09 09:59:59 +0100474
475 if (sh->ppl_page) {
476 put_page(sh->ppl_page);
477 sh->ppl_page = NULL;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
NeilBrowna9683a72015-02-25 12:02:51 +1100481static int grow_buffers(struct stripe_head *sh, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000484 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
NeilBrowne4e11e32010-06-16 16:45:16 +1000486 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 struct page *page;
488
NeilBrowna9683a72015-02-25 12:02:51 +1100489 if (!(page = alloc_page(gfp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return 1;
491 }
492 sh->dev[i].page = page;
Shaohua Lid592a992014-05-21 17:57:44 +0800493 sh->dev[i].orig_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Artur Paszkiewicz3418d032017-03-09 09:59:59 +0100495
496 if (raid5_has_ppl(sh->raid_conf)) {
497 sh->ppl_page = alloc_page(gfp);
498 if (!sh->ppl_page)
499 return 1;
500 }
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return 0;
503}
504
NeilBrown784052e2009-03-31 15:19:07 +1100505static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrownd1688a62011-10-11 16:49:52 +1100506static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +1100507 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
NeilBrownb5663ba2009-03-31 14:39:38 +1100509static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
NeilBrownd1688a62011-10-11 16:49:52 +1100511 struct r5conf *conf = sh->raid_conf;
Shaohua Li566c09c2013-11-14 15:16:17 +1100512 int i, seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200514 BUG_ON(atomic_read(&sh->count) != 0);
515 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000516 BUG_ON(stripe_operations_active(sh));
shli@kernel.org59fc6302014-12-15 12:57:03 +1100517 BUG_ON(sh->batch_head);
Dan Williamsd84e0f12007-01-02 13:52:30 -0700518
Dan Williams45b42332007-07-09 11:56:43 -0700519 pr_debug("init_stripe called, stripe %llu\n",
Markus Stockhausenb8e6a152014-08-23 20:19:27 +1000520 (unsigned long long)sector);
Shaohua Li566c09c2013-11-14 15:16:17 +1100521retry:
522 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrown86b42c72009-03-31 15:19:03 +1100523 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100524 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100526 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 sh->state = 0;
528
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800529 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 struct r5dev *dev = &sh->dev[i];
531
Dan Williamsd84e0f12007-01-02 13:52:30 -0700532 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 test_bit(R5_LOCKED, &dev->flags)) {
NeilBrowncc6167b2016-11-02 14:16:50 +1100534 pr_err("sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700536 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 test_bit(R5_LOCKED, &dev->flags));
NeilBrown8cfa7b02011-07-27 11:00:36 +1000538 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100541 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
Shaohua Li566c09c2013-11-14 15:16:17 +1100543 if (read_seqcount_retry(&conf->gen_lock, seq))
544 goto retry;
shli@kernel.org7a87f432014-12-15 12:57:03 +1100545 sh->overwrite_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 insert_hash(conf, sh);
Shaohua Li851c30c2013-08-28 14:30:16 +0800547 sh->cpu = smp_processor_id();
shli@kernel.orgda41ba62014-12-15 12:57:03 +1100548 set_bit(STRIPE_BATCH_READY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
NeilBrownd1688a62011-10-11 16:49:52 +1100551static struct stripe_head *__find_stripe(struct r5conf *conf, sector_t sector,
NeilBrown86b42c72009-03-31 15:19:03 +1100552 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 struct stripe_head *sh;
555
Dan Williams45b42332007-07-09 11:56:43 -0700556 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800557 hlist_for_each_entry(sh, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100558 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700560 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return NULL;
562}
563
NeilBrown674806d2010-06-16 17:17:53 +1000564/*
565 * Need to check if array has failed when deciding whether to:
566 * - start an array
567 * - remove non-faulty devices
568 * - add a spare
569 * - allow a reshape
570 * This determination is simple when no reshape is happening.
571 * However if there is a reshape, we need to carefully check
572 * both the before and after sections.
573 * This is because some failed devices may only affect one
574 * of the two sections, and some non-in_sync devices may
575 * be insync in the section most affected by failed devices.
576 */
Song Liu2e38a372017-01-24 10:45:30 -0800577int raid5_calc_degraded(struct r5conf *conf)
NeilBrown674806d2010-06-16 17:17:53 +1000578{
NeilBrown908f4fb2011-12-23 10:17:50 +1100579 int degraded, degraded2;
NeilBrown674806d2010-06-16 17:17:53 +1000580 int i;
NeilBrown674806d2010-06-16 17:17:53 +1000581
582 rcu_read_lock();
583 degraded = 0;
584 for (i = 0; i < conf->previous_raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100585 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000586 if (rdev && test_bit(Faulty, &rdev->flags))
587 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000588 if (!rdev || test_bit(Faulty, &rdev->flags))
589 degraded++;
590 else if (test_bit(In_sync, &rdev->flags))
591 ;
592 else
593 /* not in-sync or faulty.
594 * If the reshape increases the number of devices,
595 * this is being recovered by the reshape, so
596 * this 'previous' section is not in_sync.
597 * If the number of devices is being reduced however,
598 * the device can only be part of the array if
599 * we are reverting a reshape, so this section will
600 * be in-sync.
601 */
602 if (conf->raid_disks >= conf->previous_raid_disks)
603 degraded++;
604 }
605 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100606 if (conf->raid_disks == conf->previous_raid_disks)
607 return degraded;
NeilBrown674806d2010-06-16 17:17:53 +1000608 rcu_read_lock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100609 degraded2 = 0;
NeilBrown674806d2010-06-16 17:17:53 +1000610 for (i = 0; i < conf->raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100611 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000612 if (rdev && test_bit(Faulty, &rdev->flags))
613 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000614 if (!rdev || test_bit(Faulty, &rdev->flags))
NeilBrown908f4fb2011-12-23 10:17:50 +1100615 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000616 else if (test_bit(In_sync, &rdev->flags))
617 ;
618 else
619 /* not in-sync or faulty.
620 * If reshape increases the number of devices, this
621 * section has already been recovered, else it
622 * almost certainly hasn't.
623 */
624 if (conf->raid_disks <= conf->previous_raid_disks)
NeilBrown908f4fb2011-12-23 10:17:50 +1100625 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000626 }
627 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100628 if (degraded2 > degraded)
629 return degraded2;
630 return degraded;
631}
632
633static int has_failed(struct r5conf *conf)
634{
635 int degraded;
636
637 if (conf->mddev->reshape_position == MaxSector)
638 return conf->mddev->degraded > conf->max_degraded;
639
Song Liu2e38a372017-01-24 10:45:30 -0800640 degraded = raid5_calc_degraded(conf);
NeilBrown674806d2010-06-16 17:17:53 +1000641 if (degraded > conf->max_degraded)
642 return 1;
643 return 0;
644}
645
Shaohua Li6d036f72015-08-13 14:31:57 -0700646struct stripe_head *
647raid5_get_active_stripe(struct r5conf *conf, sector_t sector,
648 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
650 struct stripe_head *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +1100651 int hash = stripe_hash_locks_hash(sector);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800652 int inc_empty_inactive_list_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Dan Williams45b42332007-07-09 11:56:43 -0700654 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Shaohua Li566c09c2013-11-14 15:16:17 +1100656 spin_lock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 do {
Yuanhan Liub1b46482015-05-08 18:19:06 +1000659 wait_event_lock_irq(conf->wait_for_quiescent,
NeilBrowna8c906c2009-06-09 14:39:59 +1000660 conf->quiesce == 0 || noquiesce,
Shaohua Li566c09c2013-11-14 15:16:17 +1100661 *(conf->hash_locks + hash));
NeilBrown86b42c72009-03-31 15:19:03 +1100662 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (!sh) {
NeilBrownedbe83a2015-02-26 12:47:56 +1100664 if (!test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100665 sh = get_free_stripe(conf, hash);
Shaohua Li713bc5c2015-05-28 17:33:47 -0700666 if (!sh && !test_bit(R5_DID_ALLOC,
667 &conf->cache_state))
NeilBrownedbe83a2015-02-26 12:47:56 +1100668 set_bit(R5_ALLOC_MORE,
669 &conf->cache_state);
670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (noblock && sh == NULL)
672 break;
Song Liua39f7af2016-11-17 15:24:40 -0800673
674 r5c_check_stripe_cache_usage(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (!sh) {
NeilBrown54233992015-02-26 12:21:04 +1100676 set_bit(R5_INACTIVE_BLOCKED,
677 &conf->cache_state);
Song Liua39f7af2016-11-17 15:24:40 -0800678 r5l_wake_reclaim(conf->log, 0);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800679 wait_event_lock_irq(
680 conf->wait_for_stripe,
Shaohua Li566c09c2013-11-14 15:16:17 +1100681 !list_empty(conf->inactive_list + hash) &&
682 (atomic_read(&conf->active_stripes)
683 < (conf->max_nr_stripes * 3 / 4)
NeilBrown54233992015-02-26 12:21:04 +1100684 || !test_bit(R5_INACTIVE_BLOCKED,
685 &conf->cache_state)),
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800686 *(conf->hash_locks + hash));
NeilBrown54233992015-02-26 12:21:04 +1100687 clear_bit(R5_INACTIVE_BLOCKED,
688 &conf->cache_state);
NeilBrown7da9d452014-01-22 11:45:03 +1100689 } else {
NeilBrownb5663ba2009-03-31 14:39:38 +1100690 init_stripe(sh, sector, previous);
NeilBrown7da9d452014-01-22 11:45:03 +1100691 atomic_inc(&sh->count);
692 }
Shaohua Lie240c182014-04-09 11:27:42 +0800693 } else if (!atomic_inc_not_zero(&sh->count)) {
NeilBrown6d183de2013-11-28 10:55:27 +1100694 spin_lock(&conf->device_lock);
Shaohua Lie240c182014-04-09 11:27:42 +0800695 if (!atomic_read(&sh->count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (!test_bit(STRIPE_HANDLE, &sh->state))
697 atomic_inc(&conf->active_stripes);
NeilBrown5af9bef2014-01-14 15:16:10 +1100698 BUG_ON(list_empty(&sh->lru) &&
699 !test_bit(STRIPE_EXPANDING, &sh->state));
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800700 inc_empty_inactive_list_flag = 0;
701 if (!list_empty(conf->inactive_list + hash))
702 inc_empty_inactive_list_flag = 1;
NeilBrown16a53ec2006-06-26 00:27:38 -0700703 list_del_init(&sh->lru);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800704 if (list_empty(conf->inactive_list + hash) && inc_empty_inactive_list_flag)
705 atomic_inc(&conf->empty_inactive_list_nr);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800706 if (sh->group) {
707 sh->group->stripes_cnt--;
708 sh->group = NULL;
709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
NeilBrown7da9d452014-01-22 11:45:03 +1100711 atomic_inc(&sh->count);
NeilBrown6d183de2013-11-28 10:55:27 +1100712 spin_unlock(&conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714 } while (sh == NULL);
715
Shaohua Li566c09c2013-11-14 15:16:17 +1100716 spin_unlock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return sh;
718}
719
shli@kernel.org7a87f432014-12-15 12:57:03 +1100720static bool is_full_stripe_write(struct stripe_head *sh)
721{
722 BUG_ON(sh->overwrite_disks > (sh->disks - sh->raid_conf->max_degraded));
723 return sh->overwrite_disks == (sh->disks - sh->raid_conf->max_degraded);
724}
725
shli@kernel.org59fc6302014-12-15 12:57:03 +1100726static void lock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
727{
728 local_irq_disable();
729 if (sh1 > sh2) {
730 spin_lock(&sh2->stripe_lock);
731 spin_lock_nested(&sh1->stripe_lock, 1);
732 } else {
733 spin_lock(&sh1->stripe_lock);
734 spin_lock_nested(&sh2->stripe_lock, 1);
735 }
736}
737
738static void unlock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
739{
740 spin_unlock(&sh1->stripe_lock);
741 spin_unlock(&sh2->stripe_lock);
742 local_irq_enable();
743}
744
745/* Only freshly new full stripe normal write stripe can be added to a batch list */
746static bool stripe_can_batch(struct stripe_head *sh)
747{
Shaohua Li9c3e3332015-08-13 14:32:02 -0700748 struct r5conf *conf = sh->raid_conf;
749
Artur Paszkiewicz3418d032017-03-09 09:59:59 +0100750 if (conf->log || raid5_has_ppl(conf))
Shaohua Li9c3e3332015-08-13 14:32:02 -0700751 return false;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100752 return test_bit(STRIPE_BATCH_READY, &sh->state) &&
NeilBrownd0852df52015-05-27 08:43:45 +1000753 !test_bit(STRIPE_BITMAP_PENDING, &sh->state) &&
shli@kernel.org59fc6302014-12-15 12:57:03 +1100754 is_full_stripe_write(sh);
755}
756
757/* we only do back search */
758static void stripe_add_to_batch_list(struct r5conf *conf, struct stripe_head *sh)
759{
760 struct stripe_head *head;
761 sector_t head_sector, tmp_sec;
762 int hash;
763 int dd_idx;
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800764 int inc_empty_inactive_list_flag;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100765
shli@kernel.org59fc6302014-12-15 12:57:03 +1100766 /* Don't cross chunks, so stripe pd_idx/qd_idx is the same */
767 tmp_sec = sh->sector;
768 if (!sector_div(tmp_sec, conf->chunk_sectors))
769 return;
770 head_sector = sh->sector - STRIPE_SECTORS;
771
772 hash = stripe_hash_locks_hash(head_sector);
773 spin_lock_irq(conf->hash_locks + hash);
774 head = __find_stripe(conf, head_sector, conf->generation);
775 if (head && !atomic_inc_not_zero(&head->count)) {
776 spin_lock(&conf->device_lock);
777 if (!atomic_read(&head->count)) {
778 if (!test_bit(STRIPE_HANDLE, &head->state))
779 atomic_inc(&conf->active_stripes);
780 BUG_ON(list_empty(&head->lru) &&
781 !test_bit(STRIPE_EXPANDING, &head->state));
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800782 inc_empty_inactive_list_flag = 0;
783 if (!list_empty(conf->inactive_list + hash))
784 inc_empty_inactive_list_flag = 1;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100785 list_del_init(&head->lru);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800786 if (list_empty(conf->inactive_list + hash) && inc_empty_inactive_list_flag)
787 atomic_inc(&conf->empty_inactive_list_nr);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100788 if (head->group) {
789 head->group->stripes_cnt--;
790 head->group = NULL;
791 }
792 }
793 atomic_inc(&head->count);
794 spin_unlock(&conf->device_lock);
795 }
796 spin_unlock_irq(conf->hash_locks + hash);
797
798 if (!head)
799 return;
800 if (!stripe_can_batch(head))
801 goto out;
802
803 lock_two_stripes(head, sh);
804 /* clear_batch_ready clear the flag */
805 if (!stripe_can_batch(head) || !stripe_can_batch(sh))
806 goto unlock_out;
807
808 if (sh->batch_head)
809 goto unlock_out;
810
811 dd_idx = 0;
812 while (dd_idx == sh->pd_idx || dd_idx == sh->qd_idx)
813 dd_idx++;
Jens Axboe1eff9d32016-08-05 15:35:16 -0600814 if (head->dev[dd_idx].towrite->bi_opf != sh->dev[dd_idx].towrite->bi_opf ||
Mike Christie796a5cf2016-06-05 14:32:07 -0500815 bio_op(head->dev[dd_idx].towrite) != bio_op(sh->dev[dd_idx].towrite))
shli@kernel.org59fc6302014-12-15 12:57:03 +1100816 goto unlock_out;
817
818 if (head->batch_head) {
819 spin_lock(&head->batch_head->batch_lock);
820 /* This batch list is already running */
821 if (!stripe_can_batch(head)) {
822 spin_unlock(&head->batch_head->batch_lock);
823 goto unlock_out;
824 }
825
826 /*
827 * at this point, head's BATCH_READY could be cleared, but we
828 * can still add the stripe to batch list
829 */
830 list_add(&sh->batch_list, &head->batch_list);
831 spin_unlock(&head->batch_head->batch_lock);
832
833 sh->batch_head = head->batch_head;
834 } else {
835 head->batch_head = head;
836 sh->batch_head = head->batch_head;
837 spin_lock(&head->batch_lock);
838 list_add_tail(&sh->batch_list, &head->batch_list);
839 spin_unlock(&head->batch_lock);
840 }
841
842 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
843 if (atomic_dec_return(&conf->preread_active_stripes)
844 < IO_THRESHOLD)
845 md_wakeup_thread(conf->mddev->thread);
846
NeilBrown2b6b2452015-05-21 15:10:01 +1000847 if (test_and_clear_bit(STRIPE_BIT_DELAY, &sh->state)) {
848 int seq = sh->bm_seq;
849 if (test_bit(STRIPE_BIT_DELAY, &sh->batch_head->state) &&
850 sh->batch_head->bm_seq > seq)
851 seq = sh->batch_head->bm_seq;
852 set_bit(STRIPE_BIT_DELAY, &sh->batch_head->state);
853 sh->batch_head->bm_seq = seq;
854 }
855
shli@kernel.org59fc6302014-12-15 12:57:03 +1100856 atomic_inc(&sh->count);
857unlock_out:
858 unlock_two_stripes(head, sh);
859out:
Shaohua Li6d036f72015-08-13 14:31:57 -0700860 raid5_release_stripe(head);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100861}
862
NeilBrown05616be2012-05-21 09:27:00 +1000863/* Determine if 'data_offset' or 'new_data_offset' should be used
864 * in this stripe_head.
865 */
866static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
867{
868 sector_t progress = conf->reshape_progress;
869 /* Need a memory barrier to make sure we see the value
870 * of conf->generation, or ->data_offset that was set before
871 * reshape_progress was updated.
872 */
873 smp_rmb();
874 if (progress == MaxSector)
875 return 0;
876 if (sh->generation == conf->generation - 1)
877 return 0;
878 /* We are in a reshape, and this is a new-generation stripe,
879 * so use new_data_offset.
880 */
881 return 1;
882}
883
Shaohua Liaaf9f122017-03-03 22:06:12 -0800884static void dispatch_bio_list(struct bio_list *tmp)
Shaohua Li765d7042017-01-04 09:33:23 -0800885{
Shaohua Li765d7042017-01-04 09:33:23 -0800886 struct bio *bio;
887
Shaohua Liaaf9f122017-03-03 22:06:12 -0800888 while ((bio = bio_list_pop(tmp)))
Shaohua Li765d7042017-01-04 09:33:23 -0800889 generic_make_request(bio);
890}
891
Shaohua Liaaf9f122017-03-03 22:06:12 -0800892static int cmp_stripe(void *priv, struct list_head *a, struct list_head *b)
Shaohua Li765d7042017-01-04 09:33:23 -0800893{
Shaohua Liaaf9f122017-03-03 22:06:12 -0800894 const struct r5pending_data *da = list_entry(a,
895 struct r5pending_data, sibling);
896 const struct r5pending_data *db = list_entry(b,
897 struct r5pending_data, sibling);
898 if (da->sector > db->sector)
899 return 1;
900 if (da->sector < db->sector)
901 return -1;
902 return 0;
903}
904
905static void dispatch_defer_bios(struct r5conf *conf, int target,
906 struct bio_list *list)
907{
908 struct r5pending_data *data;
909 struct list_head *first, *next = NULL;
910 int cnt = 0;
911
912 if (conf->pending_data_cnt == 0)
Shaohua Li765d7042017-01-04 09:33:23 -0800913 return;
Shaohua Liaaf9f122017-03-03 22:06:12 -0800914
915 list_sort(NULL, &conf->pending_list, cmp_stripe);
916
917 first = conf->pending_list.next;
918
919 /* temporarily move the head */
920 if (conf->next_pending_data)
921 list_move_tail(&conf->pending_list,
922 &conf->next_pending_data->sibling);
923
924 while (!list_empty(&conf->pending_list)) {
925 data = list_first_entry(&conf->pending_list,
926 struct r5pending_data, sibling);
927 if (&data->sibling == first)
928 first = data->sibling.next;
929 next = data->sibling.next;
930
931 bio_list_merge(list, &data->bios);
932 list_move(&data->sibling, &conf->free_list);
933 cnt++;
934 if (cnt >= target)
935 break;
Shaohua Li765d7042017-01-04 09:33:23 -0800936 }
Shaohua Liaaf9f122017-03-03 22:06:12 -0800937 conf->pending_data_cnt -= cnt;
938 BUG_ON(conf->pending_data_cnt < 0 || cnt < target);
939
940 if (next != &conf->pending_list)
941 conf->next_pending_data = list_entry(next,
942 struct r5pending_data, sibling);
943 else
944 conf->next_pending_data = NULL;
945 /* list isn't empty */
946 if (first != &conf->pending_list)
947 list_move_tail(&conf->pending_list, first);
948}
949
950static void flush_deferred_bios(struct r5conf *conf)
951{
952 struct bio_list tmp = BIO_EMPTY_LIST;
953
954 if (conf->pending_data_cnt == 0)
955 return;
956
Shaohua Li765d7042017-01-04 09:33:23 -0800957 spin_lock(&conf->pending_bios_lock);
Shaohua Liaaf9f122017-03-03 22:06:12 -0800958 dispatch_defer_bios(conf, conf->pending_data_cnt, &tmp);
959 BUG_ON(conf->pending_data_cnt != 0);
Shaohua Li765d7042017-01-04 09:33:23 -0800960 spin_unlock(&conf->pending_bios_lock);
Shaohua Liaaf9f122017-03-03 22:06:12 -0800961
962 dispatch_bio_list(&tmp);
963}
964
965static void defer_issue_bios(struct r5conf *conf, sector_t sector,
966 struct bio_list *bios)
967{
968 struct bio_list tmp = BIO_EMPTY_LIST;
969 struct r5pending_data *ent;
970
971 spin_lock(&conf->pending_bios_lock);
972 ent = list_first_entry(&conf->free_list, struct r5pending_data,
973 sibling);
974 list_move_tail(&ent->sibling, &conf->pending_list);
975 ent->sector = sector;
976 bio_list_init(&ent->bios);
977 bio_list_merge(&ent->bios, bios);
978 conf->pending_data_cnt++;
979 if (conf->pending_data_cnt >= PENDING_IO_MAX)
980 dispatch_defer_bios(conf, PENDING_IO_ONE_FLUSH, &tmp);
981
982 spin_unlock(&conf->pending_bios_lock);
983
984 dispatch_bio_list(&tmp);
Shaohua Li765d7042017-01-04 09:33:23 -0800985}
986
NeilBrown6712ecf2007-09-27 12:47:43 +0200987static void
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200988raid5_end_read_request(struct bio *bi);
NeilBrown6712ecf2007-09-27 12:47:43 +0200989static void
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200990raid5_end_write_request(struct bio *bi);
Dan Williams91c00922007-01-02 13:52:30 -0700991
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000992static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700993{
NeilBrownd1688a62011-10-11 16:49:52 +1100994 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -0700995 int i, disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100996 struct stripe_head *head_sh = sh;
Shaohua Liaaf9f122017-03-03 22:06:12 -0800997 struct bio_list pending_bios = BIO_EMPTY_LIST;
998 bool should_defer;
Dan Williams91c00922007-01-02 13:52:30 -0700999
1000 might_sleep();
1001
Artur Paszkiewiczff875732017-03-09 09:59:58 +01001002 if (log_stripe(sh, s) == 0)
1003 return;
Song Liu1e6d6902016-11-17 15:24:39 -08001004
Shaohua Liaaf9f122017-03-03 22:06:12 -08001005 should_defer = conf->batch_bio_dispatch && conf->group_cnt;
1006
Dan Williams91c00922007-01-02 13:52:30 -07001007 for (i = disks; i--; ) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001008 int op, op_flags = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11001009 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +11001010 struct bio *bi, *rbi;
1011 struct md_rdev *rdev, *rrdev = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001012
1013 sh = head_sh;
Tejun Heoe9c74692010-09-03 11:56:18 +02001014 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001015 op = REQ_OP_WRITE;
Tejun Heoe9c74692010-09-03 11:56:18 +02001016 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001017 op_flags = REQ_FUA;
Shaohua Li9e4447682012-10-11 13:49:49 +11001018 if (test_bit(R5_Discard, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -05001019 op = REQ_OP_DISCARD;
Tejun Heoe9c74692010-09-03 11:56:18 +02001020 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -05001021 op = REQ_OP_READ;
NeilBrown9a3e1102011-12-23 10:17:53 +11001022 else if (test_and_clear_bit(R5_WantReplace,
1023 &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001024 op = REQ_OP_WRITE;
NeilBrown9a3e1102011-12-23 10:17:53 +11001025 replace_only = 1;
1026 } else
Dan Williams91c00922007-01-02 13:52:30 -07001027 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +10001028 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -05001029 op_flags |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -07001030
shli@kernel.org59fc6302014-12-15 12:57:03 +11001031again:
Dan Williams91c00922007-01-02 13:52:30 -07001032 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +11001033 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -07001034
Dan Williams91c00922007-01-02 13:52:30 -07001035 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +11001036 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +11001037 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
1038 rdev = rcu_dereference(conf->disks[i].rdev);
1039 if (!rdev) {
1040 rdev = rrdev;
1041 rrdev = NULL;
1042 }
Mike Christie796a5cf2016-06-05 14:32:07 -05001043 if (op_is_write(op)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001044 if (replace_only)
1045 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +11001046 if (rdev == rrdev)
1047 /* We raced and saw duplicates */
1048 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +11001049 } else {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001050 if (test_bit(R5_ReadRepl, &head_sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +11001051 rdev = rrdev;
1052 rrdev = NULL;
1053 }
NeilBrown977df362011-12-23 10:17:53 +11001054
Dan Williams91c00922007-01-02 13:52:30 -07001055 if (rdev && test_bit(Faulty, &rdev->flags))
1056 rdev = NULL;
1057 if (rdev)
1058 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +11001059 if (rrdev && test_bit(Faulty, &rrdev->flags))
1060 rrdev = NULL;
1061 if (rrdev)
1062 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -07001063 rcu_read_unlock();
1064
NeilBrown73e92e52011-07-28 11:39:22 +10001065 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +11001066 * need to check for writes. We never accept write errors
1067 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +10001068 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001069 while (op_is_write(op) && rdev &&
NeilBrown73e92e52011-07-28 11:39:22 +10001070 test_bit(WriteErrorSeen, &rdev->flags)) {
1071 sector_t first_bad;
1072 int bad_sectors;
1073 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
1074 &first_bad, &bad_sectors);
1075 if (!bad)
1076 break;
1077
1078 if (bad < 0) {
1079 set_bit(BlockedBadBlocks, &rdev->flags);
1080 if (!conf->mddev->external &&
Shaohua Li29530792016-12-08 15:48:19 -08001081 conf->mddev->sb_flags) {
NeilBrown73e92e52011-07-28 11:39:22 +10001082 /* It is very unlikely, but we might
1083 * still need to write out the
1084 * bad block log - better give it
1085 * a chance*/
1086 md_check_recovery(conf->mddev);
1087 }
majianpeng18507532012-07-03 12:11:54 +10001088 /*
1089 * Because md_wait_for_blocked_rdev
1090 * will dec nr_pending, we must
1091 * increment it first.
1092 */
1093 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +10001094 md_wait_for_blocked_rdev(rdev, conf->mddev);
1095 } else {
1096 /* Acknowledged bad block - skip the write */
1097 rdev_dec_pending(rdev, conf->mddev);
1098 rdev = NULL;
1099 }
1100 }
1101
Dan Williams91c00922007-01-02 13:52:30 -07001102 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001103 if (s->syncing || s->expanding || s->expanded
1104 || s->replacing)
Dan Williams91c00922007-01-02 13:52:30 -07001105 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
1106
Dan Williams2b7497f2008-06-28 08:31:52 +10001107 set_bit(STRIPE_IO_STARTED, &sh->state);
1108
Dan Williams91c00922007-01-02 13:52:30 -07001109 bi->bi_bdev = rdev->bdev;
Mike Christie796a5cf2016-06-05 14:32:07 -05001110 bio_set_op_attrs(bi, op, op_flags);
1111 bi->bi_end_io = op_is_write(op)
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001112 ? raid5_end_write_request
1113 : raid5_end_read_request;
1114 bi->bi_private = sh;
1115
Mike Christie6296b962016-06-05 14:32:21 -05001116 pr_debug("%s: for %llu schedule op %d on disc %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001117 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -06001118 bi->bi_opf, i);
Dan Williams91c00922007-01-02 13:52:30 -07001119 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001120 if (sh != head_sh)
1121 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001122 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001123 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001124 + rdev->new_data_offset);
1125 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001126 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001127 + rdev->data_offset);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001128 if (test_bit(R5_ReadNoMerge, &head_sh->dev[i].flags))
Jens Axboe1eff9d32016-08-05 15:35:16 -06001129 bi->bi_opf |= REQ_NOMERGE;
majianpeng3f9e7c12012-07-31 10:04:21 +10001130
Shaohua Lid592a992014-05-21 17:57:44 +08001131 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1132 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
Song Liu86aa1392017-01-12 17:22:41 -08001133
1134 if (!op_is_write(op) &&
1135 test_bit(R5_InJournal, &sh->dev[i].flags))
1136 /*
1137 * issuing read for a page in journal, this
1138 * must be preparing for prexor in rmw; read
1139 * the data into orig_page
1140 */
1141 sh->dev[i].vec.bv_page = sh->dev[i].orig_page;
1142 else
1143 sh->dev[i].vec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001144 bi->bi_vcnt = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001145 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1146 bi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001147 bi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001148 /*
1149 * If this is discard request, set bi_vcnt 0. We don't
1150 * want to confuse SCSI because SCSI will replace payload
1151 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001152 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001153 bi->bi_vcnt = 0;
NeilBrown977df362011-12-23 10:17:53 +11001154 if (rrdev)
1155 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001156
1157 if (conf->mddev->gendisk)
1158 trace_block_bio_remap(bdev_get_queue(bi->bi_bdev),
1159 bi, disk_devt(conf->mddev->gendisk),
1160 sh->dev[i].sector);
Shaohua Liaaf9f122017-03-03 22:06:12 -08001161 if (should_defer && op_is_write(op))
1162 bio_list_add(&pending_bios, bi);
1163 else
1164 generic_make_request(bi);
NeilBrown977df362011-12-23 10:17:53 +11001165 }
1166 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001167 if (s->syncing || s->expanding || s->expanded
1168 || s->replacing)
NeilBrown977df362011-12-23 10:17:53 +11001169 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
1170
1171 set_bit(STRIPE_IO_STARTED, &sh->state);
1172
1173 rbi->bi_bdev = rrdev->bdev;
Mike Christie796a5cf2016-06-05 14:32:07 -05001174 bio_set_op_attrs(rbi, op, op_flags);
1175 BUG_ON(!op_is_write(op));
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001176 rbi->bi_end_io = raid5_end_write_request;
1177 rbi->bi_private = sh;
1178
Mike Christie6296b962016-06-05 14:32:21 -05001179 pr_debug("%s: for %llu schedule op %d on "
NeilBrown977df362011-12-23 10:17:53 +11001180 "replacement disc %d\n",
1181 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -06001182 rbi->bi_opf, i);
NeilBrown977df362011-12-23 10:17:53 +11001183 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001184 if (sh != head_sh)
1185 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001186 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001187 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001188 + rrdev->new_data_offset);
1189 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001190 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001191 + rrdev->data_offset);
Shaohua Lid592a992014-05-21 17:57:44 +08001192 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1193 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1194 sh->dev[i].rvec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001195 rbi->bi_vcnt = 1;
NeilBrown977df362011-12-23 10:17:53 +11001196 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1197 rbi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001198 rbi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001199 /*
1200 * If this is discard request, set bi_vcnt 0. We don't
1201 * want to confuse SCSI because SCSI will replace payload
1202 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001203 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001204 rbi->bi_vcnt = 0;
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001205 if (conf->mddev->gendisk)
1206 trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev),
1207 rbi, disk_devt(conf->mddev->gendisk),
1208 sh->dev[i].sector);
Shaohua Liaaf9f122017-03-03 22:06:12 -08001209 if (should_defer && op_is_write(op))
1210 bio_list_add(&pending_bios, rbi);
1211 else
1212 generic_make_request(rbi);
NeilBrown977df362011-12-23 10:17:53 +11001213 }
1214 if (!rdev && !rrdev) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001215 if (op_is_write(op))
Dan Williams91c00922007-01-02 13:52:30 -07001216 set_bit(STRIPE_DEGRADED, &sh->state);
Mike Christie6296b962016-06-05 14:32:21 -05001217 pr_debug("skip op %d on disc %d for sector %llu\n",
Jens Axboe1eff9d32016-08-05 15:35:16 -06001218 bi->bi_opf, i, (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001219 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1220 set_bit(STRIPE_HANDLE, &sh->state);
1221 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001222
1223 if (!head_sh->batch_head)
1224 continue;
1225 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1226 batch_list);
1227 if (sh != head_sh)
1228 goto again;
Dan Williams91c00922007-01-02 13:52:30 -07001229 }
Shaohua Liaaf9f122017-03-03 22:06:12 -08001230
1231 if (should_defer && !bio_list_empty(&pending_bios))
1232 defer_issue_bios(conf, head_sh->sector, &pending_bios);
Dan Williams91c00922007-01-02 13:52:30 -07001233}
1234
1235static struct dma_async_tx_descriptor *
Shaohua Lid592a992014-05-21 17:57:44 +08001236async_copy_data(int frombio, struct bio *bio, struct page **page,
1237 sector_t sector, struct dma_async_tx_descriptor *tx,
Song Liu1e6d6902016-11-17 15:24:39 -08001238 struct stripe_head *sh, int no_skipcopy)
Dan Williams91c00922007-01-02 13:52:30 -07001239{
Kent Overstreet79886132013-11-23 17:19:00 -08001240 struct bio_vec bvl;
1241 struct bvec_iter iter;
Dan Williams91c00922007-01-02 13:52:30 -07001242 struct page *bio_page;
Dan Williams91c00922007-01-02 13:52:30 -07001243 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -07001244 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -07001245 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001246
Kent Overstreet4f024f32013-10-11 15:44:27 -07001247 if (bio->bi_iter.bi_sector >= sector)
1248 page_offset = (signed)(bio->bi_iter.bi_sector - sector) * 512;
Dan Williams91c00922007-01-02 13:52:30 -07001249 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001250 page_offset = (signed)(sector - bio->bi_iter.bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -07001251
Dan Williams0403e382009-09-08 17:42:50 -07001252 if (frombio)
1253 flags |= ASYNC_TX_FENCE;
1254 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
1255
Kent Overstreet79886132013-11-23 17:19:00 -08001256 bio_for_each_segment(bvl, bio, iter) {
1257 int len = bvl.bv_len;
Dan Williams91c00922007-01-02 13:52:30 -07001258 int clen;
1259 int b_offset = 0;
1260
1261 if (page_offset < 0) {
1262 b_offset = -page_offset;
1263 page_offset += b_offset;
1264 len -= b_offset;
1265 }
1266
1267 if (len > 0 && page_offset + len > STRIPE_SIZE)
1268 clen = STRIPE_SIZE - page_offset;
1269 else
1270 clen = len;
1271
1272 if (clen > 0) {
Kent Overstreet79886132013-11-23 17:19:00 -08001273 b_offset += bvl.bv_offset;
1274 bio_page = bvl.bv_page;
Shaohua Lid592a992014-05-21 17:57:44 +08001275 if (frombio) {
1276 if (sh->raid_conf->skip_copy &&
1277 b_offset == 0 && page_offset == 0 &&
Song Liu1e6d6902016-11-17 15:24:39 -08001278 clen == STRIPE_SIZE &&
1279 !no_skipcopy)
Shaohua Lid592a992014-05-21 17:57:44 +08001280 *page = bio_page;
1281 else
1282 tx = async_memcpy(*page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001283 b_offset, clen, &submit);
Shaohua Lid592a992014-05-21 17:57:44 +08001284 } else
1285 tx = async_memcpy(bio_page, *page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001286 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001287 }
Dan Williamsa08abd82009-06-03 11:43:59 -07001288 /* chain the operations */
1289 submit.depend_tx = tx;
1290
Dan Williams91c00922007-01-02 13:52:30 -07001291 if (clen < len) /* hit end of page */
1292 break;
1293 page_offset += len;
1294 }
1295
1296 return tx;
1297}
1298
1299static void ops_complete_biofill(void *stripe_head_ref)
1300{
1301 struct stripe_head *sh = stripe_head_ref;
Dan Williamse4d84902007-09-24 10:06:13 -07001302 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001303
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001304 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001305 (unsigned long long)sh->sector);
1306
1307 /* clear completed biofills */
1308 for (i = sh->disks; i--; ) {
1309 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -07001310
1311 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -07001312 /* and check if we need to reply to a read request,
1313 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +10001314 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -07001315 */
1316 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001317 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -07001318
Dan Williams91c00922007-01-02 13:52:30 -07001319 BUG_ON(!dev->read);
1320 rbi = dev->read;
1321 dev->read = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001322 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001323 dev->sector + STRIPE_SECTORS) {
1324 rbi2 = r5_next_bio(rbi, dev->sector);
NeilBrown34a6f802015-08-14 12:07:57 +10001325 if (!raid5_dec_bi_active_stripes(rbi))
NeilBrownbd83d0a2017-03-15 14:05:12 +11001326 bio_endio(rbi);
Dan Williams91c00922007-01-02 13:52:30 -07001327 rbi = rbi2;
1328 }
1329 }
1330 }
Dan Williams83de75c2008-06-28 08:31:58 +10001331 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001332
Dan Williamse4d84902007-09-24 10:06:13 -07001333 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001334 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001335}
1336
1337static void ops_run_biofill(struct stripe_head *sh)
1338{
1339 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -07001340 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001341 int i;
1342
shli@kernel.org59fc6302014-12-15 12:57:03 +11001343 BUG_ON(sh->batch_head);
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001344 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001345 (unsigned long long)sh->sector);
1346
1347 for (i = sh->disks; i--; ) {
1348 struct r5dev *dev = &sh->dev[i];
1349 if (test_bit(R5_Wantfill, &dev->flags)) {
1350 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +10001351 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001352 dev->read = rbi = dev->toread;
1353 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10001354 spin_unlock_irq(&sh->stripe_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001355 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001356 dev->sector + STRIPE_SECTORS) {
Shaohua Lid592a992014-05-21 17:57:44 +08001357 tx = async_copy_data(0, rbi, &dev->page,
Song Liu1e6d6902016-11-17 15:24:39 -08001358 dev->sector, tx, sh, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001359 rbi = r5_next_bio(rbi, dev->sector);
1360 }
1361 }
1362 }
1363
1364 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001365 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
1366 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001367}
1368
Dan Williams4e7d2c02009-08-29 19:13:11 -07001369static void mark_target_uptodate(struct stripe_head *sh, int target)
1370{
1371 struct r5dev *tgt;
1372
1373 if (target < 0)
1374 return;
1375
1376 tgt = &sh->dev[target];
1377 set_bit(R5_UPTODATE, &tgt->flags);
1378 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1379 clear_bit(R5_Wantcompute, &tgt->flags);
1380}
1381
Dan Williamsac6b53b2009-07-14 13:40:19 -07001382static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001383{
1384 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001385
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001386 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001387 (unsigned long long)sh->sector);
1388
Dan Williamsac6b53b2009-07-14 13:40:19 -07001389 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -07001390 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001391 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -07001392
Dan Williamsecc65c92008-06-28 08:31:57 +10001393 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
1394 if (sh->check_state == check_state_compute_run)
1395 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -07001396 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001397 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001398}
1399
Dan Williamsd6f38f32009-07-14 11:50:52 -07001400/* return a pointer to the address conversion region of the scribble buffer */
1401static addr_conv_t *to_addr_conv(struct stripe_head *sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001402 struct raid5_percpu *percpu, int i)
Dan Williams91c00922007-01-02 13:52:30 -07001403{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001404 void *addr;
1405
1406 addr = flex_array_get(percpu->scribble, i);
1407 return addr + sizeof(struct page *) * (sh->disks + 2);
1408}
1409
1410/* return a pointer to the address conversion region of the scribble buffer */
1411static struct page **to_addr_page(struct raid5_percpu *percpu, int i)
1412{
1413 void *addr;
1414
1415 addr = flex_array_get(percpu->scribble, i);
1416 return addr;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001417}
1418
1419static struct dma_async_tx_descriptor *
1420ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
1421{
Dan Williams91c00922007-01-02 13:52:30 -07001422 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001423 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001424 int target = sh->ops.target;
1425 struct r5dev *tgt = &sh->dev[target];
1426 struct page *xor_dest = tgt->page;
1427 int count = 0;
1428 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001429 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001430 int i;
1431
shli@kernel.org59fc6302014-12-15 12:57:03 +11001432 BUG_ON(sh->batch_head);
1433
Dan Williams91c00922007-01-02 13:52:30 -07001434 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001435 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -07001436 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1437
1438 for (i = disks; i--; )
1439 if (i != target)
1440 xor_srcs[count++] = sh->dev[i].page;
1441
1442 atomic_inc(&sh->count);
1443
Dan Williams0403e382009-09-08 17:42:50 -07001444 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001445 ops_complete_compute, sh, to_addr_conv(sh, percpu, 0));
Dan Williams91c00922007-01-02 13:52:30 -07001446 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -07001447 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001448 else
Dan Williamsa08abd82009-06-03 11:43:59 -07001449 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001450
Dan Williams91c00922007-01-02 13:52:30 -07001451 return tx;
1452}
1453
Dan Williamsac6b53b2009-07-14 13:40:19 -07001454/* set_syndrome_sources - populate source buffers for gen_syndrome
1455 * @srcs - (struct page *) array of size sh->disks
1456 * @sh - stripe_head to parse
1457 *
1458 * Populates srcs in proper layout order for the stripe and returns the
1459 * 'count' of sources to be used in a call to async_gen_syndrome. The P
1460 * destination buffer is recorded in srcs[count] and the Q destination
1461 * is recorded in srcs[count+1]].
1462 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001463static int set_syndrome_sources(struct page **srcs,
1464 struct stripe_head *sh,
1465 int srctype)
Dan Williamsac6b53b2009-07-14 13:40:19 -07001466{
1467 int disks = sh->disks;
1468 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1469 int d0_idx = raid6_d0(sh);
1470 int count;
1471 int i;
1472
1473 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001474 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001475
1476 count = 0;
1477 i = d0_idx;
1478 do {
1479 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001480 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001481
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001482 if (i == sh->qd_idx || i == sh->pd_idx ||
1483 (srctype == SYNDROME_SRC_ALL) ||
1484 (srctype == SYNDROME_SRC_WANT_DRAIN &&
Song Liu1e6d6902016-11-17 15:24:39 -08001485 (test_bit(R5_Wantdrain, &dev->flags) ||
1486 test_bit(R5_InJournal, &dev->flags))) ||
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001487 (srctype == SYNDROME_SRC_WRITTEN &&
Song Liu09777622017-03-13 13:44:35 -07001488 (dev->written ||
1489 test_bit(R5_InJournal, &dev->flags)))) {
Song Liu1e6d6902016-11-17 15:24:39 -08001490 if (test_bit(R5_InJournal, &dev->flags))
1491 srcs[slot] = sh->dev[i].orig_page;
1492 else
1493 srcs[slot] = sh->dev[i].page;
1494 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001495 i = raid6_next_disk(i, disks);
1496 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001497
NeilBrowne4424fe2009-10-16 16:27:34 +11001498 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001499}
1500
1501static struct dma_async_tx_descriptor *
1502ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1503{
1504 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001505 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001506 int target;
1507 int qd_idx = sh->qd_idx;
1508 struct dma_async_tx_descriptor *tx;
1509 struct async_submit_ctl submit;
1510 struct r5dev *tgt;
1511 struct page *dest;
1512 int i;
1513 int count;
1514
shli@kernel.org59fc6302014-12-15 12:57:03 +11001515 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001516 if (sh->ops.target < 0)
1517 target = sh->ops.target2;
1518 else if (sh->ops.target2 < 0)
1519 target = sh->ops.target;
1520 else
1521 /* we should only have one valid target */
1522 BUG();
1523 BUG_ON(target < 0);
1524 pr_debug("%s: stripe %llu block: %d\n",
1525 __func__, (unsigned long long)sh->sector, target);
1526
1527 tgt = &sh->dev[target];
1528 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1529 dest = tgt->page;
1530
1531 atomic_inc(&sh->count);
1532
1533 if (target == qd_idx) {
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001534 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001535 blocks[count] = NULL; /* regenerating p is not necessary */
1536 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001537 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1538 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001539 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001540 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1541 } else {
1542 /* Compute any data- or p-drive using XOR */
1543 count = 0;
1544 for (i = disks; i-- ; ) {
1545 if (i == target || i == qd_idx)
1546 continue;
1547 blocks[count++] = sh->dev[i].page;
1548 }
1549
Dan Williams0403e382009-09-08 17:42:50 -07001550 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1551 NULL, ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001552 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001553 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1554 }
1555
1556 return tx;
1557}
1558
1559static struct dma_async_tx_descriptor *
1560ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1561{
1562 int i, count, disks = sh->disks;
1563 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1564 int d0_idx = raid6_d0(sh);
1565 int faila = -1, failb = -1;
1566 int target = sh->ops.target;
1567 int target2 = sh->ops.target2;
1568 struct r5dev *tgt = &sh->dev[target];
1569 struct r5dev *tgt2 = &sh->dev[target2];
1570 struct dma_async_tx_descriptor *tx;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001571 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001572 struct async_submit_ctl submit;
1573
shli@kernel.org59fc6302014-12-15 12:57:03 +11001574 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001575 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1576 __func__, (unsigned long long)sh->sector, target, target2);
1577 BUG_ON(target < 0 || target2 < 0);
1578 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1579 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1580
Dan Williams6c910a72009-09-16 12:24:54 -07001581 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001582 * slot number conversion for 'faila' and 'failb'
1583 */
1584 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001585 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001586 count = 0;
1587 i = d0_idx;
1588 do {
1589 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1590
1591 blocks[slot] = sh->dev[i].page;
1592
1593 if (i == target)
1594 faila = slot;
1595 if (i == target2)
1596 failb = slot;
1597 i = raid6_next_disk(i, disks);
1598 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001599
1600 BUG_ON(faila == failb);
1601 if (failb < faila)
1602 swap(faila, failb);
1603 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1604 __func__, (unsigned long long)sh->sector, faila, failb);
1605
1606 atomic_inc(&sh->count);
1607
1608 if (failb == syndrome_disks+1) {
1609 /* Q disk is one of the missing disks */
1610 if (faila == syndrome_disks) {
1611 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001612 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1613 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001614 to_addr_conv(sh, percpu, 0));
NeilBrowne4424fe2009-10-16 16:27:34 +11001615 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001616 STRIPE_SIZE, &submit);
1617 } else {
1618 struct page *dest;
1619 int data_target;
1620 int qd_idx = sh->qd_idx;
1621
1622 /* Missing D+Q: recompute D from P, then recompute Q */
1623 if (target == qd_idx)
1624 data_target = target2;
1625 else
1626 data_target = target;
1627
1628 count = 0;
1629 for (i = disks; i-- ; ) {
1630 if (i == data_target || i == qd_idx)
1631 continue;
1632 blocks[count++] = sh->dev[i].page;
1633 }
1634 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001635 init_async_submit(&submit,
1636 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1637 NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001638 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001639 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1640 &submit);
1641
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001642 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williams0403e382009-09-08 17:42:50 -07001643 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1644 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001645 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001646 return async_gen_syndrome(blocks, 0, count+2,
1647 STRIPE_SIZE, &submit);
1648 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001649 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001650 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1651 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001652 to_addr_conv(sh, percpu, 0));
Dan Williams6c910a72009-09-16 12:24:54 -07001653 if (failb == syndrome_disks) {
1654 /* We're missing D+P. */
1655 return async_raid6_datap_recov(syndrome_disks+2,
1656 STRIPE_SIZE, faila,
1657 blocks, &submit);
1658 } else {
1659 /* We're missing D+D. */
1660 return async_raid6_2data_recov(syndrome_disks+2,
1661 STRIPE_SIZE, faila, failb,
1662 blocks, &submit);
1663 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001664 }
1665}
1666
Dan Williams91c00922007-01-02 13:52:30 -07001667static void ops_complete_prexor(void *stripe_head_ref)
1668{
1669 struct stripe_head *sh = stripe_head_ref;
1670
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001671 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001672 (unsigned long long)sh->sector);
Song Liu1e6d6902016-11-17 15:24:39 -08001673
1674 if (r5c_is_writeback(sh->raid_conf->log))
1675 /*
1676 * raid5-cache write back uses orig_page during prexor.
1677 * After prexor, it is time to free orig_page
1678 */
1679 r5c_release_extra_page(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001680}
1681
1682static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001683ops_run_prexor5(struct stripe_head *sh, struct raid5_percpu *percpu,
1684 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001685{
Dan Williams91c00922007-01-02 13:52:30 -07001686 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001687 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001688 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001689 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001690
1691 /* existing parity data subtracted */
1692 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1693
shli@kernel.org59fc6302014-12-15 12:57:03 +11001694 BUG_ON(sh->batch_head);
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001695 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001696 (unsigned long long)sh->sector);
1697
1698 for (i = disks; i--; ) {
1699 struct r5dev *dev = &sh->dev[i];
1700 /* Only process blocks that are known to be uptodate */
Song Liu1e6d6902016-11-17 15:24:39 -08001701 if (test_bit(R5_InJournal, &dev->flags))
1702 xor_srcs[count++] = dev->orig_page;
1703 else if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001704 xor_srcs[count++] = dev->page;
1705 }
1706
Dan Williams0403e382009-09-08 17:42:50 -07001707 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001708 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Dan Williamsa08abd82009-06-03 11:43:59 -07001709 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001710
1711 return tx;
1712}
1713
1714static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001715ops_run_prexor6(struct stripe_head *sh, struct raid5_percpu *percpu,
1716 struct dma_async_tx_descriptor *tx)
1717{
1718 struct page **blocks = to_addr_page(percpu, 0);
1719 int count;
1720 struct async_submit_ctl submit;
1721
1722 pr_debug("%s: stripe %llu\n", __func__,
1723 (unsigned long long)sh->sector);
1724
1725 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_WANT_DRAIN);
1726
1727 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_PQ_XOR_DST, tx,
1728 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
1729 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1730
1731 return tx;
1732}
1733
1734static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001735ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001736{
Song Liu1e6d6902016-11-17 15:24:39 -08001737 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -07001738 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001739 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001740 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -07001741
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001742 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001743 (unsigned long long)sh->sector);
1744
1745 for (i = disks; i--; ) {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001746 struct r5dev *dev;
Dan Williams91c00922007-01-02 13:52:30 -07001747 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001748
shli@kernel.org59fc6302014-12-15 12:57:03 +11001749 sh = head_sh;
1750 if (test_and_clear_bit(R5_Wantdrain, &head_sh->dev[i].flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001751 struct bio *wbi;
1752
shli@kernel.org59fc6302014-12-15 12:57:03 +11001753again:
1754 dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08001755 /*
1756 * clear R5_InJournal, so when rewriting a page in
1757 * journal, it is not skipped by r5l_log_stripe()
1758 */
1759 clear_bit(R5_InJournal, &dev->flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10001760 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001761 chosen = dev->towrite;
1762 dev->towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11001763 sh->overwrite_disks = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001764 BUG_ON(dev->written);
1765 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001766 spin_unlock_irq(&sh->stripe_lock);
Shaohua Lid592a992014-05-21 17:57:44 +08001767 WARN_ON(dev->page != dev->orig_page);
Dan Williams91c00922007-01-02 13:52:30 -07001768
Kent Overstreet4f024f32013-10-11 15:44:27 -07001769 while (wbi && wbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001770 dev->sector + STRIPE_SECTORS) {
Jens Axboe1eff9d32016-08-05 15:35:16 -06001771 if (wbi->bi_opf & REQ_FUA)
Tejun Heoe9c74692010-09-03 11:56:18 +02001772 set_bit(R5_WantFUA, &dev->flags);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001773 if (wbi->bi_opf & REQ_SYNC)
Shaohua Libc0934f2012-05-22 13:55:05 +10001774 set_bit(R5_SyncIO, &dev->flags);
Mike Christie796a5cf2016-06-05 14:32:07 -05001775 if (bio_op(wbi) == REQ_OP_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001776 set_bit(R5_Discard, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08001777 else {
1778 tx = async_copy_data(1, wbi, &dev->page,
Song Liu1e6d6902016-11-17 15:24:39 -08001779 dev->sector, tx, sh,
1780 r5c_is_writeback(conf->log));
1781 if (dev->page != dev->orig_page &&
1782 !r5c_is_writeback(conf->log)) {
Shaohua Lid592a992014-05-21 17:57:44 +08001783 set_bit(R5_SkipCopy, &dev->flags);
1784 clear_bit(R5_UPTODATE, &dev->flags);
1785 clear_bit(R5_OVERWRITE, &dev->flags);
1786 }
1787 }
Dan Williams91c00922007-01-02 13:52:30 -07001788 wbi = r5_next_bio(wbi, dev->sector);
1789 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001790
1791 if (head_sh->batch_head) {
1792 sh = list_first_entry(&sh->batch_list,
1793 struct stripe_head,
1794 batch_list);
1795 if (sh == head_sh)
1796 continue;
1797 goto again;
1798 }
Dan Williams91c00922007-01-02 13:52:30 -07001799 }
1800 }
1801
1802 return tx;
1803}
1804
Dan Williamsac6b53b2009-07-14 13:40:19 -07001805static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001806{
1807 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001808 int disks = sh->disks;
1809 int pd_idx = sh->pd_idx;
1810 int qd_idx = sh->qd_idx;
1811 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001812 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001813
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001814 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001815 (unsigned long long)sh->sector);
1816
Shaohua Libc0934f2012-05-22 13:55:05 +10001817 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001818 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001819 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001820 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001821 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001822
Dan Williams91c00922007-01-02 13:52:30 -07001823 for (i = disks; i--; ) {
1824 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001825
Tejun Heoe9c74692010-09-03 11:56:18 +02001826 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Lid592a992014-05-21 17:57:44 +08001827 if (!discard && !test_bit(R5_SkipCopy, &dev->flags))
Shaohua Li9e4447682012-10-11 13:49:49 +11001828 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001829 if (fua)
1830 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001831 if (sync)
1832 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001833 }
Dan Williams91c00922007-01-02 13:52:30 -07001834 }
1835
Dan Williamsd8ee0722008-06-28 08:32:06 +10001836 if (sh->reconstruct_state == reconstruct_state_drain_run)
1837 sh->reconstruct_state = reconstruct_state_drain_result;
1838 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1839 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1840 else {
1841 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1842 sh->reconstruct_state = reconstruct_state_result;
1843 }
Dan Williams91c00922007-01-02 13:52:30 -07001844
1845 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001846 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001847}
1848
1849static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001850ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1851 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001852{
Dan Williams91c00922007-01-02 13:52:30 -07001853 int disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001854 struct page **xor_srcs;
Dan Williamsa08abd82009-06-03 11:43:59 -07001855 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001856 int count, pd_idx = sh->pd_idx, i;
Dan Williams91c00922007-01-02 13:52:30 -07001857 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001858 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001859 unsigned long flags;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001860 int j = 0;
1861 struct stripe_head *head_sh = sh;
1862 int last_stripe;
Dan Williams91c00922007-01-02 13:52:30 -07001863
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001864 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001865 (unsigned long long)sh->sector);
1866
Shaohua Li620125f2012-10-11 13:49:05 +11001867 for (i = 0; i < sh->disks; i++) {
1868 if (pd_idx == i)
1869 continue;
1870 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1871 break;
1872 }
1873 if (i >= sh->disks) {
1874 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001875 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1876 ops_complete_reconstruct(sh);
1877 return;
1878 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001879again:
1880 count = 0;
1881 xor_srcs = to_addr_page(percpu, j);
Dan Williams91c00922007-01-02 13:52:30 -07001882 /* check if prexor is active which means only process blocks
1883 * that are part of a read-modify-write (written)
1884 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001885 if (head_sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001886 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001887 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1888 for (i = disks; i--; ) {
1889 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08001890 if (head_sh->dev[i].written ||
1891 test_bit(R5_InJournal, &head_sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -07001892 xor_srcs[count++] = dev->page;
1893 }
1894 } else {
1895 xor_dest = sh->dev[pd_idx].page;
1896 for (i = disks; i--; ) {
1897 struct r5dev *dev = &sh->dev[i];
1898 if (i != pd_idx)
1899 xor_srcs[count++] = dev->page;
1900 }
1901 }
1902
Dan Williams91c00922007-01-02 13:52:30 -07001903 /* 1/ if we prexor'd then the dest is reused as a source
1904 * 2/ if we did not prexor then we are redoing the parity
1905 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1906 * for the synchronous xor case
1907 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001908 last_stripe = !head_sh->batch_head ||
1909 list_first_entry(&sh->batch_list,
1910 struct stripe_head, batch_list) == head_sh;
1911 if (last_stripe) {
1912 flags = ASYNC_TX_ACK |
1913 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
Dan Williams91c00922007-01-02 13:52:30 -07001914
shli@kernel.org59fc6302014-12-15 12:57:03 +11001915 atomic_inc(&head_sh->count);
1916 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, head_sh,
1917 to_addr_conv(sh, percpu, j));
1918 } else {
1919 flags = prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST;
1920 init_async_submit(&submit, flags, tx, NULL, NULL,
1921 to_addr_conv(sh, percpu, j));
1922 }
Dan Williams91c00922007-01-02 13:52:30 -07001923
Dan Williamsa08abd82009-06-03 11:43:59 -07001924 if (unlikely(count == 1))
1925 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1926 else
1927 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001928 if (!last_stripe) {
1929 j++;
1930 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1931 batch_list);
1932 goto again;
1933 }
Dan Williams91c00922007-01-02 13:52:30 -07001934}
1935
Dan Williamsac6b53b2009-07-14 13:40:19 -07001936static void
1937ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1938 struct dma_async_tx_descriptor *tx)
1939{
1940 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001941 struct page **blocks;
1942 int count, i, j = 0;
1943 struct stripe_head *head_sh = sh;
1944 int last_stripe;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001945 int synflags;
1946 unsigned long txflags;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001947
1948 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1949
Shaohua Li620125f2012-10-11 13:49:05 +11001950 for (i = 0; i < sh->disks; i++) {
1951 if (sh->pd_idx == i || sh->qd_idx == i)
1952 continue;
1953 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1954 break;
1955 }
1956 if (i >= sh->disks) {
1957 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001958 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1959 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1960 ops_complete_reconstruct(sh);
1961 return;
1962 }
1963
shli@kernel.org59fc6302014-12-15 12:57:03 +11001964again:
1965 blocks = to_addr_page(percpu, j);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001966
1967 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1968 synflags = SYNDROME_SRC_WRITTEN;
1969 txflags = ASYNC_TX_ACK | ASYNC_TX_PQ_XOR_DST;
1970 } else {
1971 synflags = SYNDROME_SRC_ALL;
1972 txflags = ASYNC_TX_ACK;
1973 }
1974
1975 count = set_syndrome_sources(blocks, sh, synflags);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001976 last_stripe = !head_sh->batch_head ||
1977 list_first_entry(&sh->batch_list,
1978 struct stripe_head, batch_list) == head_sh;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001979
shli@kernel.org59fc6302014-12-15 12:57:03 +11001980 if (last_stripe) {
1981 atomic_inc(&head_sh->count);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001982 init_async_submit(&submit, txflags, tx, ops_complete_reconstruct,
shli@kernel.org59fc6302014-12-15 12:57:03 +11001983 head_sh, to_addr_conv(sh, percpu, j));
1984 } else
1985 init_async_submit(&submit, 0, tx, NULL, NULL,
1986 to_addr_conv(sh, percpu, j));
Shaohua Li48769692015-05-13 09:30:08 -07001987 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001988 if (!last_stripe) {
1989 j++;
1990 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1991 batch_list);
1992 goto again;
1993 }
Dan Williams91c00922007-01-02 13:52:30 -07001994}
1995
1996static void ops_complete_check(void *stripe_head_ref)
1997{
1998 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001999
Harvey Harrisone46b272b2008-04-28 02:15:50 -07002000 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07002001 (unsigned long long)sh->sector);
2002
Dan Williamsecc65c92008-06-28 08:31:57 +10002003 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07002004 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002005 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07002006}
2007
Dan Williamsac6b53b2009-07-14 13:40:19 -07002008static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07002009{
Dan Williams91c00922007-01-02 13:52:30 -07002010 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002011 int pd_idx = sh->pd_idx;
2012 int qd_idx = sh->qd_idx;
2013 struct page *xor_dest;
shli@kernel.org46d5b782014-12-15 12:57:02 +11002014 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07002015 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07002016 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002017 int count;
2018 int i;
Dan Williams91c00922007-01-02 13:52:30 -07002019
Harvey Harrisone46b272b2008-04-28 02:15:50 -07002020 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07002021 (unsigned long long)sh->sector);
2022
shli@kernel.org59fc6302014-12-15 12:57:03 +11002023 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002024 count = 0;
2025 xor_dest = sh->dev[pd_idx].page;
2026 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07002027 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07002028 if (i == pd_idx || i == qd_idx)
2029 continue;
2030 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07002031 }
2032
Dan Williamsd6f38f32009-07-14 11:50:52 -07002033 init_async_submit(&submit, 0, NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11002034 to_addr_conv(sh, percpu, 0));
Dan Williams099f53c2009-04-08 14:28:37 -07002035 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07002036 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07002037
Dan Williams91c00922007-01-02 13:52:30 -07002038 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07002039 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
2040 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07002041}
2042
Dan Williamsac6b53b2009-07-14 13:40:19 -07002043static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
2044{
shli@kernel.org46d5b782014-12-15 12:57:02 +11002045 struct page **srcs = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002046 struct async_submit_ctl submit;
2047 int count;
2048
2049 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
2050 (unsigned long long)sh->sector, checkp);
2051
shli@kernel.org59fc6302014-12-15 12:57:03 +11002052 BUG_ON(sh->batch_head);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002053 count = set_syndrome_sources(srcs, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002054 if (!checkp)
2055 srcs[count] = NULL;
2056
2057 atomic_inc(&sh->count);
2058 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
shli@kernel.org46d5b782014-12-15 12:57:02 +11002059 sh, to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07002060 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
2061 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
2062}
2063
NeilBrown51acbce2013-02-28 09:08:34 +11002064static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07002065{
2066 int overlap_clear = 0, i, disks = sh->disks;
2067 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11002068 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002069 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002070 struct raid5_percpu *percpu;
2071 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07002072
Dan Williamsd6f38f32009-07-14 11:50:52 -07002073 cpu = get_cpu();
2074 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10002075 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07002076 ops_run_biofill(sh);
2077 overlap_clear++;
2078 }
2079
Dan Williams7b3a8712008-06-28 08:32:09 +10002080 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07002081 if (level < 6)
2082 tx = ops_run_compute5(sh, percpu);
2083 else {
2084 if (sh->ops.target2 < 0 || sh->ops.target < 0)
2085 tx = ops_run_compute6_1(sh, percpu);
2086 else
2087 tx = ops_run_compute6_2(sh, percpu);
2088 }
2089 /* terminate the chain if reconstruct is not set to be run */
2090 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10002091 async_tx_ack(tx);
2092 }
Dan Williams91c00922007-01-02 13:52:30 -07002093
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01002094 if (test_bit(STRIPE_OP_PARTIAL_PARITY, &ops_request))
2095 tx = ops_run_partial_parity(sh, percpu, tx);
2096
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002097 if (test_bit(STRIPE_OP_PREXOR, &ops_request)) {
2098 if (level < 6)
2099 tx = ops_run_prexor5(sh, percpu, tx);
2100 else
2101 tx = ops_run_prexor6(sh, percpu, tx);
2102 }
Dan Williams91c00922007-01-02 13:52:30 -07002103
Dan Williams600aa102008-06-28 08:32:05 +10002104 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10002105 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07002106 overlap_clear++;
2107 }
2108
Dan Williamsac6b53b2009-07-14 13:40:19 -07002109 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
2110 if (level < 6)
2111 ops_run_reconstruct5(sh, percpu, tx);
2112 else
2113 ops_run_reconstruct6(sh, percpu, tx);
2114 }
Dan Williams91c00922007-01-02 13:52:30 -07002115
Dan Williamsac6b53b2009-07-14 13:40:19 -07002116 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
2117 if (sh->check_state == check_state_run)
2118 ops_run_check_p(sh, percpu);
2119 else if (sh->check_state == check_state_run_q)
2120 ops_run_check_pq(sh, percpu, 0);
2121 else if (sh->check_state == check_state_run_pq)
2122 ops_run_check_pq(sh, percpu, 1);
2123 else
2124 BUG();
2125 }
Dan Williams91c00922007-01-02 13:52:30 -07002126
shli@kernel.org59fc6302014-12-15 12:57:03 +11002127 if (overlap_clear && !sh->batch_head)
Dan Williams91c00922007-01-02 13:52:30 -07002128 for (i = disks; i--; ) {
2129 struct r5dev *dev = &sh->dev[i];
2130 if (test_and_clear_bit(R5_Overlap, &dev->flags))
2131 wake_up(&sh->raid_conf->wait_for_overlap);
2132 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07002133 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07002134}
2135
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002136static struct stripe_head *alloc_stripe(struct kmem_cache *sc, gfp_t gfp,
2137 int disks)
NeilBrownf18c1a32015-05-08 18:19:04 +10002138{
2139 struct stripe_head *sh;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002140 int i;
NeilBrownf18c1a32015-05-08 18:19:04 +10002141
2142 sh = kmem_cache_zalloc(sc, gfp);
2143 if (sh) {
2144 spin_lock_init(&sh->stripe_lock);
2145 spin_lock_init(&sh->batch_lock);
2146 INIT_LIST_HEAD(&sh->batch_list);
2147 INIT_LIST_HEAD(&sh->lru);
Song Liua39f7af2016-11-17 15:24:40 -08002148 INIT_LIST_HEAD(&sh->r5c);
Song Liud7bd3982016-11-23 22:50:39 -08002149 INIT_LIST_HEAD(&sh->log_list);
NeilBrownf18c1a32015-05-08 18:19:04 +10002150 atomic_set(&sh->count, 1);
Song Liua39f7af2016-11-17 15:24:40 -08002151 sh->log_start = MaxSector;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002152 for (i = 0; i < disks; i++) {
2153 struct r5dev *dev = &sh->dev[i];
2154
Ming Lei3a83f462016-11-22 08:57:21 -07002155 bio_init(&dev->req, &dev->vec, 1);
2156 bio_init(&dev->rreq, &dev->rvec, 1);
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002157 }
NeilBrownf18c1a32015-05-08 18:19:04 +10002158 }
2159 return sh;
2160}
NeilBrown486f0642015-02-25 12:10:35 +11002161static int grow_one_stripe(struct r5conf *conf, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
2163 struct stripe_head *sh;
NeilBrownf18c1a32015-05-08 18:19:04 +10002164
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002165 sh = alloc_stripe(conf->slab_cache, gfp, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -08002166 if (!sh)
2167 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10002168
NeilBrown3f294f42005-11-08 21:39:25 -08002169 sh->raid_conf = conf;
NeilBrown3f294f42005-11-08 21:39:25 -08002170
NeilBrowna9683a72015-02-25 12:02:51 +11002171 if (grow_buffers(sh, gfp)) {
NeilBrowne4e11e32010-06-16 16:45:16 +10002172 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002173 kmem_cache_free(conf->slab_cache, sh);
2174 return 0;
2175 }
NeilBrown486f0642015-02-25 12:10:35 +11002176 sh->hash_lock_index =
2177 conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
NeilBrown3f294f42005-11-08 21:39:25 -08002178 /* we just created an active stripe so... */
NeilBrown3f294f42005-11-08 21:39:25 -08002179 atomic_inc(&conf->active_stripes);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002180
Shaohua Li6d036f72015-08-13 14:31:57 -07002181 raid5_release_stripe(sh);
NeilBrown486f0642015-02-25 12:10:35 +11002182 conf->max_nr_stripes++;
NeilBrown3f294f42005-11-08 21:39:25 -08002183 return 1;
2184}
2185
NeilBrownd1688a62011-10-11 16:49:52 +11002186static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08002187{
Christoph Lametere18b8902006-12-06 20:33:20 -08002188 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11002189 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
NeilBrownf4be6b42010-06-01 19:37:25 +10002191 if (conf->mddev->gendisk)
2192 sprintf(conf->cache_name[0],
2193 "raid%d-%s", conf->level, mdname(conf->mddev));
2194 else
2195 sprintf(conf->cache_name[0],
2196 "raid%d-%p", conf->level, conf->mddev);
2197 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
2198
NeilBrownad01c9e2006-03-27 01:18:07 -08002199 conf->active_name = 0;
2200 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002202 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 if (!sc)
2204 return 1;
2205 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002206 conf->pool_size = devs;
NeilBrown486f0642015-02-25 12:10:35 +11002207 while (num--)
2208 if (!grow_one_stripe(conf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 return 1;
NeilBrown486f0642015-02-25 12:10:35 +11002210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 return 0;
2212}
NeilBrown29269552006-03-27 01:18:10 -08002213
Dan Williamsd6f38f32009-07-14 11:50:52 -07002214/**
2215 * scribble_len - return the required size of the scribble region
2216 * @num - total number of disks in the array
2217 *
2218 * The size must be enough to contain:
2219 * 1/ a struct page pointer for each device in the array +2
2220 * 2/ room to convert each entry in (1) to its corresponding dma
2221 * (dma_map_page()) or page (page_address()) address.
2222 *
2223 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
2224 * calculate over all devices (not just the data blocks), using zeros in place
2225 * of the P and Q blocks.
2226 */
shli@kernel.org46d5b782014-12-15 12:57:02 +11002227static struct flex_array *scribble_alloc(int num, int cnt, gfp_t flags)
Dan Williamsd6f38f32009-07-14 11:50:52 -07002228{
shli@kernel.org46d5b782014-12-15 12:57:02 +11002229 struct flex_array *ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002230 size_t len;
2231
2232 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002233 ret = flex_array_alloc(len, cnt, flags);
2234 if (!ret)
2235 return NULL;
2236 /* always prealloc all elements, so no locking is required */
2237 if (flex_array_prealloc(ret, 0, cnt, flags)) {
2238 flex_array_free(ret);
2239 return NULL;
2240 }
2241 return ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002242}
2243
NeilBrown738a2732015-05-08 18:19:39 +10002244static int resize_chunks(struct r5conf *conf, int new_disks, int new_sectors)
2245{
2246 unsigned long cpu;
2247 int err = 0;
2248
Shaohua Li27a353c2016-02-24 17:38:28 -08002249 /*
2250 * Never shrink. And mddev_suspend() could deadlock if this is called
2251 * from raid5d. In that case, scribble_disks and scribble_sectors
2252 * should equal to new_disks and new_sectors
2253 */
2254 if (conf->scribble_disks >= new_disks &&
2255 conf->scribble_sectors >= new_sectors)
2256 return 0;
NeilBrown738a2732015-05-08 18:19:39 +10002257 mddev_suspend(conf->mddev);
2258 get_online_cpus();
2259 for_each_present_cpu(cpu) {
2260 struct raid5_percpu *percpu;
2261 struct flex_array *scribble;
2262
2263 percpu = per_cpu_ptr(conf->percpu, cpu);
2264 scribble = scribble_alloc(new_disks,
2265 new_sectors / STRIPE_SECTORS,
2266 GFP_NOIO);
2267
2268 if (scribble) {
2269 flex_array_free(percpu->scribble);
2270 percpu->scribble = scribble;
2271 } else {
2272 err = -ENOMEM;
2273 break;
2274 }
2275 }
2276 put_online_cpus();
2277 mddev_resume(conf->mddev);
Shaohua Li27a353c2016-02-24 17:38:28 -08002278 if (!err) {
2279 conf->scribble_disks = new_disks;
2280 conf->scribble_sectors = new_sectors;
2281 }
NeilBrown738a2732015-05-08 18:19:39 +10002282 return err;
2283}
2284
NeilBrownd1688a62011-10-11 16:49:52 +11002285static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08002286{
2287 /* Make all the stripes able to hold 'newsize' devices.
2288 * New slots in each stripe get 'page' set to a new page.
2289 *
2290 * This happens in stages:
2291 * 1/ create a new kmem_cache and allocate the required number of
2292 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09002293 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08002294 * to the new stripe_heads. This will have the side effect of
2295 * freezing the array as once all stripe_heads have been collected,
2296 * no IO will be possible. Old stripe heads are freed once their
2297 * pages have been transferred over, and the old kmem_cache is
2298 * freed when all stripes are done.
2299 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
2300 * we simple return a failre status - no need to clean anything up.
2301 * 4/ allocate new pages for the new slots in the new stripe_heads.
2302 * If this fails, we don't bother trying the shrink the
2303 * stripe_heads down again, we just leave them as they are.
2304 * As each stripe_head is processed the new one is released into
2305 * active service.
2306 *
2307 * Once step2 is started, we cannot afford to wait for a write,
2308 * so we use GFP_NOIO allocations.
2309 */
2310 struct stripe_head *osh, *nsh;
2311 LIST_HEAD(newstripes);
2312 struct disk_info *ndisks;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002313 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08002314 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002315 int i;
Shaohua Li566c09c2013-11-14 15:16:17 +11002316 int hash, cnt;
NeilBrownad01c9e2006-03-27 01:18:07 -08002317
2318 if (newsize <= conf->pool_size)
2319 return 0; /* never bother to shrink */
2320
Dan Williamsb5470dc2008-06-27 21:44:04 -07002321 err = md_allow_write(conf->mddev);
2322 if (err)
2323 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002324
NeilBrownad01c9e2006-03-27 01:18:07 -08002325 /* Step 1 */
2326 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
2327 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002328 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002329 if (!sc)
2330 return -ENOMEM;
2331
NeilBrown2d5b5692015-07-06 12:49:23 +10002332 /* Need to ensure auto-resizing doesn't interfere */
2333 mutex_lock(&conf->cache_size_mutex);
2334
NeilBrownad01c9e2006-03-27 01:18:07 -08002335 for (i = conf->max_nr_stripes; i; i--) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002336 nsh = alloc_stripe(sc, GFP_KERNEL, newsize);
NeilBrownad01c9e2006-03-27 01:18:07 -08002337 if (!nsh)
2338 break;
2339
NeilBrownad01c9e2006-03-27 01:18:07 -08002340 nsh->raid_conf = conf;
NeilBrownad01c9e2006-03-27 01:18:07 -08002341 list_add(&nsh->lru, &newstripes);
2342 }
2343 if (i) {
2344 /* didn't get enough, give up */
2345 while (!list_empty(&newstripes)) {
2346 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2347 list_del(&nsh->lru);
2348 kmem_cache_free(sc, nsh);
2349 }
2350 kmem_cache_destroy(sc);
NeilBrown2d5b5692015-07-06 12:49:23 +10002351 mutex_unlock(&conf->cache_size_mutex);
NeilBrownad01c9e2006-03-27 01:18:07 -08002352 return -ENOMEM;
2353 }
2354 /* Step 2 - Must use GFP_NOIO now.
2355 * OK, we have enough stripes, start collecting inactive
2356 * stripes and copying them over
2357 */
Shaohua Li566c09c2013-11-14 15:16:17 +11002358 hash = 0;
2359 cnt = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002360 list_for_each_entry(nsh, &newstripes, lru) {
Shaohua Li566c09c2013-11-14 15:16:17 +11002361 lock_device_hash_lock(conf, hash);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08002362 wait_event_cmd(conf->wait_for_stripe,
Shaohua Li566c09c2013-11-14 15:16:17 +11002363 !list_empty(conf->inactive_list + hash),
2364 unlock_device_hash_lock(conf, hash),
2365 lock_device_hash_lock(conf, hash));
2366 osh = get_free_stripe(conf, hash);
2367 unlock_device_hash_lock(conf, hash);
NeilBrownf18c1a32015-05-08 18:19:04 +10002368
Shaohua Lid592a992014-05-21 17:57:44 +08002369 for(i=0; i<conf->pool_size; i++) {
NeilBrownad01c9e2006-03-27 01:18:07 -08002370 nsh->dev[i].page = osh->dev[i].page;
Shaohua Lid592a992014-05-21 17:57:44 +08002371 nsh->dev[i].orig_page = osh->dev[i].page;
2372 }
Shaohua Li566c09c2013-11-14 15:16:17 +11002373 nsh->hash_lock_index = hash;
NeilBrownad01c9e2006-03-27 01:18:07 -08002374 kmem_cache_free(conf->slab_cache, osh);
Shaohua Li566c09c2013-11-14 15:16:17 +11002375 cnt++;
2376 if (cnt >= conf->max_nr_stripes / NR_STRIPE_HASH_LOCKS +
2377 !!((conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS) > hash)) {
2378 hash++;
2379 cnt = 0;
2380 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002381 }
2382 kmem_cache_destroy(conf->slab_cache);
2383
2384 /* Step 3.
2385 * At this point, we are holding all the stripes so the array
2386 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07002387 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08002388 */
2389 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
2390 if (ndisks) {
Song Liud7bd3982016-11-23 22:50:39 -08002391 for (i = 0; i < conf->pool_size; i++)
NeilBrownad01c9e2006-03-27 01:18:07 -08002392 ndisks[i] = conf->disks[i];
Song Liud7bd3982016-11-23 22:50:39 -08002393
2394 for (i = conf->pool_size; i < newsize; i++) {
2395 ndisks[i].extra_page = alloc_page(GFP_NOIO);
2396 if (!ndisks[i].extra_page)
2397 err = -ENOMEM;
2398 }
2399
2400 if (err) {
2401 for (i = conf->pool_size; i < newsize; i++)
2402 if (ndisks[i].extra_page)
2403 put_page(ndisks[i].extra_page);
2404 kfree(ndisks);
2405 } else {
2406 kfree(conf->disks);
2407 conf->disks = ndisks;
2408 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002409 } else
2410 err = -ENOMEM;
2411
NeilBrown2d5b5692015-07-06 12:49:23 +10002412 mutex_unlock(&conf->cache_size_mutex);
NeilBrownad01c9e2006-03-27 01:18:07 -08002413 /* Step 4, return new stripes to service */
2414 while(!list_empty(&newstripes)) {
2415 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2416 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002417
NeilBrownad01c9e2006-03-27 01:18:07 -08002418 for (i=conf->raid_disks; i < newsize; i++)
2419 if (nsh->dev[i].page == NULL) {
2420 struct page *p = alloc_page(GFP_NOIO);
2421 nsh->dev[i].page = p;
Shaohua Lid592a992014-05-21 17:57:44 +08002422 nsh->dev[i].orig_page = p;
NeilBrownad01c9e2006-03-27 01:18:07 -08002423 if (!p)
2424 err = -ENOMEM;
2425 }
Shaohua Li6d036f72015-08-13 14:31:57 -07002426 raid5_release_stripe(nsh);
NeilBrownad01c9e2006-03-27 01:18:07 -08002427 }
2428 /* critical section pass, GFP_NOIO no longer needed */
2429
2430 conf->slab_cache = sc;
2431 conf->active_name = 1-conf->active_name;
NeilBrown6e9eac22015-05-08 18:19:34 +10002432 if (!err)
2433 conf->pool_size = newsize;
NeilBrownad01c9e2006-03-27 01:18:07 -08002434 return err;
2435}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
NeilBrown486f0642015-02-25 12:10:35 +11002437static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
2439 struct stripe_head *sh;
NeilBrown49895bc2015-08-03 17:09:57 +10002440 int hash = (conf->max_nr_stripes - 1) & STRIPE_HASH_LOCKS_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Shaohua Li566c09c2013-11-14 15:16:17 +11002442 spin_lock_irq(conf->hash_locks + hash);
2443 sh = get_free_stripe(conf, hash);
2444 spin_unlock_irq(conf->hash_locks + hash);
NeilBrown3f294f42005-11-08 21:39:25 -08002445 if (!sh)
2446 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002447 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10002448 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002449 kmem_cache_free(conf->slab_cache, sh);
2450 atomic_dec(&conf->active_stripes);
NeilBrown486f0642015-02-25 12:10:35 +11002451 conf->max_nr_stripes--;
NeilBrown3f294f42005-11-08 21:39:25 -08002452 return 1;
2453}
2454
NeilBrownd1688a62011-10-11 16:49:52 +11002455static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08002456{
NeilBrown486f0642015-02-25 12:10:35 +11002457 while (conf->max_nr_stripes &&
2458 drop_one_stripe(conf))
2459 ;
NeilBrown3f294f42005-11-08 21:39:25 -08002460
Julia Lawall644df1a2015-09-13 14:15:10 +02002461 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 conf->slab_cache = NULL;
2463}
2464
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002465static void raid5_end_read_request(struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
NeilBrown99c0fb52009-03-31 14:39:38 +11002467 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002468 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002469 int disks = sh->disks, i;
NeilBrownd6950432006-07-10 04:44:20 -07002470 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11002471 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10002472 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
2474 for (i=0 ; i<disks; i++)
2475 if (bi == &sh->dev[i].req)
2476 break;
2477
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002478 pr_debug("end_read_request %llu/%d, count: %d, error %d.\n",
Dan Williams45b42332007-07-09 11:56:43 -07002479 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002480 bi->bi_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002482 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002484 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 }
NeilBrown14a75d32011-12-23 10:17:52 +11002486 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11002487 /* If replacement finished while this request was outstanding,
2488 * 'replacement' might be NULL already.
2489 * In that case it moved down to 'rdev'.
2490 * rdev is not removed until all requests are finished.
2491 */
NeilBrown14a75d32011-12-23 10:17:52 +11002492 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002493 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11002494 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
NeilBrown05616be2012-05-21 09:27:00 +10002496 if (use_new_offset(conf, sh))
2497 s = sh->sector + rdev->new_data_offset;
2498 else
2499 s = sh->sector + rdev->data_offset;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002500 if (!bi->bi_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08002502 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11002503 /* Note that this cannot happen on a
2504 * replacement device. We just fail those on
2505 * any error
2506 */
NeilBrowncc6167b2016-11-02 14:16:50 +11002507 pr_info_ratelimited(
2508 "md/raid:%s: read error corrected (%lu sectors at %llu on %s)\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002509 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10002510 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002511 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10002512 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08002513 clear_bit(R5_ReadError, &sh->dev[i].flags);
2514 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10002515 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2516 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2517
Song Liu86aa1392017-01-12 17:22:41 -08002518 if (test_bit(R5_InJournal, &sh->dev[i].flags))
2519 /*
2520 * end read for a page in journal, this
2521 * must be preparing for prexor in rmw
2522 */
2523 set_bit(R5_OrigPageUPTDODATE, &sh->dev[i].flags);
2524
NeilBrown14a75d32011-12-23 10:17:52 +11002525 if (atomic_read(&rdev->read_errors))
2526 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11002528 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08002529 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10002530 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07002531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07002533 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11002534 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowncc6167b2016-11-02 14:16:50 +11002535 pr_warn_ratelimited(
2536 "md/raid:%s: read error on replacement device (sector %llu on %s).\n",
NeilBrown14a75d32011-12-23 10:17:52 +11002537 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002538 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11002539 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002540 else if (conf->mddev->degraded >= conf->max_degraded) {
2541 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002542 pr_warn_ratelimited(
2543 "md/raid:%s: read error not correctable (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002544 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002545 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002546 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002547 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08002548 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10002549 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002550 pr_warn_ratelimited(
2551 "md/raid:%s: read error NOT corrected!! (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002552 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002553 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002554 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002555 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08002556 > conf->max_nr_stripes)
NeilBrowncc6167b2016-11-02 14:16:50 +11002557 pr_warn("md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07002558 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08002559 else
2560 retry = 1;
Bian Yuedfa1f62013-11-14 15:16:17 +11002561 if (set_bad && test_bit(In_sync, &rdev->flags)
2562 && !test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2563 retry = 1;
NeilBrownba22dcb2005-11-08 21:39:31 -08002564 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10002565 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
2566 set_bit(R5_ReadError, &sh->dev[i].flags);
2567 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2568 } else
2569 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08002570 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08002571 clear_bit(R5_ReadError, &sh->dev[i].flags);
2572 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10002573 if (!(set_bad
2574 && test_bit(In_sync, &rdev->flags)
2575 && rdev_set_badblocks(
2576 rdev, sh->sector, STRIPE_SECTORS, 0)))
2577 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08002578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 }
NeilBrown14a75d32011-12-23 10:17:52 +11002580 rdev_dec_pending(rdev, conf->mddev);
Shaohua Lic9445552016-09-08 10:43:58 -07002581 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2583 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002584 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585}
2586
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002587static void raid5_end_write_request(struct bio *bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588{
NeilBrown99c0fb52009-03-31 14:39:38 +11002589 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002590 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002591 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11002592 struct md_rdev *uninitialized_var(rdev);
NeilBrownb84db562011-07-28 11:39:23 +10002593 sector_t first_bad;
2594 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11002595 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
NeilBrown977df362011-12-23 10:17:53 +11002597 for (i = 0 ; i < disks; i++) {
2598 if (bi == &sh->dev[i].req) {
2599 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 break;
NeilBrown977df362011-12-23 10:17:53 +11002601 }
2602 if (bi == &sh->dev[i].rreq) {
2603 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002604 if (rdev)
2605 replacement = 1;
2606 else
2607 /* rdev was removed and 'replacement'
2608 * replaced it. rdev is not removed
2609 * until all requests are finished.
2610 */
2611 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11002612 break;
2613 }
2614 }
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002615 pr_debug("end_write_request %llu/%d, count %d, error: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002617 bi->bi_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002619 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002621 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
2623
NeilBrown977df362011-12-23 10:17:53 +11002624 if (replacement) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002625 if (bi->bi_error)
NeilBrown977df362011-12-23 10:17:53 +11002626 md_error(conf->mddev, rdev);
2627 else if (is_badblock(rdev, sh->sector,
2628 STRIPE_SECTORS,
2629 &first_bad, &bad_sectors))
2630 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2631 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002632 if (bi->bi_error) {
NeilBrown9f97e4b2014-01-16 09:35:38 +11002633 set_bit(STRIPE_DEGRADED, &sh->state);
NeilBrown977df362011-12-23 10:17:53 +11002634 set_bit(WriteErrorSeen, &rdev->flags);
2635 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002636 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2637 set_bit(MD_RECOVERY_NEEDED,
2638 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002639 } else if (is_badblock(rdev, sh->sector,
2640 STRIPE_SECTORS,
NeilBrownc0b32972013-04-24 11:42:42 +10002641 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002642 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002643 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2644 /* That was a successful write so make
2645 * sure it looks like we already did
2646 * a re-write.
2647 */
2648 set_bit(R5_ReWrite, &sh->dev[i].flags);
2649 }
NeilBrown977df362011-12-23 10:17:53 +11002650 }
2651 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002653 if (sh->batch_head && bi->bi_error && !replacement)
shli@kernel.org72ac7332014-12-15 12:57:03 +11002654 set_bit(STRIPE_BATCH_ERR, &sh->batch_head->state);
2655
Shaohua Lic9445552016-09-08 10:43:58 -07002656 bio_reset(bi);
NeilBrown977df362011-12-23 10:17:53 +11002657 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2658 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002660 raid5_release_stripe(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002661
2662 if (sh->batch_head && sh != sh->batch_head)
Shaohua Li6d036f72015-08-13 14:31:57 -07002663 raid5_release_stripe(sh->batch_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664}
2665
NeilBrown784052e2009-03-31 15:19:07 +11002666static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
2668 struct r5dev *dev = &sh->dev[i];
2669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 dev->flags = 0;
Shaohua Li6d036f72015-08-13 14:31:57 -07002671 dev->sector = raid5_compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672}
2673
Shaohua Li849674e2016-01-20 13:52:20 -08002674static void raid5_error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675{
2676 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002677 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002678 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002679 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
NeilBrown908f4fb2011-12-23 10:17:50 +11002681 spin_lock_irqsave(&conf->device_lock, flags);
2682 clear_bit(In_sync, &rdev->flags);
Song Liu2e38a372017-01-24 10:45:30 -08002683 mddev->degraded = raid5_calc_degraded(conf);
NeilBrown908f4fb2011-12-23 10:17:50 +11002684 spin_unlock_irqrestore(&conf->device_lock, flags);
2685 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2686
NeilBrownde393cd2011-07-28 11:31:48 +10002687 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10002688 set_bit(Faulty, &rdev->flags);
Shaohua Li29530792016-12-08 15:48:19 -08002689 set_mask_bits(&mddev->sb_flags, 0,
2690 BIT(MD_SB_CHANGE_DEVS) | BIT(MD_SB_CHANGE_PENDING));
NeilBrowncc6167b2016-11-02 14:16:50 +11002691 pr_crit("md/raid:%s: Disk failure on %s, disabling device.\n"
2692 "md/raid:%s: Operation continuing on %d devices.\n",
2693 mdname(mddev),
2694 bdevname(rdev->bdev, b),
2695 mdname(mddev),
2696 conf->raid_disks - mddev->degraded);
Song Liu2e38a372017-01-24 10:45:30 -08002697 r5c_update_on_rdev_error(mddev);
NeilBrown16a53ec2006-06-26 00:27:38 -07002698}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
2700/*
2701 * Input: a 'big' sector number,
2702 * Output: index of the data and parity disk, and the sector # in them.
2703 */
Shaohua Li6d036f72015-08-13 14:31:57 -07002704sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
2705 int previous, int *dd_idx,
2706 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002708 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002709 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002711 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002712 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002714 int algorithm = previous ? conf->prev_algo
2715 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002716 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2717 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002718 int raid_disks = previous ? conf->previous_raid_disks
2719 : conf->raid_disks;
2720 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722 /* First compute the information on this sector */
2723
2724 /*
2725 * Compute the chunk number and the sector offset inside the chunk
2726 */
2727 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2728 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730 /*
2731 * Compute the stripe number
2732 */
NeilBrown35f2a592010-04-20 14:13:34 +10002733 stripe = chunk_number;
2734 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002735 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 /*
2737 * Select the parity disk based on the user selected algorithm.
2738 */
NeilBrown84789552011-07-27 11:00:36 +10002739 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002740 switch(conf->level) {
2741 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002742 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002743 break;
2744 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002745 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002747 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002748 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 (*dd_idx)++;
2750 break;
2751 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002752 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002753 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 (*dd_idx)++;
2755 break;
2756 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002757 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002758 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 break;
2760 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002761 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002762 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002764 case ALGORITHM_PARITY_0:
2765 pd_idx = 0;
2766 (*dd_idx)++;
2767 break;
2768 case ALGORITHM_PARITY_N:
2769 pd_idx = data_disks;
2770 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002772 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002773 }
2774 break;
2775 case 6:
2776
NeilBrowne183eae2009-03-31 15:20:22 +11002777 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002778 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002779 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002780 qd_idx = pd_idx + 1;
2781 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002782 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002783 qd_idx = 0;
2784 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002785 (*dd_idx) += 2; /* D D P Q D */
2786 break;
2787 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002788 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002789 qd_idx = pd_idx + 1;
2790 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002791 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002792 qd_idx = 0;
2793 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002794 (*dd_idx) += 2; /* D D P Q D */
2795 break;
2796 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002797 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002798 qd_idx = (pd_idx + 1) % raid_disks;
2799 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002800 break;
2801 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002802 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002803 qd_idx = (pd_idx + 1) % raid_disks;
2804 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002805 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002806
2807 case ALGORITHM_PARITY_0:
2808 pd_idx = 0;
2809 qd_idx = 1;
2810 (*dd_idx) += 2;
2811 break;
2812 case ALGORITHM_PARITY_N:
2813 pd_idx = data_disks;
2814 qd_idx = data_disks + 1;
2815 break;
2816
2817 case ALGORITHM_ROTATING_ZERO_RESTART:
2818 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2819 * of blocks for computing Q is different.
2820 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002821 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002822 qd_idx = pd_idx + 1;
2823 if (pd_idx == raid_disks-1) {
2824 (*dd_idx)++; /* Q D D D P */
2825 qd_idx = 0;
2826 } else if (*dd_idx >= pd_idx)
2827 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002828 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002829 break;
2830
2831 case ALGORITHM_ROTATING_N_RESTART:
2832 /* Same a left_asymmetric, by first stripe is
2833 * D D D P Q rather than
2834 * Q D D D P
2835 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002836 stripe2 += 1;
2837 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002838 qd_idx = pd_idx + 1;
2839 if (pd_idx == raid_disks-1) {
2840 (*dd_idx)++; /* Q D D D P */
2841 qd_idx = 0;
2842 } else if (*dd_idx >= pd_idx)
2843 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002844 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002845 break;
2846
2847 case ALGORITHM_ROTATING_N_CONTINUE:
2848 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002849 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002850 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2851 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002852 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002853 break;
2854
2855 case ALGORITHM_LEFT_ASYMMETRIC_6:
2856 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002857 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002858 if (*dd_idx >= pd_idx)
2859 (*dd_idx)++;
2860 qd_idx = raid_disks - 1;
2861 break;
2862
2863 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002864 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002865 if (*dd_idx >= pd_idx)
2866 (*dd_idx)++;
2867 qd_idx = raid_disks - 1;
2868 break;
2869
2870 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002871 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002872 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2873 qd_idx = raid_disks - 1;
2874 break;
2875
2876 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002877 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002878 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2879 qd_idx = raid_disks - 1;
2880 break;
2881
2882 case ALGORITHM_PARITY_0_6:
2883 pd_idx = 0;
2884 (*dd_idx)++;
2885 qd_idx = raid_disks - 1;
2886 break;
2887
NeilBrown16a53ec2006-06-26 00:27:38 -07002888 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002889 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002890 }
2891 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 }
2893
NeilBrown911d4ee2009-03-31 14:39:38 +11002894 if (sh) {
2895 sh->pd_idx = pd_idx;
2896 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002897 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 /*
2900 * Finally, compute the new sector number
2901 */
2902 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2903 return new_sector;
2904}
2905
Shaohua Li6d036f72015-08-13 14:31:57 -07002906sector_t raid5_compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907{
NeilBrownd1688a62011-10-11 16:49:52 +11002908 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002909 int raid_disks = sh->disks;
2910 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002912 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2913 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002914 int algorithm = previous ? conf->prev_algo
2915 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 sector_t stripe;
2917 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002918 sector_t chunk_number;
2919 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002921 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2924 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
NeilBrown16a53ec2006-06-26 00:27:38 -07002926 if (i == sh->pd_idx)
2927 return 0;
2928 switch(conf->level) {
2929 case 4: break;
2930 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002931 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 case ALGORITHM_LEFT_ASYMMETRIC:
2933 case ALGORITHM_RIGHT_ASYMMETRIC:
2934 if (i > sh->pd_idx)
2935 i--;
2936 break;
2937 case ALGORITHM_LEFT_SYMMETRIC:
2938 case ALGORITHM_RIGHT_SYMMETRIC:
2939 if (i < sh->pd_idx)
2940 i += raid_disks;
2941 i -= (sh->pd_idx + 1);
2942 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002943 case ALGORITHM_PARITY_0:
2944 i -= 1;
2945 break;
2946 case ALGORITHM_PARITY_N:
2947 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002949 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002950 }
2951 break;
2952 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002953 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002954 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002955 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002956 case ALGORITHM_LEFT_ASYMMETRIC:
2957 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002958 case ALGORITHM_ROTATING_ZERO_RESTART:
2959 case ALGORITHM_ROTATING_N_RESTART:
2960 if (sh->pd_idx == raid_disks-1)
2961 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002962 else if (i > sh->pd_idx)
2963 i -= 2; /* D D P Q D */
2964 break;
2965 case ALGORITHM_LEFT_SYMMETRIC:
2966 case ALGORITHM_RIGHT_SYMMETRIC:
2967 if (sh->pd_idx == raid_disks-1)
2968 i--; /* Q D D D P */
2969 else {
2970 /* D D P Q D */
2971 if (i < sh->pd_idx)
2972 i += raid_disks;
2973 i -= (sh->pd_idx + 2);
2974 }
2975 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002976 case ALGORITHM_PARITY_0:
2977 i -= 2;
2978 break;
2979 case ALGORITHM_PARITY_N:
2980 break;
2981 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002982 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002983 if (sh->pd_idx == 0)
2984 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002985 else {
2986 /* D D Q P D */
2987 if (i < sh->pd_idx)
2988 i += raid_disks;
2989 i -= (sh->pd_idx + 1);
2990 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002991 break;
2992 case ALGORITHM_LEFT_ASYMMETRIC_6:
2993 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2994 if (i > sh->pd_idx)
2995 i--;
2996 break;
2997 case ALGORITHM_LEFT_SYMMETRIC_6:
2998 case ALGORITHM_RIGHT_SYMMETRIC_6:
2999 if (i < sh->pd_idx)
3000 i += data_disks + 1;
3001 i -= (sh->pd_idx + 1);
3002 break;
3003 case ALGORITHM_PARITY_0_6:
3004 i -= 1;
3005 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07003006 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11003007 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07003008 }
3009 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 }
3011
3012 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10003013 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
NeilBrown112bf892009-03-31 14:39:38 +11003015 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11003016 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11003017 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
3018 || sh2.qd_idx != sh->qd_idx) {
NeilBrowncc6167b2016-11-02 14:16:50 +11003019 pr_warn("md/raid:%s: compute_blocknr: map not correct\n",
3020 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 return 0;
3022 }
3023 return r_sector;
3024}
3025
Song Liu07e83362017-01-23 17:12:58 -08003026/*
3027 * There are cases where we want handle_stripe_dirtying() and
3028 * schedule_reconstruction() to delay towrite to some dev of a stripe.
3029 *
3030 * This function checks whether we want to delay the towrite. Specifically,
3031 * we delay the towrite when:
3032 *
3033 * 1. degraded stripe has a non-overwrite to the missing dev, AND this
3034 * stripe has data in journal (for other devices).
3035 *
3036 * In this case, when reading data for the non-overwrite dev, it is
3037 * necessary to handle complex rmw of write back cache (prexor with
3038 * orig_page, and xor with page). To keep read path simple, we would
3039 * like to flush data in journal to RAID disks first, so complex rmw
3040 * is handled in the write patch (handle_stripe_dirtying).
3041 *
Song Liu39b99582017-01-24 14:08:23 -08003042 * 2. when journal space is critical (R5C_LOG_CRITICAL=1)
3043 *
3044 * It is important to be able to flush all stripes in raid5-cache.
3045 * Therefore, we need reserve some space on the journal device for
3046 * these flushes. If flush operation includes pending writes to the
3047 * stripe, we need to reserve (conf->raid_disk + 1) pages per stripe
3048 * for the flush out. If we exclude these pending writes from flush
3049 * operation, we only need (conf->max_degraded + 1) pages per stripe.
3050 * Therefore, excluding pending writes in these cases enables more
3051 * efficient use of the journal device.
3052 *
3053 * Note: To make sure the stripe makes progress, we only delay
3054 * towrite for stripes with data already in journal (injournal > 0).
3055 * When LOG_CRITICAL, stripes with injournal == 0 will be sent to
3056 * no_space_stripes list.
3057 *
Song Liu07e83362017-01-23 17:12:58 -08003058 */
Song Liu39b99582017-01-24 14:08:23 -08003059static inline bool delay_towrite(struct r5conf *conf,
3060 struct r5dev *dev,
3061 struct stripe_head_state *s)
Song Liu07e83362017-01-23 17:12:58 -08003062{
Song Liu39b99582017-01-24 14:08:23 -08003063 /* case 1 above */
3064 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
3065 !test_bit(R5_Insync, &dev->flags) && s->injournal)
3066 return true;
3067 /* case 2 above */
3068 if (test_bit(R5C_LOG_CRITICAL, &conf->cache_state) &&
3069 s->injournal > 0)
3070 return true;
3071 return false;
Song Liu07e83362017-01-23 17:12:58 -08003072}
3073
Dan Williams600aa102008-06-28 08:32:05 +10003074static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003075schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10003076 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07003077{
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003078 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11003079 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003080 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07003081
Dan Williamse33129d2007-01-02 13:52:30 -07003082 if (rcw) {
Song Liu1e6d6902016-11-17 15:24:39 -08003083 /*
3084 * In some cases, handle_stripe_dirtying initially decided to
3085 * run rmw and allocates extra page for prexor. However, rcw is
3086 * cheaper later on. We need to free the extra page now,
3087 * because we won't be able to do that in ops_complete_prexor().
3088 */
3089 r5c_release_extra_page(sh);
Dan Williamse33129d2007-01-02 13:52:30 -07003090
3091 for (i = disks; i--; ) {
3092 struct r5dev *dev = &sh->dev[i];
3093
Song Liu39b99582017-01-24 14:08:23 -08003094 if (dev->towrite && !delay_towrite(conf, dev, s)) {
Dan Williamse33129d2007-01-02 13:52:30 -07003095 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10003096 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07003097 if (!expand)
3098 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10003099 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08003100 } else if (test_bit(R5_InJournal, &dev->flags)) {
3101 set_bit(R5_LOCKED, &dev->flags);
3102 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07003103 }
3104 }
NeilBrownce7d3632013-03-04 12:37:14 +11003105 /* if we are not expanding this is a proper write request, and
3106 * there will be bios with new data to be drained into the
3107 * stripe cache
3108 */
3109 if (!expand) {
3110 if (!s->locked)
3111 /* False alarm, nothing to do */
3112 return;
3113 sh->reconstruct_state = reconstruct_state_drain_run;
3114 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
3115 } else
3116 sh->reconstruct_state = reconstruct_state_run;
3117
3118 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
3119
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003120 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003121 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003122 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07003123 } else {
3124 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
3125 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003126 BUG_ON(level == 6 &&
3127 (!(test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags) ||
3128 test_bit(R5_Wantcompute, &sh->dev[qd_idx].flags))));
Dan Williamse33129d2007-01-02 13:52:30 -07003129
Dan Williamse33129d2007-01-02 13:52:30 -07003130 for (i = disks; i--; ) {
3131 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003132 if (i == pd_idx || i == qd_idx)
Dan Williamse33129d2007-01-02 13:52:30 -07003133 continue;
3134
Dan Williamse33129d2007-01-02 13:52:30 -07003135 if (dev->towrite &&
3136 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10003137 test_bit(R5_Wantcompute, &dev->flags))) {
3138 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07003139 set_bit(R5_LOCKED, &dev->flags);
3140 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10003141 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08003142 } else if (test_bit(R5_InJournal, &dev->flags)) {
3143 set_bit(R5_LOCKED, &dev->flags);
3144 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07003145 }
3146 }
NeilBrownce7d3632013-03-04 12:37:14 +11003147 if (!s->locked)
3148 /* False alarm - nothing to do */
3149 return;
3150 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
3151 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
3152 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
3153 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07003154 }
3155
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003156 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07003157 * are in flight
3158 */
3159 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
3160 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10003161 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07003162
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003163 if (level == 6) {
3164 int qd_idx = sh->qd_idx;
3165 struct r5dev *dev = &sh->dev[qd_idx];
3166
3167 set_bit(R5_LOCKED, &dev->flags);
3168 clear_bit(R5_UPTODATE, &dev->flags);
3169 s->locked++;
3170 }
3171
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01003172 if (raid5_has_ppl(sh->raid_conf) &&
3173 test_bit(STRIPE_OP_BIODRAIN, &s->ops_request) &&
3174 !test_bit(STRIPE_FULL_WRITE, &sh->state) &&
3175 test_bit(R5_Insync, &sh->dev[pd_idx].flags))
3176 set_bit(STRIPE_OP_PARTIAL_PARITY, &s->ops_request);
3177
Dan Williams600aa102008-06-28 08:32:05 +10003178 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07003179 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10003180 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07003181}
NeilBrown16a53ec2006-06-26 00:27:38 -07003182
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183/*
3184 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07003185 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 * The bi_next chain must be in order.
3187 */
shli@kernel.orgda41ba62014-12-15 12:57:03 +11003188static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx,
3189 int forwrite, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190{
3191 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11003192 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07003193 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
NeilBrowncbe47ec2011-07-26 11:20:35 +10003195 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07003196 (unsigned long long)bi->bi_iter.bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 (unsigned long long)sh->sector);
3198
Shaohua Lib17459c2012-07-19 16:01:31 +10003199 /*
3200 * If several bio share a stripe. The bio bi_phys_segments acts as a
3201 * reference count to avoid race. The reference count should already be
3202 * increased before this function is called (for example, in
Shaohua Li849674e2016-01-20 13:52:20 -08003203 * raid5_make_request()), so other bio sharing this stripe will not free the
Shaohua Lib17459c2012-07-19 16:01:31 +10003204 * stripe. If a stripe is owned by one stripe, the stripe lock will
3205 * protect it.
3206 */
3207 spin_lock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003208 /* Don't allow new IO added to stripes in batch list */
3209 if (sh->batch_head)
3210 goto overlap;
NeilBrown72626682005-09-09 16:23:54 -07003211 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003213 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07003214 firstwrite = 1;
3215 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 bip = &sh->dev[dd_idx].toread;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003217 while (*bip && (*bip)->bi_iter.bi_sector < bi->bi_iter.bi_sector) {
3218 if (bio_end_sector(*bip) > bi->bi_iter.bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 goto overlap;
3220 bip = & (*bip)->bi_next;
3221 }
Kent Overstreet4f024f32013-10-11 15:44:27 -07003222 if (*bip && (*bip)->bi_iter.bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 goto overlap;
3224
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01003225 if (forwrite && raid5_has_ppl(conf)) {
3226 /*
3227 * With PPL only writes to consecutive data chunks within a
3228 * stripe are allowed because for a single stripe_head we can
3229 * only have one PPL entry at a time, which describes one data
3230 * range. Not really an overlap, but wait_for_overlap can be
3231 * used to handle this.
3232 */
3233 sector_t sector;
3234 sector_t first = 0;
3235 sector_t last = 0;
3236 int count = 0;
3237 int i;
3238
3239 for (i = 0; i < sh->disks; i++) {
3240 if (i != sh->pd_idx &&
3241 (i == dd_idx || sh->dev[i].towrite)) {
3242 sector = sh->dev[i].sector;
3243 if (count == 0 || sector < first)
3244 first = sector;
3245 if (sector > last)
3246 last = sector;
3247 count++;
3248 }
3249 }
3250
3251 if (first + conf->chunk_sectors * (count - 1) != last)
3252 goto overlap;
3253 }
3254
shli@kernel.orgda41ba62014-12-15 12:57:03 +11003255 if (!forwrite || previous)
3256 clear_bit(STRIPE_BATCH_READY, &sh->state);
3257
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02003258 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 if (*bip)
3260 bi->bi_next = *bip;
3261 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003262 raid5_inc_bi_active_stripes(bi);
NeilBrown49728052017-03-15 14:05:12 +11003263 md_write_inc(conf->mddev, bi);
NeilBrown72626682005-09-09 16:23:54 -07003264
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 if (forwrite) {
3266 /* check if page is covered */
3267 sector_t sector = sh->dev[dd_idx].sector;
3268 for (bi=sh->dev[dd_idx].towrite;
3269 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07003270 bi && bi->bi_iter.bi_sector <= sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07003272 if (bio_end_sector(bi) >= sector)
3273 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 }
3275 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
shli@kernel.org7a87f432014-12-15 12:57:03 +11003276 if (!test_and_set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags))
3277 sh->overwrite_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003279
3280 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07003281 (unsigned long long)(*bip)->bi_iter.bi_sector,
NeilBrowncbe47ec2011-07-26 11:20:35 +10003282 (unsigned long long)sh->sector, dd_idx);
3283
3284 if (conf->mddev->bitmap && firstwrite) {
NeilBrownd0852df52015-05-27 08:43:45 +10003285 /* Cannot hold spinlock over bitmap_startwrite,
3286 * but must ensure this isn't added to a batch until
3287 * we have added to the bitmap and set bm_seq.
3288 * So set STRIPE_BITMAP_PENDING to prevent
3289 * batching.
3290 * If multiple add_stripe_bio() calls race here they
3291 * much all set STRIPE_BITMAP_PENDING. So only the first one
3292 * to complete "bitmap_startwrite" gets to set
3293 * STRIPE_BIT_DELAY. This is important as once a stripe
3294 * is added to a batch, STRIPE_BIT_DELAY cannot be changed
3295 * any more.
3296 */
3297 set_bit(STRIPE_BITMAP_PENDING, &sh->state);
3298 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10003299 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
3300 STRIPE_SECTORS, 0);
NeilBrownd0852df52015-05-27 08:43:45 +10003301 spin_lock_irq(&sh->stripe_lock);
3302 clear_bit(STRIPE_BITMAP_PENDING, &sh->state);
3303 if (!sh->batch_head) {
3304 sh->bm_seq = conf->seq_flush+1;
3305 set_bit(STRIPE_BIT_DELAY, &sh->state);
3306 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003307 }
NeilBrownd0852df52015-05-27 08:43:45 +10003308 spin_unlock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003309
3310 if (stripe_can_batch(sh))
3311 stripe_add_to_batch_list(conf, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 return 1;
3313
3314 overlap:
3315 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10003316 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 return 0;
3318}
3319
NeilBrownd1688a62011-10-11 16:49:52 +11003320static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08003321
NeilBrownd1688a62011-10-11 16:49:52 +11003322static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003323 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08003324{
NeilBrown784052e2009-03-31 15:19:07 +11003325 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10003326 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11003327 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003328 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11003329 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003330
NeilBrown112bf892009-03-31 14:39:38 +11003331 raid5_compute_sector(conf,
3332 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08003333 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11003334 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003335 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003336}
3337
Dan Williamsa4456852007-07-09 11:56:43 -07003338static void
NeilBrownd1688a62011-10-11 16:49:52 +11003339handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
NeilBrownbd83d0a2017-03-15 14:05:12 +11003340 struct stripe_head_state *s, int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003341{
3342 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003343 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003344 for (i = disks; i--; ) {
3345 struct bio *bi;
3346 int bitmap_end = 0;
3347
3348 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11003349 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07003350 rcu_read_lock();
3351 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownf5b67ae2016-06-02 16:19:53 +10003352 if (rdev && test_bit(In_sync, &rdev->flags) &&
3353 !test_bit(Faulty, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10003354 atomic_inc(&rdev->nr_pending);
3355 else
3356 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003357 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10003358 if (rdev) {
3359 if (!rdev_set_badblocks(
3360 rdev,
3361 sh->sector,
3362 STRIPE_SECTORS, 0))
3363 md_error(conf->mddev, rdev);
3364 rdev_dec_pending(rdev, conf->mddev);
3365 }
Dan Williamsa4456852007-07-09 11:56:43 -07003366 }
Shaohua Lib17459c2012-07-19 16:01:31 +10003367 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003368 /* fail all writes first */
3369 bi = sh->dev[i].towrite;
3370 sh->dev[i].towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11003371 sh->overwrite_disks = 0;
Shaohua Lib17459c2012-07-19 16:01:31 +10003372 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11003373 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003374 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07003375
Artur Paszkiewiczff875732017-03-09 09:59:58 +01003376 log_stripe_write_finished(sh);
Shaohua Li0576b1c2015-08-13 14:32:00 -07003377
Dan Williamsa4456852007-07-09 11:56:43 -07003378 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3379 wake_up(&conf->wait_for_overlap);
3380
Kent Overstreet4f024f32013-10-11 15:44:27 -07003381 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003382 sh->dev[i].sector + STRIPE_SECTORS) {
3383 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003384
3385 bi->bi_error = -EIO;
NeilBrown49728052017-03-15 14:05:12 +11003386 md_write_end(conf->mddev);
3387 if (!raid5_dec_bi_active_stripes(bi))
NeilBrownbd83d0a2017-03-15 14:05:12 +11003388 bio_endio(bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003389 bi = nextbi;
3390 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003391 if (bitmap_end)
3392 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3393 STRIPE_SECTORS, 0, 0);
3394 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003395 /* and fail all 'written' */
3396 bi = sh->dev[i].written;
3397 sh->dev[i].written = NULL;
Shaohua Lid592a992014-05-21 17:57:44 +08003398 if (test_and_clear_bit(R5_SkipCopy, &sh->dev[i].flags)) {
3399 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
3400 sh->dev[i].page = sh->dev[i].orig_page;
3401 }
3402
Dan Williamsa4456852007-07-09 11:56:43 -07003403 if (bi) bitmap_end = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003404 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003405 sh->dev[i].sector + STRIPE_SECTORS) {
3406 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003407
3408 bi->bi_error = -EIO;
NeilBrown49728052017-03-15 14:05:12 +11003409 md_write_end(conf->mddev);
3410 if (!raid5_dec_bi_active_stripes(bi))
NeilBrownbd83d0a2017-03-15 14:05:12 +11003411 bio_endio(bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003412 bi = bi2;
3413 }
3414
Dan Williamsb5e98d62007-01-02 13:52:31 -07003415 /* fail any reads if this device is non-operational and
3416 * the data has not reached the cache yet.
3417 */
3418 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
Shaohua Li6e74a9c2015-10-08 21:54:08 -07003419 s->failed > conf->max_degraded &&
Dan Williamsb5e98d62007-01-02 13:52:31 -07003420 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
3421 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11003422 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003423 bi = sh->dev[i].toread;
3424 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11003425 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003426 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3427 wake_up(&conf->wait_for_overlap);
Shaohua Liebda7802015-09-18 10:20:13 -07003428 if (bi)
3429 s->to_read--;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003430 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003431 sh->dev[i].sector + STRIPE_SECTORS) {
3432 struct bio *nextbi =
3433 r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003434
3435 bi->bi_error = -EIO;
NeilBrown34a6f802015-08-14 12:07:57 +10003436 if (!raid5_dec_bi_active_stripes(bi))
NeilBrownbd83d0a2017-03-15 14:05:12 +11003437 bio_endio(bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003438 bi = nextbi;
3439 }
3440 }
Dan Williamsa4456852007-07-09 11:56:43 -07003441 if (bitmap_end)
3442 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3443 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10003444 /* If we were in the middle of a write the parity block might
3445 * still be locked - so just clear all R5_LOCKED flags
3446 */
3447 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003448 }
Shaohua Liebda7802015-09-18 10:20:13 -07003449 s->to_write = 0;
3450 s->written = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003451
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003452 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3453 if (atomic_dec_and_test(&conf->pending_full_writes))
3454 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07003455}
3456
NeilBrown7f0da592011-07-28 11:39:22 +10003457static void
NeilBrownd1688a62011-10-11 16:49:52 +11003458handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10003459 struct stripe_head_state *s)
3460{
3461 int abort = 0;
3462 int i;
3463
shli@kernel.org59fc6302014-12-15 12:57:03 +11003464 BUG_ON(sh->batch_head);
NeilBrown7f0da592011-07-28 11:39:22 +10003465 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003466 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3467 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10003468 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11003469 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10003470 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10003471 * Don't even need to abort as that is handled elsewhere
3472 * if needed, and not always wanted e.g. if there is a known
3473 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11003474 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10003475 * non-sync devices, or abort the recovery
3476 */
NeilBrown18b98372012-04-01 23:48:38 +10003477 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
3478 /* During recovery devices cannot be removed, so
3479 * locking and refcounting of rdevs is not needed
3480 */
NeilBrowne50d3992016-06-02 16:19:52 +10003481 rcu_read_lock();
NeilBrown18b98372012-04-01 23:48:38 +10003482 for (i = 0; i < conf->raid_disks; i++) {
NeilBrowne50d3992016-06-02 16:19:52 +10003483 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrown18b98372012-04-01 23:48:38 +10003484 if (rdev
3485 && !test_bit(Faulty, &rdev->flags)
3486 && !test_bit(In_sync, &rdev->flags)
3487 && !rdev_set_badblocks(rdev, sh->sector,
3488 STRIPE_SECTORS, 0))
3489 abort = 1;
NeilBrowne50d3992016-06-02 16:19:52 +10003490 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown18b98372012-04-01 23:48:38 +10003491 if (rdev
3492 && !test_bit(Faulty, &rdev->flags)
3493 && !test_bit(In_sync, &rdev->flags)
3494 && !rdev_set_badblocks(rdev, sh->sector,
3495 STRIPE_SECTORS, 0))
3496 abort = 1;
3497 }
NeilBrowne50d3992016-06-02 16:19:52 +10003498 rcu_read_unlock();
NeilBrown18b98372012-04-01 23:48:38 +10003499 if (abort)
3500 conf->recovery_disabled =
3501 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10003502 }
NeilBrown18b98372012-04-01 23:48:38 +10003503 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10003504}
3505
NeilBrown9a3e1102011-12-23 10:17:53 +11003506static int want_replace(struct stripe_head *sh, int disk_idx)
3507{
3508 struct md_rdev *rdev;
3509 int rv = 0;
NeilBrown3f232d62016-06-02 16:19:52 +10003510
3511 rcu_read_lock();
3512 rdev = rcu_dereference(sh->raid_conf->disks[disk_idx].replacement);
NeilBrown9a3e1102011-12-23 10:17:53 +11003513 if (rdev
3514 && !test_bit(Faulty, &rdev->flags)
3515 && !test_bit(In_sync, &rdev->flags)
3516 && (rdev->recovery_offset <= sh->sector
3517 || rdev->mddev->recovery_cp <= sh->sector))
3518 rv = 1;
NeilBrown3f232d62016-06-02 16:19:52 +10003519 rcu_read_unlock();
NeilBrown9a3e1102011-12-23 10:17:53 +11003520 return rv;
3521}
3522
NeilBrown2c58f062015-02-02 11:32:23 +11003523static int need_this_block(struct stripe_head *sh, struct stripe_head_state *s,
3524 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07003525{
3526 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10003527 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
3528 &sh->dev[s->failed_num[1]] };
NeilBrownea664c82015-02-02 14:03:28 +11003529 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07003530
NeilBrowna79cfe12015-02-02 11:37:59 +11003531
3532 if (test_bit(R5_LOCKED, &dev->flags) ||
3533 test_bit(R5_UPTODATE, &dev->flags))
3534 /* No point reading this as we already have it or have
3535 * decided to get it.
3536 */
3537 return 0;
3538
3539 if (dev->toread ||
3540 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)))
3541 /* We need this block to directly satisfy a request */
3542 return 1;
3543
3544 if (s->syncing || s->expanding ||
3545 (s->replacing && want_replace(sh, disk_idx)))
3546 /* When syncing, or expanding we read everything.
3547 * When replacing, we need the replaced block.
3548 */
3549 return 1;
3550
3551 if ((s->failed >= 1 && fdev[0]->toread) ||
3552 (s->failed >= 2 && fdev[1]->toread))
3553 /* If we want to read from a failed device, then
3554 * we need to actually read every other device.
3555 */
3556 return 1;
3557
NeilBrowna9d56952015-02-02 11:49:10 +11003558 /* Sometimes neither read-modify-write nor reconstruct-write
3559 * cycles can work. In those cases we read every block we
3560 * can. Then the parity-update is certain to have enough to
3561 * work with.
3562 * This can only be a problem when we need to write something,
3563 * and some device has failed. If either of those tests
3564 * fail we need look no further.
3565 */
3566 if (!s->failed || !s->to_write)
3567 return 0;
3568
3569 if (test_bit(R5_Insync, &dev->flags) &&
3570 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3571 /* Pre-reads at not permitted until after short delay
3572 * to gather multiple requests. However if this
3573 * device is no Insync, the block could only be be computed
3574 * and there is no need to delay that.
3575 */
3576 return 0;
NeilBrownea664c82015-02-02 14:03:28 +11003577
NeilBrown36707bb2015-09-24 15:25:36 +10003578 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrownea664c82015-02-02 14:03:28 +11003579 if (fdev[i]->towrite &&
3580 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3581 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3582 /* If we have a partial write to a failed
3583 * device, then we will need to reconstruct
3584 * the content of that device, so all other
3585 * devices must be read.
3586 */
3587 return 1;
3588 }
3589
3590 /* If we are forced to do a reconstruct-write, either because
3591 * the current RAID6 implementation only supports that, or
3592 * or because parity cannot be trusted and we are currently
3593 * recovering it, there is extra need to be careful.
3594 * If one of the devices that we would need to read, because
3595 * it is not being overwritten (and maybe not written at all)
3596 * is missing/faulty, then we need to read everything we can.
3597 */
3598 if (sh->raid_conf->level != 6 &&
3599 sh->sector < sh->raid_conf->mddev->recovery_cp)
3600 /* reconstruct-write isn't being forced */
3601 return 0;
NeilBrown36707bb2015-09-24 15:25:36 +10003602 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrown10d82c52015-05-08 18:19:33 +10003603 if (s->failed_num[i] != sh->pd_idx &&
3604 s->failed_num[i] != sh->qd_idx &&
3605 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
NeilBrownea664c82015-02-02 14:03:28 +11003606 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3607 return 1;
3608 }
3609
NeilBrown2c58f062015-02-02 11:32:23 +11003610 return 0;
3611}
3612
Song Liuba026842017-01-12 17:22:42 -08003613/* fetch_block - checks the given member device to see if its data needs
3614 * to be read or computed to satisfy a request.
3615 *
3616 * Returns 1 when no more member devices need to be checked, otherwise returns
3617 * 0 to tell the loop in handle_stripe_fill to continue
3618 */
NeilBrown2c58f062015-02-02 11:32:23 +11003619static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
3620 int disk_idx, int disks)
3621{
3622 struct r5dev *dev = &sh->dev[disk_idx];
3623
3624 /* is the data in this block needed, and can we get it? */
3625 if (need_this_block(sh, s, disk_idx, disks)) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003626 /* we would like to get this block, possibly by computing it,
3627 * otherwise read it if the backing disk is insync
3628 */
3629 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
3630 BUG_ON(test_bit(R5_Wantread, &dev->flags));
NeilBrownb0c783b2015-05-08 18:19:32 +10003631 BUG_ON(sh->batch_head);
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003632 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10003633 (s->failed && (disk_idx == s->failed_num[0] ||
3634 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003635 /* have disk failed, and we're requested to fetch it;
3636 * do compute it
3637 */
3638 pr_debug("Computing stripe %llu block %d\n",
3639 (unsigned long long)sh->sector, disk_idx);
3640 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3641 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3642 set_bit(R5_Wantcompute, &dev->flags);
3643 sh->ops.target = disk_idx;
3644 sh->ops.target2 = -1; /* no 2nd target */
3645 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10003646 /* Careful: from this point on 'uptodate' is in the eye
3647 * of raid_run_ops which services 'compute' operations
3648 * before writes. R5_Wantcompute flags a block that will
3649 * be R5_UPTODATE by the time it is needed for a
3650 * subsequent operation.
3651 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003652 s->uptodate++;
3653 return 1;
3654 } else if (s->uptodate == disks-2 && s->failed >= 2) {
3655 /* Computing 2-failure is *very* expensive; only
3656 * do it if failed >= 2
3657 */
3658 int other;
3659 for (other = disks; other--; ) {
3660 if (other == disk_idx)
3661 continue;
3662 if (!test_bit(R5_UPTODATE,
3663 &sh->dev[other].flags))
3664 break;
3665 }
3666 BUG_ON(other < 0);
3667 pr_debug("Computing stripe %llu blocks %d,%d\n",
3668 (unsigned long long)sh->sector,
3669 disk_idx, other);
3670 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3671 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3672 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
3673 set_bit(R5_Wantcompute, &sh->dev[other].flags);
3674 sh->ops.target = disk_idx;
3675 sh->ops.target2 = other;
3676 s->uptodate += 2;
3677 s->req_compute = 1;
3678 return 1;
3679 } else if (test_bit(R5_Insync, &dev->flags)) {
3680 set_bit(R5_LOCKED, &dev->flags);
3681 set_bit(R5_Wantread, &dev->flags);
3682 s->locked++;
3683 pr_debug("Reading block %d (sync=%d)\n",
3684 disk_idx, s->syncing);
3685 }
3686 }
3687
3688 return 0;
3689}
3690
3691/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10003692 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003693 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10003694static void handle_stripe_fill(struct stripe_head *sh,
3695 struct stripe_head_state *s,
3696 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003697{
3698 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003699
3700 /* look for blocks to read/compute, skip this if a compute
3701 * is already in flight, or if the stripe contents are in the
3702 * midst of changing due to a write
3703 */
3704 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Song Liu07e83362017-01-23 17:12:58 -08003705 !sh->reconstruct_state) {
3706
3707 /*
3708 * For degraded stripe with data in journal, do not handle
3709 * read requests yet, instead, flush the stripe to raid
3710 * disks first, this avoids handling complex rmw of write
3711 * back cache (prexor with orig_page, and then xor with
3712 * page) in the read path
3713 */
3714 if (s->injournal && s->failed) {
3715 if (test_bit(STRIPE_R5C_CACHING, &sh->state))
3716 r5c_make_stripe_write_out(sh);
3717 goto out;
3718 }
3719
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003720 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10003721 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003722 break;
Song Liu07e83362017-01-23 17:12:58 -08003723 }
3724out:
Dan Williamsa4456852007-07-09 11:56:43 -07003725 set_bit(STRIPE_HANDLE, &sh->state);
3726}
3727
NeilBrown787b76f2015-05-21 12:56:41 +10003728static void break_stripe_batch_list(struct stripe_head *head_sh,
3729 unsigned long handle_flags);
Dan Williams1fe797e2008-06-28 09:16:30 +10003730/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07003731 * any written block on an uptodate or failed drive can be returned.
3732 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
3733 * never LOCKED, so we don't need to test 'failed' directly.
3734 */
NeilBrownd1688a62011-10-11 16:49:52 +11003735static void handle_stripe_clean_event(struct r5conf *conf,
NeilBrownbd83d0a2017-03-15 14:05:12 +11003736 struct stripe_head *sh, int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003737{
3738 int i;
3739 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003740 int discard_pending = 0;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003741 struct stripe_head *head_sh = sh;
3742 bool do_endio = false;
Dan Williamsa4456852007-07-09 11:56:43 -07003743
3744 for (i = disks; i--; )
3745 if (sh->dev[i].written) {
3746 dev = &sh->dev[i];
3747 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003748 (test_bit(R5_UPTODATE, &dev->flags) ||
Shaohua Lid592a992014-05-21 17:57:44 +08003749 test_bit(R5_Discard, &dev->flags) ||
3750 test_bit(R5_SkipCopy, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003751 /* We can return any write requests */
3752 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003753 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11003754 if (test_and_clear_bit(R5_Discard, &dev->flags))
3755 clear_bit(R5_UPTODATE, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08003756 if (test_and_clear_bit(R5_SkipCopy, &dev->flags)) {
3757 WARN_ON(test_bit(R5_UPTODATE, &dev->flags));
Shaohua Lid592a992014-05-21 17:57:44 +08003758 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003759 do_endio = true;
3760
3761returnbi:
3762 dev->page = dev->orig_page;
Dan Williamsa4456852007-07-09 11:56:43 -07003763 wbi = dev->written;
3764 dev->written = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003765 while (wbi && wbi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003766 dev->sector + STRIPE_SECTORS) {
3767 wbi2 = r5_next_bio(wbi, dev->sector);
NeilBrown49728052017-03-15 14:05:12 +11003768 md_write_end(conf->mddev);
3769 if (!raid5_dec_bi_active_stripes(wbi))
NeilBrownbd83d0a2017-03-15 14:05:12 +11003770 bio_endio(wbi);
Dan Williamsa4456852007-07-09 11:56:43 -07003771 wbi = wbi2;
3772 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003773 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3774 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07003775 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003776 0);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003777 if (head_sh->batch_head) {
3778 sh = list_first_entry(&sh->batch_list,
3779 struct stripe_head,
3780 batch_list);
3781 if (sh != head_sh) {
3782 dev = &sh->dev[i];
3783 goto returnbi;
3784 }
3785 }
3786 sh = head_sh;
3787 dev = &sh->dev[i];
NeilBrownf8dfcff2013-03-12 12:18:06 +11003788 } else if (test_bit(R5_Discard, &dev->flags))
3789 discard_pending = 1;
3790 }
Shaohua Lif6bed0e2015-08-13 14:31:59 -07003791
Artur Paszkiewiczff875732017-03-09 09:59:58 +01003792 log_stripe_write_finished(sh);
Shaohua Li0576b1c2015-08-13 14:32:00 -07003793
NeilBrownf8dfcff2013-03-12 12:18:06 +11003794 if (!discard_pending &&
3795 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003796 int hash;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003797 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
3798 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
3799 if (sh->qd_idx >= 0) {
3800 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
3801 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
3802 }
3803 /* now that discard is done we can proceed with any sync */
3804 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08003805 /*
3806 * SCSI discard will change some bio fields and the stripe has
3807 * no updated data, so remove it from hash list and the stripe
3808 * will be reinitialized
3809 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11003810unhash:
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003811 hash = sh->hash_lock_index;
3812 spin_lock_irq(conf->hash_locks + hash);
Shaohua Lid47648f2013-10-19 14:51:42 +08003813 remove_hash(sh);
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003814 spin_unlock_irq(conf->hash_locks + hash);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003815 if (head_sh->batch_head) {
3816 sh = list_first_entry(&sh->batch_list,
3817 struct stripe_head, batch_list);
3818 if (sh != head_sh)
3819 goto unhash;
3820 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003821 sh = head_sh;
3822
NeilBrownf8dfcff2013-03-12 12:18:06 +11003823 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
3824 set_bit(STRIPE_HANDLE, &sh->state);
3825
3826 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003827
3828 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3829 if (atomic_dec_and_test(&conf->pending_full_writes))
3830 md_wakeup_thread(conf->mddev->thread);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003831
NeilBrown787b76f2015-05-21 12:56:41 +10003832 if (head_sh->batch_head && do_endio)
3833 break_stripe_batch_list(head_sh, STRIPE_EXPAND_SYNC_FLAGS);
Dan Williamsa4456852007-07-09 11:56:43 -07003834}
3835
Song Liu86aa1392017-01-12 17:22:41 -08003836/*
3837 * For RMW in write back cache, we need extra page in prexor to store the
3838 * old data. This page is stored in dev->orig_page.
3839 *
3840 * This function checks whether we have data for prexor. The exact logic
3841 * is:
3842 * R5_UPTODATE && (!R5_InJournal || R5_OrigPageUPTDODATE)
3843 */
3844static inline bool uptodate_for_rmw(struct r5dev *dev)
3845{
3846 return (test_bit(R5_UPTODATE, &dev->flags)) &&
3847 (!test_bit(R5_InJournal, &dev->flags) ||
3848 test_bit(R5_OrigPageUPTDODATE, &dev->flags));
3849}
3850
Song Liud7bd3982016-11-23 22:50:39 -08003851static int handle_stripe_dirtying(struct r5conf *conf,
3852 struct stripe_head *sh,
3853 struct stripe_head_state *s,
3854 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003855{
3856 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11003857 sector_t recovery_cp = conf->mddev->recovery_cp;
3858
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003859 /* Check whether resync is now happening or should start.
Alexander Lyakasa7854482012-10-11 13:50:12 +11003860 * If yes, then the array is dirty (after unclean shutdown or
3861 * initial creation), so parity in some stripes might be inconsistent.
3862 * In this case, we need to always do reconstruct-write, to ensure
3863 * that in case of drive failure or read-error correction, we
3864 * generate correct data from the parity.
3865 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003866 if (conf->rmw_level == PARITY_DISABLE_RMW ||
NeilBrown26ac1072015-02-18 11:35:14 +11003867 (recovery_cp < MaxSector && sh->sector >= recovery_cp &&
3868 s->failed == 0)) {
Alexander Lyakasa7854482012-10-11 13:50:12 +11003869 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10003870 * look like rcw is cheaper
3871 */
3872 rcw = 1; rmw = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003873 pr_debug("force RCW rmw_level=%u, recovery_cp=%llu sh->sector=%llu\n",
3874 conf->rmw_level, (unsigned long long)recovery_cp,
Alexander Lyakasa7854482012-10-11 13:50:12 +11003875 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10003876 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003877 /* would I have to read this buffer for read_modify_write */
3878 struct r5dev *dev = &sh->dev[i];
Song Liu39b99582017-01-24 14:08:23 -08003879 if (((dev->towrite && !delay_towrite(conf, dev, s)) ||
Song Liu07e83362017-01-23 17:12:58 -08003880 i == sh->pd_idx || i == sh->qd_idx ||
Song Liu1e6d6902016-11-17 15:24:39 -08003881 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003882 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu86aa1392017-01-12 17:22:41 -08003883 !(uptodate_for_rmw(dev) ||
Dan Williamsf38e1212007-01-02 13:52:30 -07003884 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003885 if (test_bit(R5_Insync, &dev->flags))
3886 rmw++;
3887 else
3888 rmw += 2*disks; /* cannot read it */
3889 }
3890 /* Would I have to read this buffer for reconstruct_write */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003891 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
3892 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003893 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003894 !(test_bit(R5_UPTODATE, &dev->flags) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003895 test_bit(R5_Wantcompute, &dev->flags))) {
NeilBrown67f45542014-05-28 13:39:22 +10003896 if (test_bit(R5_Insync, &dev->flags))
3897 rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07003898 else
3899 rcw += 2*disks;
3900 }
3901 }
Song Liu1e6d6902016-11-17 15:24:39 -08003902
Song Liu39b99582017-01-24 14:08:23 -08003903 pr_debug("for sector %llu state 0x%lx, rmw=%d rcw=%d\n",
3904 (unsigned long long)sh->sector, sh->state, rmw, rcw);
Dan Williamsa4456852007-07-09 11:56:43 -07003905 set_bit(STRIPE_HANDLE, &sh->state);
Song Liu41257582016-05-23 17:25:06 -07003906 if ((rmw < rcw || (rmw == rcw && conf->rmw_level == PARITY_PREFER_RMW)) && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003907 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003908 if (conf->mddev->queue)
3909 blk_add_trace_msg(conf->mddev->queue,
3910 "raid5 rmw %llu %d",
3911 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07003912 for (i = disks; i--; ) {
3913 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08003914 if (test_bit(R5_InJournal, &dev->flags) &&
3915 dev->page == dev->orig_page &&
3916 !test_bit(R5_LOCKED, &sh->dev[sh->pd_idx].flags)) {
3917 /* alloc page for prexor */
Song Liud7bd3982016-11-23 22:50:39 -08003918 struct page *p = alloc_page(GFP_NOIO);
Song Liu1e6d6902016-11-17 15:24:39 -08003919
Song Liud7bd3982016-11-23 22:50:39 -08003920 if (p) {
3921 dev->orig_page = p;
3922 continue;
3923 }
3924
3925 /*
3926 * alloc_page() failed, try use
3927 * disk_info->extra_page
3928 */
3929 if (!test_and_set_bit(R5C_EXTRA_PAGE_IN_USE,
3930 &conf->cache_state)) {
3931 r5c_use_extra_page(sh);
3932 break;
3933 }
3934
3935 /* extra_page in use, add to delayed_list */
3936 set_bit(STRIPE_DELAYED, &sh->state);
3937 s->waiting_extra_page = 1;
3938 return -EAGAIN;
Song Liu1e6d6902016-11-17 15:24:39 -08003939 }
Song Liud7bd3982016-11-23 22:50:39 -08003940 }
Song Liu1e6d6902016-11-17 15:24:39 -08003941
Song Liud7bd3982016-11-23 22:50:39 -08003942 for (i = disks; i--; ) {
3943 struct r5dev *dev = &sh->dev[i];
Song Liu39b99582017-01-24 14:08:23 -08003944 if (((dev->towrite && !delay_towrite(conf, dev, s)) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003945 i == sh->pd_idx || i == sh->qd_idx ||
3946 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003947 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu86aa1392017-01-12 17:22:41 -08003948 !(uptodate_for_rmw(dev) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003949 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003950 test_bit(R5_Insync, &dev->flags)) {
NeilBrown67f45542014-05-28 13:39:22 +10003951 if (test_bit(STRIPE_PREREAD_ACTIVE,
3952 &sh->state)) {
3953 pr_debug("Read_old block %d for r-m-w\n",
3954 i);
Dan Williamsa4456852007-07-09 11:56:43 -07003955 set_bit(R5_LOCKED, &dev->flags);
3956 set_bit(R5_Wantread, &dev->flags);
3957 s->locked++;
3958 } else {
3959 set_bit(STRIPE_DELAYED, &sh->state);
3960 set_bit(STRIPE_HANDLE, &sh->state);
3961 }
3962 }
3963 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003964 }
Song Liu41257582016-05-23 17:25:06 -07003965 if ((rcw < rmw || (rcw == rmw && conf->rmw_level != PARITY_PREFER_RMW)) && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003966 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003967 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003968 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003969 for (i = disks; i--; ) {
3970 struct r5dev *dev = &sh->dev[i];
3971 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003972 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003973 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003974 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003975 test_bit(R5_Wantcompute, &dev->flags))) {
3976 rcw++;
NeilBrown67f45542014-05-28 13:39:22 +10003977 if (test_bit(R5_Insync, &dev->flags) &&
3978 test_bit(STRIPE_PREREAD_ACTIVE,
3979 &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003980 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003981 "%d for Reconstruct\n", i);
3982 set_bit(R5_LOCKED, &dev->flags);
3983 set_bit(R5_Wantread, &dev->flags);
3984 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003985 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003986 } else {
3987 set_bit(STRIPE_DELAYED, &sh->state);
3988 set_bit(STRIPE_HANDLE, &sh->state);
3989 }
3990 }
3991 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003992 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003993 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3994 (unsigned long long)sh->sector,
3995 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003996 }
NeilBrownb1b02fe2015-02-02 10:44:29 +11003997
3998 if (rcw > disks && rmw > disks &&
3999 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4000 set_bit(STRIPE_DELAYED, &sh->state);
4001
Dan Williamsa4456852007-07-09 11:56:43 -07004002 /* now if nothing is locked, and if we have enough data,
4003 * we can start a write request
4004 */
Dan Williamsf38e1212007-01-02 13:52:30 -07004005 /* since handle_stripe can be called at any time we need to handle the
4006 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07004007 * subsequent call wants to start a write request. raid_run_ops only
4008 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07004009 * simultaneously. If this is not the case then new writes need to be
4010 * held off until the compute completes.
4011 */
Dan Williams976ea8d2008-06-28 08:32:03 +10004012 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
4013 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
Song Liu1e6d6902016-11-17 15:24:39 -08004014 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07004015 schedule_reconstruction(sh, s, rcw == 0, 0);
Song Liud7bd3982016-11-23 22:50:39 -08004016 return 0;
Dan Williamsa4456852007-07-09 11:56:43 -07004017}
4018
NeilBrownd1688a62011-10-11 16:49:52 +11004019static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07004020 struct stripe_head_state *s, int disks)
4021{
Dan Williamsecc65c92008-06-28 08:31:57 +10004022 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07004023
shli@kernel.org59fc6302014-12-15 12:57:03 +11004024 BUG_ON(sh->batch_head);
Dan Williamsbd2ab672008-04-10 21:29:27 -07004025 set_bit(STRIPE_HANDLE, &sh->state);
4026
Dan Williamsecc65c92008-06-28 08:31:57 +10004027 switch (sh->check_state) {
4028 case check_state_idle:
4029 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07004030 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07004031 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10004032 sh->check_state = check_state_run;
4033 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07004034 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07004035 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10004036 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07004037 }
NeilBrownf2b3b442011-07-26 11:35:19 +10004038 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10004039 /* fall through */
4040 case check_state_compute_result:
4041 sh->check_state = check_state_idle;
4042 if (!dev)
4043 dev = &sh->dev[sh->pd_idx];
4044
4045 /* check that a write has not made the stripe insync */
4046 if (test_bit(STRIPE_INSYNC, &sh->state))
4047 break;
4048
4049 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07004050 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
4051 BUG_ON(s->uptodate != disks);
4052
4053 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10004054 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07004055 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07004056
Dan Williamsa4456852007-07-09 11:56:43 -07004057 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07004058 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10004059 break;
4060 case check_state_run:
4061 break; /* we will be called again upon completion */
4062 case check_state_check_result:
4063 sh->check_state = check_state_idle;
4064
4065 /* if a failure occurred during the check operation, leave
4066 * STRIPE_INSYNC not set and let the stripe be handled again
4067 */
4068 if (s->failed)
4069 break;
4070
4071 /* handle a successful check operation, if parity is correct
4072 * we are done. Otherwise update the mismatch count and repair
4073 * parity if !MD_RECOVERY_CHECK
4074 */
Dan Williamsad283ea2009-08-29 19:09:26 -07004075 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10004076 /* parity is correct (on disc,
4077 * not in buffer any more)
4078 */
4079 set_bit(STRIPE_INSYNC, &sh->state);
4080 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11004081 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10004082 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
4083 /* don't try to repair!! */
4084 set_bit(STRIPE_INSYNC, &sh->state);
4085 else {
4086 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10004087 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10004088 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
4089 set_bit(R5_Wantcompute,
4090 &sh->dev[sh->pd_idx].flags);
4091 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07004092 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10004093 s->uptodate++;
4094 }
4095 }
4096 break;
4097 case check_state_compute_run:
4098 break;
4099 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11004100 pr_err("%s: unknown check_state: %d sector: %llu\n",
Dan Williamsecc65c92008-06-28 08:31:57 +10004101 __func__, sh->check_state,
4102 (unsigned long long) sh->sector);
4103 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07004104 }
4105}
4106
NeilBrownd1688a62011-10-11 16:49:52 +11004107static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07004108 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10004109 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07004110{
Dan Williamsa4456852007-07-09 11:56:43 -07004111 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11004112 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07004113 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07004114
shli@kernel.org59fc6302014-12-15 12:57:03 +11004115 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07004116 set_bit(STRIPE_HANDLE, &sh->state);
4117
4118 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004119
Dan Williamsa4456852007-07-09 11:56:43 -07004120 /* Want to check and possibly repair P and Q.
4121 * However there could be one 'failed' device, in which
4122 * case we can only check one of them, possibly using the
4123 * other to generate missing data
4124 */
4125
Dan Williamsd82dfee2009-07-14 13:40:57 -07004126 switch (sh->check_state) {
4127 case check_state_idle:
4128 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10004129 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07004130 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07004131 * makes sense to check P (If anything else were failed,
4132 * we would have used P to recreate it).
4133 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07004134 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07004135 }
NeilBrownf2b3b442011-07-26 11:35:19 +10004136 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07004137 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07004138 * anything, so it makes sense to check it
4139 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07004140 if (sh->check_state == check_state_run)
4141 sh->check_state = check_state_run_pq;
4142 else
4143 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07004144 }
Dan Williams36d1c642009-07-14 11:48:22 -07004145
Dan Williamsd82dfee2009-07-14 13:40:57 -07004146 /* discard potentially stale zero_sum_result */
4147 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07004148
Dan Williamsd82dfee2009-07-14 13:40:57 -07004149 if (sh->check_state == check_state_run) {
4150 /* async_xor_zero_sum destroys the contents of P */
4151 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
4152 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07004153 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004154 if (sh->check_state >= check_state_run &&
4155 sh->check_state <= check_state_run_pq) {
4156 /* async_syndrome_zero_sum preserves P and Q, so
4157 * no need to mark them !uptodate here
4158 */
4159 set_bit(STRIPE_OP_CHECK, &s->ops_request);
4160 break;
4161 }
Dan Williams36d1c642009-07-14 11:48:22 -07004162
Dan Williamsd82dfee2009-07-14 13:40:57 -07004163 /* we have 2-disk failure */
4164 BUG_ON(s->failed != 2);
4165 /* fall through */
4166 case check_state_compute_result:
4167 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07004168
Dan Williamsd82dfee2009-07-14 13:40:57 -07004169 /* check that a write has not made the stripe insync */
4170 if (test_bit(STRIPE_INSYNC, &sh->state))
4171 break;
Dan Williamsa4456852007-07-09 11:56:43 -07004172
4173 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07004174 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07004175 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07004176 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07004177 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10004178 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07004179 s->locked++;
4180 set_bit(R5_LOCKED, &dev->flags);
4181 set_bit(R5_Wantwrite, &dev->flags);
4182 }
4183 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10004184 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07004185 s->locked++;
4186 set_bit(R5_LOCKED, &dev->flags);
4187 set_bit(R5_Wantwrite, &dev->flags);
4188 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004189 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07004190 dev = &sh->dev[pd_idx];
4191 s->locked++;
4192 set_bit(R5_LOCKED, &dev->flags);
4193 set_bit(R5_Wantwrite, &dev->flags);
4194 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004195 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07004196 dev = &sh->dev[qd_idx];
4197 s->locked++;
4198 set_bit(R5_LOCKED, &dev->flags);
4199 set_bit(R5_Wantwrite, &dev->flags);
4200 }
4201 clear_bit(STRIPE_DEGRADED, &sh->state);
4202
4203 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004204 break;
4205 case check_state_run:
4206 case check_state_run_q:
4207 case check_state_run_pq:
4208 break; /* we will be called again upon completion */
4209 case check_state_check_result:
4210 sh->check_state = check_state_idle;
4211
4212 /* handle a successful check operation, if parity is correct
4213 * we are done. Otherwise update the mismatch count and repair
4214 * parity if !MD_RECOVERY_CHECK
4215 */
4216 if (sh->ops.zero_sum_result == 0) {
4217 /* both parities are correct */
4218 if (!s->failed)
4219 set_bit(STRIPE_INSYNC, &sh->state);
4220 else {
4221 /* in contrast to the raid5 case we can validate
4222 * parity, but still have a failure to write
4223 * back
4224 */
4225 sh->check_state = check_state_compute_result;
4226 /* Returning at this point means that we may go
4227 * off and bring p and/or q uptodate again so
4228 * we make sure to check zero_sum_result again
4229 * to verify if p or q need writeback
4230 */
4231 }
4232 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11004233 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004234 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
4235 /* don't try to repair!! */
4236 set_bit(STRIPE_INSYNC, &sh->state);
4237 else {
4238 int *target = &sh->ops.target;
4239
4240 sh->ops.target = -1;
4241 sh->ops.target2 = -1;
4242 sh->check_state = check_state_compute_run;
4243 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
4244 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
4245 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
4246 set_bit(R5_Wantcompute,
4247 &sh->dev[pd_idx].flags);
4248 *target = pd_idx;
4249 target = &sh->ops.target2;
4250 s->uptodate++;
4251 }
4252 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
4253 set_bit(R5_Wantcompute,
4254 &sh->dev[qd_idx].flags);
4255 *target = qd_idx;
4256 s->uptodate++;
4257 }
4258 }
4259 }
4260 break;
4261 case check_state_compute_run:
4262 break;
4263 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11004264 pr_warn("%s: unknown check_state: %d sector: %llu\n",
4265 __func__, sh->check_state,
4266 (unsigned long long) sh->sector);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004267 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07004268 }
4269}
4270
NeilBrownd1688a62011-10-11 16:49:52 +11004271static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07004272{
4273 int i;
4274
4275 /* We have read all the blocks in this stripe and now we need to
4276 * copy some of them into a target stripe for expand.
4277 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07004278 struct dma_async_tx_descriptor *tx = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11004279 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07004280 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4281 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11004282 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11004283 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07004284 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07004285 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07004286
Shaohua Li6d036f72015-08-13 14:31:57 -07004287 sector_t bn = raid5_compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11004288 sector_t s = raid5_compute_sector(conf, bn, 0,
4289 &dd_idx, NULL);
Shaohua Li6d036f72015-08-13 14:31:57 -07004290 sh2 = raid5_get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07004291 if (sh2 == NULL)
4292 /* so far only the early blocks of this stripe
4293 * have been requested. When later blocks
4294 * get requested, we will try again
4295 */
4296 continue;
4297 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
4298 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
4299 /* must have already done this block */
Shaohua Li6d036f72015-08-13 14:31:57 -07004300 raid5_release_stripe(sh2);
Dan Williamsa4456852007-07-09 11:56:43 -07004301 continue;
4302 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07004303
4304 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07004305 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004306 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07004307 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07004308 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004309
Dan Williamsa4456852007-07-09 11:56:43 -07004310 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
4311 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
4312 for (j = 0; j < conf->raid_disks; j++)
4313 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10004314 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07004315 !test_bit(R5_Expanded, &sh2->dev[j].flags))
4316 break;
4317 if (j == conf->raid_disks) {
4318 set_bit(STRIPE_EXPAND_READY, &sh2->state);
4319 set_bit(STRIPE_HANDLE, &sh2->state);
4320 }
Shaohua Li6d036f72015-08-13 14:31:57 -07004321 raid5_release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004322
Dan Williamsa4456852007-07-09 11:56:43 -07004323 }
NeilBrowna2e08552007-09-11 15:23:36 -07004324 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11004325 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07004326}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
4328/*
4329 * handle_stripe - do things to a stripe.
4330 *
NeilBrown9a3e1102011-12-23 10:17:53 +11004331 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
4332 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11004334 * return some read requests which now have data
4335 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 * schedule a read on some buffers
4337 * schedule a write of some buffers
4338 * return confirmation of parity correctness
4339 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 */
Dan Williamsa4456852007-07-09 11:56:43 -07004341
NeilBrownacfe7262011-07-27 11:00:36 +10004342static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07004343{
NeilBrownd1688a62011-10-11 16:49:52 +11004344 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08004345 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004346 struct r5dev *dev;
4347 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11004348 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07004349
NeilBrownacfe7262011-07-27 11:00:36 +10004350 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07004351
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004352 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state) && !sh->batch_head;
4353 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state) && !sh->batch_head;
NeilBrownacfe7262011-07-27 11:00:36 +10004354 s->failed_num[0] = -1;
4355 s->failed_num[1] = -1;
Shaohua Li6e74a9c2015-10-08 21:54:08 -07004356 s->log_failed = r5l_log_disk_error(conf);
NeilBrownacfe7262011-07-27 11:00:36 +10004357
4358 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07004359 rcu_read_lock();
4360 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004361 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10004362 sector_t first_bad;
4363 int bad_sectors;
4364 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10004365
NeilBrown16a53ec2006-06-26 00:27:38 -07004366 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07004367
Dan Williams45b42332007-07-09 11:56:43 -07004368 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11004369 i, dev->flags,
4370 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004371 /* maybe we can reply to a read
4372 *
4373 * new wantfill requests are only permitted while
4374 * ops_complete_biofill is guaranteed to be inactive
4375 */
4376 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
4377 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
4378 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07004379
4380 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10004381 if (test_bit(R5_LOCKED, &dev->flags))
4382 s->locked++;
4383 if (test_bit(R5_UPTODATE, &dev->flags))
4384 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004385 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004386 s->compute++;
4387 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004388 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004389
NeilBrownacfe7262011-07-27 11:00:36 +10004390 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004391 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10004392 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10004393 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004394 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10004395 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004396 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004397 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004398 }
Dan Williamsa4456852007-07-09 11:56:43 -07004399 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10004400 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11004401 /* Prefer to use the replacement for reads, but only
4402 * if it is recovered enough and has no bad blocks.
4403 */
4404 rdev = rcu_dereference(conf->disks[i].replacement);
4405 if (rdev && !test_bit(Faulty, &rdev->flags) &&
4406 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
4407 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4408 &first_bad, &bad_sectors))
4409 set_bit(R5_ReadRepl, &dev->flags);
4410 else {
NeilBrowne6030cb2015-07-17 13:26:23 +10004411 if (rdev && !test_bit(Faulty, &rdev->flags))
NeilBrown9a3e1102011-12-23 10:17:53 +11004412 set_bit(R5_NeedReplace, &dev->flags);
NeilBrowne6030cb2015-07-17 13:26:23 +10004413 else
4414 clear_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11004415 rdev = rcu_dereference(conf->disks[i].rdev);
4416 clear_bit(R5_ReadRepl, &dev->flags);
4417 }
NeilBrown9283d8c2011-12-08 16:27:57 +11004418 if (rdev && test_bit(Faulty, &rdev->flags))
4419 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10004420 if (rdev) {
4421 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4422 &first_bad, &bad_sectors);
4423 if (s->blocked_rdev == NULL
4424 && (test_bit(Blocked, &rdev->flags)
4425 || is_bad < 0)) {
4426 if (is_bad < 0)
4427 set_bit(BlockedBadBlocks,
4428 &rdev->flags);
4429 s->blocked_rdev = rdev;
4430 atomic_inc(&rdev->nr_pending);
4431 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004432 }
NeilBrown415e72d2010-06-17 17:25:21 +10004433 clear_bit(R5_Insync, &dev->flags);
4434 if (!rdev)
4435 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10004436 else if (is_bad) {
4437 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10004438 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
4439 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10004440 /* treat as in-sync, but with a read error
4441 * which we can now try to correct
4442 */
4443 set_bit(R5_Insync, &dev->flags);
4444 set_bit(R5_ReadError, &dev->flags);
4445 }
4446 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10004447 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11004448 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10004449 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11004450 set_bit(R5_Insync, &dev->flags);
4451 else if (test_bit(R5_UPTODATE, &dev->flags) &&
4452 test_bit(R5_Expanded, &dev->flags))
4453 /* If we've reshaped into here, we assume it is Insync.
4454 * We will shortly update recovery_offset to make
4455 * it official.
4456 */
4457 set_bit(R5_Insync, &dev->flags);
4458
NeilBrown1cc03eb2014-01-06 13:19:42 +11004459 if (test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004460 /* This flag does not apply to '.replacement'
4461 * only to .rdev, so make sure to check that*/
4462 struct md_rdev *rdev2 = rcu_dereference(
4463 conf->disks[i].rdev);
4464 if (rdev2 == rdev)
4465 clear_bit(R5_Insync, &dev->flags);
4466 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004467 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004468 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10004469 } else
4470 clear_bit(R5_WriteError, &dev->flags);
4471 }
NeilBrown1cc03eb2014-01-06 13:19:42 +11004472 if (test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004473 /* This flag does not apply to '.replacement'
4474 * only to .rdev, so make sure to check that*/
4475 struct md_rdev *rdev2 = rcu_dereference(
4476 conf->disks[i].rdev);
4477 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10004478 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004479 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10004480 } else
4481 clear_bit(R5_MadeGood, &dev->flags);
4482 }
NeilBrown977df362011-12-23 10:17:53 +11004483 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
4484 struct md_rdev *rdev2 = rcu_dereference(
4485 conf->disks[i].replacement);
4486 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
4487 s->handle_bad_blocks = 1;
4488 atomic_inc(&rdev2->nr_pending);
4489 } else
4490 clear_bit(R5_MadeGoodRepl, &dev->flags);
4491 }
NeilBrown415e72d2010-06-17 17:25:21 +10004492 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004493 /* The ReadError flag will just be confusing now */
4494 clear_bit(R5_ReadError, &dev->flags);
4495 clear_bit(R5_ReWrite, &dev->flags);
4496 }
NeilBrown415e72d2010-06-17 17:25:21 +10004497 if (test_bit(R5_ReadError, &dev->flags))
4498 clear_bit(R5_Insync, &dev->flags);
4499 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004500 if (s->failed < 2)
4501 s->failed_num[s->failed] = i;
4502 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11004503 if (rdev && !test_bit(Faulty, &rdev->flags))
4504 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10004505 }
Song Liu2ded3702016-11-17 15:24:38 -08004506
4507 if (test_bit(R5_InJournal, &dev->flags))
4508 s->injournal++;
Song Liu1e6d6902016-11-17 15:24:39 -08004509 if (test_bit(R5_InJournal, &dev->flags) && dev->written)
4510 s->just_cached++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004511 }
NeilBrown9a3e1102011-12-23 10:17:53 +11004512 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4513 /* If there is a failed device being replaced,
4514 * we must be recovering.
4515 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10004516 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11004517 * else we can only be replacing
4518 * sync and recovery both need to read all devices, and so
4519 * use the same flag.
4520 */
4521 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10004522 sh->sector >= conf->mddev->recovery_cp ||
4523 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11004524 s->syncing = 1;
4525 else
4526 s->replacing = 1;
4527 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004528 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10004529}
NeilBrownf4168852007-02-28 20:11:53 -08004530
shli@kernel.org59fc6302014-12-15 12:57:03 +11004531static int clear_batch_ready(struct stripe_head *sh)
4532{
NeilBrownb15a9db2015-05-22 15:20:04 +10004533 /* Return '1' if this is a member of batch, or
4534 * '0' if it is a lone stripe or a head which can now be
4535 * handled.
4536 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11004537 struct stripe_head *tmp;
4538 if (!test_and_clear_bit(STRIPE_BATCH_READY, &sh->state))
NeilBrownb15a9db2015-05-22 15:20:04 +10004539 return (sh->batch_head && sh->batch_head != sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11004540 spin_lock(&sh->stripe_lock);
4541 if (!sh->batch_head) {
4542 spin_unlock(&sh->stripe_lock);
4543 return 0;
4544 }
4545
4546 /*
4547 * this stripe could be added to a batch list before we check
4548 * BATCH_READY, skips it
4549 */
4550 if (sh->batch_head != sh) {
4551 spin_unlock(&sh->stripe_lock);
4552 return 1;
4553 }
4554 spin_lock(&sh->batch_lock);
4555 list_for_each_entry(tmp, &sh->batch_list, batch_list)
4556 clear_bit(STRIPE_BATCH_READY, &tmp->state);
4557 spin_unlock(&sh->batch_lock);
4558 spin_unlock(&sh->stripe_lock);
4559
4560 /*
4561 * BATCH_READY is cleared, no new stripes can be added.
4562 * batch_list can be accessed without lock
4563 */
4564 return 0;
4565}
4566
NeilBrown3960ce72015-05-21 12:20:36 +10004567static void break_stripe_batch_list(struct stripe_head *head_sh,
4568 unsigned long handle_flags)
shli@kernel.org72ac7332014-12-15 12:57:03 +11004569{
NeilBrown4e3d62f2015-05-21 11:50:16 +10004570 struct stripe_head *sh, *next;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004571 int i;
NeilBrownfb642b92015-05-21 12:00:47 +10004572 int do_wakeup = 0;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004573
NeilBrownbb270512015-05-08 18:19:40 +10004574 list_for_each_entry_safe(sh, next, &head_sh->batch_list, batch_list) {
4575
shli@kernel.org72ac7332014-12-15 12:57:03 +11004576 list_del_init(&sh->batch_list);
4577
Shaohua Lifb3229d2016-03-09 10:08:38 -08004578 WARN_ONCE(sh->state & ((1 << STRIPE_ACTIVE) |
NeilBrown1b956f72015-05-21 12:40:26 +10004579 (1 << STRIPE_SYNCING) |
4580 (1 << STRIPE_REPLACED) |
NeilBrown1b956f72015-05-21 12:40:26 +10004581 (1 << STRIPE_DELAYED) |
4582 (1 << STRIPE_BIT_DELAY) |
4583 (1 << STRIPE_FULL_WRITE) |
4584 (1 << STRIPE_BIOFILL_RUN) |
4585 (1 << STRIPE_COMPUTE_RUN) |
4586 (1 << STRIPE_OPS_REQ_PENDING) |
4587 (1 << STRIPE_DISCARD) |
4588 (1 << STRIPE_BATCH_READY) |
4589 (1 << STRIPE_BATCH_ERR) |
Shaohua Lifb3229d2016-03-09 10:08:38 -08004590 (1 << STRIPE_BITMAP_PENDING)),
4591 "stripe state: %lx\n", sh->state);
4592 WARN_ONCE(head_sh->state & ((1 << STRIPE_DISCARD) |
4593 (1 << STRIPE_REPLACED)),
4594 "head stripe state: %lx\n", head_sh->state);
NeilBrown1b956f72015-05-21 12:40:26 +10004595
4596 set_mask_bits(&sh->state, ~(STRIPE_EXPAND_SYNC_FLAGS |
NeilBrown550da242016-03-09 12:58:25 +11004597 (1 << STRIPE_PREREAD_ACTIVE) |
NeilBrown1b956f72015-05-21 12:40:26 +10004598 (1 << STRIPE_DEGRADED)),
4599 head_sh->state & (1 << STRIPE_INSYNC));
4600
shli@kernel.org72ac7332014-12-15 12:57:03 +11004601 sh->check_state = head_sh->check_state;
4602 sh->reconstruct_state = head_sh->reconstruct_state;
NeilBrownfb642b92015-05-21 12:00:47 +10004603 for (i = 0; i < sh->disks; i++) {
4604 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
4605 do_wakeup = 1;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004606 sh->dev[i].flags = head_sh->dev[i].flags &
4607 (~((1 << R5_WriteError) | (1 << R5_Overlap)));
NeilBrownfb642b92015-05-21 12:00:47 +10004608 }
shli@kernel.org72ac7332014-12-15 12:57:03 +11004609 spin_lock_irq(&sh->stripe_lock);
4610 sh->batch_head = NULL;
4611 spin_unlock_irq(&sh->stripe_lock);
NeilBrown3960ce72015-05-21 12:20:36 +10004612 if (handle_flags == 0 ||
4613 sh->state & handle_flags)
4614 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07004615 raid5_release_stripe(sh);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004616 }
NeilBrownfb642b92015-05-21 12:00:47 +10004617 spin_lock_irq(&head_sh->stripe_lock);
4618 head_sh->batch_head = NULL;
4619 spin_unlock_irq(&head_sh->stripe_lock);
4620 for (i = 0; i < head_sh->disks; i++)
4621 if (test_and_clear_bit(R5_Overlap, &head_sh->dev[i].flags))
4622 do_wakeup = 1;
NeilBrown3960ce72015-05-21 12:20:36 +10004623 if (head_sh->state & handle_flags)
4624 set_bit(STRIPE_HANDLE, &head_sh->state);
NeilBrownfb642b92015-05-21 12:00:47 +10004625
4626 if (do_wakeup)
4627 wake_up(&head_sh->raid_conf->wait_for_overlap);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004628}
4629
NeilBrowncc940152011-07-26 11:35:35 +10004630static void handle_stripe(struct stripe_head *sh)
4631{
4632 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11004633 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10004634 int i;
NeilBrown84789552011-07-27 11:00:36 +10004635 int prexor;
4636 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004637 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10004638
4639 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11004640 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10004641 /* already being handled, ensure it gets handled
4642 * again when current action finishes */
4643 set_bit(STRIPE_HANDLE, &sh->state);
4644 return;
4645 }
4646
shli@kernel.org59fc6302014-12-15 12:57:03 +11004647 if (clear_batch_ready(sh) ) {
4648 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
4649 return;
4650 }
4651
NeilBrown4e3d62f2015-05-21 11:50:16 +10004652 if (test_and_clear_bit(STRIPE_BATCH_ERR, &sh->state))
NeilBrown3960ce72015-05-21 12:20:36 +10004653 break_stripe_batch_list(sh, 0);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004654
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004655 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state) && !sh->batch_head) {
NeilBrownf8dfcff2013-03-12 12:18:06 +11004656 spin_lock(&sh->stripe_lock);
4657 /* Cannot process 'sync' concurrently with 'discard' */
4658 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
4659 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4660 set_bit(STRIPE_SYNCING, &sh->state);
4661 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10004662 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004663 }
4664 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10004665 }
4666 clear_bit(STRIPE_DELAYED, &sh->state);
4667
4668 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
4669 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
4670 (unsigned long long)sh->sector, sh->state,
4671 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
4672 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10004673
NeilBrownacfe7262011-07-27 11:00:36 +10004674 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10004675
Shaohua Lib70abcb2015-08-13 14:31:58 -07004676 if (test_bit(STRIPE_LOG_TRAPPED, &sh->state))
4677 goto finish;
4678
NeilBrown16d997b2017-03-15 14:05:12 +11004679 if (s.handle_bad_blocks ||
4680 test_bit(MD_SB_CHANGE_PENDING, &conf->mddev->sb_flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004681 set_bit(STRIPE_HANDLE, &sh->state);
4682 goto finish;
4683 }
4684
NeilBrown474af965fe2011-07-27 11:00:36 +10004685 if (unlikely(s.blocked_rdev)) {
4686 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11004687 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10004688 set_bit(STRIPE_HANDLE, &sh->state);
4689 goto finish;
4690 }
4691 /* There is nothing for the blocked_rdev to block */
4692 rdev_dec_pending(s.blocked_rdev, conf->mddev);
4693 s.blocked_rdev = NULL;
4694 }
4695
4696 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
4697 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
4698 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
4699 }
4700
4701 pr_debug("locked=%d uptodate=%d to_read=%d"
4702 " to_write=%d failed=%d failed_num=%d,%d\n",
4703 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
4704 s.failed_num[0], s.failed_num[1]);
4705 /* check if the array has lost more than max_degraded devices and,
4706 * if so, some requests might need to be failed.
4707 */
Shaohua Li6e74a9c2015-10-08 21:54:08 -07004708 if (s.failed > conf->max_degraded || s.log_failed) {
NeilBrown9a3f5302011-11-08 16:22:01 +11004709 sh->check_state = 0;
4710 sh->reconstruct_state = 0;
NeilBrown626f2092015-05-22 14:03:10 +10004711 break_stripe_batch_list(sh, 0);
NeilBrown9a3f5302011-11-08 16:22:01 +11004712 if (s.to_read+s.to_write+s.written)
NeilBrownbd83d0a2017-03-15 14:05:12 +11004713 handle_failed_stripe(conf, sh, &s, disks);
NeilBrown9a3e1102011-12-23 10:17:53 +11004714 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11004715 handle_failed_sync(conf, sh, &s);
4716 }
NeilBrown474af965fe2011-07-27 11:00:36 +10004717
NeilBrown84789552011-07-27 11:00:36 +10004718 /* Now we check to see if any write operations have recently
4719 * completed
4720 */
4721 prexor = 0;
4722 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
4723 prexor = 1;
4724 if (sh->reconstruct_state == reconstruct_state_drain_result ||
4725 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
4726 sh->reconstruct_state = reconstruct_state_idle;
4727
4728 /* All the 'written' buffers and the parity block are ready to
4729 * be written back to disk
4730 */
Shaohua Li9e4447682012-10-11 13:49:49 +11004731 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
4732 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004733 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11004734 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
4735 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004736 for (i = disks; i--; ) {
4737 struct r5dev *dev = &sh->dev[i];
4738 if (test_bit(R5_LOCKED, &dev->flags) &&
4739 (i == sh->pd_idx || i == sh->qd_idx ||
Song Liu1e6d6902016-11-17 15:24:39 -08004740 dev->written || test_bit(R5_InJournal,
4741 &dev->flags))) {
NeilBrown84789552011-07-27 11:00:36 +10004742 pr_debug("Writing block %d\n", i);
4743 set_bit(R5_Wantwrite, &dev->flags);
4744 if (prexor)
4745 continue;
NeilBrown9c4bdf62014-08-13 09:57:07 +10004746 if (s.failed > 1)
4747 continue;
NeilBrown84789552011-07-27 11:00:36 +10004748 if (!test_bit(R5_Insync, &dev->flags) ||
4749 ((i == sh->pd_idx || i == sh->qd_idx) &&
4750 s.failed == 0))
4751 set_bit(STRIPE_INSYNC, &sh->state);
4752 }
4753 }
4754 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4755 s.dec_preread_active = 1;
4756 }
4757
NeilBrownef5b7c62012-11-22 09:13:36 +11004758 /*
4759 * might be able to return some write requests if the parity blocks
4760 * are safe, or on a failed drive
4761 */
4762 pdev = &sh->dev[sh->pd_idx];
4763 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
4764 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
4765 qdev = &sh->dev[sh->qd_idx];
4766 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
4767 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
4768 || conf->level < 6;
4769
4770 if (s.written &&
4771 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
4772 && !test_bit(R5_LOCKED, &pdev->flags)
4773 && (test_bit(R5_UPTODATE, &pdev->flags) ||
4774 test_bit(R5_Discard, &pdev->flags))))) &&
4775 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
4776 && !test_bit(R5_LOCKED, &qdev->flags)
4777 && (test_bit(R5_UPTODATE, &qdev->flags) ||
4778 test_bit(R5_Discard, &qdev->flags))))))
NeilBrownbd83d0a2017-03-15 14:05:12 +11004779 handle_stripe_clean_event(conf, sh, disks);
NeilBrownef5b7c62012-11-22 09:13:36 +11004780
Song Liu1e6d6902016-11-17 15:24:39 -08004781 if (s.just_cached)
NeilBrownbd83d0a2017-03-15 14:05:12 +11004782 r5c_handle_cached_data_endio(conf, sh, disks);
Artur Paszkiewiczff875732017-03-09 09:59:58 +01004783 log_stripe_write_finished(sh);
Song Liu1e6d6902016-11-17 15:24:39 -08004784
NeilBrownef5b7c62012-11-22 09:13:36 +11004785 /* Now we might consider reading some blocks, either to check/generate
4786 * parity, or to satisfy requests
4787 * or to load a block that is being partially written.
4788 */
4789 if (s.to_read || s.non_overwrite
4790 || (conf->level == 6 && s.to_write && s.failed)
4791 || (s.syncing && (s.uptodate + s.compute < disks))
4792 || s.replacing
4793 || s.expanding)
4794 handle_stripe_fill(sh, &s, disks);
4795
Song Liu2ded3702016-11-17 15:24:38 -08004796 /*
4797 * When the stripe finishes full journal write cycle (write to journal
4798 * and raid disk), this is the clean up procedure so it is ready for
4799 * next operation.
4800 */
4801 r5c_finish_stripe_write_out(conf, sh, &s);
4802
4803 /*
4804 * Now to consider new write requests, cache write back and what else,
4805 * if anything should be read. We do not handle new writes when:
NeilBrown84789552011-07-27 11:00:36 +10004806 * 1/ A 'write' operation (copy+xor) is already in flight.
4807 * 2/ A 'check' operation is in flight, as it may clobber the parity
4808 * block.
Song Liu2ded3702016-11-17 15:24:38 -08004809 * 3/ A r5c cache log write is in flight.
NeilBrown84789552011-07-27 11:00:36 +10004810 */
Song Liu2ded3702016-11-17 15:24:38 -08004811
4812 if (!sh->reconstruct_state && !sh->check_state && !sh->log_io) {
4813 if (!r5c_is_writeback(conf->log)) {
4814 if (s.to_write)
4815 handle_stripe_dirtying(conf, sh, &s, disks);
4816 } else { /* write back cache */
4817 int ret = 0;
4818
4819 /* First, try handle writes in caching phase */
4820 if (s.to_write)
4821 ret = r5c_try_caching_write(conf, sh, &s,
4822 disks);
4823 /*
4824 * If caching phase failed: ret == -EAGAIN
4825 * OR
4826 * stripe under reclaim: !caching && injournal
4827 *
4828 * fall back to handle_stripe_dirtying()
4829 */
4830 if (ret == -EAGAIN ||
4831 /* stripe under reclaim: !caching && injournal */
4832 (!test_bit(STRIPE_R5C_CACHING, &sh->state) &&
Song Liud7bd3982016-11-23 22:50:39 -08004833 s.injournal > 0)) {
4834 ret = handle_stripe_dirtying(conf, sh, &s,
4835 disks);
4836 if (ret == -EAGAIN)
4837 goto finish;
4838 }
Song Liu2ded3702016-11-17 15:24:38 -08004839 }
4840 }
NeilBrown84789552011-07-27 11:00:36 +10004841
4842 /* maybe we need to check and possibly fix the parity for this stripe
4843 * Any reads will already have been scheduled, so we just see if enough
4844 * data is available. The parity check is held off while parity
4845 * dependent operations are in flight.
4846 */
4847 if (sh->check_state ||
4848 (s.syncing && s.locked == 0 &&
4849 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
4850 !test_bit(STRIPE_INSYNC, &sh->state))) {
4851 if (conf->level == 6)
4852 handle_parity_checks6(conf, sh, &s, disks);
4853 else
4854 handle_parity_checks5(conf, sh, &s, disks);
4855 }
NeilBrownc5a31002011-07-27 11:00:36 +10004856
NeilBrownf94c0b62013-07-22 12:57:21 +10004857 if ((s.replacing || s.syncing) && s.locked == 0
4858 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
4859 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11004860 /* Write out to replacement devices where possible */
4861 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10004862 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
4863 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11004864 set_bit(R5_WantReplace, &sh->dev[i].flags);
4865 set_bit(R5_LOCKED, &sh->dev[i].flags);
4866 s.locked++;
4867 }
NeilBrownf94c0b62013-07-22 12:57:21 +10004868 if (s.replacing)
4869 set_bit(STRIPE_INSYNC, &sh->state);
4870 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11004871 }
4872 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10004873 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11004874 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10004875 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4876 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004877 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
4878 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10004879 }
4880
4881 /* If the failed drives are just a ReadError, then we might need
4882 * to progress the repair/check process
4883 */
4884 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
4885 for (i = 0; i < s.failed; i++) {
4886 struct r5dev *dev = &sh->dev[s.failed_num[i]];
4887 if (test_bit(R5_ReadError, &dev->flags)
4888 && !test_bit(R5_LOCKED, &dev->flags)
4889 && test_bit(R5_UPTODATE, &dev->flags)
4890 ) {
4891 if (!test_bit(R5_ReWrite, &dev->flags)) {
4892 set_bit(R5_Wantwrite, &dev->flags);
4893 set_bit(R5_ReWrite, &dev->flags);
4894 set_bit(R5_LOCKED, &dev->flags);
4895 s.locked++;
4896 } else {
4897 /* let's read it back */
4898 set_bit(R5_Wantread, &dev->flags);
4899 set_bit(R5_LOCKED, &dev->flags);
4900 s.locked++;
4901 }
4902 }
4903 }
4904
NeilBrown3687c062011-07-27 11:00:36 +10004905 /* Finish reconstruct operations initiated by the expansion process */
4906 if (sh->reconstruct_state == reconstruct_state_result) {
4907 struct stripe_head *sh_src
Shaohua Li6d036f72015-08-13 14:31:57 -07004908 = raid5_get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrown3687c062011-07-27 11:00:36 +10004909 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
4910 /* sh cannot be written until sh_src has been read.
4911 * so arrange for sh to be delayed a little
4912 */
4913 set_bit(STRIPE_DELAYED, &sh->state);
4914 set_bit(STRIPE_HANDLE, &sh->state);
4915 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
4916 &sh_src->state))
4917 atomic_inc(&conf->preread_active_stripes);
Shaohua Li6d036f72015-08-13 14:31:57 -07004918 raid5_release_stripe(sh_src);
NeilBrown3687c062011-07-27 11:00:36 +10004919 goto finish;
4920 }
4921 if (sh_src)
Shaohua Li6d036f72015-08-13 14:31:57 -07004922 raid5_release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07004923
NeilBrown3687c062011-07-27 11:00:36 +10004924 sh->reconstruct_state = reconstruct_state_idle;
4925 clear_bit(STRIPE_EXPANDING, &sh->state);
4926 for (i = conf->raid_disks; i--; ) {
4927 set_bit(R5_Wantwrite, &sh->dev[i].flags);
4928 set_bit(R5_LOCKED, &sh->dev[i].flags);
4929 s.locked++;
4930 }
4931 }
4932
4933 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
4934 !sh->reconstruct_state) {
4935 /* Need to write out all blocks after computing parity */
4936 sh->disks = conf->raid_disks;
4937 stripe_set_idx(sh->sector, conf, 0, sh);
4938 schedule_reconstruction(sh, &s, 1, 1);
4939 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
4940 clear_bit(STRIPE_EXPAND_READY, &sh->state);
4941 atomic_dec(&conf->reshape_stripes);
4942 wake_up(&conf->wait_for_overlap);
4943 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4944 }
4945
4946 if (s.expanding && s.locked == 0 &&
4947 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
4948 handle_stripe_expansion(conf, sh);
4949
4950finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07004951 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10004952 if (unlikely(s.blocked_rdev)) {
4953 if (conf->mddev->external)
4954 md_wait_for_blocked_rdev(s.blocked_rdev,
4955 conf->mddev);
4956 else
4957 /* Internal metadata will immediately
4958 * be written by raid5d, so we don't
4959 * need to wait here.
4960 */
4961 rdev_dec_pending(s.blocked_rdev,
4962 conf->mddev);
4963 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004964
NeilBrownbc2607f2011-07-28 11:39:22 +10004965 if (s.handle_bad_blocks)
4966 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004967 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10004968 struct r5dev *dev = &sh->dev[i];
4969 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
4970 /* We own a safe reference to the rdev */
4971 rdev = conf->disks[i].rdev;
4972 if (!rdev_set_badblocks(rdev, sh->sector,
4973 STRIPE_SECTORS, 0))
4974 md_error(conf->mddev, rdev);
4975 rdev_dec_pending(rdev, conf->mddev);
4976 }
NeilBrownb84db562011-07-28 11:39:23 +10004977 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
4978 rdev = conf->disks[i].rdev;
4979 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004980 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10004981 rdev_dec_pending(rdev, conf->mddev);
4982 }
NeilBrown977df362011-12-23 10:17:53 +11004983 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
4984 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11004985 if (!rdev)
4986 /* rdev have been moved down */
4987 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11004988 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004989 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11004990 rdev_dec_pending(rdev, conf->mddev);
4991 }
NeilBrownbc2607f2011-07-28 11:39:22 +10004992 }
4993
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004994 if (s.ops_request)
4995 raid_run_ops(sh, s.ops_request);
4996
Dan Williamsf0e43bc2008-06-28 08:31:55 +10004997 ops_run_io(sh, &s);
4998
NeilBrownc5709ef2011-07-26 11:35:20 +10004999 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11005000 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02005001 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11005002 * have actually been submitted.
5003 */
5004 atomic_dec(&conf->preread_active_stripes);
5005 if (atomic_read(&conf->preread_active_stripes) <
5006 IO_THRESHOLD)
5007 md_wakeup_thread(conf->mddev->thread);
5008 }
5009
Dan Williams257a4b42011-11-08 16:22:06 +11005010 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07005011}
5012
NeilBrownd1688a62011-10-11 16:49:52 +11005013static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014{
5015 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
5016 while (!list_empty(&conf->delayed_list)) {
5017 struct list_head *l = conf->delayed_list.next;
5018 struct stripe_head *sh;
5019 sh = list_entry(l, struct stripe_head, lru);
5020 list_del_init(l);
5021 clear_bit(STRIPE_DELAYED, &sh->state);
5022 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5023 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005024 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08005025 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026 }
NeilBrown482c0832011-04-18 18:25:42 +10005027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028}
5029
Shaohua Li566c09c2013-11-14 15:16:17 +11005030static void activate_bit_delay(struct r5conf *conf,
5031 struct list_head *temp_inactive_list)
NeilBrown72626682005-09-09 16:23:54 -07005032{
5033 /* device_lock is held */
5034 struct list_head head;
5035 list_add(&head, &conf->bitmap_list);
5036 list_del_init(&conf->bitmap_list);
5037 while (!list_empty(&head)) {
5038 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
Shaohua Li566c09c2013-11-14 15:16:17 +11005039 int hash;
NeilBrown72626682005-09-09 16:23:54 -07005040 list_del_init(&sh->lru);
5041 atomic_inc(&sh->count);
Shaohua Li566c09c2013-11-14 15:16:17 +11005042 hash = sh->hash_lock_index;
5043 __release_stripe(conf, sh, &temp_inactive_list[hash]);
NeilBrown72626682005-09-09 16:23:54 -07005044 }
5045}
5046
NeilBrown5c675f82014-12-15 12:56:56 +11005047static int raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07005048{
NeilBrownd1688a62011-10-11 16:49:52 +11005049 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07005050
5051 /* No difference between reads and writes. Just check
5052 * how busy the stripe_cache is
5053 */
NeilBrown3fa841d2009-09-23 18:10:29 +10005054
NeilBrown54233992015-02-26 12:21:04 +11005055 if (test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state))
NeilBrownf022b2f2006-10-03 01:15:56 -07005056 return 1;
Song Liua39f7af2016-11-17 15:24:40 -08005057
5058 /* Also checks whether there is pressure on r5cache log space */
5059 if (test_bit(R5C_LOG_TIGHT, &conf->cache_state))
5060 return 1;
NeilBrownf022b2f2006-10-03 01:15:56 -07005061 if (conf->quiesce)
5062 return 1;
Shaohua Li4bda5562013-11-14 15:16:17 +11005063 if (atomic_read(&conf->empty_inactive_list_nr))
NeilBrownf022b2f2006-10-03 01:15:56 -07005064 return 1;
5065
5066 return 0;
5067}
5068
NeilBrownfd01b882011-10-11 16:47:53 +11005069static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005070{
NeilBrown3cb5edf2015-07-15 17:24:17 +10005071 struct r5conf *conf = mddev->private;
Kent Overstreet4f024f32013-10-11 15:44:27 -07005072 sector_t sector = bio->bi_iter.bi_sector + get_start_sect(bio->bi_bdev);
NeilBrown3cb5edf2015-07-15 17:24:17 +10005073 unsigned int chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08005074 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005075
NeilBrown3cb5edf2015-07-15 17:24:17 +10005076 chunk_sectors = min(conf->chunk_sectors, conf->prev_chunk_sectors);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005077 return chunk_sectors >=
5078 ((sector & (chunk_sectors - 1)) + bio_sectors);
5079}
5080
5081/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005082 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
5083 * later sampled by raid5d.
5084 */
NeilBrownd1688a62011-10-11 16:49:52 +11005085static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005086{
5087 unsigned long flags;
5088
5089 spin_lock_irqsave(&conf->device_lock, flags);
5090
5091 bi->bi_next = conf->retry_read_aligned_list;
5092 conf->retry_read_aligned_list = bi;
5093
5094 spin_unlock_irqrestore(&conf->device_lock, flags);
5095 md_wakeup_thread(conf->mddev->thread);
5096}
5097
NeilBrownd1688a62011-10-11 16:49:52 +11005098static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005099{
5100 struct bio *bi;
5101
5102 bi = conf->retry_read_aligned;
5103 if (bi) {
5104 conf->retry_read_aligned = NULL;
5105 return bi;
5106 }
5107 bi = conf->retry_read_aligned_list;
5108 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08005109 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005110 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02005111 /*
5112 * this sets the active strip count to 1 and the processed
5113 * strip count to zero (upper 8 bits)
5114 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10005115 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005116 }
5117
5118 return bi;
5119}
5120
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005121/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005122 * The "raid5_align_endio" should check if the read succeeded and if it
5123 * did, call bio_endio on the original bio (having bio_put the new bio
5124 * first).
5125 * If the read failed..
5126 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005127static void raid5_align_endio(struct bio *bi)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005128{
5129 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11005130 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005131 struct r5conf *conf;
NeilBrown3cb03002011-10-11 16:45:26 +11005132 struct md_rdev *rdev;
Sasha Levin9b81c842015-08-10 19:05:18 -04005133 int error = bi->bi_error;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005134
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005135 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005136
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005137 rdev = (void*)raid_bi->bi_next;
5138 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11005139 mddev = rdev->mddev;
5140 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005141
5142 rdev_dec_pending(rdev, conf->mddev);
5143
Sasha Levin9b81c842015-08-10 19:05:18 -04005144 if (!error) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005145 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
5146 raid_bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005147 bio_endio(raid_bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005148 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10005149 wake_up(&conf->wait_for_quiescent);
NeilBrown6712ecf2007-09-27 12:47:43 +02005150 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005151 }
5152
Dan Williams45b42332007-07-09 11:56:43 -07005153 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005154
5155 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005156}
5157
Ming Lin7ef6b122015-05-06 22:51:24 -07005158static int raid5_read_one_chunk(struct mddev *mddev, struct bio *raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005159{
NeilBrownd1688a62011-10-11 16:49:52 +11005160 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11005161 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005162 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11005163 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11005164 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005165
5166 if (!in_chunk_boundary(mddev, raid_bio)) {
Ming Lin7ef6b122015-05-06 22:51:24 -07005167 pr_debug("%s: non aligned\n", __func__);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005168 return 0;
5169 }
5170 /*
Ming Leid7a10302017-02-14 23:29:03 +08005171 * use bio_clone_fast to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005172 */
Ming Leid7a10302017-02-14 23:29:03 +08005173 align_bi = bio_clone_fast(raid_bio, GFP_NOIO, mddev->bio_set);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005174 if (!align_bi)
5175 return 0;
5176 /*
5177 * set bi_end_io to a new function, and set bi_private to the
5178 * original bio.
5179 */
5180 align_bi->bi_end_io = raid5_align_endio;
5181 align_bi->bi_private = raid_bio;
5182 /*
5183 * compute position
5184 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07005185 align_bi->bi_iter.bi_sector =
5186 raid5_compute_sector(conf, raid_bio->bi_iter.bi_sector,
5187 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005188
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005189 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005190 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11005191 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
5192 if (!rdev || test_bit(Faulty, &rdev->flags) ||
5193 rdev->recovery_offset < end_sector) {
5194 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
5195 if (rdev &&
5196 (test_bit(Faulty, &rdev->flags) ||
5197 !(test_bit(In_sync, &rdev->flags) ||
5198 rdev->recovery_offset >= end_sector)))
5199 rdev = NULL;
5200 }
Song Liu03b047f2017-01-11 13:39:14 -08005201
5202 if (r5c_big_stripe_cached(conf, align_bi->bi_iter.bi_sector)) {
5203 rcu_read_unlock();
5204 bio_put(align_bi);
5205 return 0;
5206 }
5207
NeilBrown671488c2011-12-23 10:17:52 +11005208 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10005209 sector_t first_bad;
5210 int bad_sectors;
5211
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005212 atomic_inc(&rdev->nr_pending);
5213 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005214 raid_bio->bi_next = (void*)rdev;
5215 align_bi->bi_bdev = rdev->bdev;
Jens Axboeb7c44ed2015-07-24 12:37:59 -06005216 bio_clear_flag(align_bi, BIO_SEG_VALID);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005217
Kent Overstreet7140aaf2013-09-25 13:37:01 -07005218 if (is_badblock(rdev, align_bi->bi_iter.bi_sector,
Kent Overstreet4f024f32013-10-11 15:44:27 -07005219 bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10005220 &first_bad, &bad_sectors)) {
Neil Brown387bb172007-02-08 14:20:29 -08005221 bio_put(align_bi);
5222 rdev_dec_pending(rdev, mddev);
5223 return 0;
5224 }
5225
majianpeng6c0544e2012-06-12 08:31:10 +08005226 /* No reshape active, so we can trust rdev->data_offset */
Kent Overstreet4f024f32013-10-11 15:44:27 -07005227 align_bi->bi_iter.bi_sector += rdev->data_offset;
majianpeng6c0544e2012-06-12 08:31:10 +08005228
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005229 spin_lock_irq(&conf->device_lock);
Yuanhan Liub1b46482015-05-08 18:19:06 +10005230 wait_event_lock_irq(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005231 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01005232 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005233 atomic_inc(&conf->active_aligned_reads);
5234 spin_unlock_irq(&conf->device_lock);
5235
Jonathan Brassowe3620a32013-03-07 16:22:01 -06005236 if (mddev->gendisk)
5237 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
5238 align_bi, disk_devt(mddev->gendisk),
Kent Overstreet4f024f32013-10-11 15:44:27 -07005239 raid_bio->bi_iter.bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005240 generic_make_request(align_bi);
5241 return 1;
5242 } else {
5243 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005244 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005245 return 0;
5246 }
5247}
5248
Ming Lin7ef6b122015-05-06 22:51:24 -07005249static struct bio *chunk_aligned_read(struct mddev *mddev, struct bio *raid_bio)
5250{
5251 struct bio *split;
5252
5253 do {
5254 sector_t sector = raid_bio->bi_iter.bi_sector;
5255 unsigned chunk_sects = mddev->chunk_sectors;
5256 unsigned sectors = chunk_sects - (sector & (chunk_sects-1));
5257
5258 if (sectors < bio_sectors(raid_bio)) {
5259 split = bio_split(raid_bio, sectors, GFP_NOIO, fs_bio_set);
5260 bio_chain(split, raid_bio);
5261 } else
5262 split = raid_bio;
5263
5264 if (!raid5_read_one_chunk(mddev, split)) {
5265 if (split != raid_bio)
5266 generic_make_request(raid_bio);
5267 return split;
5268 }
5269 } while (split != raid_bio);
5270
5271 return NULL;
5272}
5273
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005274/* __get_priority_stripe - get the next stripe to process
5275 *
5276 * Full stripe writes are allowed to pass preread active stripes up until
5277 * the bypass_threshold is exceeded. In general the bypass_count
5278 * increments when the handle_list is handled before the hold_list; however, it
5279 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
5280 * stripe with in flight i/o. The bypass_count will be reset when the
5281 * head of the hold_list has changed, i.e. the head was promoted to the
5282 * handle_list.
5283 */
Shaohua Li851c30c2013-08-28 14:30:16 +08005284static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005285{
Shaohua Li535ae4e2017-02-15 19:37:32 -08005286 struct stripe_head *sh, *tmp;
Shaohua Li851c30c2013-08-28 14:30:16 +08005287 struct list_head *handle_list = NULL;
Shaohua Li535ae4e2017-02-15 19:37:32 -08005288 struct r5worker_group *wg;
5289 bool second_try = !r5c_is_writeback(conf->log);
5290 bool try_loprio = test_bit(R5C_LOG_TIGHT, &conf->cache_state);
Shaohua Li851c30c2013-08-28 14:30:16 +08005291
Shaohua Li535ae4e2017-02-15 19:37:32 -08005292again:
5293 wg = NULL;
5294 sh = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005295 if (conf->worker_cnt_per_group == 0) {
Shaohua Li535ae4e2017-02-15 19:37:32 -08005296 handle_list = try_loprio ? &conf->loprio_list :
5297 &conf->handle_list;
Shaohua Li851c30c2013-08-28 14:30:16 +08005298 } else if (group != ANY_GROUP) {
Shaohua Li535ae4e2017-02-15 19:37:32 -08005299 handle_list = try_loprio ? &conf->worker_groups[group].loprio_list :
5300 &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005301 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08005302 } else {
5303 int i;
5304 for (i = 0; i < conf->group_cnt; i++) {
Shaohua Li535ae4e2017-02-15 19:37:32 -08005305 handle_list = try_loprio ? &conf->worker_groups[i].loprio_list :
5306 &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005307 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08005308 if (!list_empty(handle_list))
5309 break;
5310 }
5311 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005312
5313 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
5314 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08005315 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005316 list_empty(&conf->hold_list) ? "empty" : "busy",
5317 atomic_read(&conf->pending_full_writes), conf->bypass_count);
5318
Shaohua Li851c30c2013-08-28 14:30:16 +08005319 if (!list_empty(handle_list)) {
5320 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005321
5322 if (list_empty(&conf->hold_list))
5323 conf->bypass_count = 0;
5324 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
5325 if (conf->hold_list.next == conf->last_hold)
5326 conf->bypass_count++;
5327 else {
5328 conf->last_hold = conf->hold_list.next;
5329 conf->bypass_count -= conf->bypass_threshold;
5330 if (conf->bypass_count < 0)
5331 conf->bypass_count = 0;
5332 }
5333 }
5334 } else if (!list_empty(&conf->hold_list) &&
5335 ((conf->bypass_threshold &&
5336 conf->bypass_count > conf->bypass_threshold) ||
5337 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08005338
5339 list_for_each_entry(tmp, &conf->hold_list, lru) {
5340 if (conf->worker_cnt_per_group == 0 ||
5341 group == ANY_GROUP ||
5342 !cpu_online(tmp->cpu) ||
5343 cpu_to_group(tmp->cpu) == group) {
5344 sh = tmp;
5345 break;
5346 }
5347 }
5348
5349 if (sh) {
5350 conf->bypass_count -= conf->bypass_threshold;
5351 if (conf->bypass_count < 0)
5352 conf->bypass_count = 0;
5353 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08005354 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005355 }
5356
Shaohua Li535ae4e2017-02-15 19:37:32 -08005357 if (!sh) {
5358 if (second_try)
5359 return NULL;
5360 second_try = true;
5361 try_loprio = !try_loprio;
5362 goto again;
5363 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005364
Shaohua Libfc90cb2013-08-29 15:40:32 +08005365 if (wg) {
5366 wg->stripes_cnt--;
5367 sh->group = NULL;
5368 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005369 list_del_init(&sh->lru);
Shaohua Lic7a6d352014-04-15 09:12:54 +08005370 BUG_ON(atomic_inc_return(&sh->count) != 1);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005371 return sh;
5372}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005373
Shaohua Li8811b592012-08-02 08:33:00 +10005374struct raid5_plug_cb {
5375 struct blk_plug_cb cb;
5376 struct list_head list;
Shaohua Li566c09c2013-11-14 15:16:17 +11005377 struct list_head temp_inactive_list[NR_STRIPE_HASH_LOCKS];
Shaohua Li8811b592012-08-02 08:33:00 +10005378};
5379
5380static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
5381{
5382 struct raid5_plug_cb *cb = container_of(
5383 blk_cb, struct raid5_plug_cb, cb);
5384 struct stripe_head *sh;
5385 struct mddev *mddev = cb->cb.data;
5386 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11005387 int cnt = 0;
Shaohua Li566c09c2013-11-14 15:16:17 +11005388 int hash;
Shaohua Li8811b592012-08-02 08:33:00 +10005389
5390 if (cb->list.next && !list_empty(&cb->list)) {
5391 spin_lock_irq(&conf->device_lock);
5392 while (!list_empty(&cb->list)) {
5393 sh = list_first_entry(&cb->list, struct stripe_head, lru);
5394 list_del_init(&sh->lru);
5395 /*
5396 * avoid race release_stripe_plug() sees
5397 * STRIPE_ON_UNPLUG_LIST clear but the stripe
5398 * is still in our list
5399 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005400 smp_mb__before_atomic();
Shaohua Li8811b592012-08-02 08:33:00 +10005401 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08005402 /*
5403 * STRIPE_ON_RELEASE_LIST could be set here. In that
5404 * case, the count is always > 1 here
5405 */
Shaohua Li566c09c2013-11-14 15:16:17 +11005406 hash = sh->hash_lock_index;
5407 __release_stripe(conf, sh, &cb->temp_inactive_list[hash]);
NeilBrowna9add5d2012-10-31 11:59:09 +11005408 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10005409 }
5410 spin_unlock_irq(&conf->device_lock);
5411 }
Shaohua Li566c09c2013-11-14 15:16:17 +11005412 release_inactive_stripe_list(conf, cb->temp_inactive_list,
5413 NR_STRIPE_HASH_LOCKS);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06005414 if (mddev->queue)
5415 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10005416 kfree(cb);
5417}
5418
5419static void release_stripe_plug(struct mddev *mddev,
5420 struct stripe_head *sh)
5421{
5422 struct blk_plug_cb *blk_cb = blk_check_plugged(
5423 raid5_unplug, mddev,
5424 sizeof(struct raid5_plug_cb));
5425 struct raid5_plug_cb *cb;
5426
5427 if (!blk_cb) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005428 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005429 return;
5430 }
5431
5432 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
5433
Shaohua Li566c09c2013-11-14 15:16:17 +11005434 if (cb->list.next == NULL) {
5435 int i;
Shaohua Li8811b592012-08-02 08:33:00 +10005436 INIT_LIST_HEAD(&cb->list);
Shaohua Li566c09c2013-11-14 15:16:17 +11005437 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5438 INIT_LIST_HEAD(cb->temp_inactive_list + i);
5439 }
Shaohua Li8811b592012-08-02 08:33:00 +10005440
5441 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
5442 list_add_tail(&sh->lru, &cb->list);
5443 else
Shaohua Li6d036f72015-08-13 14:31:57 -07005444 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005445}
5446
Shaohua Li620125f2012-10-11 13:49:05 +11005447static void make_discard_request(struct mddev *mddev, struct bio *bi)
5448{
5449 struct r5conf *conf = mddev->private;
5450 sector_t logical_sector, last_sector;
5451 struct stripe_head *sh;
5452 int remaining;
5453 int stripe_sectors;
5454
5455 if (mddev->reshape_position != MaxSector)
5456 /* Skip discard while reshape is happening */
5457 return;
5458
Kent Overstreet4f024f32013-10-11 15:44:27 -07005459 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
5460 last_sector = bi->bi_iter.bi_sector + (bi->bi_iter.bi_size>>9);
Shaohua Li620125f2012-10-11 13:49:05 +11005461
5462 bi->bi_next = NULL;
5463 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown49728052017-03-15 14:05:12 +11005464 md_write_start(mddev, bi);
Shaohua Li620125f2012-10-11 13:49:05 +11005465
5466 stripe_sectors = conf->chunk_sectors *
5467 (conf->raid_disks - conf->max_degraded);
5468 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
5469 stripe_sectors);
5470 sector_div(last_sector, stripe_sectors);
5471
5472 logical_sector *= conf->chunk_sectors;
5473 last_sector *= conf->chunk_sectors;
5474
5475 for (; logical_sector < last_sector;
5476 logical_sector += STRIPE_SECTORS) {
5477 DEFINE_WAIT(w);
5478 int d;
5479 again:
Shaohua Li6d036f72015-08-13 14:31:57 -07005480 sh = raid5_get_active_stripe(conf, logical_sector, 0, 0, 0);
Shaohua Li620125f2012-10-11 13:49:05 +11005481 prepare_to_wait(&conf->wait_for_overlap, &w,
5482 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005483 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
5484 if (test_bit(STRIPE_SYNCING, &sh->state)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005485 raid5_release_stripe(sh);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005486 schedule();
5487 goto again;
5488 }
5489 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11005490 spin_lock_irq(&sh->stripe_lock);
5491 for (d = 0; d < conf->raid_disks; d++) {
5492 if (d == sh->pd_idx || d == sh->qd_idx)
5493 continue;
5494 if (sh->dev[d].towrite || sh->dev[d].toread) {
5495 set_bit(R5_Overlap, &sh->dev[d].flags);
5496 spin_unlock_irq(&sh->stripe_lock);
Shaohua Li6d036f72015-08-13 14:31:57 -07005497 raid5_release_stripe(sh);
Shaohua Li620125f2012-10-11 13:49:05 +11005498 schedule();
5499 goto again;
5500 }
5501 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11005502 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11005503 finish_wait(&conf->wait_for_overlap, &w);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005504 sh->overwrite_disks = 0;
Shaohua Li620125f2012-10-11 13:49:05 +11005505 for (d = 0; d < conf->raid_disks; d++) {
5506 if (d == sh->pd_idx || d == sh->qd_idx)
5507 continue;
5508 sh->dev[d].towrite = bi;
5509 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
5510 raid5_inc_bi_active_stripes(bi);
NeilBrown49728052017-03-15 14:05:12 +11005511 md_write_inc(mddev, bi);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005512 sh->overwrite_disks++;
Shaohua Li620125f2012-10-11 13:49:05 +11005513 }
5514 spin_unlock_irq(&sh->stripe_lock);
5515 if (conf->mddev->bitmap) {
5516 for (d = 0;
5517 d < conf->raid_disks - conf->max_degraded;
5518 d++)
5519 bitmap_startwrite(mddev->bitmap,
5520 sh->sector,
5521 STRIPE_SECTORS,
5522 0);
5523 sh->bm_seq = conf->seq_flush + 1;
5524 set_bit(STRIPE_BIT_DELAY, &sh->state);
5525 }
5526
5527 set_bit(STRIPE_HANDLE, &sh->state);
5528 clear_bit(STRIPE_DELAYED, &sh->state);
5529 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5530 atomic_inc(&conf->preread_active_stripes);
5531 release_stripe_plug(mddev, sh);
5532 }
5533
NeilBrown49728052017-03-15 14:05:12 +11005534 md_write_end(mddev);
Shaohua Li620125f2012-10-11 13:49:05 +11005535 remaining = raid5_dec_bi_active_stripes(bi);
5536 if (remaining == 0) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005537 bio_endio(bi);
Shaohua Li620125f2012-10-11 13:49:05 +11005538 }
5539}
5540
Shaohua Li849674e2016-01-20 13:52:20 -08005541static void raid5_make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542{
NeilBrownd1688a62011-10-11 16:49:52 +11005543 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11005544 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545 sector_t new_sector;
5546 sector_t logical_sector, last_sector;
5547 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01005548 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11005549 int remaining;
Shaohua Li27c0f682014-04-09 11:25:47 +08005550 DEFINE_WAIT(w);
5551 bool do_prepare;
Song Liu3bddb7f2016-11-18 16:46:50 -08005552 bool do_flush = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553
Jens Axboe1eff9d32016-08-05 15:35:16 -06005554 if (unlikely(bi->bi_opf & REQ_PREFLUSH)) {
Shaohua Li828cbe92015-09-02 13:49:49 -07005555 int ret = r5l_handle_flush_request(conf->log, bi);
5556
5557 if (ret == 0)
5558 return;
5559 if (ret == -ENODEV) {
5560 md_flush_request(mddev, bi);
5561 return;
5562 }
5563 /* ret == -EAGAIN, fallback */
Song Liu3bddb7f2016-11-18 16:46:50 -08005564 /*
5565 * if r5l_handle_flush_request() didn't clear REQ_PREFLUSH,
5566 * we need to flush journal device
5567 */
5568 do_flush = bi->bi_opf & REQ_PREFLUSH;
NeilBrowne5dcdd82005-09-09 16:23:41 -07005569 }
5570
Eric Mei9ffc8f72015-03-18 23:39:11 -06005571 /*
5572 * If array is degraded, better not do chunk aligned read because
5573 * later we might have to read it again in order to reconstruct
5574 * data on failed drives.
5575 */
5576 if (rw == READ && mddev->degraded == 0 &&
Ming Lin7ef6b122015-05-06 22:51:24 -07005577 mddev->reshape_position == MaxSector) {
5578 bi = chunk_aligned_read(mddev, bi);
5579 if (!bi)
5580 return;
5581 }
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005582
Mike Christie796a5cf2016-06-05 14:32:07 -05005583 if (unlikely(bio_op(bi) == REQ_OP_DISCARD)) {
Shaohua Li620125f2012-10-11 13:49:05 +11005584 make_discard_request(mddev, bi);
5585 return;
5586 }
5587
Kent Overstreet4f024f32013-10-11 15:44:27 -07005588 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005589 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 bi->bi_next = NULL;
5591 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown49728052017-03-15 14:05:12 +11005592 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07005593
Shaohua Li27c0f682014-04-09 11:25:47 +08005594 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005596 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10005597 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08005598
Shaohua Li27c0f682014-04-09 11:25:47 +08005599 do_prepare = false;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005600 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10005601 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11005602 previous = 0;
Shaohua Li27c0f682014-04-09 11:25:47 +08005603 if (do_prepare)
5604 prepare_to_wait(&conf->wait_for_overlap, &w,
5605 TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005606 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11005607 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f762006-03-27 01:18:15 -08005608 * 64bit on a 32bit platform, and so it might be
5609 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02005610 * Of course reshape_progress could change after
NeilBrowndf8e7f762006-03-27 01:18:15 -08005611 * the lock is dropped, so once we get a reference
5612 * to the stripe that we think it is, we will have
5613 * to check again.
5614 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005615 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005616 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005617 ? logical_sector < conf->reshape_progress
5618 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005619 previous = 1;
5620 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10005621 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005622 ? logical_sector < conf->reshape_safe
5623 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08005624 spin_unlock_irq(&conf->device_lock);
5625 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005626 do_prepare = true;
NeilBrownb578d552006-03-27 01:18:12 -08005627 goto retry;
5628 }
5629 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005630 spin_unlock_irq(&conf->device_lock);
5631 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005632
NeilBrown112bf892009-03-31 14:39:38 +11005633 new_sector = raid5_compute_sector(conf, logical_sector,
5634 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11005635 &dd_idx, NULL);
Shaohua Li849674e2016-01-20 13:52:20 -08005636 pr_debug("raid456: raid5_make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10005637 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638 (unsigned long long)logical_sector);
5639
Shaohua Li6d036f72015-08-13 14:31:57 -07005640 sh = raid5_get_active_stripe(conf, new_sector, previous,
Jens Axboe1eff9d32016-08-05 15:35:16 -06005641 (bi->bi_opf & REQ_RAHEAD), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11005643 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005644 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f762006-03-27 01:18:15 -08005645 * stripe, so we must do the range check again.
5646 * Expansion could still move past after this
5647 * test, but as we are holding a reference to
5648 * 'sh', we know that if that happens,
5649 * STRIPE_EXPANDING will get set and the expansion
5650 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005651 */
5652 int must_retry = 0;
5653 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005654 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11005655 ? logical_sector >= conf->reshape_progress
5656 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005657 /* mismatch, need to try again */
5658 must_retry = 1;
5659 spin_unlock_irq(&conf->device_lock);
5660 if (must_retry) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005661 raid5_release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07005662 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005663 do_prepare = true;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005664 goto retry;
5665 }
5666 }
NeilBrownc46501b2013-08-27 15:52:13 +10005667 if (read_seqcount_retry(&conf->gen_lock, seq)) {
5668 /* Might have got the wrong stripe_head
5669 * by accident
5670 */
Shaohua Li6d036f72015-08-13 14:31:57 -07005671 raid5_release_stripe(sh);
NeilBrownc46501b2013-08-27 15:52:13 +10005672 goto retry;
5673 }
NeilBrowne62e58a2009-07-01 13:15:35 +10005674
Namhyung Kimffd96e32011-07-18 17:38:51 +10005675 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10005676 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08005677 logical_sector < mddev->suspend_hi) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005678 raid5_release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10005679 /* As the suspend_* range is controlled by
5680 * userspace, we want an interruptible
5681 * wait.
5682 */
5683 flush_signals(current);
5684 prepare_to_wait(&conf->wait_for_overlap,
5685 &w, TASK_INTERRUPTIBLE);
5686 if (logical_sector >= mddev->suspend_lo &&
Shaohua Li27c0f682014-04-09 11:25:47 +08005687 logical_sector < mddev->suspend_hi) {
NeilBrowne62e58a2009-07-01 13:15:35 +10005688 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005689 do_prepare = true;
5690 }
NeilBrowne464eaf2006-03-27 01:18:14 -08005691 goto retry;
5692 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005693
5694 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005695 !add_stripe_bio(sh, bi, dd_idx, rw, previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005696 /* Stripe is busy expanding or
5697 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698 * and wait a while
5699 */
NeilBrown482c0832011-04-18 18:25:42 +10005700 md_wakeup_thread(mddev->thread);
Shaohua Li6d036f72015-08-13 14:31:57 -07005701 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005703 do_prepare = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704 goto retry;
5705 }
Song Liu3bddb7f2016-11-18 16:46:50 -08005706 if (do_flush) {
5707 set_bit(STRIPE_R5C_PREFLUSH, &sh->state);
5708 /* we only need flush for one stripe */
5709 do_flush = false;
5710 }
5711
NeilBrown6ed30032008-02-06 01:40:00 -08005712 set_bit(STRIPE_HANDLE, &sh->state);
5713 clear_bit(STRIPE_DELAYED, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11005714 if ((!sh->batch_head || sh == sh->batch_head) &&
Jens Axboe1eff9d32016-08-05 15:35:16 -06005715 (bi->bi_opf & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11005716 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5717 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10005718 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719 } else {
5720 /* cannot get stripe for read-ahead, just give-up */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005721 bi->bi_error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722 break;
5723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724 }
Shaohua Li27c0f682014-04-09 11:25:47 +08005725 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown7c13edc2011-04-18 18:25:43 +10005726
NeilBrown49728052017-03-15 14:05:12 +11005727 if (rw == WRITE)
5728 md_write_end(mddev);
Shaohua Lie7836bd62012-07-19 16:01:31 +10005729 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08005730 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731
NeilBrown6712ecf2007-09-27 12:47:43 +02005732
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005733 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
5734 bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005735 bio_endio(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737}
5738
NeilBrownfd01b882011-10-11 16:47:53 +11005739static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11005740
NeilBrownfd01b882011-10-11 16:47:53 +11005741static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742{
NeilBrown52c03292006-06-26 00:27:43 -07005743 /* reshaping is quite different to recovery/resync so it is
5744 * handled quite separately ... here.
5745 *
5746 * On each call to sync_request, we gather one chunk worth of
5747 * destination stripes and flag them as expanding.
5748 * Then we find all the source stripes and request reads.
5749 * As the reads complete, handle_stripe will copy the data
5750 * into the destination stripe and release that stripe.
5751 */
NeilBrownd1688a62011-10-11 16:49:52 +11005752 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08005754 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08005755 int raid_disks = conf->previous_raid_disks;
5756 int data_disks = raid_disks - conf->max_degraded;
5757 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07005758 int i;
5759 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11005760 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11005761 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11005762 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11005763 struct list_head stripes;
NeilBrown92140482015-07-06 12:28:45 +10005764 sector_t retn;
NeilBrown52c03292006-06-26 00:27:43 -07005765
NeilBrownfef9c612009-03-31 15:16:46 +11005766 if (sector_nr == 0) {
5767 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10005768 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005769 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
5770 sector_nr = raid5_size(mddev, 0, 0)
5771 - conf->reshape_progress;
NeilBrown6cbd8142015-07-24 13:30:32 +10005772 } else if (mddev->reshape_backwards &&
5773 conf->reshape_progress == MaxSector) {
5774 /* shouldn't happen, but just in case, finish up.*/
5775 sector_nr = MaxSector;
NeilBrown2c810cd2012-05-21 09:27:00 +10005776 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005777 conf->reshape_progress > 0)
5778 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005779 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005780 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11005781 mddev->curr_resync_completed = sector_nr;
5782 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11005783 *skipped = 1;
NeilBrown92140482015-07-06 12:28:45 +10005784 retn = sector_nr;
5785 goto finish;
NeilBrownfef9c612009-03-31 15:16:46 +11005786 }
NeilBrown52c03292006-06-26 00:27:43 -07005787 }
5788
NeilBrown7a661382009-03-31 15:21:40 +11005789 /* We need to process a full chunk at a time.
5790 * If old and new chunk sizes differ, we need to process the
5791 * largest of these
5792 */
NeilBrown3cb5edf2015-07-15 17:24:17 +10005793
5794 reshape_sectors = max(conf->chunk_sectors, conf->prev_chunk_sectors);
NeilBrown7a661382009-03-31 15:21:40 +11005795
NeilBrownb5254dd2012-05-21 09:27:01 +10005796 /* We update the metadata at least every 10 seconds, or when
5797 * the data about to be copied would over-write the source of
5798 * the data at the front of the range. i.e. one new_stripe
5799 * along from reshape_progress new_maps to after where
5800 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07005801 */
NeilBrownfef9c612009-03-31 15:16:46 +11005802 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005803 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11005804 readpos = conf->reshape_progress;
5805 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005806 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08005807 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10005808 if (mddev->reshape_backwards) {
NeilBrownc74c0d72015-07-15 17:54:15 +10005809 BUG_ON(writepos < reshape_sectors);
5810 writepos -= reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11005811 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005812 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11005813 } else {
NeilBrown7a661382009-03-31 15:21:40 +11005814 writepos += reshape_sectors;
NeilBrownc74c0d72015-07-15 17:54:15 +10005815 /* readpos and safepos are worst-case calculations.
5816 * A negative number is overly pessimistic, and causes
5817 * obvious problems for unsigned storage. So clip to 0.
5818 */
NeilBrowned37d832009-05-27 21:39:05 +10005819 readpos -= min_t(sector_t, reshape_sectors, readpos);
5820 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11005821 }
NeilBrown52c03292006-06-26 00:27:43 -07005822
NeilBrownb5254dd2012-05-21 09:27:01 +10005823 /* Having calculated the 'writepos' possibly use it
5824 * to set 'stripe_addr' which is where we will write to.
5825 */
5826 if (mddev->reshape_backwards) {
5827 BUG_ON(conf->reshape_progress == 0);
5828 stripe_addr = writepos;
5829 BUG_ON((mddev->dev_sectors &
5830 ~((sector_t)reshape_sectors - 1))
5831 - reshape_sectors - stripe_addr
5832 != sector_nr);
5833 } else {
5834 BUG_ON(writepos != sector_nr + reshape_sectors);
5835 stripe_addr = sector_nr;
5836 }
5837
NeilBrownc8f517c2009-03-31 15:28:40 +11005838 /* 'writepos' is the most advanced device address we might write.
5839 * 'readpos' is the least advanced device address we might read.
5840 * 'safepos' is the least address recorded in the metadata as having
5841 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10005842 * If there is a min_offset_diff, these are adjusted either by
5843 * increasing the safepos/readpos if diff is negative, or
5844 * increasing writepos if diff is positive.
5845 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11005846 * ensure safety in the face of a crash - that must be done by userspace
5847 * making a backup of the data. So in that case there is no particular
5848 * rush to update metadata.
5849 * Otherwise if 'safepos' is behind 'writepos', then we really need to
5850 * update the metadata to advance 'safepos' to match 'readpos' so that
5851 * we can be safe in the event of a crash.
5852 * So we insist on updating metadata if safepos is behind writepos and
5853 * readpos is beyond writepos.
5854 * In any case, update the metadata every 10 seconds.
5855 * Maybe that number should be configurable, but I'm not sure it is
5856 * worth it.... maybe it could be a multiple of safemode_delay???
5857 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005858 if (conf->min_offset_diff < 0) {
5859 safepos += -conf->min_offset_diff;
5860 readpos += -conf->min_offset_diff;
5861 } else
5862 writepos += conf->min_offset_diff;
5863
NeilBrown2c810cd2012-05-21 09:27:00 +10005864 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11005865 ? (safepos > writepos && readpos < writepos)
5866 : (safepos < writepos && readpos > writepos)) ||
5867 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07005868 /* Cannot proceed until we've updated the superblock... */
5869 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005870 atomic_read(&conf->reshape_stripes)==0
5871 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5872 if (atomic_read(&conf->reshape_stripes) != 0)
5873 return 0;
NeilBrownfef9c612009-03-31 15:16:46 +11005874 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005875 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005876 conf->reshape_checkpoint = jiffies;
Shaohua Li29530792016-12-08 15:48:19 -08005877 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrown52c03292006-06-26 00:27:43 -07005878 md_wakeup_thread(mddev->thread);
Shaohua Li29530792016-12-08 15:48:19 -08005879 wait_event(mddev->sb_wait, mddev->sb_flags == 0 ||
NeilBrownc91abf52013-11-19 12:02:01 +11005880 test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5881 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5882 return 0;
NeilBrown52c03292006-06-26 00:27:43 -07005883 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005884 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07005885 spin_unlock_irq(&conf->device_lock);
5886 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005887 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07005888 }
5889
NeilBrownab69ae12009-03-31 15:26:47 +11005890 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11005891 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07005892 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10005893 int skipped_disk = 0;
Shaohua Li6d036f72015-08-13 14:31:57 -07005894 sh = raid5_get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005895 set_bit(STRIPE_EXPANDING, &sh->state);
5896 atomic_inc(&conf->reshape_stripes);
5897 /* If any of this stripe is beyond the end of the old
5898 * array, then we need to zero those blocks
5899 */
5900 for (j=sh->disks; j--;) {
5901 sector_t s;
5902 if (j == sh->pd_idx)
5903 continue;
NeilBrownf4168852007-02-28 20:11:53 -08005904 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11005905 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08005906 continue;
Shaohua Li6d036f72015-08-13 14:31:57 -07005907 s = raid5_compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11005908 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10005909 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07005910 continue;
5911 }
5912 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
5913 set_bit(R5_Expanded, &sh->dev[j].flags);
5914 set_bit(R5_UPTODATE, &sh->dev[j].flags);
5915 }
NeilBrowna9f326e2009-09-23 18:06:41 +10005916 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07005917 set_bit(STRIPE_EXPAND_READY, &sh->state);
5918 set_bit(STRIPE_HANDLE, &sh->state);
5919 }
NeilBrownab69ae12009-03-31 15:26:47 +11005920 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07005921 }
5922 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005923 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11005924 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005925 else
NeilBrown7a661382009-03-31 15:21:40 +11005926 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07005927 spin_unlock_irq(&conf->device_lock);
5928 /* Ok, those stripe are ready. We can start scheduling
5929 * reads on the source stripes.
5930 * The source stripes are determined by mapping the first and last
5931 * block on the destination stripes.
5932 */
NeilBrown52c03292006-06-26 00:27:43 -07005933 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11005934 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11005935 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07005936 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10005937 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10005938 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11005939 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11005940 if (last_sector >= mddev->dev_sectors)
5941 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07005942 while (first_sector <= last_sector) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005943 sh = raid5_get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005944 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
5945 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07005946 raid5_release_stripe(sh);
NeilBrown52c03292006-06-26 00:27:43 -07005947 first_sector += STRIPE_SECTORS;
5948 }
NeilBrownab69ae12009-03-31 15:26:47 +11005949 /* Now that the sources are clearly marked, we can release
5950 * the destination stripes
5951 */
5952 while (!list_empty(&stripes)) {
5953 sh = list_entry(stripes.next, struct stripe_head, lru);
5954 list_del_init(&sh->lru);
Shaohua Li6d036f72015-08-13 14:31:57 -07005955 raid5_release_stripe(sh);
NeilBrownab69ae12009-03-31 15:26:47 +11005956 }
NeilBrownc6207272008-02-06 01:39:52 -08005957 /* If this takes us to the resync_max point where we have to pause,
5958 * then we need to write out the superblock.
5959 */
NeilBrown7a661382009-03-31 15:21:40 +11005960 sector_nr += reshape_sectors;
NeilBrown92140482015-07-06 12:28:45 +10005961 retn = reshape_sectors;
5962finish:
NeilBrownc5e19d92015-07-17 12:06:02 +10005963 if (mddev->curr_resync_completed > mddev->resync_max ||
5964 (sector_nr - mddev->curr_resync_completed) * 2
NeilBrownc03f6a12009-04-17 11:06:30 +10005965 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08005966 /* Cannot proceed until we've updated the superblock... */
5967 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005968 atomic_read(&conf->reshape_stripes) == 0
5969 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5970 if (atomic_read(&conf->reshape_stripes) != 0)
5971 goto ret;
NeilBrownfef9c612009-03-31 15:16:46 +11005972 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005973 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005974 conf->reshape_checkpoint = jiffies;
Shaohua Li29530792016-12-08 15:48:19 -08005975 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrownc6207272008-02-06 01:39:52 -08005976 md_wakeup_thread(mddev->thread);
5977 wait_event(mddev->sb_wait,
Shaohua Li29530792016-12-08 15:48:19 -08005978 !test_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags)
NeilBrownc91abf52013-11-19 12:02:01 +11005979 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5980 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5981 goto ret;
NeilBrownc6207272008-02-06 01:39:52 -08005982 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005983 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08005984 spin_unlock_irq(&conf->device_lock);
5985 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005986 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08005987 }
NeilBrownc91abf52013-11-19 12:02:01 +11005988ret:
NeilBrown92140482015-07-06 12:28:45 +10005989 return retn;
NeilBrown52c03292006-06-26 00:27:43 -07005990}
5991
Shaohua Li849674e2016-01-20 13:52:20 -08005992static inline sector_t raid5_sync_request(struct mddev *mddev, sector_t sector_nr,
5993 int *skipped)
NeilBrown52c03292006-06-26 00:27:43 -07005994{
NeilBrownd1688a62011-10-11 16:49:52 +11005995 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07005996 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11005997 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11005998 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07005999 int still_degraded = 0;
6000 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001
NeilBrown72626682005-09-09 16:23:54 -07006002 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11006004
NeilBrown29269552006-03-27 01:18:10 -08006005 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
6006 end_reshape(conf);
6007 return 0;
6008 }
NeilBrown72626682005-09-09 16:23:54 -07006009
6010 if (mddev->curr_resync < max_sector) /* aborted */
6011 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
6012 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07006013 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07006014 conf->fullsync = 0;
6015 bitmap_close_sync(mddev->bitmap);
6016
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017 return 0;
6018 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08006019
NeilBrown64bd6602009-08-03 10:59:58 +10006020 /* Allow raid5_quiesce to complete */
6021 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
6022
NeilBrown52c03292006-06-26 00:27:43 -07006023 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
6024 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08006025
NeilBrownc6207272008-02-06 01:39:52 -08006026 /* No need to check resync_max as we never do more than one
6027 * stripe, and as resync_max will always be on a chunk boundary,
6028 * if the check in md_do_sync didn't fire, there is no chance
6029 * of overstepping resync_max here
6030 */
6031
NeilBrown16a53ec2006-06-26 00:27:38 -07006032 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 * to resync, then assert that we are finished, because there is
6034 * nothing we can do.
6035 */
NeilBrown3285edf2006-06-26 00:27:55 -07006036 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07006037 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11006038 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07006039 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040 return rv;
6041 }
majianpeng6f608042013-04-24 11:42:41 +10006042 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
6043 !conf->fullsync &&
6044 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
6045 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07006046 /* we can skip this block, and probably more */
6047 sync_blocks /= STRIPE_SECTORS;
6048 *skipped = 1;
6049 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
6050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10006052 bitmap_cond_end_sync(mddev->bitmap, sector_nr, false);
NeilBrownb47490c2008-02-06 01:39:50 -08006053
Shaohua Li6d036f72015-08-13 14:31:57 -07006054 sh = raid5_get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055 if (sh == NULL) {
Shaohua Li6d036f72015-08-13 14:31:57 -07006056 sh = raid5_get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07006058 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08006060 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061 }
NeilBrown16a53ec2006-06-26 00:27:38 -07006062 /* Need to check if array will still be degraded after recovery/resync
Eric Mei16d9cfa2015-01-06 09:35:02 -08006063 * Note in case of > 1 drive failures it's possible we're rebuilding
6064 * one drive while leaving another faulty drive in array.
NeilBrown16a53ec2006-06-26 00:27:38 -07006065 */
Eric Mei16d9cfa2015-01-06 09:35:02 -08006066 rcu_read_lock();
6067 for (i = 0; i < conf->raid_disks; i++) {
6068 struct md_rdev *rdev = ACCESS_ONCE(conf->disks[i].rdev);
6069
6070 if (rdev == NULL || test_bit(Faulty, &rdev->flags))
NeilBrown16a53ec2006-06-26 00:27:38 -07006071 still_degraded = 1;
Eric Mei16d9cfa2015-01-06 09:35:02 -08006072 }
6073 rcu_read_unlock();
NeilBrown16a53ec2006-06-26 00:27:38 -07006074
6075 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
6076
NeilBrown83206d62011-07-26 11:19:49 +10006077 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Eivind Sarto053f5b62014-06-09 17:06:19 -07006078 set_bit(STRIPE_HANDLE, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
Shaohua Li6d036f72015-08-13 14:31:57 -07006080 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081
6082 return STRIPE_SECTORS;
6083}
6084
NeilBrownd1688a62011-10-11 16:49:52 +11006085static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006086{
6087 /* We may not be able to submit a whole bio at once as there
6088 * may not be enough stripe_heads available.
6089 * We cannot pre-allocate enough stripe_heads as we may need
6090 * more than exist in the cache (if we allow ever large chunks).
6091 * So we do one stripe head at a time and record in
6092 * ->bi_hw_segments how many have been done.
6093 *
6094 * We *know* that this entire raid_bio is in one chunk, so
6095 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
6096 */
6097 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11006098 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006099 sector_t sector, logical_sector, last_sector;
6100 int scnt = 0;
6101 int remaining;
6102 int handled = 0;
6103
Kent Overstreet4f024f32013-10-11 15:44:27 -07006104 logical_sector = raid_bio->bi_iter.bi_sector &
6105 ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11006106 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11006107 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07006108 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006109
6110 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08006111 logical_sector += STRIPE_SECTORS,
6112 sector += STRIPE_SECTORS,
6113 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006114
Shaohua Lie7836bd62012-07-19 16:01:31 +10006115 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006116 /* already done this stripe */
6117 continue;
6118
Shaohua Li6d036f72015-08-13 14:31:57 -07006119 sh = raid5_get_active_stripe(conf, sector, 0, 1, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006120
6121 if (!sh) {
6122 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10006123 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006124 conf->retry_read_aligned = raid_bio;
6125 return handled;
6126 }
6127
shli@kernel.orgda41ba62014-12-15 12:57:03 +11006128 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0, 0)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07006129 raid5_release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10006130 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08006131 conf->retry_read_aligned = raid_bio;
6132 return handled;
6133 }
6134
majianpeng3f9e7c12012-07-31 10:04:21 +10006135 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07006136 handle_stripe(sh);
Shaohua Li6d036f72015-08-13 14:31:57 -07006137 raid5_release_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006138 handled++;
6139 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10006140 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07006141 if (remaining == 0) {
6142 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
6143 raid_bio, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006144 bio_endio(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07006145 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006146 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10006147 wake_up(&conf->wait_for_quiescent);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006148 return handled;
6149}
6150
Shaohua Libfc90cb2013-08-29 15:40:32 +08006151static int handle_active_stripes(struct r5conf *conf, int group,
Shaohua Li566c09c2013-11-14 15:16:17 +11006152 struct r5worker *worker,
6153 struct list_head *temp_inactive_list)
Shaohua Li46a06402012-08-02 08:33:15 +10006154{
6155 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +11006156 int i, batch_size = 0, hash;
6157 bool release_inactive = false;
Shaohua Li46a06402012-08-02 08:33:15 +10006158
6159 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08006160 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10006161 batch[batch_size++] = sh;
6162
Shaohua Li566c09c2013-11-14 15:16:17 +11006163 if (batch_size == 0) {
6164 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6165 if (!list_empty(temp_inactive_list + i))
6166 break;
Shaohua Lia8c34f92015-09-02 13:49:46 -07006167 if (i == NR_STRIPE_HASH_LOCKS) {
6168 spin_unlock_irq(&conf->device_lock);
6169 r5l_flush_stripe_to_raid(conf->log);
6170 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11006171 return batch_size;
Shaohua Lia8c34f92015-09-02 13:49:46 -07006172 }
Shaohua Li566c09c2013-11-14 15:16:17 +11006173 release_inactive = true;
6174 }
Shaohua Li46a06402012-08-02 08:33:15 +10006175 spin_unlock_irq(&conf->device_lock);
6176
Shaohua Li566c09c2013-11-14 15:16:17 +11006177 release_inactive_stripe_list(conf, temp_inactive_list,
6178 NR_STRIPE_HASH_LOCKS);
6179
Shaohua Lia8c34f92015-09-02 13:49:46 -07006180 r5l_flush_stripe_to_raid(conf->log);
Shaohua Li566c09c2013-11-14 15:16:17 +11006181 if (release_inactive) {
6182 spin_lock_irq(&conf->device_lock);
6183 return 0;
6184 }
6185
Shaohua Li46a06402012-08-02 08:33:15 +10006186 for (i = 0; i < batch_size; i++)
6187 handle_stripe(batch[i]);
Artur Paszkiewiczff875732017-03-09 09:59:58 +01006188 log_write_stripe_run(conf);
Shaohua Li46a06402012-08-02 08:33:15 +10006189
6190 cond_resched();
6191
6192 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11006193 for (i = 0; i < batch_size; i++) {
6194 hash = batch[i]->hash_lock_index;
6195 __release_stripe(conf, batch[i], &temp_inactive_list[hash]);
6196 }
Shaohua Li46a06402012-08-02 08:33:15 +10006197 return batch_size;
6198}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006199
Shaohua Li851c30c2013-08-28 14:30:16 +08006200static void raid5_do_work(struct work_struct *work)
6201{
6202 struct r5worker *worker = container_of(work, struct r5worker, work);
6203 struct r5worker_group *group = worker->group;
6204 struct r5conf *conf = group->conf;
NeilBrown16d997b2017-03-15 14:05:12 +11006205 struct mddev *mddev = conf->mddev;
Shaohua Li851c30c2013-08-28 14:30:16 +08006206 int group_id = group - conf->worker_groups;
6207 int handled;
6208 struct blk_plug plug;
6209
6210 pr_debug("+++ raid5worker active\n");
6211
6212 blk_start_plug(&plug);
6213 handled = 0;
6214 spin_lock_irq(&conf->device_lock);
6215 while (1) {
6216 int batch_size, released;
6217
Shaohua Li566c09c2013-11-14 15:16:17 +11006218 released = release_stripe_list(conf, worker->temp_inactive_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08006219
Shaohua Li566c09c2013-11-14 15:16:17 +11006220 batch_size = handle_active_stripes(conf, group_id, worker,
6221 worker->temp_inactive_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +08006222 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08006223 if (!batch_size && !released)
6224 break;
6225 handled += batch_size;
NeilBrown16d997b2017-03-15 14:05:12 +11006226 wait_event_lock_irq(mddev->sb_wait,
6227 !test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags),
6228 conf->device_lock);
Shaohua Li851c30c2013-08-28 14:30:16 +08006229 }
6230 pr_debug("%d stripes handled\n", handled);
6231
6232 spin_unlock_irq(&conf->device_lock);
6233 blk_finish_plug(&plug);
6234
6235 pr_debug("--- raid5worker inactive\n");
6236}
6237
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238/*
6239 * This is our raid5 kernel thread.
6240 *
6241 * We scan the hash table for stripes which can be handled now.
6242 * During the scan, completed stripes are saved for us by the interrupt
6243 * handler, so that they will not have to wait for our next wakeup.
6244 */
Shaohua Li4ed87312012-10-11 13:34:00 +11006245static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246{
Shaohua Li4ed87312012-10-11 13:34:00 +11006247 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11006248 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006250 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251
Dan Williams45b42332007-07-09 11:56:43 -07006252 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253
6254 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006256 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257 handled = 0;
6258 spin_lock_irq(&conf->device_lock);
6259 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006260 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08006261 int batch_size, released;
6262
Shaohua Li566c09c2013-11-14 15:16:17 +11006263 released = release_stripe_list(conf, conf->temp_inactive_list);
NeilBrownedbe83a2015-02-26 12:47:56 +11006264 if (released)
6265 clear_bit(R5_DID_ALLOC, &conf->cache_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266
NeilBrown0021b7b2012-07-31 09:08:14 +02006267 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10006268 !list_empty(&conf->bitmap_list)) {
6269 /* Now is a good time to flush some bitmap updates */
6270 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08006271 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07006272 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08006273 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10006274 conf->seq_write = conf->seq_flush;
Shaohua Li566c09c2013-11-14 15:16:17 +11006275 activate_bit_delay(conf, conf->temp_inactive_list);
NeilBrown72626682005-09-09 16:23:54 -07006276 }
NeilBrown0021b7b2012-07-31 09:08:14 +02006277 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07006278
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006279 while ((bio = remove_bio_from_retry(conf))) {
6280 int ok;
6281 spin_unlock_irq(&conf->device_lock);
6282 ok = retry_aligned_read(conf, bio);
6283 spin_lock_irq(&conf->device_lock);
6284 if (!ok)
6285 break;
6286 handled++;
6287 }
6288
Shaohua Li566c09c2013-11-14 15:16:17 +11006289 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL,
6290 conf->temp_inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08006291 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292 break;
Shaohua Li46a06402012-08-02 08:33:15 +10006293 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294
Shaohua Li29530792016-12-08 15:48:19 -08006295 if (mddev->sb_flags & ~(1 << MD_SB_CHANGE_PENDING)) {
Shaohua Li46a06402012-08-02 08:33:15 +10006296 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10006297 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10006298 spin_lock_irq(&conf->device_lock);
6299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300 }
Dan Williams45b42332007-07-09 11:56:43 -07006301 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302
6303 spin_unlock_irq(&conf->device_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10006304 if (test_and_clear_bit(R5_ALLOC_MORE, &conf->cache_state) &&
6305 mutex_trylock(&conf->cache_size_mutex)) {
NeilBrownedbe83a2015-02-26 12:47:56 +11006306 grow_one_stripe(conf, __GFP_NOWARN);
6307 /* Set flag even if allocation failed. This helps
6308 * slow down allocation requests when mem is short
6309 */
6310 set_bit(R5_DID_ALLOC, &conf->cache_state);
NeilBrown2d5b5692015-07-06 12:49:23 +10006311 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11006312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313
Shaohua Li765d7042017-01-04 09:33:23 -08006314 flush_deferred_bios(conf);
6315
Shaohua Li0576b1c2015-08-13 14:32:00 -07006316 r5l_flush_stripe_to_raid(conf->log);
6317
Dan Williamsc9f21aa2008-07-23 12:05:51 -07006318 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006319 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320
Dan Williams45b42332007-07-09 11:56:43 -07006321 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322}
6323
NeilBrown3f294f42005-11-08 21:39:25 -08006324static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006325raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006326{
NeilBrown7b1485b2014-12-15 12:56:59 +11006327 struct r5conf *conf;
6328 int ret = 0;
6329 spin_lock(&mddev->lock);
6330 conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006331 if (conf)
NeilBrownedbe83a2015-02-26 12:47:56 +11006332 ret = sprintf(page, "%d\n", conf->min_nr_stripes);
NeilBrown7b1485b2014-12-15 12:56:59 +11006333 spin_unlock(&mddev->lock);
6334 return ret;
NeilBrown3f294f42005-11-08 21:39:25 -08006335}
6336
NeilBrownc41d4ac2010-06-01 19:37:24 +10006337int
NeilBrownfd01b882011-10-11 16:47:53 +11006338raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10006339{
NeilBrownd1688a62011-10-11 16:49:52 +11006340 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10006341 int err;
6342
6343 if (size <= 16 || size > 32768)
6344 return -EINVAL;
NeilBrown486f0642015-02-25 12:10:35 +11006345
NeilBrownedbe83a2015-02-26 12:47:56 +11006346 conf->min_nr_stripes = size;
NeilBrown2d5b5692015-07-06 12:49:23 +10006347 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006348 while (size < conf->max_nr_stripes &&
6349 drop_one_stripe(conf))
6350 ;
NeilBrown2d5b5692015-07-06 12:49:23 +10006351 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006352
NeilBrownedbe83a2015-02-26 12:47:56 +11006353
NeilBrownc41d4ac2010-06-01 19:37:24 +10006354 err = md_allow_write(mddev);
6355 if (err)
6356 return err;
NeilBrown486f0642015-02-25 12:10:35 +11006357
NeilBrown2d5b5692015-07-06 12:49:23 +10006358 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006359 while (size > conf->max_nr_stripes)
6360 if (!grow_one_stripe(conf, GFP_KERNEL))
6361 break;
NeilBrown2d5b5692015-07-06 12:49:23 +10006362 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006363
NeilBrownc41d4ac2010-06-01 19:37:24 +10006364 return 0;
6365}
6366EXPORT_SYMBOL(raid5_set_cache_size);
6367
NeilBrown3f294f42005-11-08 21:39:25 -08006368static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006369raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08006370{
NeilBrown67918752014-12-15 12:57:01 +11006371 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006372 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07006373 int err;
6374
NeilBrown3f294f42005-11-08 21:39:25 -08006375 if (len >= PAGE_SIZE)
6376 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006377 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08006378 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006379 err = mddev_lock(mddev);
Dan Williamsb5470dc2008-06-27 21:44:04 -07006380 if (err)
6381 return err;
NeilBrown67918752014-12-15 12:57:01 +11006382 conf = mddev->private;
6383 if (!conf)
6384 err = -ENODEV;
6385 else
6386 err = raid5_set_cache_size(mddev, new);
6387 mddev_unlock(mddev);
6388
6389 return err ?: len;
NeilBrown3f294f42005-11-08 21:39:25 -08006390}
NeilBrown007583c2005-11-08 21:39:30 -08006391
NeilBrown96de1e62005-11-08 21:39:39 -08006392static struct md_sysfs_entry
6393raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
6394 raid5_show_stripe_cache_size,
6395 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08006396
6397static ssize_t
Markus Stockhausend06f1912014-12-15 12:57:05 +11006398raid5_show_rmw_level(struct mddev *mddev, char *page)
6399{
6400 struct r5conf *conf = mddev->private;
6401 if (conf)
6402 return sprintf(page, "%d\n", conf->rmw_level);
6403 else
6404 return 0;
6405}
6406
6407static ssize_t
6408raid5_store_rmw_level(struct mddev *mddev, const char *page, size_t len)
6409{
6410 struct r5conf *conf = mddev->private;
6411 unsigned long new;
6412
6413 if (!conf)
6414 return -ENODEV;
6415
6416 if (len >= PAGE_SIZE)
6417 return -EINVAL;
6418
6419 if (kstrtoul(page, 10, &new))
6420 return -EINVAL;
6421
6422 if (new != PARITY_DISABLE_RMW && !raid6_call.xor_syndrome)
6423 return -EINVAL;
6424
6425 if (new != PARITY_DISABLE_RMW &&
6426 new != PARITY_ENABLE_RMW &&
6427 new != PARITY_PREFER_RMW)
6428 return -EINVAL;
6429
6430 conf->rmw_level = new;
6431 return len;
6432}
6433
6434static struct md_sysfs_entry
6435raid5_rmw_level = __ATTR(rmw_level, S_IRUGO | S_IWUSR,
6436 raid5_show_rmw_level,
6437 raid5_store_rmw_level);
6438
6439
6440static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006441raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006442{
NeilBrown7b1485b2014-12-15 12:56:59 +11006443 struct r5conf *conf;
6444 int ret = 0;
6445 spin_lock(&mddev->lock);
6446 conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006447 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006448 ret = sprintf(page, "%d\n", conf->bypass_threshold);
6449 spin_unlock(&mddev->lock);
6450 return ret;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006451}
6452
6453static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006454raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006455{
NeilBrown67918752014-12-15 12:57:01 +11006456 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006457 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006458 int err;
6459
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006460 if (len >= PAGE_SIZE)
6461 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006462 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006463 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006464
6465 err = mddev_lock(mddev);
6466 if (err)
6467 return err;
6468 conf = mddev->private;
6469 if (!conf)
6470 err = -ENODEV;
NeilBrownedbe83a2015-02-26 12:47:56 +11006471 else if (new > conf->min_nr_stripes)
NeilBrown67918752014-12-15 12:57:01 +11006472 err = -EINVAL;
6473 else
6474 conf->bypass_threshold = new;
6475 mddev_unlock(mddev);
6476 return err ?: len;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006477}
6478
6479static struct md_sysfs_entry
6480raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
6481 S_IRUGO | S_IWUSR,
6482 raid5_show_preread_threshold,
6483 raid5_store_preread_threshold);
6484
6485static ssize_t
Shaohua Lid592a992014-05-21 17:57:44 +08006486raid5_show_skip_copy(struct mddev *mddev, char *page)
6487{
NeilBrown7b1485b2014-12-15 12:56:59 +11006488 struct r5conf *conf;
6489 int ret = 0;
6490 spin_lock(&mddev->lock);
6491 conf = mddev->private;
Shaohua Lid592a992014-05-21 17:57:44 +08006492 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006493 ret = sprintf(page, "%d\n", conf->skip_copy);
6494 spin_unlock(&mddev->lock);
6495 return ret;
Shaohua Lid592a992014-05-21 17:57:44 +08006496}
6497
6498static ssize_t
6499raid5_store_skip_copy(struct mddev *mddev, const char *page, size_t len)
6500{
NeilBrown67918752014-12-15 12:57:01 +11006501 struct r5conf *conf;
Shaohua Lid592a992014-05-21 17:57:44 +08006502 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006503 int err;
6504
Shaohua Lid592a992014-05-21 17:57:44 +08006505 if (len >= PAGE_SIZE)
6506 return -EINVAL;
Shaohua Lid592a992014-05-21 17:57:44 +08006507 if (kstrtoul(page, 10, &new))
6508 return -EINVAL;
6509 new = !!new;
Shaohua Lid592a992014-05-21 17:57:44 +08006510
NeilBrown67918752014-12-15 12:57:01 +11006511 err = mddev_lock(mddev);
6512 if (err)
6513 return err;
6514 conf = mddev->private;
6515 if (!conf)
6516 err = -ENODEV;
6517 else if (new != conf->skip_copy) {
6518 mddev_suspend(mddev);
6519 conf->skip_copy = new;
6520 if (new)
Jan Karadc3b17c2017-02-02 15:56:50 +01006521 mddev->queue->backing_dev_info->capabilities |=
NeilBrown67918752014-12-15 12:57:01 +11006522 BDI_CAP_STABLE_WRITES;
6523 else
Jan Karadc3b17c2017-02-02 15:56:50 +01006524 mddev->queue->backing_dev_info->capabilities &=
NeilBrown67918752014-12-15 12:57:01 +11006525 ~BDI_CAP_STABLE_WRITES;
6526 mddev_resume(mddev);
6527 }
6528 mddev_unlock(mddev);
6529 return err ?: len;
Shaohua Lid592a992014-05-21 17:57:44 +08006530}
6531
6532static struct md_sysfs_entry
6533raid5_skip_copy = __ATTR(skip_copy, S_IRUGO | S_IWUSR,
6534 raid5_show_skip_copy,
6535 raid5_store_skip_copy);
6536
Shaohua Lid592a992014-05-21 17:57:44 +08006537static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006538stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006539{
NeilBrownd1688a62011-10-11 16:49:52 +11006540 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006541 if (conf)
6542 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
6543 else
6544 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08006545}
6546
NeilBrown96de1e62005-11-08 21:39:39 -08006547static struct md_sysfs_entry
6548raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08006549
Shaohua Lib7214202013-08-27 17:50:42 +08006550static ssize_t
6551raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
6552{
NeilBrown7b1485b2014-12-15 12:56:59 +11006553 struct r5conf *conf;
6554 int ret = 0;
6555 spin_lock(&mddev->lock);
6556 conf = mddev->private;
Shaohua Lib7214202013-08-27 17:50:42 +08006557 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006558 ret = sprintf(page, "%d\n", conf->worker_cnt_per_group);
6559 spin_unlock(&mddev->lock);
6560 return ret;
Shaohua Lib7214202013-08-27 17:50:42 +08006561}
6562
majianpeng60aaf932013-11-14 15:16:20 +11006563static int alloc_thread_groups(struct r5conf *conf, int cnt,
6564 int *group_cnt,
6565 int *worker_cnt_per_group,
6566 struct r5worker_group **worker_groups);
Shaohua Lib7214202013-08-27 17:50:42 +08006567static ssize_t
6568raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
6569{
NeilBrown67918752014-12-15 12:57:01 +11006570 struct r5conf *conf;
Shaohua Lib7214202013-08-27 17:50:42 +08006571 unsigned long new;
6572 int err;
majianpeng60aaf932013-11-14 15:16:20 +11006573 struct r5worker_group *new_groups, *old_groups;
6574 int group_cnt, worker_cnt_per_group;
Shaohua Lib7214202013-08-27 17:50:42 +08006575
6576 if (len >= PAGE_SIZE)
6577 return -EINVAL;
Shaohua Lib7214202013-08-27 17:50:42 +08006578 if (kstrtoul(page, 10, &new))
6579 return -EINVAL;
6580
NeilBrown67918752014-12-15 12:57:01 +11006581 err = mddev_lock(mddev);
Shaohua Lib7214202013-08-27 17:50:42 +08006582 if (err)
6583 return err;
NeilBrown67918752014-12-15 12:57:01 +11006584 conf = mddev->private;
6585 if (!conf)
6586 err = -ENODEV;
6587 else if (new != conf->worker_cnt_per_group) {
6588 mddev_suspend(mddev);
6589
6590 old_groups = conf->worker_groups;
6591 if (old_groups)
6592 flush_workqueue(raid5_wq);
6593
6594 err = alloc_thread_groups(conf, new,
6595 &group_cnt, &worker_cnt_per_group,
6596 &new_groups);
6597 if (!err) {
6598 spin_lock_irq(&conf->device_lock);
6599 conf->group_cnt = group_cnt;
6600 conf->worker_cnt_per_group = worker_cnt_per_group;
6601 conf->worker_groups = new_groups;
6602 spin_unlock_irq(&conf->device_lock);
6603
6604 if (old_groups)
6605 kfree(old_groups[0].workers);
6606 kfree(old_groups);
6607 }
6608 mddev_resume(mddev);
6609 }
6610 mddev_unlock(mddev);
6611
6612 return err ?: len;
Shaohua Lib7214202013-08-27 17:50:42 +08006613}
6614
6615static struct md_sysfs_entry
6616raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
6617 raid5_show_group_thread_cnt,
6618 raid5_store_group_thread_cnt);
6619
NeilBrown007583c2005-11-08 21:39:30 -08006620static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08006621 &raid5_stripecache_size.attr,
6622 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006623 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08006624 &raid5_group_thread_cnt.attr,
Shaohua Lid592a992014-05-21 17:57:44 +08006625 &raid5_skip_copy.attr,
Markus Stockhausend06f1912014-12-15 12:57:05 +11006626 &raid5_rmw_level.attr,
Song Liu2c7da142016-11-17 15:24:41 -08006627 &r5c_journal_mode.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08006628 NULL,
6629};
NeilBrown007583c2005-11-08 21:39:30 -08006630static struct attribute_group raid5_attrs_group = {
6631 .name = NULL,
6632 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08006633};
6634
majianpeng60aaf932013-11-14 15:16:20 +11006635static int alloc_thread_groups(struct r5conf *conf, int cnt,
6636 int *group_cnt,
6637 int *worker_cnt_per_group,
6638 struct r5worker_group **worker_groups)
Shaohua Li851c30c2013-08-28 14:30:16 +08006639{
Shaohua Li566c09c2013-11-14 15:16:17 +11006640 int i, j, k;
Shaohua Li851c30c2013-08-28 14:30:16 +08006641 ssize_t size;
6642 struct r5worker *workers;
6643
majianpeng60aaf932013-11-14 15:16:20 +11006644 *worker_cnt_per_group = cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +08006645 if (cnt == 0) {
majianpeng60aaf932013-11-14 15:16:20 +11006646 *group_cnt = 0;
6647 *worker_groups = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08006648 return 0;
6649 }
majianpeng60aaf932013-11-14 15:16:20 +11006650 *group_cnt = num_possible_nodes();
Shaohua Li851c30c2013-08-28 14:30:16 +08006651 size = sizeof(struct r5worker) * cnt;
majianpeng60aaf932013-11-14 15:16:20 +11006652 workers = kzalloc(size * *group_cnt, GFP_NOIO);
6653 *worker_groups = kzalloc(sizeof(struct r5worker_group) *
6654 *group_cnt, GFP_NOIO);
6655 if (!*worker_groups || !workers) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006656 kfree(workers);
majianpeng60aaf932013-11-14 15:16:20 +11006657 kfree(*worker_groups);
Shaohua Li851c30c2013-08-28 14:30:16 +08006658 return -ENOMEM;
6659 }
6660
majianpeng60aaf932013-11-14 15:16:20 +11006661 for (i = 0; i < *group_cnt; i++) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006662 struct r5worker_group *group;
6663
NeilBrown0c775d52013-11-25 11:12:43 +11006664 group = &(*worker_groups)[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08006665 INIT_LIST_HEAD(&group->handle_list);
Shaohua Li535ae4e2017-02-15 19:37:32 -08006666 INIT_LIST_HEAD(&group->loprio_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08006667 group->conf = conf;
6668 group->workers = workers + i * cnt;
6669
6670 for (j = 0; j < cnt; j++) {
Shaohua Li566c09c2013-11-14 15:16:17 +11006671 struct r5worker *worker = group->workers + j;
6672 worker->group = group;
6673 INIT_WORK(&worker->work, raid5_do_work);
6674
6675 for (k = 0; k < NR_STRIPE_HASH_LOCKS; k++)
6676 INIT_LIST_HEAD(worker->temp_inactive_list + k);
Shaohua Li851c30c2013-08-28 14:30:16 +08006677 }
6678 }
6679
6680 return 0;
6681}
6682
6683static void free_thread_groups(struct r5conf *conf)
6684{
6685 if (conf->worker_groups)
6686 kfree(conf->worker_groups[0].workers);
6687 kfree(conf->worker_groups);
6688 conf->worker_groups = NULL;
6689}
6690
Dan Williams80c3a6c2009-03-17 18:10:40 -07006691static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11006692raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07006693{
NeilBrownd1688a62011-10-11 16:49:52 +11006694 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006695
6696 if (!sectors)
6697 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006698 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11006699 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11006700 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006701
NeilBrown3cb5edf2015-07-15 17:24:17 +10006702 sectors &= ~((sector_t)conf->chunk_sectors - 1);
6703 sectors &= ~((sector_t)conf->prev_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006704 return sectors * (raid_disks - conf->max_degraded);
6705}
6706
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306707static void free_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6708{
6709 safe_put_page(percpu->spare_page);
shli@kernel.org46d5b782014-12-15 12:57:02 +11006710 if (percpu->scribble)
6711 flex_array_free(percpu->scribble);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306712 percpu->spare_page = NULL;
6713 percpu->scribble = NULL;
6714}
6715
6716static int alloc_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6717{
6718 if (conf->level == 6 && !percpu->spare_page)
6719 percpu->spare_page = alloc_page(GFP_KERNEL);
6720 if (!percpu->scribble)
shli@kernel.org46d5b782014-12-15 12:57:02 +11006721 percpu->scribble = scribble_alloc(max(conf->raid_disks,
NeilBrown738a2732015-05-08 18:19:39 +10006722 conf->previous_raid_disks),
6723 max(conf->chunk_sectors,
6724 conf->prev_chunk_sectors)
6725 / STRIPE_SECTORS,
6726 GFP_KERNEL);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306727
6728 if (!percpu->scribble || (conf->level == 6 && !percpu->spare_page)) {
6729 free_scratch_buffer(conf, percpu);
6730 return -ENOMEM;
6731 }
6732
6733 return 0;
6734}
6735
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006736static int raid456_cpu_dead(unsigned int cpu, struct hlist_node *node)
6737{
6738 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
6739
6740 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
6741 return 0;
6742}
6743
NeilBrownd1688a62011-10-11 16:49:52 +11006744static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006745{
Dan Williams36d1c642009-07-14 11:48:22 -07006746 if (!conf->percpu)
6747 return;
6748
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006749 cpuhp_state_remove_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Dan Williams36d1c642009-07-14 11:48:22 -07006750 free_percpu(conf->percpu);
6751}
6752
NeilBrownd1688a62011-10-11 16:49:52 +11006753static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10006754{
Song Liud7bd3982016-11-23 22:50:39 -08006755 int i;
6756
Artur Paszkiewiczff875732017-03-09 09:59:58 +01006757 log_exit(conf);
6758
Shaohua Li30c89462016-09-21 09:07:13 -07006759 if (conf->shrinker.nr_deferred)
NeilBrownedbe83a2015-02-26 12:47:56 +11006760 unregister_shrinker(&conf->shrinker);
Shaohua Li5c7e81c2015-08-13 14:32:04 -07006761
Shaohua Li851c30c2013-08-28 14:30:16 +08006762 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006763 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07006764 raid5_free_percpu(conf);
Song Liud7bd3982016-11-23 22:50:39 -08006765 for (i = 0; i < conf->pool_size; i++)
6766 if (conf->disks[i].extra_page)
6767 put_page(conf->disks[i].extra_page);
Dan Williams95fc17a2009-07-31 12:39:15 +10006768 kfree(conf->disks);
6769 kfree(conf->stripe_hashtbl);
Shaohua Liaaf9f122017-03-03 22:06:12 -08006770 kfree(conf->pending_data);
Dan Williams95fc17a2009-07-31 12:39:15 +10006771 kfree(conf);
6772}
6773
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006774static int raid456_cpu_up_prepare(unsigned int cpu, struct hlist_node *node)
Dan Williams36d1c642009-07-14 11:48:22 -07006775{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006776 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
Dan Williams36d1c642009-07-14 11:48:22 -07006777 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
6778
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006779 if (alloc_scratch_buffer(conf, percpu)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006780 pr_warn("%s: failed memory allocation for cpu%u\n",
6781 __func__, cpu);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006782 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006783 }
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006784 return 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006785}
Dan Williams36d1c642009-07-14 11:48:22 -07006786
NeilBrownd1688a62011-10-11 16:49:52 +11006787static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006788{
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306789 int err = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006790
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306791 conf->percpu = alloc_percpu(struct raid5_percpu);
6792 if (!conf->percpu)
Dan Williams36d1c642009-07-14 11:48:22 -07006793 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006794
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006795 err = cpuhp_state_add_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Shaohua Li27a353c2016-02-24 17:38:28 -08006796 if (!err) {
6797 conf->scribble_disks = max(conf->raid_disks,
6798 conf->previous_raid_disks);
6799 conf->scribble_sectors = max(conf->chunk_sectors,
6800 conf->prev_chunk_sectors);
6801 }
Dan Williams36d1c642009-07-14 11:48:22 -07006802 return err;
6803}
6804
NeilBrownedbe83a2015-02-26 12:47:56 +11006805static unsigned long raid5_cache_scan(struct shrinker *shrink,
6806 struct shrink_control *sc)
6807{
6808 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
NeilBrown2d5b5692015-07-06 12:49:23 +10006809 unsigned long ret = SHRINK_STOP;
6810
6811 if (mutex_trylock(&conf->cache_size_mutex)) {
6812 ret= 0;
NeilBrown49895bc2015-08-03 17:09:57 +10006813 while (ret < sc->nr_to_scan &&
6814 conf->max_nr_stripes > conf->min_nr_stripes) {
NeilBrown2d5b5692015-07-06 12:49:23 +10006815 if (drop_one_stripe(conf) == 0) {
6816 ret = SHRINK_STOP;
6817 break;
6818 }
6819 ret++;
6820 }
6821 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11006822 }
6823 return ret;
6824}
6825
6826static unsigned long raid5_cache_count(struct shrinker *shrink,
6827 struct shrink_control *sc)
6828{
6829 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
6830
6831 if (conf->max_nr_stripes < conf->min_nr_stripes)
6832 /* unlikely, but not impossible */
6833 return 0;
6834 return conf->max_nr_stripes - conf->min_nr_stripes;
6835}
6836
NeilBrownd1688a62011-10-11 16:49:52 +11006837static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838{
NeilBrownd1688a62011-10-11 16:49:52 +11006839 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006840 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11006841 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10006843 char pers_name[6];
Shaohua Li566c09c2013-11-14 15:16:17 +11006844 int i;
majianpeng60aaf932013-11-14 15:16:20 +11006845 int group_cnt, worker_cnt_per_group;
6846 struct r5worker_group *new_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847
NeilBrown91adb562009-03-31 14:39:39 +11006848 if (mddev->new_level != 5
6849 && mddev->new_level != 4
6850 && mddev->new_level != 6) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006851 pr_warn("md/raid:%s: raid level not set to 4/5/6 (%d)\n",
6852 mdname(mddev), mddev->new_level);
NeilBrown91adb562009-03-31 14:39:39 +11006853 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854 }
NeilBrown91adb562009-03-31 14:39:39 +11006855 if ((mddev->new_level == 5
6856 && !algorithm_valid_raid5(mddev->new_layout)) ||
6857 (mddev->new_level == 6
6858 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006859 pr_warn("md/raid:%s: layout %d not supported\n",
6860 mdname(mddev), mddev->new_layout);
NeilBrown91adb562009-03-31 14:39:39 +11006861 return ERR_PTR(-EIO);
6862 }
6863 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006864 pr_warn("md/raid:%s: not enough configured devices (%d, minimum 4)\n",
6865 mdname(mddev), mddev->raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006866 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11006867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006868
Andre Noll664e7c42009-06-18 08:45:27 +10006869 if (!mddev->new_chunk_sectors ||
6870 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
6871 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006872 pr_warn("md/raid:%s: invalid chunk size %d\n",
6873 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11006874 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11006875 }
6876
NeilBrownd1688a62011-10-11 16:49:52 +11006877 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11006878 if (conf == NULL)
6879 goto abort;
Shaohua Liaaf9f122017-03-03 22:06:12 -08006880 INIT_LIST_HEAD(&conf->free_list);
6881 INIT_LIST_HEAD(&conf->pending_list);
6882 conf->pending_data = kzalloc(sizeof(struct r5pending_data) *
6883 PENDING_IO_MAX, GFP_KERNEL);
6884 if (!conf->pending_data)
6885 goto abort;
6886 for (i = 0; i < PENDING_IO_MAX; i++)
6887 list_add(&conf->pending_data[i].sibling, &conf->free_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08006888 /* Don't enable multi-threading by default*/
majianpeng60aaf932013-11-14 15:16:20 +11006889 if (!alloc_thread_groups(conf, 0, &group_cnt, &worker_cnt_per_group,
6890 &new_group)) {
6891 conf->group_cnt = group_cnt;
6892 conf->worker_cnt_per_group = worker_cnt_per_group;
6893 conf->worker_groups = new_group;
6894 } else
Shaohua Li851c30c2013-08-28 14:30:16 +08006895 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11006896 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006897 seqcount_init(&conf->gen_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10006898 mutex_init(&conf->cache_size_mutex);
Yuanhan Liub1b46482015-05-08 18:19:06 +10006899 init_waitqueue_head(&conf->wait_for_quiescent);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08006900 init_waitqueue_head(&conf->wait_for_stripe);
Dan Williamsf5efd452009-10-16 15:55:38 +11006901 init_waitqueue_head(&conf->wait_for_overlap);
6902 INIT_LIST_HEAD(&conf->handle_list);
Shaohua Li535ae4e2017-02-15 19:37:32 -08006903 INIT_LIST_HEAD(&conf->loprio_list);
Dan Williamsf5efd452009-10-16 15:55:38 +11006904 INIT_LIST_HEAD(&conf->hold_list);
6905 INIT_LIST_HEAD(&conf->delayed_list);
6906 INIT_LIST_HEAD(&conf->bitmap_list);
Shaohua Li773ca822013-08-27 17:50:39 +08006907 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11006908 atomic_set(&conf->active_stripes, 0);
6909 atomic_set(&conf->preread_active_stripes, 0);
6910 atomic_set(&conf->active_aligned_reads, 0);
Shaohua Li765d7042017-01-04 09:33:23 -08006911 spin_lock_init(&conf->pending_bios_lock);
6912 conf->batch_bio_dispatch = true;
6913 rdev_for_each(rdev, mddev) {
6914 if (test_bit(Journal, &rdev->flags))
6915 continue;
6916 if (blk_queue_nonrot(bdev_get_queue(rdev->bdev))) {
6917 conf->batch_bio_dispatch = false;
6918 break;
6919 }
6920 }
6921
Dan Williamsf5efd452009-10-16 15:55:38 +11006922 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11006923 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11006924
6925 conf->raid_disks = mddev->raid_disks;
6926 if (mddev->reshape_position == MaxSector)
6927 conf->previous_raid_disks = mddev->raid_disks;
6928 else
6929 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006930 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006931
NeilBrown5e5e3e72009-10-16 16:35:30 +11006932 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11006933 GFP_KERNEL);
Song Liud7bd3982016-11-23 22:50:39 -08006934
NeilBrown91adb562009-03-31 14:39:39 +11006935 if (!conf->disks)
6936 goto abort;
6937
Song Liud7bd3982016-11-23 22:50:39 -08006938 for (i = 0; i < max_disks; i++) {
6939 conf->disks[i].extra_page = alloc_page(GFP_KERNEL);
6940 if (!conf->disks[i].extra_page)
6941 goto abort;
6942 }
6943
NeilBrown91adb562009-03-31 14:39:39 +11006944 conf->mddev = mddev;
6945
6946 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
6947 goto abort;
6948
Shaohua Li566c09c2013-11-14 15:16:17 +11006949 /* We init hash_locks[0] separately to that it can be used
6950 * as the reference lock in the spin_lock_nest_lock() call
6951 * in lock_all_device_hash_locks_irq in order to convince
6952 * lockdep that we know what we are doing.
6953 */
6954 spin_lock_init(conf->hash_locks);
6955 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
6956 spin_lock_init(conf->hash_locks + i);
6957
6958 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6959 INIT_LIST_HEAD(conf->inactive_list + i);
6960
6961 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6962 INIT_LIST_HEAD(conf->temp_inactive_list + i);
6963
Song Liu1e6d6902016-11-17 15:24:39 -08006964 atomic_set(&conf->r5c_cached_full_stripes, 0);
6965 INIT_LIST_HEAD(&conf->r5c_full_stripe_list);
6966 atomic_set(&conf->r5c_cached_partial_stripes, 0);
6967 INIT_LIST_HEAD(&conf->r5c_partial_stripe_list);
Shaohua Lie33fbb92017-02-10 16:18:09 -08006968 atomic_set(&conf->r5c_flushing_full_stripes, 0);
6969 atomic_set(&conf->r5c_flushing_partial_stripes, 0);
Song Liu1e6d6902016-11-17 15:24:39 -08006970
Dan Williams36d1c642009-07-14 11:48:22 -07006971 conf->level = mddev->new_level;
shli@kernel.org46d5b782014-12-15 12:57:02 +11006972 conf->chunk_sectors = mddev->new_chunk_sectors;
Dan Williams36d1c642009-07-14 11:48:22 -07006973 if (raid5_alloc_percpu(conf) != 0)
6974 goto abort;
6975
NeilBrown0c55e022010-05-03 14:09:02 +10006976 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006977
NeilBrowndafb20f2012-03-19 12:46:39 +11006978 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11006979 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006980 if (raid_disk >= max_disks
Shaohua Lif2076e72015-10-08 21:54:12 -07006981 || raid_disk < 0 || test_bit(Journal, &rdev->flags))
NeilBrown91adb562009-03-31 14:39:39 +11006982 continue;
6983 disk = conf->disks + raid_disk;
6984
NeilBrown17045f52011-12-23 10:17:53 +11006985 if (test_bit(Replacement, &rdev->flags)) {
6986 if (disk->replacement)
6987 goto abort;
6988 disk->replacement = rdev;
6989 } else {
6990 if (disk->rdev)
6991 goto abort;
6992 disk->rdev = rdev;
6993 }
NeilBrown91adb562009-03-31 14:39:39 +11006994
6995 if (test_bit(In_sync, &rdev->flags)) {
6996 char b[BDEVNAME_SIZE];
NeilBrowncc6167b2016-11-02 14:16:50 +11006997 pr_info("md/raid:%s: device %s operational as raid disk %d\n",
6998 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05006999 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11007000 /* Cannot rely on bitmap to complete recovery */
7001 conf->fullsync = 1;
7002 }
7003
NeilBrown91adb562009-03-31 14:39:39 +11007004 conf->level = mddev->new_level;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11007005 if (conf->level == 6) {
NeilBrown91adb562009-03-31 14:39:39 +11007006 conf->max_degraded = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11007007 if (raid6_call.xor_syndrome)
7008 conf->rmw_level = PARITY_ENABLE_RMW;
7009 else
7010 conf->rmw_level = PARITY_DISABLE_RMW;
7011 } else {
NeilBrown91adb562009-03-31 14:39:39 +11007012 conf->max_degraded = 1;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11007013 conf->rmw_level = PARITY_ENABLE_RMW;
7014 }
NeilBrown91adb562009-03-31 14:39:39 +11007015 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11007016 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11007017 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10007018 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11007019 conf->prev_algo = mddev->layout;
NeilBrown5cac6bc2015-07-17 12:17:50 +10007020 } else {
7021 conf->prev_chunk_sectors = conf->chunk_sectors;
7022 conf->prev_algo = conf->algorithm;
NeilBrowne183eae2009-03-31 15:20:22 +11007023 }
NeilBrown91adb562009-03-31 14:39:39 +11007024
NeilBrownedbe83a2015-02-26 12:47:56 +11007025 conf->min_nr_stripes = NR_STRIPES;
Shaohua Liad5b0f72016-08-30 10:29:33 -07007026 if (mddev->reshape_position != MaxSector) {
7027 int stripes = max_t(int,
7028 ((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4,
7029 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4);
7030 conf->min_nr_stripes = max(NR_STRIPES, stripes);
7031 if (conf->min_nr_stripes != NR_STRIPES)
NeilBrowncc6167b2016-11-02 14:16:50 +11007032 pr_info("md/raid:%s: force stripe size %d for reshape\n",
Shaohua Liad5b0f72016-08-30 10:29:33 -07007033 mdname(mddev), conf->min_nr_stripes);
7034 }
NeilBrownedbe83a2015-02-26 12:47:56 +11007035 memory = conf->min_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11007036 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
Shaohua Li4bda5562013-11-14 15:16:17 +11007037 atomic_set(&conf->empty_inactive_list_nr, NR_STRIPE_HASH_LOCKS);
NeilBrownedbe83a2015-02-26 12:47:56 +11007038 if (grow_stripes(conf, conf->min_nr_stripes)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007039 pr_warn("md/raid:%s: couldn't allocate %dkB for buffers\n",
7040 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11007041 goto abort;
7042 } else
NeilBrowncc6167b2016-11-02 14:16:50 +11007043 pr_debug("md/raid:%s: allocated %dkB\n", mdname(mddev), memory);
NeilBrownedbe83a2015-02-26 12:47:56 +11007044 /*
7045 * Losing a stripe head costs more than the time to refill it,
7046 * it reduces the queue depth and so can hurt throughput.
7047 * So set it rather large, scaled by number of devices.
7048 */
7049 conf->shrinker.seeks = DEFAULT_SEEKS * conf->raid_disks * 4;
7050 conf->shrinker.scan_objects = raid5_cache_scan;
7051 conf->shrinker.count_objects = raid5_cache_count;
7052 conf->shrinker.batch = 128;
7053 conf->shrinker.flags = 0;
Chao Yu6a0f53f2016-09-20 10:33:57 +08007054 if (register_shrinker(&conf->shrinker)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007055 pr_warn("md/raid:%s: couldn't register shrinker.\n",
7056 mdname(mddev));
Chao Yu6a0f53f2016-09-20 10:33:57 +08007057 goto abort;
7058 }
NeilBrown91adb562009-03-31 14:39:39 +11007059
NeilBrown02326052012-07-03 15:56:52 +10007060 sprintf(pers_name, "raid%d", mddev->new_level);
7061 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11007062 if (!conf->thread) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007063 pr_warn("md/raid:%s: couldn't allocate thread.\n",
7064 mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11007065 goto abort;
7066 }
7067
7068 return conf;
7069
7070 abort:
7071 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10007072 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11007073 return ERR_PTR(-EIO);
7074 } else
7075 return ERR_PTR(-ENOMEM);
7076}
7077
NeilBrownc148ffd2009-11-13 17:47:00 +11007078static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
7079{
7080 switch (algo) {
7081 case ALGORITHM_PARITY_0:
7082 if (raid_disk < max_degraded)
7083 return 1;
7084 break;
7085 case ALGORITHM_PARITY_N:
7086 if (raid_disk >= raid_disks - max_degraded)
7087 return 1;
7088 break;
7089 case ALGORITHM_PARITY_0_6:
NeilBrownf72ffdd2014-09-30 14:23:59 +10007090 if (raid_disk == 0 ||
NeilBrownc148ffd2009-11-13 17:47:00 +11007091 raid_disk == raid_disks - 1)
7092 return 1;
7093 break;
7094 case ALGORITHM_LEFT_ASYMMETRIC_6:
7095 case ALGORITHM_RIGHT_ASYMMETRIC_6:
7096 case ALGORITHM_LEFT_SYMMETRIC_6:
7097 case ALGORITHM_RIGHT_SYMMETRIC_6:
7098 if (raid_disk == raid_disks - 1)
7099 return 1;
7100 }
7101 return 0;
7102}
7103
Shaohua Li849674e2016-01-20 13:52:20 -08007104static int raid5_run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11007105{
NeilBrownd1688a62011-10-11 16:49:52 +11007106 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10007107 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11007108 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11007109 struct md_rdev *rdev;
Shaohua Li713cf5a2015-08-13 14:32:03 -07007110 struct md_rdev *journal_dev = NULL;
NeilBrownc148ffd2009-11-13 17:47:00 +11007111 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11007112 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10007113 long long min_offset_diff = 0;
7114 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11007115
Andre Noll8c6ac8682009-06-18 08:48:06 +10007116 if (mddev->recovery_cp != MaxSector)
NeilBrowncc6167b2016-11-02 14:16:50 +11007117 pr_notice("md/raid:%s: not clean -- starting background reconstruction\n",
7118 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10007119
7120 rdev_for_each(rdev, mddev) {
7121 long long diff;
Shaohua Li713cf5a2015-08-13 14:32:03 -07007122
Shaohua Lif2076e72015-10-08 21:54:12 -07007123 if (test_bit(Journal, &rdev->flags)) {
Shaohua Li713cf5a2015-08-13 14:32:03 -07007124 journal_dev = rdev;
Shaohua Lif2076e72015-10-08 21:54:12 -07007125 continue;
7126 }
NeilBrownb5254dd2012-05-21 09:27:01 +10007127 if (rdev->raid_disk < 0)
7128 continue;
7129 diff = (rdev->new_data_offset - rdev->data_offset);
7130 if (first) {
7131 min_offset_diff = diff;
7132 first = 0;
7133 } else if (mddev->reshape_backwards &&
7134 diff < min_offset_diff)
7135 min_offset_diff = diff;
7136 else if (!mddev->reshape_backwards &&
7137 diff > min_offset_diff)
7138 min_offset_diff = diff;
7139 }
7140
NeilBrownf6705572006-03-27 01:18:11 -08007141 if (mddev->reshape_position != MaxSector) {
7142 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10007143 * Difficulties arise if the stripe we would write to
7144 * next is at or after the stripe we would read from next.
7145 * For a reshape that changes the number of devices, this
7146 * is only possible for a very short time, and mdadm makes
7147 * sure that time appears to have past before assembling
7148 * the array. So we fail if that time hasn't passed.
7149 * For a reshape that keeps the number of devices the same
7150 * mdadm must be monitoring the reshape can keeping the
7151 * critical areas read-only and backed up. It will start
7152 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08007153 */
7154 sector_t here_new, here_old;
7155 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11007156 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrown05256d92015-07-15 17:36:21 +10007157 int chunk_sectors;
7158 int new_data_disks;
NeilBrownf6705572006-03-27 01:18:11 -08007159
Shaohua Li713cf5a2015-08-13 14:32:03 -07007160 if (journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007161 pr_warn("md/raid:%s: don't support reshape with journal - aborting.\n",
7162 mdname(mddev));
Shaohua Li713cf5a2015-08-13 14:32:03 -07007163 return -EINVAL;
7164 }
7165
NeilBrown88ce4932009-03-31 15:24:23 +11007166 if (mddev->new_level != mddev->level) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007167 pr_warn("md/raid:%s: unsupported reshape required - aborting.\n",
7168 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007169 return -EINVAL;
7170 }
NeilBrownf6705572006-03-27 01:18:11 -08007171 old_disks = mddev->raid_disks - mddev->delta_disks;
7172 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08007173 * further up in new geometry must map after here in old
7174 * geometry.
NeilBrown05256d92015-07-15 17:36:21 +10007175 * If the chunk sizes are different, then as we perform reshape
7176 * in units of the largest of the two, reshape_position needs
7177 * be a multiple of the largest chunk size times new data disks.
NeilBrownf6705572006-03-27 01:18:11 -08007178 */
7179 here_new = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10007180 chunk_sectors = max(mddev->chunk_sectors, mddev->new_chunk_sectors);
7181 new_data_disks = mddev->raid_disks - max_degraded;
7182 if (sector_div(here_new, chunk_sectors * new_data_disks)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007183 pr_warn("md/raid:%s: reshape_position not on a stripe boundary\n",
7184 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007185 return -EINVAL;
7186 }
NeilBrown05256d92015-07-15 17:36:21 +10007187 reshape_offset = here_new * chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08007188 /* here_new is the stripe we will write to */
7189 here_old = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10007190 sector_div(here_old, chunk_sectors * (old_disks-max_degraded));
NeilBrownf4168852007-02-28 20:11:53 -08007191 /* here_old is the first stripe that we might need to read
7192 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10007193 if (mddev->delta_disks == 0) {
7194 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10007195 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10007196 * and taking constant backups.
7197 * mdadm always starts a situation like this in
7198 * readonly mode so it can take control before
7199 * allowing any writes. So just check for that.
7200 */
NeilBrownb5254dd2012-05-21 09:27:01 +10007201 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
7202 abs(min_offset_diff) >= mddev->new_chunk_sectors)
7203 /* not really in-place - so OK */;
7204 else if (mddev->ro == 0) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007205 pr_warn("md/raid:%s: in-place reshape must be started in read-only mode - aborting\n",
7206 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10007207 return -EINVAL;
7208 }
NeilBrown2c810cd2012-05-21 09:27:00 +10007209 } else if (mddev->reshape_backwards
NeilBrown05256d92015-07-15 17:36:21 +10007210 ? (here_new * chunk_sectors + min_offset_diff <=
7211 here_old * chunk_sectors)
7212 : (here_new * chunk_sectors >=
7213 here_old * chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08007214 /* Reading from the same stripe as writing to - bad */
NeilBrowncc6167b2016-11-02 14:16:50 +11007215 pr_warn("md/raid:%s: reshape_position too early for auto-recovery - aborting.\n",
7216 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007217 return -EINVAL;
7218 }
NeilBrowncc6167b2016-11-02 14:16:50 +11007219 pr_debug("md/raid:%s: reshape will continue\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007220 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08007221 } else {
NeilBrown91adb562009-03-31 14:39:39 +11007222 BUG_ON(mddev->level != mddev->new_level);
7223 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10007224 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11007225 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08007226 }
7227
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01007228 if (test_bit(MD_HAS_JOURNAL, &mddev->flags) &&
7229 test_bit(MD_HAS_PPL, &mddev->flags)) {
7230 pr_warn("md/raid:%s: using journal device and PPL not allowed - disabling PPL\n",
7231 mdname(mddev));
7232 clear_bit(MD_HAS_PPL, &mddev->flags);
7233 }
7234
NeilBrown245f46c2009-03-31 14:39:39 +11007235 if (mddev->private == NULL)
7236 conf = setup_conf(mddev);
7237 else
7238 conf = mddev->private;
7239
NeilBrown91adb562009-03-31 14:39:39 +11007240 if (IS_ERR(conf))
7241 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08007242
Song Liu486b0f72016-08-19 15:34:01 -07007243 if (test_bit(MD_HAS_JOURNAL, &mddev->flags)) {
7244 if (!journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007245 pr_warn("md/raid:%s: journal disk is missing, force array readonly\n",
7246 mdname(mddev));
Song Liu486b0f72016-08-19 15:34:01 -07007247 mddev->ro = 1;
7248 set_disk_ro(mddev->gendisk, 1);
7249 } else if (mddev->recovery_cp == MaxSector)
7250 set_bit(MD_JOURNAL_CLEAN, &mddev->flags);
Shaohua Li7dde2ad2015-10-08 21:54:10 -07007251 }
7252
NeilBrownb5254dd2012-05-21 09:27:01 +10007253 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11007254 mddev->thread = conf->thread;
7255 conf->thread = NULL;
7256 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257
NeilBrown17045f52011-12-23 10:17:53 +11007258 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
7259 i++) {
7260 rdev = conf->disks[i].rdev;
7261 if (!rdev && conf->disks[i].replacement) {
7262 /* The replacement is all we have yet */
7263 rdev = conf->disks[i].replacement;
7264 conf->disks[i].replacement = NULL;
7265 clear_bit(Replacement, &rdev->flags);
7266 conf->disks[i].rdev = rdev;
7267 }
7268 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11007269 continue;
NeilBrown17045f52011-12-23 10:17:53 +11007270 if (conf->disks[i].replacement &&
7271 conf->reshape_progress != MaxSector) {
7272 /* replacements and reshape simply do not mix. */
NeilBrowncc6167b2016-11-02 14:16:50 +11007273 pr_warn("md: cannot handle concurrent replacement and reshape.\n");
NeilBrown17045f52011-12-23 10:17:53 +11007274 goto abort;
7275 }
NeilBrown2f115882010-06-17 17:41:03 +10007276 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11007277 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10007278 continue;
7279 }
NeilBrownc148ffd2009-11-13 17:47:00 +11007280 /* This disc is not fully in-sync. However if it
7281 * just stored parity (beyond the recovery_offset),
7282 * when we don't need to be concerned about the
7283 * array being dirty.
7284 * When reshape goes 'backwards', we never have
7285 * partially completed devices, so we only need
7286 * to worry about reshape going forwards.
7287 */
7288 /* Hack because v0.91 doesn't store recovery_offset properly. */
7289 if (mddev->major_version == 0 &&
7290 mddev->minor_version > 90)
7291 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007292
NeilBrownc148ffd2009-11-13 17:47:00 +11007293 if (rdev->recovery_offset < reshape_offset) {
7294 /* We need to check old and new layout */
7295 if (!only_parity(rdev->raid_disk,
7296 conf->algorithm,
7297 conf->raid_disks,
7298 conf->max_degraded))
7299 continue;
7300 }
7301 if (!only_parity(rdev->raid_disk,
7302 conf->prev_algo,
7303 conf->previous_raid_disks,
7304 conf->max_degraded))
7305 continue;
7306 dirty_parity_disks++;
7307 }
NeilBrown91adb562009-03-31 14:39:39 +11007308
NeilBrown17045f52011-12-23 10:17:53 +11007309 /*
7310 * 0 for a fully functional array, 1 or 2 for a degraded array.
7311 */
Song Liu2e38a372017-01-24 10:45:30 -08007312 mddev->degraded = raid5_calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313
NeilBrown674806d2010-06-16 17:17:53 +10007314 if (has_failed(conf)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007315 pr_crit("md/raid:%s: not enough operational devices (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07007316 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317 goto abort;
7318 }
7319
NeilBrown91adb562009-03-31 14:39:39 +11007320 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10007321 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11007322 mddev->resync_max_sectors = mddev->dev_sectors;
7323
NeilBrownc148ffd2009-11-13 17:47:00 +11007324 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325 mddev->recovery_cp != MaxSector) {
Artur Paszkiewicz4536bf9b2017-03-09 10:00:01 +01007326 if (test_bit(MD_HAS_PPL, &mddev->flags))
7327 pr_crit("md/raid:%s: starting dirty degraded array with PPL.\n",
7328 mdname(mddev));
7329 else if (mddev->ok_start_degraded)
NeilBrowncc6167b2016-11-02 14:16:50 +11007330 pr_crit("md/raid:%s: starting dirty degraded array - data corruption possible.\n",
7331 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007332 else {
NeilBrowncc6167b2016-11-02 14:16:50 +11007333 pr_crit("md/raid:%s: cannot start dirty degraded array.\n",
7334 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007335 goto abort;
7336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337 }
7338
NeilBrowncc6167b2016-11-02 14:16:50 +11007339 pr_info("md/raid:%s: raid level %d active with %d out of %d devices, algorithm %d\n",
7340 mdname(mddev), conf->level,
7341 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
7342 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343
7344 print_raid5_conf(conf);
7345
NeilBrownfef9c612009-03-31 15:16:46 +11007346 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11007347 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08007348 atomic_set(&conf->reshape_stripes, 0);
7349 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7350 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
7351 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7352 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7353 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007354 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08007355 }
7356
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10007358 if (mddev->to_remove == &raid5_attrs_group)
7359 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10007360 else if (mddev->kobj.sd &&
7361 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrowncc6167b2016-11-02 14:16:50 +11007362 pr_warn("raid5: failed to create sysfs attributes for %s\n",
7363 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10007364 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7365
7366 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007367 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11007368 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10007369 /* read-ahead size must cover two whole stripes, which
7370 * is 2 * (datadisks) * chunksize where 'n' is the
7371 * number of raid devices
7372 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373 int data_disks = conf->previous_raid_disks - conf->max_degraded;
7374 int stripe = data_disks *
7375 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
Jan Karadc3b17c2017-02-02 15:56:50 +01007376 if (mddev->queue->backing_dev_info->ra_pages < 2 * stripe)
7377 mddev->queue->backing_dev_info->ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10007378
NeilBrown9f7c2222010-07-26 12:04:13 +10007379 chunk_size = mddev->chunk_sectors << 9;
7380 blk_queue_io_min(mddev->queue, chunk_size);
7381 blk_queue_io_opt(mddev->queue, chunk_size *
7382 (conf->raid_disks - conf->max_degraded));
Kent Overstreetc78afc62013-07-11 22:39:53 -07007383 mddev->queue->limits.raid_partial_stripes_expensive = 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007384 /*
7385 * We can only discard a whole stripe. It doesn't make sense to
7386 * discard data disk but write parity disk
7387 */
7388 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11007389 /* Round up to power of 2, as discard handling
7390 * currently assumes that */
7391 while ((stripe-1) & stripe)
7392 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007393 mddev->queue->limits.discard_alignment = stripe;
7394 mddev->queue->limits.discard_granularity = stripe;
Konstantin Khlebnikove8d7c332016-11-27 19:32:32 +03007395
7396 /*
7397 * We use 16-bit counter of active stripes in bi_phys_segments
7398 * (minus one for over-loaded initialization)
7399 */
7400 blk_queue_max_hw_sectors(mddev->queue, 0xfffe * STRIPE_SECTORS);
7401 blk_queue_max_discard_sectors(mddev->queue,
7402 0xfffe * STRIPE_SECTORS);
7403
Shaohua Li620125f2012-10-11 13:49:05 +11007404 /*
7405 * unaligned part of discard request will be ignored, so can't
NeilBrown8e0e99b2014-10-02 13:45:00 +10007406 * guarantee discard_zeroes_data
Shaohua Li620125f2012-10-11 13:49:05 +11007407 */
7408 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10007409
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007410 blk_queue_max_write_same_sectors(mddev->queue, 0);
7411
NeilBrown05616be2012-05-21 09:27:00 +10007412 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007413 disk_stack_limits(mddev->gendisk, rdev->bdev,
7414 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10007415 disk_stack_limits(mddev->gendisk, rdev->bdev,
7416 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11007417 /*
7418 * discard_zeroes_data is required, otherwise data
7419 * could be lost. Consider a scenario: discard a stripe
7420 * (the stripe could be inconsistent if
7421 * discard_zeroes_data is 0); write one disk of the
7422 * stripe (the stripe could be inconsistent again
7423 * depending on which disks are used to calculate
7424 * parity); the disk is broken; The stripe data of this
7425 * disk is lost.
7426 */
7427 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
7428 !bdev_get_queue(rdev->bdev)->
7429 limits.discard_zeroes_data)
7430 discard_supported = false;
NeilBrown8e0e99b2014-10-02 13:45:00 +10007431 /* Unfortunately, discard_zeroes_data is not currently
7432 * a guarantee - just a hint. So we only allow DISCARD
7433 * if the sysadmin has confirmed that only safe devices
7434 * are in use by setting a module parameter.
7435 */
7436 if (!devices_handle_discard_safely) {
7437 if (discard_supported) {
7438 pr_info("md/raid456: discard support disabled due to uncertainty.\n");
7439 pr_info("Set raid456.devices_handle_discard_safely=Y to override.\n");
7440 }
7441 discard_supported = false;
7442 }
NeilBrown05616be2012-05-21 09:27:00 +10007443 }
Shaohua Li620125f2012-10-11 13:49:05 +11007444
7445 if (discard_supported &&
Jes Sorensene7597e62016-02-16 16:44:24 -05007446 mddev->queue->limits.max_discard_sectors >= (stripe >> 9) &&
7447 mddev->queue->limits.discard_granularity >= stripe)
Shaohua Li620125f2012-10-11 13:49:05 +11007448 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
7449 mddev->queue);
7450 else
7451 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
7452 mddev->queue);
Shaohua Li1dffddd2016-09-08 10:49:06 -07007453
7454 blk_queue_max_hw_sectors(mddev->queue, UINT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455 }
7456
Artur Paszkiewiczff875732017-03-09 09:59:58 +01007457 if (log_init(conf, journal_dev))
7458 goto abort;
Shaohua Li5c7e81c2015-08-13 14:32:04 -07007459
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460 return 0;
7461abort:
NeilBrown01f96c02011-09-21 15:30:20 +10007462 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11007463 print_raid5_conf(conf);
7464 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465 mddev->private = NULL;
NeilBrowncc6167b2016-11-02 14:16:50 +11007466 pr_warn("md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007467 return -EIO;
7468}
7469
NeilBrownafa0f552014-12-15 12:56:58 +11007470static void raid5_free(struct mddev *mddev, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471{
NeilBrownafa0f552014-12-15 12:56:58 +11007472 struct r5conf *conf = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473
Dan Williams95fc17a2009-07-31 12:39:15 +10007474 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10007475 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476}
7477
Shaohua Li849674e2016-01-20 13:52:20 -08007478static void raid5_status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479{
NeilBrownd1688a62011-10-11 16:49:52 +11007480 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481 int i;
7482
Andre Noll9d8f0362009-06-18 08:45:01 +10007483 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
NeilBrown3cb5edf2015-07-15 17:24:17 +10007484 conf->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07007485 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
NeilBrown5fd13352016-06-02 16:19:52 +10007486 rcu_read_lock();
7487 for (i = 0; i < conf->raid_disks; i++) {
7488 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
7489 seq_printf (seq, "%s", rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
7490 }
7491 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007493}
7494
NeilBrownd1688a62011-10-11 16:49:52 +11007495static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496{
7497 int i;
7498 struct disk_info *tmp;
7499
NeilBrowncc6167b2016-11-02 14:16:50 +11007500 pr_debug("RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501 if (!conf) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007502 pr_debug("(conf==NULL)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503 return;
7504 }
NeilBrowncc6167b2016-11-02 14:16:50 +11007505 pr_debug(" --- level:%d rd:%d wd:%d\n", conf->level,
NeilBrown0c55e022010-05-03 14:09:02 +10007506 conf->raid_disks,
7507 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508
7509 for (i = 0; i < conf->raid_disks; i++) {
7510 char b[BDEVNAME_SIZE];
7511 tmp = conf->disks + i;
7512 if (tmp->rdev)
NeilBrowncc6167b2016-11-02 14:16:50 +11007513 pr_debug(" disk %d, o:%d, dev:%s\n",
NeilBrown0c55e022010-05-03 14:09:02 +10007514 i, !test_bit(Faulty, &tmp->rdev->flags),
7515 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007516 }
7517}
7518
NeilBrownfd01b882011-10-11 16:47:53 +11007519static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520{
7521 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11007522 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10007524 int count = 0;
7525 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526
7527 for (i = 0; i < conf->raid_disks; i++) {
7528 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11007529 if (tmp->replacement
7530 && tmp->replacement->recovery_offset == MaxSector
7531 && !test_bit(Faulty, &tmp->replacement->flags)
7532 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
7533 /* Replacement has just become active. */
7534 if (!tmp->rdev
7535 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
7536 count++;
7537 if (tmp->rdev) {
7538 /* Replaced device not technically faulty,
7539 * but we need to be sure it gets removed
7540 * and never re-added.
7541 */
7542 set_bit(Faulty, &tmp->rdev->flags);
7543 sysfs_notify_dirent_safe(
7544 tmp->rdev->sysfs_state);
7545 }
7546 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
7547 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10007548 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08007549 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07007550 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10007551 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11007552 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553 }
7554 }
NeilBrown6b965622010-08-18 11:56:59 +10007555 spin_lock_irqsave(&conf->device_lock, flags);
Song Liu2e38a372017-01-24 10:45:30 -08007556 mddev->degraded = raid5_calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007557 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007559 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560}
7561
NeilBrownb8321b62011-12-23 10:17:51 +11007562static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007563{
NeilBrownd1688a62011-10-11 16:49:52 +11007564 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11007566 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11007567 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568 struct disk_info *p = conf->disks + number;
7569
7570 print_raid5_conf(conf);
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007571 if (test_bit(Journal, &rdev->flags) && conf->log) {
Shaohua Lic2bb6242015-10-08 21:54:07 -07007572 /*
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007573 * we can't wait pending write here, as this is called in
7574 * raid5d, wait will deadlock.
Shaohua Lic2bb6242015-10-08 21:54:07 -07007575 */
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007576 if (atomic_read(&mddev->writes_pending))
7577 return -EBUSY;
Artur Paszkiewiczff875732017-03-09 09:59:58 +01007578 log_exit(conf);
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007579 return 0;
Shaohua Lic2bb6242015-10-08 21:54:07 -07007580 }
NeilBrown657e3e42011-12-23 10:17:52 +11007581 if (rdev == p->rdev)
7582 rdevp = &p->rdev;
7583 else if (rdev == p->replacement)
7584 rdevp = &p->replacement;
7585 else
7586 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11007587
NeilBrown657e3e42011-12-23 10:17:52 +11007588 if (number >= conf->raid_disks &&
7589 conf->reshape_progress == MaxSector)
7590 clear_bit(In_sync, &rdev->flags);
7591
7592 if (test_bit(In_sync, &rdev->flags) ||
7593 atomic_read(&rdev->nr_pending)) {
7594 err = -EBUSY;
7595 goto abort;
7596 }
7597 /* Only remove non-faulty devices if recovery
7598 * isn't possible.
7599 */
7600 if (!test_bit(Faulty, &rdev->flags) &&
7601 mddev->recovery_disabled != conf->recovery_disabled &&
7602 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11007603 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11007604 number < conf->raid_disks) {
7605 err = -EBUSY;
7606 goto abort;
7607 }
7608 *rdevp = NULL;
NeilBrownd787be42016-06-02 16:19:53 +10007609 if (!test_bit(RemoveSynchronized, &rdev->flags)) {
7610 synchronize_rcu();
7611 if (atomic_read(&rdev->nr_pending)) {
7612 /* lost the race, try later */
7613 err = -EBUSY;
7614 *rdevp = rdev;
7615 }
7616 }
Artur Paszkiewicz6358c232017-03-09 10:00:02 +01007617 if (!err) {
7618 err = log_modify(conf, rdev, false);
7619 if (err)
7620 goto abort;
7621 }
NeilBrownd787be42016-06-02 16:19:53 +10007622 if (p->replacement) {
NeilBrowndd054fc2011-12-23 10:17:53 +11007623 /* We must have just cleared 'rdev' */
7624 p->rdev = p->replacement;
7625 clear_bit(Replacement, &p->replacement->flags);
7626 smp_mb(); /* Make sure other CPUs may see both as identical
7627 * but will never see neither - if they are careful
7628 */
7629 p->replacement = NULL;
7630 clear_bit(WantReplacement, &rdev->flags);
Artur Paszkiewicz6358c232017-03-09 10:00:02 +01007631
7632 if (!err)
7633 err = log_modify(conf, p->rdev, true);
NeilBrowndd054fc2011-12-23 10:17:53 +11007634 } else
7635 /* We might have just removed the Replacement as faulty-
7636 * clear the bit just in case
7637 */
7638 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639abort:
7640
7641 print_raid5_conf(conf);
7642 return err;
7643}
7644
NeilBrownfd01b882011-10-11 16:47:53 +11007645static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007646{
NeilBrownd1688a62011-10-11 16:49:52 +11007647 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10007648 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007649 int disk;
7650 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10007651 int first = 0;
7652 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007654 if (test_bit(Journal, &rdev->flags)) {
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007655 if (conf->log)
7656 return -EBUSY;
7657
7658 rdev->raid_disk = 0;
7659 /*
7660 * The array is in readonly mode if journal is missing, so no
7661 * write requests running. We should be safe
7662 */
Artur Paszkiewiczff875732017-03-09 09:59:58 +01007663 log_init(conf, rdev);
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007664 return 0;
7665 }
NeilBrown7f0da592011-07-28 11:39:22 +10007666 if (mddev->recovery_disabled == conf->recovery_disabled)
7667 return -EBUSY;
7668
NeilBrowndc10c642012-03-19 12:46:37 +11007669 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10007671 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672
Neil Brown6c2fce22008-06-28 08:31:31 +10007673 if (rdev->raid_disk >= 0)
7674 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675
7676 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07007677 * find the disk ... but prefer rdev->saved_raid_disk
7678 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679 */
NeilBrown16a53ec2006-06-26 00:27:38 -07007680 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10007681 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07007682 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10007683 first = rdev->saved_raid_disk;
7684
7685 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11007686 p = conf->disks + disk;
7687 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08007688 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689 rdev->raid_disk = disk;
NeilBrown72626682005-09-09 16:23:54 -07007690 if (rdev->saved_raid_disk != disk)
7691 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08007692 rcu_assign_pointer(p->rdev, rdev);
Artur Paszkiewicz6358c232017-03-09 10:00:02 +01007693
7694 err = log_modify(conf, rdev, true);
7695
NeilBrown5cfb22a2012-07-03 11:46:53 +10007696 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007698 }
7699 for (disk = first; disk <= last; disk++) {
7700 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11007701 if (test_bit(WantReplacement, &p->rdev->flags) &&
7702 p->replacement == NULL) {
7703 clear_bit(In_sync, &rdev->flags);
7704 set_bit(Replacement, &rdev->flags);
7705 rdev->raid_disk = disk;
7706 err = 0;
7707 conf->fullsync = 1;
7708 rcu_assign_pointer(p->replacement, rdev);
7709 break;
7710 }
7711 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007712out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007713 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10007714 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715}
7716
NeilBrownfd01b882011-10-11 16:47:53 +11007717static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718{
7719 /* no resync is happening, and there is enough space
7720 * on all devices, so we can resize.
7721 * We need to make sure resync covers any new space.
7722 * If the array is shrinking we should possibly wait until
7723 * any io in the removed space completes, but it hardly seems
7724 * worth it.
7725 */
NeilBrowna4a61252012-05-22 13:55:27 +10007726 sector_t newsize;
NeilBrown3cb5edf2015-07-15 17:24:17 +10007727 struct r5conf *conf = mddev->private;
7728
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01007729 if (conf->log || raid5_has_ppl(conf))
Shaohua Li713cf5a2015-08-13 14:32:03 -07007730 return -EINVAL;
NeilBrown3cb5edf2015-07-15 17:24:17 +10007731 sectors &= ~((sector_t)conf->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10007732 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
7733 if (mddev->external_size &&
7734 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11007735 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10007736 if (mddev->bitmap) {
7737 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
7738 if (ret)
7739 return ret;
7740 }
7741 md_set_array_sectors(mddev, newsize);
NeilBrownb0986362011-05-11 15:52:21 +10007742 if (sectors > mddev->dev_sectors &&
7743 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11007744 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007745 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
7746 }
Andre Noll58c0fed2009-03-31 14:33:13 +11007747 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07007748 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749 return 0;
7750}
7751
NeilBrownfd01b882011-10-11 16:47:53 +11007752static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10007753{
7754 /* Can only proceed if there are plenty of stripe_heads.
7755 * We need a minimum of one full stripe,, and for sensible progress
7756 * it is best to have about 4 times that.
7757 * If we require 4 times, then the default 256 4K stripe_heads will
7758 * allow for chunk sizes up to 256K, which is probably OK.
7759 * If the chunk size is greater, user-space should request more
7760 * stripe_heads first.
7761 */
NeilBrownd1688a62011-10-11 16:49:52 +11007762 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10007763 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007764 > conf->min_nr_stripes ||
NeilBrown01ee22b2009-06-18 08:47:20 +10007765 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007766 > conf->min_nr_stripes) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007767 pr_warn("md/raid:%s: reshape: not enough stripes. Needed %lu\n",
7768 mdname(mddev),
7769 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
7770 / STRIPE_SIZE)*4);
NeilBrown01ee22b2009-06-18 08:47:20 +10007771 return 0;
7772 }
7773 return 1;
7774}
7775
NeilBrownfd01b882011-10-11 16:47:53 +11007776static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08007777{
NeilBrownd1688a62011-10-11 16:49:52 +11007778 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08007779
Artur Paszkiewicz3418d032017-03-09 09:59:59 +01007780 if (conf->log || raid5_has_ppl(conf))
Shaohua Li713cf5a2015-08-13 14:32:03 -07007781 return -EINVAL;
NeilBrown88ce4932009-03-31 15:24:23 +11007782 if (mddev->delta_disks == 0 &&
7783 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10007784 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10007785 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10007786 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11007787 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10007788 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11007789 /* We might be able to shrink, but the devices must
7790 * be made bigger first.
7791 * For raid6, 4 is the minimum size.
7792 * Otherwise 2 is the minimum
7793 */
7794 int min = 2;
7795 if (mddev->level == 6)
7796 min = 4;
7797 if (mddev->raid_disks + mddev->delta_disks < min)
7798 return -EINVAL;
7799 }
NeilBrown29269552006-03-27 01:18:10 -08007800
NeilBrown01ee22b2009-06-18 08:47:20 +10007801 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08007802 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08007803
NeilBrown738a2732015-05-08 18:19:39 +10007804 if (mddev->new_chunk_sectors > mddev->chunk_sectors ||
7805 mddev->delta_disks > 0)
7806 if (resize_chunks(conf,
7807 conf->previous_raid_disks
7808 + max(0, mddev->delta_disks),
7809 max(mddev->new_chunk_sectors,
7810 mddev->chunk_sectors)
7811 ) < 0)
7812 return -ENOMEM;
NeilBrowne56108d62012-10-11 14:24:13 +11007813 return resize_stripes(conf, (conf->previous_raid_disks
7814 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08007815}
7816
NeilBrownfd01b882011-10-11 16:47:53 +11007817static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08007818{
NeilBrownd1688a62011-10-11 16:49:52 +11007819 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11007820 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08007821 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07007822 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08007823
NeilBrownf4168852007-02-28 20:11:53 -08007824 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08007825 return -EBUSY;
7826
NeilBrown01ee22b2009-06-18 08:47:20 +10007827 if (!check_stripe_cache(mddev))
7828 return -ENOSPC;
7829
NeilBrown30b67642012-05-22 13:55:28 +10007830 if (has_failed(conf))
7831 return -EINVAL;
7832
NeilBrownc6563a82012-05-21 09:27:00 +10007833 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11007834 if (!test_bit(In_sync, &rdev->flags)
7835 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08007836 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10007837 }
NeilBrown63c70c42006-03-27 01:18:13 -08007838
NeilBrownf4168852007-02-28 20:11:53 -08007839 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08007840 /* Not enough devices even to make a degraded array
7841 * of that size
7842 */
7843 return -EINVAL;
7844
NeilBrownec32a2b2009-03-31 15:17:38 +11007845 /* Refuse to reduce size of the array. Any reductions in
7846 * array size must be through explicit setting of array_size
7847 * attribute.
7848 */
7849 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
7850 < mddev->array_sectors) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007851 pr_warn("md/raid:%s: array size must be reduced before number of disks\n",
7852 mdname(mddev));
NeilBrownec32a2b2009-03-31 15:17:38 +11007853 return -EINVAL;
7854 }
7855
NeilBrownf6705572006-03-27 01:18:11 -08007856 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08007857 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10007858 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007859 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08007860 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007861 conf->prev_chunk_sectors = conf->chunk_sectors;
7862 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11007863 conf->prev_algo = conf->algorithm;
7864 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10007865 conf->generation++;
7866 /* Code that selects data_offset needs to see the generation update
7867 * if reshape_progress has been set - so a memory barrier needed.
7868 */
7869 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10007870 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11007871 conf->reshape_progress = raid5_size(mddev, 0, 0);
7872 else
7873 conf->reshape_progress = 0;
7874 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10007875 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007876 spin_unlock_irq(&conf->device_lock);
7877
NeilBrown4d77e3b2013-08-27 15:57:47 +10007878 /* Now make sure any requests that proceeded on the assumption
7879 * the reshape wasn't running - like Discard or Read - have
7880 * completed.
7881 */
7882 mddev_suspend(mddev);
7883 mddev_resume(mddev);
7884
NeilBrown29269552006-03-27 01:18:10 -08007885 /* Add some new drives, as many as will fit.
7886 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10007887 * Don't add devices if we are reducing the number of
7888 * devices in the array. This is because it is not possible
7889 * to correctly record the "partially reconstructed" state of
7890 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08007891 */
NeilBrown87a8dec2011-01-31 11:57:43 +11007892 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11007893 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11007894 if (rdev->raid_disk < 0 &&
7895 !test_bit(Faulty, &rdev->flags)) {
7896 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11007897 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11007898 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11007899 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11007900 else
NeilBrown87a8dec2011-01-31 11:57:43 +11007901 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10007902
7903 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11007904 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11007905 }
NeilBrown87a8dec2011-01-31 11:57:43 +11007906 } else if (rdev->raid_disk >= conf->previous_raid_disks
7907 && !test_bit(Faulty, &rdev->flags)) {
7908 /* This is a spare that was manually added */
7909 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11007910 }
NeilBrown29269552006-03-27 01:18:10 -08007911
NeilBrown87a8dec2011-01-31 11:57:43 +11007912 /* When a reshape changes the number of devices,
7913 * ->degraded is measured against the larger of the
7914 * pre and post number of devices.
7915 */
NeilBrownec32a2b2009-03-31 15:17:38 +11007916 spin_lock_irqsave(&conf->device_lock, flags);
Song Liu2e38a372017-01-24 10:45:30 -08007917 mddev->degraded = raid5_calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11007918 spin_unlock_irqrestore(&conf->device_lock, flags);
7919 }
NeilBrown63c70c42006-03-27 01:18:13 -08007920 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10007921 mddev->reshape_position = conf->reshape_progress;
Shaohua Li29530792016-12-08 15:48:19 -08007922 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrownf6705572006-03-27 01:18:11 -08007923
NeilBrown29269552006-03-27 01:18:10 -08007924 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7925 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
NeilBrownea358cd2015-06-12 20:05:04 +10007926 clear_bit(MD_RECOVERY_DONE, &mddev->recovery);
NeilBrown29269552006-03-27 01:18:10 -08007927 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7928 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7929 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007930 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08007931 if (!mddev->sync_thread) {
7932 mddev->recovery = 0;
7933 spin_lock_irq(&conf->device_lock);
NeilBrownba8805b2013-11-14 15:16:15 +11007934 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007935 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownba8805b2013-11-14 15:16:15 +11007936 mddev->new_chunk_sectors =
7937 conf->chunk_sectors = conf->prev_chunk_sectors;
7938 mddev->new_layout = conf->algorithm = conf->prev_algo;
NeilBrown05616be2012-05-21 09:27:00 +10007939 rdev_for_each(rdev, mddev)
7940 rdev->new_data_offset = rdev->data_offset;
7941 smp_wmb();
NeilBrownba8805b2013-11-14 15:16:15 +11007942 conf->generation --;
NeilBrownfef9c612009-03-31 15:16:46 +11007943 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11007944 mddev->reshape_position = MaxSector;
NeilBrownba8805b2013-11-14 15:16:15 +11007945 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007946 spin_unlock_irq(&conf->device_lock);
7947 return -EAGAIN;
7948 }
NeilBrownc8f517c2009-03-31 15:28:40 +11007949 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08007950 md_wakeup_thread(mddev->sync_thread);
7951 md_new_event(mddev);
7952 return 0;
7953}
NeilBrown29269552006-03-27 01:18:10 -08007954
NeilBrownec32a2b2009-03-31 15:17:38 +11007955/* This is called from the reshape thread and should make any
7956 * changes needed in 'conf'
7957 */
NeilBrownd1688a62011-10-11 16:49:52 +11007958static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08007959{
NeilBrown29269552006-03-27 01:18:10 -08007960
NeilBrownf6705572006-03-27 01:18:11 -08007961 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10007962 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07007963
NeilBrownf6705572006-03-27 01:18:11 -08007964 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11007965 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10007966 rdev_for_each(rdev, conf->mddev)
7967 rdev->data_offset = rdev->new_data_offset;
7968 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11007969 conf->reshape_progress = MaxSector;
NeilBrown6cbd8142015-07-24 13:30:32 +10007970 conf->mddev->reshape_position = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08007971 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11007972 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07007973
7974 /* read-ahead size must cover two whole stripes, which is
7975 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
7976 */
NeilBrown4a5add42010-06-01 19:37:28 +10007977 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11007978 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007979 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11007980 / PAGE_SIZE);
Jan Karadc3b17c2017-02-02 15:56:50 +01007981 if (conf->mddev->queue->backing_dev_info->ra_pages < 2 * stripe)
7982 conf->mddev->queue->backing_dev_info->ra_pages = 2 * stripe;
NeilBrown16a53ec2006-06-26 00:27:38 -07007983 }
NeilBrown29269552006-03-27 01:18:10 -08007984 }
NeilBrown29269552006-03-27 01:18:10 -08007985}
7986
NeilBrownec32a2b2009-03-31 15:17:38 +11007987/* This is called from the raid5d thread with mddev_lock held.
7988 * It makes config changes to the device.
7989 */
NeilBrownfd01b882011-10-11 16:47:53 +11007990static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11007991{
NeilBrownd1688a62011-10-11 16:49:52 +11007992 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11007993
7994 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
7995
NeilBrownec32a2b2009-03-31 15:17:38 +11007996 if (mddev->delta_disks > 0) {
7997 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
Heinz Mauelshagenfe67d192016-05-03 22:15:31 +02007998 if (mddev->queue) {
7999 set_capacity(mddev->gendisk, mddev->array_sectors);
8000 revalidate_disk(mddev->gendisk);
8001 }
NeilBrownec32a2b2009-03-31 15:17:38 +11008002 } else {
8003 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11008004 spin_lock_irq(&conf->device_lock);
Song Liu2e38a372017-01-24 10:45:30 -08008005 mddev->degraded = raid5_calc_degraded(conf);
NeilBrown908f4fb2011-12-23 10:17:50 +11008006 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11008007 for (d = conf->raid_disks ;
8008 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10008009 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11008010 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10008011 if (rdev)
8012 clear_bit(In_sync, &rdev->flags);
8013 rdev = conf->disks[d].replacement;
8014 if (rdev)
8015 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10008016 }
NeilBrowncea9c222009-03-31 15:15:05 +11008017 }
NeilBrown88ce4932009-03-31 15:24:23 +11008018 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10008019 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11008020 mddev->reshape_position = MaxSector;
8021 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10008022 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11008023 }
8024}
8025
NeilBrownfd01b882011-10-11 16:47:53 +11008026static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07008027{
NeilBrownd1688a62011-10-11 16:49:52 +11008028 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07008029
8030 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08008031 case 2: /* resume for a suspend */
8032 wake_up(&conf->wait_for_overlap);
8033 break;
8034
NeilBrown72626682005-09-09 16:23:54 -07008035 case 1: /* stop all writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11008036 lock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10008037 /* '2' tells resync/reshape to pause so that all
8038 * active stripes can drain
8039 */
Song Liua39f7af2016-11-17 15:24:40 -08008040 r5c_flush_cache(conf, INT_MAX);
NeilBrown64bd6602009-08-03 10:59:58 +10008041 conf->quiesce = 2;
Yuanhan Liub1b46482015-05-08 18:19:06 +10008042 wait_event_cmd(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08008043 atomic_read(&conf->active_stripes) == 0 &&
8044 atomic_read(&conf->active_aligned_reads) == 0,
Shaohua Li566c09c2013-11-14 15:16:17 +11008045 unlock_all_device_hash_locks_irq(conf),
8046 lock_all_device_hash_locks_irq(conf));
NeilBrown64bd6602009-08-03 10:59:58 +10008047 conf->quiesce = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11008048 unlock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10008049 /* allow reshape to continue */
8050 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07008051 break;
8052
8053 case 0: /* re-enable writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11008054 lock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07008055 conf->quiesce = 0;
Yuanhan Liub1b46482015-05-08 18:19:06 +10008056 wake_up(&conf->wait_for_quiescent);
NeilBrowne464eaf2006-03-27 01:18:14 -08008057 wake_up(&conf->wait_for_overlap);
Shaohua Li566c09c2013-11-14 15:16:17 +11008058 unlock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07008059 break;
8060 }
Shaohua Lie6c033f2015-10-04 09:20:12 -07008061 r5l_quiesce(conf->log, state);
NeilBrown72626682005-09-09 16:23:54 -07008062}
NeilBrownb15c2e52006-01-06 00:20:16 -08008063
NeilBrownfd01b882011-10-11 16:47:53 +11008064static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11008065{
NeilBrowne373ab12011-10-11 16:48:59 +11008066 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07008067 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11008068
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008069 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11008070 if (raid0_conf->nr_strip_zones > 1) {
NeilBrowncc6167b2016-11-02 14:16:50 +11008071 pr_warn("md/raid:%s: cannot takeover raid0 with more than one zone.\n",
8072 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008073 return ERR_PTR(-EINVAL);
8074 }
8075
NeilBrowne373ab12011-10-11 16:48:59 +11008076 sectors = raid0_conf->strip_zone[0].zone_end;
8077 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10008078 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008079 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11008080 mddev->new_layout = ALGORITHM_PARITY_N;
8081 mddev->new_chunk_sectors = mddev->chunk_sectors;
8082 mddev->raid_disks += 1;
8083 mddev->delta_disks = 1;
8084 /* make sure it will be not marked as dirty */
8085 mddev->recovery_cp = MaxSector;
8086
8087 return setup_conf(mddev);
8088}
8089
NeilBrownfd01b882011-10-11 16:47:53 +11008090static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11008091{
8092 int chunksect;
Shaohua Li6995f0b2016-12-08 15:48:17 -08008093 void *ret;
NeilBrownd562b0c2009-03-31 14:39:39 +11008094
8095 if (mddev->raid_disks != 2 ||
8096 mddev->degraded > 1)
8097 return ERR_PTR(-EINVAL);
8098
8099 /* Should check if there are write-behind devices? */
8100
8101 chunksect = 64*2; /* 64K by default */
8102
8103 /* The array must be an exact multiple of chunksize */
8104 while (chunksect && (mddev->array_sectors & (chunksect-1)))
8105 chunksect >>= 1;
8106
8107 if ((chunksect<<9) < STRIPE_SIZE)
8108 /* array size does not allow a suitable chunk size */
8109 return ERR_PTR(-EINVAL);
8110
8111 mddev->new_level = 5;
8112 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10008113 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11008114
Shaohua Li6995f0b2016-12-08 15:48:17 -08008115 ret = setup_conf(mddev);
Jes Sorensen32cd7cb2017-01-06 19:31:35 -05008116 if (!IS_ERR(ret))
Shaohua Li394ed8e2017-01-04 16:10:19 -08008117 mddev_clear_unsupported_flags(mddev,
8118 UNSUPPORTED_MDDEV_FLAGS);
Shaohua Li6995f0b2016-12-08 15:48:17 -08008119 return ret;
NeilBrownd562b0c2009-03-31 14:39:39 +11008120}
8121
NeilBrownfd01b882011-10-11 16:47:53 +11008122static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11008123{
8124 int new_layout;
8125
8126 switch (mddev->layout) {
8127 case ALGORITHM_LEFT_ASYMMETRIC_6:
8128 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
8129 break;
8130 case ALGORITHM_RIGHT_ASYMMETRIC_6:
8131 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
8132 break;
8133 case ALGORITHM_LEFT_SYMMETRIC_6:
8134 new_layout = ALGORITHM_LEFT_SYMMETRIC;
8135 break;
8136 case ALGORITHM_RIGHT_SYMMETRIC_6:
8137 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
8138 break;
8139 case ALGORITHM_PARITY_0_6:
8140 new_layout = ALGORITHM_PARITY_0;
8141 break;
8142 case ALGORITHM_PARITY_N:
8143 new_layout = ALGORITHM_PARITY_N;
8144 break;
8145 default:
8146 return ERR_PTR(-EINVAL);
8147 }
8148 mddev->new_level = 5;
8149 mddev->new_layout = new_layout;
8150 mddev->delta_disks = -1;
8151 mddev->raid_disks -= 1;
8152 return setup_conf(mddev);
8153}
8154
NeilBrownfd01b882011-10-11 16:47:53 +11008155static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11008156{
NeilBrown88ce4932009-03-31 15:24:23 +11008157 /* For a 2-drive array, the layout and chunk size can be changed
8158 * immediately as not restriping is needed.
8159 * For larger arrays we record the new value - after validation
8160 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11008161 */
NeilBrownd1688a62011-10-11 16:49:52 +11008162 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10008163 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11008164
NeilBrown597a7112009-06-18 08:47:42 +10008165 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11008166 return -EINVAL;
8167 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10008168 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11008169 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008170 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11008171 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008172 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11008173 /* not factor of array size */
8174 return -EINVAL;
8175 }
8176
8177 /* They look valid */
8178
NeilBrown88ce4932009-03-31 15:24:23 +11008179 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10008180 /* can make the change immediately */
8181 if (mddev->new_layout >= 0) {
8182 conf->algorithm = mddev->new_layout;
8183 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11008184 }
8185 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10008186 conf->chunk_sectors = new_chunk ;
8187 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11008188 }
Shaohua Li29530792016-12-08 15:48:19 -08008189 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrown88ce4932009-03-31 15:24:23 +11008190 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11008191 }
NeilBrown50ac1682009-06-18 08:47:55 +10008192 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11008193}
8194
NeilBrownfd01b882011-10-11 16:47:53 +11008195static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11008196{
NeilBrown597a7112009-06-18 08:47:42 +10008197 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10008198
NeilBrown597a7112009-06-18 08:47:42 +10008199 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11008200 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11008201 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10008202 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11008203 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008204 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11008205 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008206 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11008207 /* not factor of array size */
8208 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11008209 }
NeilBrown88ce4932009-03-31 15:24:23 +11008210
8211 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10008212 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11008213}
8214
NeilBrownfd01b882011-10-11 16:47:53 +11008215static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11008216{
8217 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008218 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11008219 * raid1 - if there are two drives. We need to know the chunk size
8220 * raid4 - trivial - just use a raid4 layout.
8221 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11008222 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008223 if (mddev->level == 0)
8224 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11008225 if (mddev->level == 1)
8226 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11008227 if (mddev->level == 4) {
8228 mddev->new_layout = ALGORITHM_PARITY_N;
8229 mddev->new_level = 5;
8230 return setup_conf(mddev);
8231 }
NeilBrownfc9739c2009-03-31 14:57:20 +11008232 if (mddev->level == 6)
8233 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11008234
8235 return ERR_PTR(-EINVAL);
8236}
8237
NeilBrownfd01b882011-10-11 16:47:53 +11008238static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11008239{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008240 /* raid4 can take over:
8241 * raid0 - if there is only one strip zone
8242 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11008243 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008244 if (mddev->level == 0)
8245 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11008246 if (mddev->level == 5 &&
8247 mddev->layout == ALGORITHM_PARITY_N) {
8248 mddev->new_layout = 0;
8249 mddev->new_level = 4;
8250 return setup_conf(mddev);
8251 }
8252 return ERR_PTR(-EINVAL);
8253}
NeilBrownd562b0c2009-03-31 14:39:39 +11008254
NeilBrown84fc4b52011-10-11 16:49:58 +11008255static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11008256
NeilBrownfd01b882011-10-11 16:47:53 +11008257static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11008258{
8259 /* Currently can only take over a raid5. We map the
8260 * personality to an equivalent raid6 personality
8261 * with the Q block at the end.
8262 */
8263 int new_layout;
8264
8265 if (mddev->pers != &raid5_personality)
8266 return ERR_PTR(-EINVAL);
8267 if (mddev->degraded > 1)
8268 return ERR_PTR(-EINVAL);
8269 if (mddev->raid_disks > 253)
8270 return ERR_PTR(-EINVAL);
8271 if (mddev->raid_disks < 3)
8272 return ERR_PTR(-EINVAL);
8273
8274 switch (mddev->layout) {
8275 case ALGORITHM_LEFT_ASYMMETRIC:
8276 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
8277 break;
8278 case ALGORITHM_RIGHT_ASYMMETRIC:
8279 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
8280 break;
8281 case ALGORITHM_LEFT_SYMMETRIC:
8282 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
8283 break;
8284 case ALGORITHM_RIGHT_SYMMETRIC:
8285 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
8286 break;
8287 case ALGORITHM_PARITY_0:
8288 new_layout = ALGORITHM_PARITY_0_6;
8289 break;
8290 case ALGORITHM_PARITY_N:
8291 new_layout = ALGORITHM_PARITY_N;
8292 break;
8293 default:
8294 return ERR_PTR(-EINVAL);
8295 }
8296 mddev->new_level = 6;
8297 mddev->new_layout = new_layout;
8298 mddev->delta_disks = 1;
8299 mddev->raid_disks += 1;
8300 return setup_conf(mddev);
8301}
8302
Artur Paszkiewiczba903a32017-03-09 10:00:03 +01008303static void raid5_reset_stripe_cache(struct mddev *mddev)
8304{
8305 struct r5conf *conf = mddev->private;
8306
8307 mutex_lock(&conf->cache_size_mutex);
8308 while (conf->max_nr_stripes &&
8309 drop_one_stripe(conf))
8310 ;
8311 while (conf->min_nr_stripes > conf->max_nr_stripes &&
8312 grow_one_stripe(conf, GFP_KERNEL))
8313 ;
8314 mutex_unlock(&conf->cache_size_mutex);
8315}
8316
8317static int raid5_change_consistency_policy(struct mddev *mddev, const char *buf)
8318{
8319 struct r5conf *conf;
8320 int err;
8321
8322 err = mddev_lock(mddev);
8323 if (err)
8324 return err;
8325 conf = mddev->private;
8326 if (!conf) {
8327 mddev_unlock(mddev);
8328 return -ENODEV;
8329 }
8330
8331 if (strncmp(buf, "ppl", 3) == 0 && !raid5_has_ppl(conf)) {
8332 mddev_suspend(mddev);
8333 set_bit(MD_HAS_PPL, &mddev->flags);
8334 err = log_init(conf, NULL);
8335 if (!err)
8336 raid5_reset_stripe_cache(mddev);
8337 mddev_resume(mddev);
8338 } else if (strncmp(buf, "resync", 6) == 0 && raid5_has_ppl(conf)) {
8339 mddev_suspend(mddev);
8340 log_exit(conf);
8341 raid5_reset_stripe_cache(mddev);
8342 mddev_resume(mddev);
8343 } else {
8344 err = -EINVAL;
8345 }
8346
8347 if (!err)
8348 md_update_sb(mddev, 1);
8349
8350 mddev_unlock(mddev);
8351
8352 return err;
8353}
8354
NeilBrown84fc4b52011-10-11 16:49:58 +11008355static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07008356{
8357 .name = "raid6",
8358 .level = 6,
8359 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008360 .make_request = raid5_make_request,
8361 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11008362 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008363 .status = raid5_status,
8364 .error_handler = raid5_error,
NeilBrown16a53ec2006-06-26 00:27:38 -07008365 .hot_add_disk = raid5_add_disk,
8366 .hot_remove_disk= raid5_remove_disk,
8367 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008368 .sync_request = raid5_sync_request,
NeilBrown16a53ec2006-06-26 00:27:38 -07008369 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008370 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10008371 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08008372 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008373 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07008374 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11008375 .takeover = raid6_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008376 .congested = raid5_congested,
NeilBrown16a53ec2006-06-26 00:27:38 -07008377};
NeilBrown84fc4b52011-10-11 16:49:58 +11008378static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07008379{
8380 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08008381 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008382 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008383 .make_request = raid5_make_request,
8384 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11008385 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008386 .status = raid5_status,
8387 .error_handler = raid5_error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008388 .hot_add_disk = raid5_add_disk,
8389 .hot_remove_disk= raid5_remove_disk,
8390 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008391 .sync_request = raid5_sync_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008392 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008393 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08008394 .check_reshape = raid5_check_reshape,
8395 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008396 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07008397 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11008398 .takeover = raid5_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008399 .congested = raid5_congested,
Artur Paszkiewiczba903a32017-03-09 10:00:03 +01008400 .change_consistency_policy = raid5_change_consistency_policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008401};
8402
NeilBrown84fc4b52011-10-11 16:49:58 +11008403static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07008404{
NeilBrown2604b702006-01-06 00:20:36 -08008405 .name = "raid4",
8406 .level = 4,
8407 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008408 .make_request = raid5_make_request,
8409 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11008410 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008411 .status = raid5_status,
8412 .error_handler = raid5_error,
NeilBrown2604b702006-01-06 00:20:36 -08008413 .hot_add_disk = raid5_add_disk,
8414 .hot_remove_disk= raid5_remove_disk,
8415 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008416 .sync_request = raid5_sync_request,
NeilBrown2604b702006-01-06 00:20:36 -08008417 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008418 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08008419 .check_reshape = raid5_check_reshape,
8420 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008421 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08008422 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11008423 .takeover = raid4_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008424 .congested = raid5_congested,
NeilBrown2604b702006-01-06 00:20:36 -08008425};
8426
8427static int __init raid5_init(void)
8428{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008429 int ret;
8430
Shaohua Li851c30c2013-08-28 14:30:16 +08008431 raid5_wq = alloc_workqueue("raid5wq",
8432 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
8433 if (!raid5_wq)
8434 return -ENOMEM;
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008435
8436 ret = cpuhp_setup_state_multi(CPUHP_MD_RAID5_PREPARE,
8437 "md/raid5:prepare",
8438 raid456_cpu_up_prepare,
8439 raid456_cpu_dead);
8440 if (ret) {
8441 destroy_workqueue(raid5_wq);
8442 return ret;
8443 }
NeilBrown16a53ec2006-06-26 00:27:38 -07008444 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008445 register_md_personality(&raid5_personality);
8446 register_md_personality(&raid4_personality);
8447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008448}
8449
NeilBrown2604b702006-01-06 00:20:36 -08008450static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008451{
NeilBrown16a53ec2006-06-26 00:27:38 -07008452 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008453 unregister_md_personality(&raid5_personality);
8454 unregister_md_personality(&raid4_personality);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008455 cpuhp_remove_multi_state(CPUHP_MD_RAID5_PREPARE);
Shaohua Li851c30c2013-08-28 14:30:16 +08008456 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008457}
8458
8459module_init(raid5_init);
8460module_exit(raid5_exit);
8461MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11008462MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08008464MODULE_ALIAS("md-raid5");
8465MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08008466MODULE_ALIAS("md-level-5");
8467MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07008468MODULE_ALIAS("md-personality-8"); /* RAID6 */
8469MODULE_ALIAS("md-raid6");
8470MODULE_ALIAS("md-level-6");
8471
8472/* This used to be two separate modules, they were: */
8473MODULE_ALIAS("raid5");
8474MODULE_ALIAS("raid6");