blob: 4fb09b3fcb410468a9b1939b93d9529e70dd592d [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>
61
NeilBrown43b2e5d2009-03-31 14:33:13 +110062#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110063#include "raid5.h"
Trela Maciej54071b32010-03-08 16:02:42 +110064#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110065#include "bitmap.h"
NeilBrown72626682005-09-09 16:23:54 -070066
Shaohua Li394ed8e2017-01-04 16:10:19 -080067#define UNSUPPORTED_MDDEV_FLAGS (1L << MD_FAILFAST_SUPPORTED)
68
Shaohua Li851c30c2013-08-28 14:30:16 +080069#define cpu_to_group(cpu) cpu_to_node(cpu)
70#define ANY_GROUP NUMA_NO_NODE
71
NeilBrown8e0e99b2014-10-02 13:45:00 +100072static bool devices_handle_discard_safely = false;
73module_param(devices_handle_discard_safely, bool, 0644);
74MODULE_PARM_DESC(devices_handle_discard_safely,
75 "Set to Y if all devices in each array reliably return zeroes on reads from discarded regions");
Shaohua Li851c30c2013-08-28 14:30:16 +080076static struct workqueue_struct *raid5_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
NeilBrownd1688a62011-10-11 16:49:52 +110078static inline struct hlist_head *stripe_hash(struct r5conf *conf, sector_t sect)
NeilBrowndb298e12011-10-07 14:23:00 +110079{
80 int hash = (sect >> STRIPE_SHIFT) & HASH_MASK;
81 return &conf->stripe_hashtbl[hash];
82}
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Shaohua Li566c09c2013-11-14 15:16:17 +110084static inline int stripe_hash_locks_hash(sector_t sect)
85{
86 return (sect >> STRIPE_SHIFT) & STRIPE_HASH_LOCKS_MASK;
87}
88
89static inline void lock_device_hash_lock(struct r5conf *conf, int hash)
90{
91 spin_lock_irq(conf->hash_locks + hash);
92 spin_lock(&conf->device_lock);
93}
94
95static inline void unlock_device_hash_lock(struct r5conf *conf, int hash)
96{
97 spin_unlock(&conf->device_lock);
98 spin_unlock_irq(conf->hash_locks + hash);
99}
100
101static inline void lock_all_device_hash_locks_irq(struct r5conf *conf)
102{
103 int i;
104 local_irq_disable();
105 spin_lock(conf->hash_locks);
106 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
107 spin_lock_nest_lock(conf->hash_locks + i, conf->hash_locks);
108 spin_lock(&conf->device_lock);
109}
110
111static inline void unlock_all_device_hash_locks_irq(struct r5conf *conf)
112{
113 int i;
114 spin_unlock(&conf->device_lock);
115 for (i = NR_STRIPE_HASH_LOCKS; i; i--)
116 spin_unlock(conf->hash_locks + i - 1);
117 local_irq_enable();
118}
119
NeilBrownd0dabf72009-03-31 14:39:38 +1100120/* Find first data disk in a raid6 stripe */
121static inline int raid6_d0(struct stripe_head *sh)
122{
NeilBrown67cc2b82009-03-31 14:39:38 +1100123 if (sh->ddf_layout)
124 /* ddf always start from first device */
125 return 0;
126 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100127 if (sh->qd_idx == sh->disks - 1)
128 return 0;
129 else
130 return sh->qd_idx + 1;
131}
NeilBrown16a53ec2006-06-26 00:27:38 -0700132static inline int raid6_next_disk(int disk, int raid_disks)
133{
134 disk++;
135 return (disk < raid_disks) ? disk : 0;
136}
Dan Williamsa4456852007-07-09 11:56:43 -0700137
NeilBrownd0dabf72009-03-31 14:39:38 +1100138/* When walking through the disks in a raid5, starting at raid6_d0,
139 * We need to map each disk to a 'slot', where the data disks are slot
140 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
141 * is raid_disks-1. This help does that mapping.
142 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100143static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
144 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100145{
Dan Williams66295422009-10-19 18:09:32 -0700146 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100147
NeilBrowne4424fe2009-10-16 16:27:34 +1100148 if (sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700149 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100150 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100151 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100152 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100153 return syndrome_disks + 1;
NeilBrowne4424fe2009-10-16 16:27:34 +1100154 if (!sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700155 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100156 return slot;
157}
158
NeilBrown34a6f802015-08-14 12:07:57 +1000159static void return_io(struct bio_list *return_bi)
Dan Williamsa4456852007-07-09 11:56:43 -0700160{
NeilBrown34a6f802015-08-14 12:07:57 +1000161 struct bio *bi;
162 while ((bi = bio_list_pop(return_bi)) != NULL) {
Kent Overstreet4f024f32013-10-11 15:44:27 -0700163 bi->bi_iter.bi_size = 0;
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700164 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
165 bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200166 bio_endio(bi);
Dan Williamsa4456852007-07-09 11:56:43 -0700167 }
168}
169
NeilBrownd1688a62011-10-11 16:49:52 +1100170static void print_raid5_conf (struct r5conf *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Dan Williams600aa102008-06-28 08:32:05 +1000172static int stripe_operations_active(struct stripe_head *sh)
173{
174 return sh->check_state || sh->reconstruct_state ||
175 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
176 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
177}
178
Shaohua Li851c30c2013-08-28 14:30:16 +0800179static void raid5_wakeup_stripe_thread(struct stripe_head *sh)
180{
181 struct r5conf *conf = sh->raid_conf;
182 struct r5worker_group *group;
Shaohua Libfc90cb2013-08-29 15:40:32 +0800183 int thread_cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +0800184 int i, cpu = sh->cpu;
185
186 if (!cpu_online(cpu)) {
187 cpu = cpumask_any(cpu_online_mask);
188 sh->cpu = cpu;
189 }
190
191 if (list_empty(&sh->lru)) {
192 struct r5worker_group *group;
193 group = conf->worker_groups + cpu_to_group(cpu);
194 list_add_tail(&sh->lru, &group->handle_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800195 group->stripes_cnt++;
196 sh->group = group;
Shaohua Li851c30c2013-08-28 14:30:16 +0800197 }
198
199 if (conf->worker_cnt_per_group == 0) {
200 md_wakeup_thread(conf->mddev->thread);
201 return;
202 }
203
204 group = conf->worker_groups + cpu_to_group(sh->cpu);
205
Shaohua Libfc90cb2013-08-29 15:40:32 +0800206 group->workers[0].working = true;
207 /* at least one worker should run to avoid race */
208 queue_work_on(sh->cpu, raid5_wq, &group->workers[0].work);
209
210 thread_cnt = group->stripes_cnt / MAX_STRIPE_BATCH - 1;
211 /* wakeup more workers */
212 for (i = 1; i < conf->worker_cnt_per_group && thread_cnt > 0; i++) {
213 if (group->workers[i].working == false) {
214 group->workers[i].working = true;
215 queue_work_on(sh->cpu, raid5_wq,
216 &group->workers[i].work);
217 thread_cnt--;
218 }
219 }
Shaohua Li851c30c2013-08-28 14:30:16 +0800220}
221
Shaohua Li566c09c2013-11-14 15:16:17 +1100222static void do_release_stripe(struct r5conf *conf, struct stripe_head *sh,
223 struct list_head *temp_inactive_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Song Liu1e6d6902016-11-17 15:24:39 -0800225 int i;
226 int injournal = 0; /* number of date pages with R5_InJournal */
227
Shaohua Li4eb788d2012-07-19 16:01:31 +1000228 BUG_ON(!list_empty(&sh->lru));
229 BUG_ON(atomic_read(&conf->active_stripes)==0);
Song Liu1e6d6902016-11-17 15:24:39 -0800230
231 if (r5c_is_writeback(conf->log))
232 for (i = sh->disks; i--; )
233 if (test_bit(R5_InJournal, &sh->dev[i].flags))
234 injournal++;
Song Liua39f7af2016-11-17 15:24:40 -0800235 /*
236 * When quiesce in r5c write back, set STRIPE_HANDLE for stripes with
237 * data in journal, so they are not released to cached lists
238 */
239 if (conf->quiesce && r5c_is_writeback(conf->log) &&
240 !test_bit(STRIPE_HANDLE, &sh->state) && injournal != 0) {
241 if (test_bit(STRIPE_R5C_CACHING, &sh->state))
242 r5c_make_stripe_write_out(sh);
243 set_bit(STRIPE_HANDLE, &sh->state);
244 }
Song Liu1e6d6902016-11-17 15:24:39 -0800245
Shaohua Li4eb788d2012-07-19 16:01:31 +1000246 if (test_bit(STRIPE_HANDLE, &sh->state)) {
247 if (test_bit(STRIPE_DELAYED, &sh->state) &&
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500248 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
Shaohua Li4eb788d2012-07-19 16:01:31 +1000249 list_add_tail(&sh->lru, &conf->delayed_list);
Jes Sorensenad3ab8b2015-01-29 12:38:29 -0500250 else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
Shaohua Li4eb788d2012-07-19 16:01:31 +1000251 sh->bm_seq - conf->seq_write > 0)
252 list_add_tail(&sh->lru, &conf->bitmap_list);
253 else {
254 clear_bit(STRIPE_DELAYED, &sh->state);
255 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Shaohua Li851c30c2013-08-28 14:30:16 +0800256 if (conf->worker_cnt_per_group == 0) {
257 list_add_tail(&sh->lru, &conf->handle_list);
258 } else {
259 raid5_wakeup_stripe_thread(sh);
260 return;
261 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000262 }
263 md_wakeup_thread(conf->mddev->thread);
264 } else {
265 BUG_ON(stripe_operations_active(sh));
266 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
267 if (atomic_dec_return(&conf->preread_active_stripes)
268 < IO_THRESHOLD)
269 md_wakeup_thread(conf->mddev->thread);
270 atomic_dec(&conf->active_stripes);
Song Liu1e6d6902016-11-17 15:24:39 -0800271 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
272 if (!r5c_is_writeback(conf->log))
273 list_add_tail(&sh->lru, temp_inactive_list);
274 else {
275 WARN_ON(test_bit(R5_InJournal, &sh->dev[sh->pd_idx].flags));
276 if (injournal == 0)
277 list_add_tail(&sh->lru, temp_inactive_list);
278 else if (injournal == conf->raid_disks - conf->max_degraded) {
279 /* full stripe */
280 if (!test_and_set_bit(STRIPE_R5C_FULL_STRIPE, &sh->state))
281 atomic_inc(&conf->r5c_cached_full_stripes);
282 if (test_and_clear_bit(STRIPE_R5C_PARTIAL_STRIPE, &sh->state))
283 atomic_dec(&conf->r5c_cached_partial_stripes);
284 list_add_tail(&sh->lru, &conf->r5c_full_stripe_list);
Song Liua39f7af2016-11-17 15:24:40 -0800285 r5c_check_cached_full_stripe(conf);
Song Liu03b047f2017-01-11 13:39:14 -0800286 } else
287 /*
288 * STRIPE_R5C_PARTIAL_STRIPE is set in
289 * r5c_try_caching_write(). No need to
290 * set it again.
291 */
Song Liu1e6d6902016-11-17 15:24:39 -0800292 list_add_tail(&sh->lru, &conf->r5c_partial_stripe_list);
Song Liu1e6d6902016-11-17 15:24:39 -0800293 }
294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296}
NeilBrownd0dabf72009-03-31 14:39:38 +1100297
Shaohua Li566c09c2013-11-14 15:16:17 +1100298static void __release_stripe(struct r5conf *conf, struct stripe_head *sh,
299 struct list_head *temp_inactive_list)
Shaohua Li4eb788d2012-07-19 16:01:31 +1000300{
301 if (atomic_dec_and_test(&sh->count))
Shaohua Li566c09c2013-11-14 15:16:17 +1100302 do_release_stripe(conf, sh, temp_inactive_list);
303}
304
305/*
306 * @hash could be NR_STRIPE_HASH_LOCKS, then we have a list of inactive_list
307 *
308 * Be careful: Only one task can add/delete stripes from temp_inactive_list at
309 * given time. Adding stripes only takes device lock, while deleting stripes
310 * only takes hash lock.
311 */
312static void release_inactive_stripe_list(struct r5conf *conf,
313 struct list_head *temp_inactive_list,
314 int hash)
315{
316 int size;
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800317 bool do_wakeup = false;
Shaohua Li566c09c2013-11-14 15:16:17 +1100318 unsigned long flags;
319
320 if (hash == NR_STRIPE_HASH_LOCKS) {
321 size = NR_STRIPE_HASH_LOCKS;
322 hash = NR_STRIPE_HASH_LOCKS - 1;
323 } else
324 size = 1;
325 while (size) {
326 struct list_head *list = &temp_inactive_list[size - 1];
327
328 /*
Shaohua Li6d036f72015-08-13 14:31:57 -0700329 * We don't hold any lock here yet, raid5_get_active_stripe() might
Shaohua Li566c09c2013-11-14 15:16:17 +1100330 * remove stripes from the list
331 */
332 if (!list_empty_careful(list)) {
333 spin_lock_irqsave(conf->hash_locks + hash, flags);
Shaohua Li4bda5562013-11-14 15:16:17 +1100334 if (list_empty(conf->inactive_list + hash) &&
335 !list_empty(list))
336 atomic_dec(&conf->empty_inactive_list_nr);
Shaohua Li566c09c2013-11-14 15:16:17 +1100337 list_splice_tail_init(list, conf->inactive_list + hash);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800338 do_wakeup = true;
Shaohua Li566c09c2013-11-14 15:16:17 +1100339 spin_unlock_irqrestore(conf->hash_locks + hash, flags);
340 }
341 size--;
342 hash--;
343 }
344
345 if (do_wakeup) {
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800346 wake_up(&conf->wait_for_stripe);
Yuanhan Liub1b46482015-05-08 18:19:06 +1000347 if (atomic_read(&conf->active_stripes) == 0)
348 wake_up(&conf->wait_for_quiescent);
Shaohua Li566c09c2013-11-14 15:16:17 +1100349 if (conf->retry_read_aligned)
350 md_wakeup_thread(conf->mddev->thread);
351 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000352}
353
Shaohua Li773ca822013-08-27 17:50:39 +0800354/* should hold conf->device_lock already */
Shaohua Li566c09c2013-11-14 15:16:17 +1100355static int release_stripe_list(struct r5conf *conf,
356 struct list_head *temp_inactive_list)
Shaohua Li773ca822013-08-27 17:50:39 +0800357{
Byungchul Parkeae82632017-02-14 16:26:24 +0900358 struct stripe_head *sh, *t;
Shaohua Li773ca822013-08-27 17:50:39 +0800359 int count = 0;
360 struct llist_node *head;
361
362 head = llist_del_all(&conf->released_stripes);
Shaohua Lid265d9d2013-08-28 14:29:05 +0800363 head = llist_reverse_order(head);
Byungchul Parkeae82632017-02-14 16:26:24 +0900364 llist_for_each_entry_safe(sh, t, head, release_list) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100365 int hash;
366
Shaohua Li773ca822013-08-27 17:50:39 +0800367 /* sh could be readded after STRIPE_ON_RELEASE_LIST is cleard */
368 smp_mb();
369 clear_bit(STRIPE_ON_RELEASE_LIST, &sh->state);
370 /*
371 * Don't worry the bit is set here, because if the bit is set
372 * again, the count is always > 1. This is true for
373 * STRIPE_ON_UNPLUG_LIST bit too.
374 */
Shaohua Li566c09c2013-11-14 15:16:17 +1100375 hash = sh->hash_lock_index;
376 __release_stripe(conf, sh, &temp_inactive_list[hash]);
Shaohua Li773ca822013-08-27 17:50:39 +0800377 count++;
378 }
379
380 return count;
381}
382
Shaohua Li6d036f72015-08-13 14:31:57 -0700383void raid5_release_stripe(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
NeilBrownd1688a62011-10-11 16:49:52 +1100385 struct r5conf *conf = sh->raid_conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 unsigned long flags;
Shaohua Li566c09c2013-11-14 15:16:17 +1100387 struct list_head list;
388 int hash;
Shaohua Li773ca822013-08-27 17:50:39 +0800389 bool wakeup;
NeilBrown16a53ec2006-06-26 00:27:38 -0700390
Eivind Sartocf170f32014-05-28 13:39:23 +1000391 /* Avoid release_list until the last reference.
392 */
393 if (atomic_add_unless(&sh->count, -1, 1))
394 return;
395
majianpengad4068d2013-11-14 15:16:15 +1100396 if (unlikely(!conf->mddev->thread) ||
397 test_and_set_bit(STRIPE_ON_RELEASE_LIST, &sh->state))
Shaohua Li773ca822013-08-27 17:50:39 +0800398 goto slow_path;
399 wakeup = llist_add(&sh->release_list, &conf->released_stripes);
400 if (wakeup)
401 md_wakeup_thread(conf->mddev->thread);
402 return;
403slow_path:
Shaohua Li4eb788d2012-07-19 16:01:31 +1000404 local_irq_save(flags);
Shaohua Li773ca822013-08-27 17:50:39 +0800405 /* we are ok here if STRIPE_ON_RELEASE_LIST is set or not */
Shaohua Li4eb788d2012-07-19 16:01:31 +1000406 if (atomic_dec_and_lock(&sh->count, &conf->device_lock)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100407 INIT_LIST_HEAD(&list);
408 hash = sh->hash_lock_index;
409 do_release_stripe(conf, sh, &list);
Shaohua Li4eb788d2012-07-19 16:01:31 +1000410 spin_unlock(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +1100411 release_inactive_stripe_list(conf, &list, hash);
Shaohua Li4eb788d2012-07-19 16:01:31 +1000412 }
413 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
NeilBrownfccddba2006-01-06 00:20:33 -0800416static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Dan Williams45b42332007-07-09 11:56:43 -0700418 pr_debug("remove_hash(), stripe %llu\n",
419 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
NeilBrownfccddba2006-01-06 00:20:33 -0800421 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
NeilBrownd1688a62011-10-11 16:49:52 +1100424static inline void insert_hash(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
NeilBrownfccddba2006-01-06 00:20:33 -0800426 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Dan Williams45b42332007-07-09 11:56:43 -0700428 pr_debug("insert_hash(), stripe %llu\n",
429 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
NeilBrownfccddba2006-01-06 00:20:33 -0800431 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/* find an idle stripe, make sure it is unhashed, and return it. */
Shaohua Li566c09c2013-11-14 15:16:17 +1100435static struct stripe_head *get_free_stripe(struct r5conf *conf, int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct stripe_head *sh = NULL;
438 struct list_head *first;
439
Shaohua Li566c09c2013-11-14 15:16:17 +1100440 if (list_empty(conf->inactive_list + hash))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 goto out;
Shaohua Li566c09c2013-11-14 15:16:17 +1100442 first = (conf->inactive_list + hash)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 sh = list_entry(first, struct stripe_head, lru);
444 list_del_init(first);
445 remove_hash(sh);
446 atomic_inc(&conf->active_stripes);
Shaohua Li566c09c2013-11-14 15:16:17 +1100447 BUG_ON(hash != sh->hash_lock_index);
Shaohua Li4bda5562013-11-14 15:16:17 +1100448 if (list_empty(conf->inactive_list + hash))
449 atomic_inc(&conf->empty_inactive_list_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450out:
451 return sh;
452}
453
NeilBrowne4e11e32010-06-16 16:45:16 +1000454static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct page *p;
457 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000458 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
NeilBrowne4e11e32010-06-16 16:45:16 +1000460 for (i = 0; i < num ; i++) {
Shaohua Lid592a992014-05-21 17:57:44 +0800461 WARN_ON(sh->dev[i].page != sh->dev[i].orig_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 p = sh->dev[i].page;
463 if (!p)
464 continue;
465 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800466 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468}
469
NeilBrowna9683a72015-02-25 12:02:51 +1100470static int grow_buffers(struct stripe_head *sh, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000473 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
NeilBrowne4e11e32010-06-16 16:45:16 +1000475 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct page *page;
477
NeilBrowna9683a72015-02-25 12:02:51 +1100478 if (!(page = alloc_page(gfp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return 1;
480 }
481 sh->dev[i].page = page;
Shaohua Lid592a992014-05-21 17:57:44 +0800482 sh->dev[i].orig_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 return 0;
485}
486
NeilBrown784052e2009-03-31 15:19:07 +1100487static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrownd1688a62011-10-11 16:49:52 +1100488static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +1100489 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
NeilBrownb5663ba2009-03-31 14:39:38 +1100491static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
NeilBrownd1688a62011-10-11 16:49:52 +1100493 struct r5conf *conf = sh->raid_conf;
Shaohua Li566c09c2013-11-14 15:16:17 +1100494 int i, seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200496 BUG_ON(atomic_read(&sh->count) != 0);
497 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000498 BUG_ON(stripe_operations_active(sh));
shli@kernel.org59fc6302014-12-15 12:57:03 +1100499 BUG_ON(sh->batch_head);
Dan Williamsd84e0f12007-01-02 13:52:30 -0700500
Dan Williams45b42332007-07-09 11:56:43 -0700501 pr_debug("init_stripe called, stripe %llu\n",
Markus Stockhausenb8e6a152014-08-23 20:19:27 +1000502 (unsigned long long)sector);
Shaohua Li566c09c2013-11-14 15:16:17 +1100503retry:
504 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrown86b42c72009-03-31 15:19:03 +1100505 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100506 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100508 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 sh->state = 0;
510
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800511 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct r5dev *dev = &sh->dev[i];
513
Dan Williamsd84e0f12007-01-02 13:52:30 -0700514 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 test_bit(R5_LOCKED, &dev->flags)) {
NeilBrowncc6167b2016-11-02 14:16:50 +1100516 pr_err("sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700518 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 test_bit(R5_LOCKED, &dev->flags));
NeilBrown8cfa7b02011-07-27 11:00:36 +1000520 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100523 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
Shaohua Li566c09c2013-11-14 15:16:17 +1100525 if (read_seqcount_retry(&conf->gen_lock, seq))
526 goto retry;
shli@kernel.org7a87f432014-12-15 12:57:03 +1100527 sh->overwrite_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 insert_hash(conf, sh);
Shaohua Li851c30c2013-08-28 14:30:16 +0800529 sh->cpu = smp_processor_id();
shli@kernel.orgda41ba62014-12-15 12:57:03 +1100530 set_bit(STRIPE_BATCH_READY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
NeilBrownd1688a62011-10-11 16:49:52 +1100533static struct stripe_head *__find_stripe(struct r5conf *conf, sector_t sector,
NeilBrown86b42c72009-03-31 15:19:03 +1100534 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 struct stripe_head *sh;
537
Dan Williams45b42332007-07-09 11:56:43 -0700538 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800539 hlist_for_each_entry(sh, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100540 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700542 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return NULL;
544}
545
NeilBrown674806d2010-06-16 17:17:53 +1000546/*
547 * Need to check if array has failed when deciding whether to:
548 * - start an array
549 * - remove non-faulty devices
550 * - add a spare
551 * - allow a reshape
552 * This determination is simple when no reshape is happening.
553 * However if there is a reshape, we need to carefully check
554 * both the before and after sections.
555 * This is because some failed devices may only affect one
556 * of the two sections, and some non-in_sync devices may
557 * be insync in the section most affected by failed devices.
558 */
Song Liu2e38a372017-01-24 10:45:30 -0800559int raid5_calc_degraded(struct r5conf *conf)
NeilBrown674806d2010-06-16 17:17:53 +1000560{
NeilBrown908f4fb2011-12-23 10:17:50 +1100561 int degraded, degraded2;
NeilBrown674806d2010-06-16 17:17:53 +1000562 int i;
NeilBrown674806d2010-06-16 17:17:53 +1000563
564 rcu_read_lock();
565 degraded = 0;
566 for (i = 0; i < conf->previous_raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100567 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000568 if (rdev && test_bit(Faulty, &rdev->flags))
569 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000570 if (!rdev || test_bit(Faulty, &rdev->flags))
571 degraded++;
572 else if (test_bit(In_sync, &rdev->flags))
573 ;
574 else
575 /* not in-sync or faulty.
576 * If the reshape increases the number of devices,
577 * this is being recovered by the reshape, so
578 * this 'previous' section is not in_sync.
579 * If the number of devices is being reduced however,
580 * the device can only be part of the array if
581 * we are reverting a reshape, so this section will
582 * be in-sync.
583 */
584 if (conf->raid_disks >= conf->previous_raid_disks)
585 degraded++;
586 }
587 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100588 if (conf->raid_disks == conf->previous_raid_disks)
589 return degraded;
NeilBrown674806d2010-06-16 17:17:53 +1000590 rcu_read_lock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100591 degraded2 = 0;
NeilBrown674806d2010-06-16 17:17:53 +1000592 for (i = 0; i < conf->raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100593 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000594 if (rdev && test_bit(Faulty, &rdev->flags))
595 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000596 if (!rdev || test_bit(Faulty, &rdev->flags))
NeilBrown908f4fb2011-12-23 10:17:50 +1100597 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000598 else if (test_bit(In_sync, &rdev->flags))
599 ;
600 else
601 /* not in-sync or faulty.
602 * If reshape increases the number of devices, this
603 * section has already been recovered, else it
604 * almost certainly hasn't.
605 */
606 if (conf->raid_disks <= conf->previous_raid_disks)
NeilBrown908f4fb2011-12-23 10:17:50 +1100607 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000608 }
609 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100610 if (degraded2 > degraded)
611 return degraded2;
612 return degraded;
613}
614
615static int has_failed(struct r5conf *conf)
616{
617 int degraded;
618
619 if (conf->mddev->reshape_position == MaxSector)
620 return conf->mddev->degraded > conf->max_degraded;
621
Song Liu2e38a372017-01-24 10:45:30 -0800622 degraded = raid5_calc_degraded(conf);
NeilBrown674806d2010-06-16 17:17:53 +1000623 if (degraded > conf->max_degraded)
624 return 1;
625 return 0;
626}
627
Shaohua Li6d036f72015-08-13 14:31:57 -0700628struct stripe_head *
629raid5_get_active_stripe(struct r5conf *conf, sector_t sector,
630 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 struct stripe_head *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +1100633 int hash = stripe_hash_locks_hash(sector);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800634 int inc_empty_inactive_list_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Dan Williams45b42332007-07-09 11:56:43 -0700636 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Shaohua Li566c09c2013-11-14 15:16:17 +1100638 spin_lock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 do {
Yuanhan Liub1b46482015-05-08 18:19:06 +1000641 wait_event_lock_irq(conf->wait_for_quiescent,
NeilBrowna8c906c2009-06-09 14:39:59 +1000642 conf->quiesce == 0 || noquiesce,
Shaohua Li566c09c2013-11-14 15:16:17 +1100643 *(conf->hash_locks + hash));
NeilBrown86b42c72009-03-31 15:19:03 +1100644 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (!sh) {
NeilBrownedbe83a2015-02-26 12:47:56 +1100646 if (!test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state)) {
Shaohua Li566c09c2013-11-14 15:16:17 +1100647 sh = get_free_stripe(conf, hash);
Shaohua Li713bc5c2015-05-28 17:33:47 -0700648 if (!sh && !test_bit(R5_DID_ALLOC,
649 &conf->cache_state))
NeilBrownedbe83a2015-02-26 12:47:56 +1100650 set_bit(R5_ALLOC_MORE,
651 &conf->cache_state);
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (noblock && sh == NULL)
654 break;
Song Liua39f7af2016-11-17 15:24:40 -0800655
656 r5c_check_stripe_cache_usage(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (!sh) {
NeilBrown54233992015-02-26 12:21:04 +1100658 set_bit(R5_INACTIVE_BLOCKED,
659 &conf->cache_state);
Song Liua39f7af2016-11-17 15:24:40 -0800660 r5l_wake_reclaim(conf->log, 0);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800661 wait_event_lock_irq(
662 conf->wait_for_stripe,
Shaohua Li566c09c2013-11-14 15:16:17 +1100663 !list_empty(conf->inactive_list + hash) &&
664 (atomic_read(&conf->active_stripes)
665 < (conf->max_nr_stripes * 3 / 4)
NeilBrown54233992015-02-26 12:21:04 +1100666 || !test_bit(R5_INACTIVE_BLOCKED,
667 &conf->cache_state)),
Shaohua Li6ab2a4b2016-02-25 16:24:42 -0800668 *(conf->hash_locks + hash));
NeilBrown54233992015-02-26 12:21:04 +1100669 clear_bit(R5_INACTIVE_BLOCKED,
670 &conf->cache_state);
NeilBrown7da9d452014-01-22 11:45:03 +1100671 } else {
NeilBrownb5663ba2009-03-31 14:39:38 +1100672 init_stripe(sh, sector, previous);
NeilBrown7da9d452014-01-22 11:45:03 +1100673 atomic_inc(&sh->count);
674 }
Shaohua Lie240c182014-04-09 11:27:42 +0800675 } else if (!atomic_inc_not_zero(&sh->count)) {
NeilBrown6d183de2013-11-28 10:55:27 +1100676 spin_lock(&conf->device_lock);
Shaohua Lie240c182014-04-09 11:27:42 +0800677 if (!atomic_read(&sh->count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!test_bit(STRIPE_HANDLE, &sh->state))
679 atomic_inc(&conf->active_stripes);
NeilBrown5af9bef2014-01-14 15:16:10 +1100680 BUG_ON(list_empty(&sh->lru) &&
681 !test_bit(STRIPE_EXPANDING, &sh->state));
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800682 inc_empty_inactive_list_flag = 0;
683 if (!list_empty(conf->inactive_list + hash))
684 inc_empty_inactive_list_flag = 1;
NeilBrown16a53ec2006-06-26 00:27:38 -0700685 list_del_init(&sh->lru);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800686 if (list_empty(conf->inactive_list + hash) && inc_empty_inactive_list_flag)
687 atomic_inc(&conf->empty_inactive_list_nr);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800688 if (sh->group) {
689 sh->group->stripes_cnt--;
690 sh->group = NULL;
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
NeilBrown7da9d452014-01-22 11:45:03 +1100693 atomic_inc(&sh->count);
NeilBrown6d183de2013-11-28 10:55:27 +1100694 spin_unlock(&conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696 } while (sh == NULL);
697
Shaohua Li566c09c2013-11-14 15:16:17 +1100698 spin_unlock_irq(conf->hash_locks + hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return sh;
700}
701
shli@kernel.org7a87f432014-12-15 12:57:03 +1100702static bool is_full_stripe_write(struct stripe_head *sh)
703{
704 BUG_ON(sh->overwrite_disks > (sh->disks - sh->raid_conf->max_degraded));
705 return sh->overwrite_disks == (sh->disks - sh->raid_conf->max_degraded);
706}
707
shli@kernel.org59fc6302014-12-15 12:57:03 +1100708static void lock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
709{
710 local_irq_disable();
711 if (sh1 > sh2) {
712 spin_lock(&sh2->stripe_lock);
713 spin_lock_nested(&sh1->stripe_lock, 1);
714 } else {
715 spin_lock(&sh1->stripe_lock);
716 spin_lock_nested(&sh2->stripe_lock, 1);
717 }
718}
719
720static void unlock_two_stripes(struct stripe_head *sh1, struct stripe_head *sh2)
721{
722 spin_unlock(&sh1->stripe_lock);
723 spin_unlock(&sh2->stripe_lock);
724 local_irq_enable();
725}
726
727/* Only freshly new full stripe normal write stripe can be added to a batch list */
728static bool stripe_can_batch(struct stripe_head *sh)
729{
Shaohua Li9c3e3332015-08-13 14:32:02 -0700730 struct r5conf *conf = sh->raid_conf;
731
732 if (conf->log)
733 return false;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100734 return test_bit(STRIPE_BATCH_READY, &sh->state) &&
NeilBrownd0852df52015-05-27 08:43:45 +1000735 !test_bit(STRIPE_BITMAP_PENDING, &sh->state) &&
shli@kernel.org59fc6302014-12-15 12:57:03 +1100736 is_full_stripe_write(sh);
737}
738
739/* we only do back search */
740static void stripe_add_to_batch_list(struct r5conf *conf, struct stripe_head *sh)
741{
742 struct stripe_head *head;
743 sector_t head_sector, tmp_sec;
744 int hash;
745 int dd_idx;
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800746 int inc_empty_inactive_list_flag;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100747
shli@kernel.org59fc6302014-12-15 12:57:03 +1100748 /* Don't cross chunks, so stripe pd_idx/qd_idx is the same */
749 tmp_sec = sh->sector;
750 if (!sector_div(tmp_sec, conf->chunk_sectors))
751 return;
752 head_sector = sh->sector - STRIPE_SECTORS;
753
754 hash = stripe_hash_locks_hash(head_sector);
755 spin_lock_irq(conf->hash_locks + hash);
756 head = __find_stripe(conf, head_sector, conf->generation);
757 if (head && !atomic_inc_not_zero(&head->count)) {
758 spin_lock(&conf->device_lock);
759 if (!atomic_read(&head->count)) {
760 if (!test_bit(STRIPE_HANDLE, &head->state))
761 atomic_inc(&conf->active_stripes);
762 BUG_ON(list_empty(&head->lru) &&
763 !test_bit(STRIPE_EXPANDING, &head->state));
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800764 inc_empty_inactive_list_flag = 0;
765 if (!list_empty(conf->inactive_list + hash))
766 inc_empty_inactive_list_flag = 1;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100767 list_del_init(&head->lru);
ZhengYuan Liuff00d3b2016-07-28 14:22:14 +0800768 if (list_empty(conf->inactive_list + hash) && inc_empty_inactive_list_flag)
769 atomic_inc(&conf->empty_inactive_list_nr);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100770 if (head->group) {
771 head->group->stripes_cnt--;
772 head->group = NULL;
773 }
774 }
775 atomic_inc(&head->count);
776 spin_unlock(&conf->device_lock);
777 }
778 spin_unlock_irq(conf->hash_locks + hash);
779
780 if (!head)
781 return;
782 if (!stripe_can_batch(head))
783 goto out;
784
785 lock_two_stripes(head, sh);
786 /* clear_batch_ready clear the flag */
787 if (!stripe_can_batch(head) || !stripe_can_batch(sh))
788 goto unlock_out;
789
790 if (sh->batch_head)
791 goto unlock_out;
792
793 dd_idx = 0;
794 while (dd_idx == sh->pd_idx || dd_idx == sh->qd_idx)
795 dd_idx++;
Jens Axboe1eff9d32016-08-05 15:35:16 -0600796 if (head->dev[dd_idx].towrite->bi_opf != sh->dev[dd_idx].towrite->bi_opf ||
Mike Christie796a5cf2016-06-05 14:32:07 -0500797 bio_op(head->dev[dd_idx].towrite) != bio_op(sh->dev[dd_idx].towrite))
shli@kernel.org59fc6302014-12-15 12:57:03 +1100798 goto unlock_out;
799
800 if (head->batch_head) {
801 spin_lock(&head->batch_head->batch_lock);
802 /* This batch list is already running */
803 if (!stripe_can_batch(head)) {
804 spin_unlock(&head->batch_head->batch_lock);
805 goto unlock_out;
806 }
807
808 /*
809 * at this point, head's BATCH_READY could be cleared, but we
810 * can still add the stripe to batch list
811 */
812 list_add(&sh->batch_list, &head->batch_list);
813 spin_unlock(&head->batch_head->batch_lock);
814
815 sh->batch_head = head->batch_head;
816 } else {
817 head->batch_head = head;
818 sh->batch_head = head->batch_head;
819 spin_lock(&head->batch_lock);
820 list_add_tail(&sh->batch_list, &head->batch_list);
821 spin_unlock(&head->batch_lock);
822 }
823
824 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
825 if (atomic_dec_return(&conf->preread_active_stripes)
826 < IO_THRESHOLD)
827 md_wakeup_thread(conf->mddev->thread);
828
NeilBrown2b6b2452015-05-21 15:10:01 +1000829 if (test_and_clear_bit(STRIPE_BIT_DELAY, &sh->state)) {
830 int seq = sh->bm_seq;
831 if (test_bit(STRIPE_BIT_DELAY, &sh->batch_head->state) &&
832 sh->batch_head->bm_seq > seq)
833 seq = sh->batch_head->bm_seq;
834 set_bit(STRIPE_BIT_DELAY, &sh->batch_head->state);
835 sh->batch_head->bm_seq = seq;
836 }
837
shli@kernel.org59fc6302014-12-15 12:57:03 +1100838 atomic_inc(&sh->count);
839unlock_out:
840 unlock_two_stripes(head, sh);
841out:
Shaohua Li6d036f72015-08-13 14:31:57 -0700842 raid5_release_stripe(head);
shli@kernel.org59fc6302014-12-15 12:57:03 +1100843}
844
NeilBrown05616be2012-05-21 09:27:00 +1000845/* Determine if 'data_offset' or 'new_data_offset' should be used
846 * in this stripe_head.
847 */
848static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
849{
850 sector_t progress = conf->reshape_progress;
851 /* Need a memory barrier to make sure we see the value
852 * of conf->generation, or ->data_offset that was set before
853 * reshape_progress was updated.
854 */
855 smp_rmb();
856 if (progress == MaxSector)
857 return 0;
858 if (sh->generation == conf->generation - 1)
859 return 0;
860 /* We are in a reshape, and this is a new-generation stripe,
861 * so use new_data_offset.
862 */
863 return 1;
864}
865
Shaohua Li765d7042017-01-04 09:33:23 -0800866static void flush_deferred_bios(struct r5conf *conf)
867{
868 struct bio_list tmp;
869 struct bio *bio;
870
871 if (!conf->batch_bio_dispatch || !conf->group_cnt)
872 return;
873
874 bio_list_init(&tmp);
875 spin_lock(&conf->pending_bios_lock);
876 bio_list_merge(&tmp, &conf->pending_bios);
877 bio_list_init(&conf->pending_bios);
878 spin_unlock(&conf->pending_bios_lock);
879
880 while ((bio = bio_list_pop(&tmp)))
881 generic_make_request(bio);
882}
883
884static void defer_bio_issue(struct r5conf *conf, struct bio *bio)
885{
886 /*
887 * change group_cnt will drain all bios, so this is safe
888 *
889 * A read generally means a read-modify-write, which usually means a
890 * randwrite, so we don't delay it
891 */
892 if (!conf->batch_bio_dispatch || !conf->group_cnt ||
893 bio_op(bio) == REQ_OP_READ) {
894 generic_make_request(bio);
895 return;
896 }
897 spin_lock(&conf->pending_bios_lock);
898 bio_list_add(&conf->pending_bios, bio);
899 spin_unlock(&conf->pending_bios_lock);
900 md_wakeup_thread(conf->mddev->thread);
901}
902
NeilBrown6712ecf2007-09-27 12:47:43 +0200903static void
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200904raid5_end_read_request(struct bio *bi);
NeilBrown6712ecf2007-09-27 12:47:43 +0200905static void
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200906raid5_end_write_request(struct bio *bi);
Dan Williams91c00922007-01-02 13:52:30 -0700907
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000908static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700909{
NeilBrownd1688a62011-10-11 16:49:52 +1100910 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -0700911 int i, disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100912 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -0700913
914 might_sleep();
915
Song Liu1e6d6902016-11-17 15:24:39 -0800916 if (!test_bit(STRIPE_R5C_CACHING, &sh->state)) {
917 /* writing out phase */
Song Liud7bd3982016-11-23 22:50:39 -0800918 if (s->waiting_extra_page)
919 return;
Song Liu1e6d6902016-11-17 15:24:39 -0800920 if (r5l_write_stripe(conf->log, sh) == 0)
921 return;
922 } else { /* caching phase */
923 if (test_bit(STRIPE_LOG_TRAPPED, &sh->state)) {
924 r5c_cache_data(conf->log, sh, s);
925 return;
926 }
927 }
928
Dan Williams91c00922007-01-02 13:52:30 -0700929 for (i = disks; i--; ) {
Mike Christie796a5cf2016-06-05 14:32:07 -0500930 int op, op_flags = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +1100931 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +1100932 struct bio *bi, *rbi;
933 struct md_rdev *rdev, *rrdev = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +1100934
935 sh = head_sh;
Tejun Heoe9c74692010-09-03 11:56:18 +0200936 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -0500937 op = REQ_OP_WRITE;
Tejun Heoe9c74692010-09-03 11:56:18 +0200938 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600939 op_flags = REQ_FUA;
Shaohua Li9e4447682012-10-11 13:49:49 +1100940 if (test_bit(R5_Discard, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500941 op = REQ_OP_DISCARD;
Tejun Heoe9c74692010-09-03 11:56:18 +0200942 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500943 op = REQ_OP_READ;
NeilBrown9a3e1102011-12-23 10:17:53 +1100944 else if (test_and_clear_bit(R5_WantReplace,
945 &sh->dev[i].flags)) {
Mike Christie796a5cf2016-06-05 14:32:07 -0500946 op = REQ_OP_WRITE;
NeilBrown9a3e1102011-12-23 10:17:53 +1100947 replace_only = 1;
948 } else
Dan Williams91c00922007-01-02 13:52:30 -0700949 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +1000950 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
Mike Christie796a5cf2016-06-05 14:32:07 -0500951 op_flags |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -0700952
shli@kernel.org59fc6302014-12-15 12:57:03 +1100953again:
Dan Williams91c00922007-01-02 13:52:30 -0700954 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +1100955 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -0700956
Dan Williams91c00922007-01-02 13:52:30 -0700957 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +1100958 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +1100959 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
960 rdev = rcu_dereference(conf->disks[i].rdev);
961 if (!rdev) {
962 rdev = rrdev;
963 rrdev = NULL;
964 }
Mike Christie796a5cf2016-06-05 14:32:07 -0500965 if (op_is_write(op)) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100966 if (replace_only)
967 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +1100968 if (rdev == rrdev)
969 /* We raced and saw duplicates */
970 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +1100971 } else {
shli@kernel.org59fc6302014-12-15 12:57:03 +1100972 if (test_bit(R5_ReadRepl, &head_sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +1100973 rdev = rrdev;
974 rrdev = NULL;
975 }
NeilBrown977df362011-12-23 10:17:53 +1100976
Dan Williams91c00922007-01-02 13:52:30 -0700977 if (rdev && test_bit(Faulty, &rdev->flags))
978 rdev = NULL;
979 if (rdev)
980 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +1100981 if (rrdev && test_bit(Faulty, &rrdev->flags))
982 rrdev = NULL;
983 if (rrdev)
984 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -0700985 rcu_read_unlock();
986
NeilBrown73e92e52011-07-28 11:39:22 +1000987 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +1100988 * need to check for writes. We never accept write errors
989 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +1000990 */
Mike Christie796a5cf2016-06-05 14:32:07 -0500991 while (op_is_write(op) && rdev &&
NeilBrown73e92e52011-07-28 11:39:22 +1000992 test_bit(WriteErrorSeen, &rdev->flags)) {
993 sector_t first_bad;
994 int bad_sectors;
995 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
996 &first_bad, &bad_sectors);
997 if (!bad)
998 break;
999
1000 if (bad < 0) {
1001 set_bit(BlockedBadBlocks, &rdev->flags);
1002 if (!conf->mddev->external &&
Shaohua Li29530792016-12-08 15:48:19 -08001003 conf->mddev->sb_flags) {
NeilBrown73e92e52011-07-28 11:39:22 +10001004 /* It is very unlikely, but we might
1005 * still need to write out the
1006 * bad block log - better give it
1007 * a chance*/
1008 md_check_recovery(conf->mddev);
1009 }
majianpeng18507532012-07-03 12:11:54 +10001010 /*
1011 * Because md_wait_for_blocked_rdev
1012 * will dec nr_pending, we must
1013 * increment it first.
1014 */
1015 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +10001016 md_wait_for_blocked_rdev(rdev, conf->mddev);
1017 } else {
1018 /* Acknowledged bad block - skip the write */
1019 rdev_dec_pending(rdev, conf->mddev);
1020 rdev = NULL;
1021 }
1022 }
1023
Dan Williams91c00922007-01-02 13:52:30 -07001024 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001025 if (s->syncing || s->expanding || s->expanded
1026 || s->replacing)
Dan Williams91c00922007-01-02 13:52:30 -07001027 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
1028
Dan Williams2b7497f2008-06-28 08:31:52 +10001029 set_bit(STRIPE_IO_STARTED, &sh->state);
1030
Dan Williams91c00922007-01-02 13:52:30 -07001031 bi->bi_bdev = rdev->bdev;
Mike Christie796a5cf2016-06-05 14:32:07 -05001032 bio_set_op_attrs(bi, op, op_flags);
1033 bi->bi_end_io = op_is_write(op)
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001034 ? raid5_end_write_request
1035 : raid5_end_read_request;
1036 bi->bi_private = sh;
1037
Mike Christie6296b962016-06-05 14:32:21 -05001038 pr_debug("%s: for %llu schedule op %d on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001039 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -06001040 bi->bi_opf, i);
Dan Williams91c00922007-01-02 13:52:30 -07001041 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001042 if (sh != head_sh)
1043 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001044 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001045 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001046 + rdev->new_data_offset);
1047 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001048 bi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001049 + rdev->data_offset);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001050 if (test_bit(R5_ReadNoMerge, &head_sh->dev[i].flags))
Jens Axboe1eff9d32016-08-05 15:35:16 -06001051 bi->bi_opf |= REQ_NOMERGE;
majianpeng3f9e7c12012-07-31 10:04:21 +10001052
Shaohua Lid592a992014-05-21 17:57:44 +08001053 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1054 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
Song Liu86aa1392017-01-12 17:22:41 -08001055
1056 if (!op_is_write(op) &&
1057 test_bit(R5_InJournal, &sh->dev[i].flags))
1058 /*
1059 * issuing read for a page in journal, this
1060 * must be preparing for prexor in rmw; read
1061 * the data into orig_page
1062 */
1063 sh->dev[i].vec.bv_page = sh->dev[i].orig_page;
1064 else
1065 sh->dev[i].vec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001066 bi->bi_vcnt = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001067 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1068 bi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001069 bi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001070 /*
1071 * If this is discard request, set bi_vcnt 0. We don't
1072 * want to confuse SCSI because SCSI will replace payload
1073 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001074 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001075 bi->bi_vcnt = 0;
NeilBrown977df362011-12-23 10:17:53 +11001076 if (rrdev)
1077 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001078
1079 if (conf->mddev->gendisk)
1080 trace_block_bio_remap(bdev_get_queue(bi->bi_bdev),
1081 bi, disk_devt(conf->mddev->gendisk),
1082 sh->dev[i].sector);
Shaohua Li765d7042017-01-04 09:33:23 -08001083 defer_bio_issue(conf, bi);
NeilBrown977df362011-12-23 10:17:53 +11001084 }
1085 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +11001086 if (s->syncing || s->expanding || s->expanded
1087 || s->replacing)
NeilBrown977df362011-12-23 10:17:53 +11001088 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
1089
1090 set_bit(STRIPE_IO_STARTED, &sh->state);
1091
1092 rbi->bi_bdev = rrdev->bdev;
Mike Christie796a5cf2016-06-05 14:32:07 -05001093 bio_set_op_attrs(rbi, op, op_flags);
1094 BUG_ON(!op_is_write(op));
Kent Overstreet2f6db2a2012-09-11 12:26:38 -07001095 rbi->bi_end_io = raid5_end_write_request;
1096 rbi->bi_private = sh;
1097
Mike Christie6296b962016-06-05 14:32:21 -05001098 pr_debug("%s: for %llu schedule op %d on "
NeilBrown977df362011-12-23 10:17:53 +11001099 "replacement disc %d\n",
1100 __func__, (unsigned long long)sh->sector,
Jens Axboe1eff9d32016-08-05 15:35:16 -06001101 rbi->bi_opf, i);
NeilBrown977df362011-12-23 10:17:53 +11001102 atomic_inc(&sh->count);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001103 if (sh != head_sh)
1104 atomic_inc(&head_sh->count);
NeilBrown05616be2012-05-21 09:27:00 +10001105 if (use_new_offset(conf, sh))
Kent Overstreet4f024f32013-10-11 15:44:27 -07001106 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001107 + rrdev->new_data_offset);
1108 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001109 rbi->bi_iter.bi_sector = (sh->sector
NeilBrown05616be2012-05-21 09:27:00 +10001110 + rrdev->data_offset);
Shaohua Lid592a992014-05-21 17:57:44 +08001111 if (test_bit(R5_SkipCopy, &sh->dev[i].flags))
1112 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
1113 sh->dev[i].rvec.bv_page = sh->dev[i].page;
Kent Overstreet4997b722013-05-30 08:44:39 +02001114 rbi->bi_vcnt = 1;
NeilBrown977df362011-12-23 10:17:53 +11001115 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1116 rbi->bi_io_vec[0].bv_offset = 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001117 rbi->bi_iter.bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +08001118 /*
1119 * If this is discard request, set bi_vcnt 0. We don't
1120 * want to confuse SCSI because SCSI will replace payload
1121 */
Mike Christie796a5cf2016-06-05 14:32:07 -05001122 if (op == REQ_OP_DISCARD)
Shaohua Li37c61ff2013-10-19 14:50:28 +08001123 rbi->bi_vcnt = 0;
Jonathan Brassowe3620a32013-03-07 16:22:01 -06001124 if (conf->mddev->gendisk)
1125 trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev),
1126 rbi, disk_devt(conf->mddev->gendisk),
1127 sh->dev[i].sector);
Shaohua Li765d7042017-01-04 09:33:23 -08001128 defer_bio_issue(conf, rbi);
NeilBrown977df362011-12-23 10:17:53 +11001129 }
1130 if (!rdev && !rrdev) {
Mike Christie796a5cf2016-06-05 14:32:07 -05001131 if (op_is_write(op))
Dan Williams91c00922007-01-02 13:52:30 -07001132 set_bit(STRIPE_DEGRADED, &sh->state);
Mike Christie6296b962016-06-05 14:32:21 -05001133 pr_debug("skip op %d on disc %d for sector %llu\n",
Jens Axboe1eff9d32016-08-05 15:35:16 -06001134 bi->bi_opf, i, (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001135 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1136 set_bit(STRIPE_HANDLE, &sh->state);
1137 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001138
1139 if (!head_sh->batch_head)
1140 continue;
1141 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1142 batch_list);
1143 if (sh != head_sh)
1144 goto again;
Dan Williams91c00922007-01-02 13:52:30 -07001145 }
1146}
1147
1148static struct dma_async_tx_descriptor *
Shaohua Lid592a992014-05-21 17:57:44 +08001149async_copy_data(int frombio, struct bio *bio, struct page **page,
1150 sector_t sector, struct dma_async_tx_descriptor *tx,
Song Liu1e6d6902016-11-17 15:24:39 -08001151 struct stripe_head *sh, int no_skipcopy)
Dan Williams91c00922007-01-02 13:52:30 -07001152{
Kent Overstreet79886132013-11-23 17:19:00 -08001153 struct bio_vec bvl;
1154 struct bvec_iter iter;
Dan Williams91c00922007-01-02 13:52:30 -07001155 struct page *bio_page;
Dan Williams91c00922007-01-02 13:52:30 -07001156 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -07001157 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -07001158 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001159
Kent Overstreet4f024f32013-10-11 15:44:27 -07001160 if (bio->bi_iter.bi_sector >= sector)
1161 page_offset = (signed)(bio->bi_iter.bi_sector - sector) * 512;
Dan Williams91c00922007-01-02 13:52:30 -07001162 else
Kent Overstreet4f024f32013-10-11 15:44:27 -07001163 page_offset = (signed)(sector - bio->bi_iter.bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -07001164
Dan Williams0403e382009-09-08 17:42:50 -07001165 if (frombio)
1166 flags |= ASYNC_TX_FENCE;
1167 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
1168
Kent Overstreet79886132013-11-23 17:19:00 -08001169 bio_for_each_segment(bvl, bio, iter) {
1170 int len = bvl.bv_len;
Dan Williams91c00922007-01-02 13:52:30 -07001171 int clen;
1172 int b_offset = 0;
1173
1174 if (page_offset < 0) {
1175 b_offset = -page_offset;
1176 page_offset += b_offset;
1177 len -= b_offset;
1178 }
1179
1180 if (len > 0 && page_offset + len > STRIPE_SIZE)
1181 clen = STRIPE_SIZE - page_offset;
1182 else
1183 clen = len;
1184
1185 if (clen > 0) {
Kent Overstreet79886132013-11-23 17:19:00 -08001186 b_offset += bvl.bv_offset;
1187 bio_page = bvl.bv_page;
Shaohua Lid592a992014-05-21 17:57:44 +08001188 if (frombio) {
1189 if (sh->raid_conf->skip_copy &&
1190 b_offset == 0 && page_offset == 0 &&
Song Liu1e6d6902016-11-17 15:24:39 -08001191 clen == STRIPE_SIZE &&
1192 !no_skipcopy)
Shaohua Lid592a992014-05-21 17:57:44 +08001193 *page = bio_page;
1194 else
1195 tx = async_memcpy(*page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001196 b_offset, clen, &submit);
Shaohua Lid592a992014-05-21 17:57:44 +08001197 } else
1198 tx = async_memcpy(bio_page, *page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -07001199 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001200 }
Dan Williamsa08abd82009-06-03 11:43:59 -07001201 /* chain the operations */
1202 submit.depend_tx = tx;
1203
Dan Williams91c00922007-01-02 13:52:30 -07001204 if (clen < len) /* hit end of page */
1205 break;
1206 page_offset += len;
1207 }
1208
1209 return tx;
1210}
1211
1212static void ops_complete_biofill(void *stripe_head_ref)
1213{
1214 struct stripe_head *sh = stripe_head_ref;
NeilBrown34a6f802015-08-14 12:07:57 +10001215 struct bio_list return_bi = BIO_EMPTY_LIST;
Dan Williamse4d84902007-09-24 10:06:13 -07001216 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001217
Harvey Harrisone46b2722008-04-28 02:15:50 -07001218 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001219 (unsigned long long)sh->sector);
1220
1221 /* clear completed biofills */
1222 for (i = sh->disks; i--; ) {
1223 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -07001224
1225 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -07001226 /* and check if we need to reply to a read request,
1227 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +10001228 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -07001229 */
1230 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001231 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -07001232
Dan Williams91c00922007-01-02 13:52:30 -07001233 BUG_ON(!dev->read);
1234 rbi = dev->read;
1235 dev->read = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001236 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001237 dev->sector + STRIPE_SECTORS) {
1238 rbi2 = r5_next_bio(rbi, dev->sector);
NeilBrown34a6f802015-08-14 12:07:57 +10001239 if (!raid5_dec_bi_active_stripes(rbi))
1240 bio_list_add(&return_bi, rbi);
Dan Williams91c00922007-01-02 13:52:30 -07001241 rbi = rbi2;
1242 }
1243 }
1244 }
Dan Williams83de75c2008-06-28 08:31:58 +10001245 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -07001246
NeilBrown34a6f802015-08-14 12:07:57 +10001247 return_io(&return_bi);
Dan Williams91c00922007-01-02 13:52:30 -07001248
Dan Williamse4d84902007-09-24 10:06:13 -07001249 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001250 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001251}
1252
1253static void ops_run_biofill(struct stripe_head *sh)
1254{
1255 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -07001256 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001257 int i;
1258
shli@kernel.org59fc6302014-12-15 12:57:03 +11001259 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001260 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001261 (unsigned long long)sh->sector);
1262
1263 for (i = sh->disks; i--; ) {
1264 struct r5dev *dev = &sh->dev[i];
1265 if (test_bit(R5_Wantfill, &dev->flags)) {
1266 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +10001267 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001268 dev->read = rbi = dev->toread;
1269 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10001270 spin_unlock_irq(&sh->stripe_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001271 while (rbi && rbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001272 dev->sector + STRIPE_SECTORS) {
Shaohua Lid592a992014-05-21 17:57:44 +08001273 tx = async_copy_data(0, rbi, &dev->page,
Song Liu1e6d6902016-11-17 15:24:39 -08001274 dev->sector, tx, sh, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001275 rbi = r5_next_bio(rbi, dev->sector);
1276 }
1277 }
1278 }
1279
1280 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001281 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
1282 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001283}
1284
Dan Williams4e7d2c02009-08-29 19:13:11 -07001285static void mark_target_uptodate(struct stripe_head *sh, int target)
1286{
1287 struct r5dev *tgt;
1288
1289 if (target < 0)
1290 return;
1291
1292 tgt = &sh->dev[target];
1293 set_bit(R5_UPTODATE, &tgt->flags);
1294 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1295 clear_bit(R5_Wantcompute, &tgt->flags);
1296}
1297
Dan Williamsac6b53b2009-07-14 13:40:19 -07001298static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001299{
1300 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001301
Harvey Harrisone46b2722008-04-28 02:15:50 -07001302 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001303 (unsigned long long)sh->sector);
1304
Dan Williamsac6b53b2009-07-14 13:40:19 -07001305 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -07001306 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001307 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -07001308
Dan Williamsecc65c92008-06-28 08:31:57 +10001309 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
1310 if (sh->check_state == check_state_compute_run)
1311 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -07001312 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001313 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001314}
1315
Dan Williamsd6f38f32009-07-14 11:50:52 -07001316/* return a pointer to the address conversion region of the scribble buffer */
1317static addr_conv_t *to_addr_conv(struct stripe_head *sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001318 struct raid5_percpu *percpu, int i)
Dan Williams91c00922007-01-02 13:52:30 -07001319{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001320 void *addr;
1321
1322 addr = flex_array_get(percpu->scribble, i);
1323 return addr + sizeof(struct page *) * (sh->disks + 2);
1324}
1325
1326/* return a pointer to the address conversion region of the scribble buffer */
1327static struct page **to_addr_page(struct raid5_percpu *percpu, int i)
1328{
1329 void *addr;
1330
1331 addr = flex_array_get(percpu->scribble, i);
1332 return addr;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001333}
1334
1335static struct dma_async_tx_descriptor *
1336ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
1337{
Dan Williams91c00922007-01-02 13:52:30 -07001338 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001339 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001340 int target = sh->ops.target;
1341 struct r5dev *tgt = &sh->dev[target];
1342 struct page *xor_dest = tgt->page;
1343 int count = 0;
1344 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001345 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001346 int i;
1347
shli@kernel.org59fc6302014-12-15 12:57:03 +11001348 BUG_ON(sh->batch_head);
1349
Dan Williams91c00922007-01-02 13:52:30 -07001350 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001351 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -07001352 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1353
1354 for (i = disks; i--; )
1355 if (i != target)
1356 xor_srcs[count++] = sh->dev[i].page;
1357
1358 atomic_inc(&sh->count);
1359
Dan Williams0403e382009-09-08 17:42:50 -07001360 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001361 ops_complete_compute, sh, to_addr_conv(sh, percpu, 0));
Dan Williams91c00922007-01-02 13:52:30 -07001362 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -07001363 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001364 else
Dan Williamsa08abd82009-06-03 11:43:59 -07001365 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001366
Dan Williams91c00922007-01-02 13:52:30 -07001367 return tx;
1368}
1369
Dan Williamsac6b53b2009-07-14 13:40:19 -07001370/* set_syndrome_sources - populate source buffers for gen_syndrome
1371 * @srcs - (struct page *) array of size sh->disks
1372 * @sh - stripe_head to parse
1373 *
1374 * Populates srcs in proper layout order for the stripe and returns the
1375 * 'count' of sources to be used in a call to async_gen_syndrome. The P
1376 * destination buffer is recorded in srcs[count] and the Q destination
1377 * is recorded in srcs[count+1]].
1378 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001379static int set_syndrome_sources(struct page **srcs,
1380 struct stripe_head *sh,
1381 int srctype)
Dan Williamsac6b53b2009-07-14 13:40:19 -07001382{
1383 int disks = sh->disks;
1384 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1385 int d0_idx = raid6_d0(sh);
1386 int count;
1387 int i;
1388
1389 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001390 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001391
1392 count = 0;
1393 i = d0_idx;
1394 do {
1395 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001396 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001397
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001398 if (i == sh->qd_idx || i == sh->pd_idx ||
1399 (srctype == SYNDROME_SRC_ALL) ||
1400 (srctype == SYNDROME_SRC_WANT_DRAIN &&
Song Liu1e6d6902016-11-17 15:24:39 -08001401 (test_bit(R5_Wantdrain, &dev->flags) ||
1402 test_bit(R5_InJournal, &dev->flags))) ||
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001403 (srctype == SYNDROME_SRC_WRITTEN &&
Song Liu1e6d6902016-11-17 15:24:39 -08001404 dev->written)) {
1405 if (test_bit(R5_InJournal, &dev->flags))
1406 srcs[slot] = sh->dev[i].orig_page;
1407 else
1408 srcs[slot] = sh->dev[i].page;
1409 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001410 i = raid6_next_disk(i, disks);
1411 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001412
NeilBrowne4424fe2009-10-16 16:27:34 +11001413 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001414}
1415
1416static struct dma_async_tx_descriptor *
1417ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1418{
1419 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001420 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001421 int target;
1422 int qd_idx = sh->qd_idx;
1423 struct dma_async_tx_descriptor *tx;
1424 struct async_submit_ctl submit;
1425 struct r5dev *tgt;
1426 struct page *dest;
1427 int i;
1428 int count;
1429
shli@kernel.org59fc6302014-12-15 12:57:03 +11001430 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001431 if (sh->ops.target < 0)
1432 target = sh->ops.target2;
1433 else if (sh->ops.target2 < 0)
1434 target = sh->ops.target;
1435 else
1436 /* we should only have one valid target */
1437 BUG();
1438 BUG_ON(target < 0);
1439 pr_debug("%s: stripe %llu block: %d\n",
1440 __func__, (unsigned long long)sh->sector, target);
1441
1442 tgt = &sh->dev[target];
1443 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1444 dest = tgt->page;
1445
1446 atomic_inc(&sh->count);
1447
1448 if (target == qd_idx) {
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001449 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001450 blocks[count] = NULL; /* regenerating p is not necessary */
1451 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001452 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1453 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001454 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001455 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1456 } else {
1457 /* Compute any data- or p-drive using XOR */
1458 count = 0;
1459 for (i = disks; i-- ; ) {
1460 if (i == target || i == qd_idx)
1461 continue;
1462 blocks[count++] = sh->dev[i].page;
1463 }
1464
Dan Williams0403e382009-09-08 17:42:50 -07001465 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1466 NULL, ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001467 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001468 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1469 }
1470
1471 return tx;
1472}
1473
1474static struct dma_async_tx_descriptor *
1475ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1476{
1477 int i, count, disks = sh->disks;
1478 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1479 int d0_idx = raid6_d0(sh);
1480 int faila = -1, failb = -1;
1481 int target = sh->ops.target;
1482 int target2 = sh->ops.target2;
1483 struct r5dev *tgt = &sh->dev[target];
1484 struct r5dev *tgt2 = &sh->dev[target2];
1485 struct dma_async_tx_descriptor *tx;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001486 struct page **blocks = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001487 struct async_submit_ctl submit;
1488
shli@kernel.org59fc6302014-12-15 12:57:03 +11001489 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001490 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1491 __func__, (unsigned long long)sh->sector, target, target2);
1492 BUG_ON(target < 0 || target2 < 0);
1493 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1494 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1495
Dan Williams6c910a72009-09-16 12:24:54 -07001496 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001497 * slot number conversion for 'faila' and 'failb'
1498 */
1499 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001500 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001501 count = 0;
1502 i = d0_idx;
1503 do {
1504 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1505
1506 blocks[slot] = sh->dev[i].page;
1507
1508 if (i == target)
1509 faila = slot;
1510 if (i == target2)
1511 failb = slot;
1512 i = raid6_next_disk(i, disks);
1513 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001514
1515 BUG_ON(faila == failb);
1516 if (failb < faila)
1517 swap(faila, failb);
1518 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1519 __func__, (unsigned long long)sh->sector, faila, failb);
1520
1521 atomic_inc(&sh->count);
1522
1523 if (failb == syndrome_disks+1) {
1524 /* Q disk is one of the missing disks */
1525 if (faila == syndrome_disks) {
1526 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001527 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1528 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001529 to_addr_conv(sh, percpu, 0));
NeilBrowne4424fe2009-10-16 16:27:34 +11001530 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001531 STRIPE_SIZE, &submit);
1532 } else {
1533 struct page *dest;
1534 int data_target;
1535 int qd_idx = sh->qd_idx;
1536
1537 /* Missing D+Q: recompute D from P, then recompute Q */
1538 if (target == qd_idx)
1539 data_target = target2;
1540 else
1541 data_target = target;
1542
1543 count = 0;
1544 for (i = disks; i-- ; ) {
1545 if (i == data_target || i == qd_idx)
1546 continue;
1547 blocks[count++] = sh->dev[i].page;
1548 }
1549 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001550 init_async_submit(&submit,
1551 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1552 NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001553 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001554 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1555 &submit);
1556
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001557 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_ALL);
Dan Williams0403e382009-09-08 17:42:50 -07001558 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1559 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001560 to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001561 return async_gen_syndrome(blocks, 0, count+2,
1562 STRIPE_SIZE, &submit);
1563 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001564 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001565 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1566 ops_complete_compute, sh,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001567 to_addr_conv(sh, percpu, 0));
Dan Williams6c910a72009-09-16 12:24:54 -07001568 if (failb == syndrome_disks) {
1569 /* We're missing D+P. */
1570 return async_raid6_datap_recov(syndrome_disks+2,
1571 STRIPE_SIZE, faila,
1572 blocks, &submit);
1573 } else {
1574 /* We're missing D+D. */
1575 return async_raid6_2data_recov(syndrome_disks+2,
1576 STRIPE_SIZE, faila, failb,
1577 blocks, &submit);
1578 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001579 }
1580}
1581
Dan Williams91c00922007-01-02 13:52:30 -07001582static void ops_complete_prexor(void *stripe_head_ref)
1583{
1584 struct stripe_head *sh = stripe_head_ref;
1585
Harvey Harrisone46b2722008-04-28 02:15:50 -07001586 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001587 (unsigned long long)sh->sector);
Song Liu1e6d6902016-11-17 15:24:39 -08001588
1589 if (r5c_is_writeback(sh->raid_conf->log))
1590 /*
1591 * raid5-cache write back uses orig_page during prexor.
1592 * After prexor, it is time to free orig_page
1593 */
1594 r5c_release_extra_page(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001595}
1596
1597static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001598ops_run_prexor5(struct stripe_head *sh, struct raid5_percpu *percpu,
1599 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001600{
Dan Williams91c00922007-01-02 13:52:30 -07001601 int disks = sh->disks;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001602 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001603 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001604 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001605
1606 /* existing parity data subtracted */
1607 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1608
shli@kernel.org59fc6302014-12-15 12:57:03 +11001609 BUG_ON(sh->batch_head);
Harvey Harrisone46b2722008-04-28 02:15:50 -07001610 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001611 (unsigned long long)sh->sector);
1612
1613 for (i = disks; i--; ) {
1614 struct r5dev *dev = &sh->dev[i];
1615 /* Only process blocks that are known to be uptodate */
Song Liu1e6d6902016-11-17 15:24:39 -08001616 if (test_bit(R5_InJournal, &dev->flags))
1617 xor_srcs[count++] = dev->orig_page;
1618 else if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001619 xor_srcs[count++] = dev->page;
1620 }
1621
Dan Williams0403e382009-09-08 17:42:50 -07001622 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001623 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
Dan Williamsa08abd82009-06-03 11:43:59 -07001624 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001625
1626 return tx;
1627}
1628
1629static struct dma_async_tx_descriptor *
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001630ops_run_prexor6(struct stripe_head *sh, struct raid5_percpu *percpu,
1631 struct dma_async_tx_descriptor *tx)
1632{
1633 struct page **blocks = to_addr_page(percpu, 0);
1634 int count;
1635 struct async_submit_ctl submit;
1636
1637 pr_debug("%s: stripe %llu\n", __func__,
1638 (unsigned long long)sh->sector);
1639
1640 count = set_syndrome_sources(blocks, sh, SYNDROME_SRC_WANT_DRAIN);
1641
1642 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_PQ_XOR_DST, tx,
1643 ops_complete_prexor, sh, to_addr_conv(sh, percpu, 0));
1644 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1645
1646 return tx;
1647}
1648
1649static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001650ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001651{
Song Liu1e6d6902016-11-17 15:24:39 -08001652 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -07001653 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001654 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001655 struct stripe_head *head_sh = sh;
Dan Williams91c00922007-01-02 13:52:30 -07001656
Harvey Harrisone46b2722008-04-28 02:15:50 -07001657 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001658 (unsigned long long)sh->sector);
1659
1660 for (i = disks; i--; ) {
shli@kernel.org59fc6302014-12-15 12:57:03 +11001661 struct r5dev *dev;
Dan Williams91c00922007-01-02 13:52:30 -07001662 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001663
shli@kernel.org59fc6302014-12-15 12:57:03 +11001664 sh = head_sh;
1665 if (test_and_clear_bit(R5_Wantdrain, &head_sh->dev[i].flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001666 struct bio *wbi;
1667
shli@kernel.org59fc6302014-12-15 12:57:03 +11001668again:
1669 dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08001670 /*
1671 * clear R5_InJournal, so when rewriting a page in
1672 * journal, it is not skipped by r5l_log_stripe()
1673 */
1674 clear_bit(R5_InJournal, &dev->flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10001675 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001676 chosen = dev->towrite;
1677 dev->towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11001678 sh->overwrite_disks = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001679 BUG_ON(dev->written);
1680 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001681 spin_unlock_irq(&sh->stripe_lock);
Shaohua Lid592a992014-05-21 17:57:44 +08001682 WARN_ON(dev->page != dev->orig_page);
Dan Williams91c00922007-01-02 13:52:30 -07001683
Kent Overstreet4f024f32013-10-11 15:44:27 -07001684 while (wbi && wbi->bi_iter.bi_sector <
Dan Williams91c00922007-01-02 13:52:30 -07001685 dev->sector + STRIPE_SECTORS) {
Jens Axboe1eff9d32016-08-05 15:35:16 -06001686 if (wbi->bi_opf & REQ_FUA)
Tejun Heoe9c74692010-09-03 11:56:18 +02001687 set_bit(R5_WantFUA, &dev->flags);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001688 if (wbi->bi_opf & REQ_SYNC)
Shaohua Libc0934f2012-05-22 13:55:05 +10001689 set_bit(R5_SyncIO, &dev->flags);
Mike Christie796a5cf2016-06-05 14:32:07 -05001690 if (bio_op(wbi) == REQ_OP_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001691 set_bit(R5_Discard, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08001692 else {
1693 tx = async_copy_data(1, wbi, &dev->page,
Song Liu1e6d6902016-11-17 15:24:39 -08001694 dev->sector, tx, sh,
1695 r5c_is_writeback(conf->log));
1696 if (dev->page != dev->orig_page &&
1697 !r5c_is_writeback(conf->log)) {
Shaohua Lid592a992014-05-21 17:57:44 +08001698 set_bit(R5_SkipCopy, &dev->flags);
1699 clear_bit(R5_UPTODATE, &dev->flags);
1700 clear_bit(R5_OVERWRITE, &dev->flags);
1701 }
1702 }
Dan Williams91c00922007-01-02 13:52:30 -07001703 wbi = r5_next_bio(wbi, dev->sector);
1704 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001705
1706 if (head_sh->batch_head) {
1707 sh = list_first_entry(&sh->batch_list,
1708 struct stripe_head,
1709 batch_list);
1710 if (sh == head_sh)
1711 continue;
1712 goto again;
1713 }
Dan Williams91c00922007-01-02 13:52:30 -07001714 }
1715 }
1716
1717 return tx;
1718}
1719
Dan Williamsac6b53b2009-07-14 13:40:19 -07001720static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001721{
1722 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001723 int disks = sh->disks;
1724 int pd_idx = sh->pd_idx;
1725 int qd_idx = sh->qd_idx;
1726 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001727 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001728
Harvey Harrisone46b2722008-04-28 02:15:50 -07001729 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001730 (unsigned long long)sh->sector);
1731
Shaohua Libc0934f2012-05-22 13:55:05 +10001732 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001733 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001734 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001735 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001736 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001737
Dan Williams91c00922007-01-02 13:52:30 -07001738 for (i = disks; i--; ) {
1739 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001740
Tejun Heoe9c74692010-09-03 11:56:18 +02001741 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Lid592a992014-05-21 17:57:44 +08001742 if (!discard && !test_bit(R5_SkipCopy, &dev->flags))
Shaohua Li9e4447682012-10-11 13:49:49 +11001743 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001744 if (fua)
1745 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001746 if (sync)
1747 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001748 }
Dan Williams91c00922007-01-02 13:52:30 -07001749 }
1750
Dan Williamsd8ee0722008-06-28 08:32:06 +10001751 if (sh->reconstruct_state == reconstruct_state_drain_run)
1752 sh->reconstruct_state = reconstruct_state_drain_result;
1753 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1754 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1755 else {
1756 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1757 sh->reconstruct_state = reconstruct_state_result;
1758 }
Dan Williams91c00922007-01-02 13:52:30 -07001759
1760 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001761 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001762}
1763
1764static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001765ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1766 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001767{
Dan Williams91c00922007-01-02 13:52:30 -07001768 int disks = sh->disks;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001769 struct page **xor_srcs;
Dan Williamsa08abd82009-06-03 11:43:59 -07001770 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001771 int count, pd_idx = sh->pd_idx, i;
Dan Williams91c00922007-01-02 13:52:30 -07001772 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001773 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001774 unsigned long flags;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001775 int j = 0;
1776 struct stripe_head *head_sh = sh;
1777 int last_stripe;
Dan Williams91c00922007-01-02 13:52:30 -07001778
Harvey Harrisone46b2722008-04-28 02:15:50 -07001779 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001780 (unsigned long long)sh->sector);
1781
Shaohua Li620125f2012-10-11 13:49:05 +11001782 for (i = 0; i < sh->disks; i++) {
1783 if (pd_idx == i)
1784 continue;
1785 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1786 break;
1787 }
1788 if (i >= sh->disks) {
1789 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001790 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1791 ops_complete_reconstruct(sh);
1792 return;
1793 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11001794again:
1795 count = 0;
1796 xor_srcs = to_addr_page(percpu, j);
Dan Williams91c00922007-01-02 13:52:30 -07001797 /* check if prexor is active which means only process blocks
1798 * that are part of a read-modify-write (written)
1799 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001800 if (head_sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001801 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001802 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1803 for (i = disks; i--; ) {
1804 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08001805 if (head_sh->dev[i].written ||
1806 test_bit(R5_InJournal, &head_sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -07001807 xor_srcs[count++] = dev->page;
1808 }
1809 } else {
1810 xor_dest = sh->dev[pd_idx].page;
1811 for (i = disks; i--; ) {
1812 struct r5dev *dev = &sh->dev[i];
1813 if (i != pd_idx)
1814 xor_srcs[count++] = dev->page;
1815 }
1816 }
1817
Dan Williams91c00922007-01-02 13:52:30 -07001818 /* 1/ if we prexor'd then the dest is reused as a source
1819 * 2/ if we did not prexor then we are redoing the parity
1820 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1821 * for the synchronous xor case
1822 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11001823 last_stripe = !head_sh->batch_head ||
1824 list_first_entry(&sh->batch_list,
1825 struct stripe_head, batch_list) == head_sh;
1826 if (last_stripe) {
1827 flags = ASYNC_TX_ACK |
1828 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
Dan Williams91c00922007-01-02 13:52:30 -07001829
shli@kernel.org59fc6302014-12-15 12:57:03 +11001830 atomic_inc(&head_sh->count);
1831 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, head_sh,
1832 to_addr_conv(sh, percpu, j));
1833 } else {
1834 flags = prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST;
1835 init_async_submit(&submit, flags, tx, NULL, NULL,
1836 to_addr_conv(sh, percpu, j));
1837 }
Dan Williams91c00922007-01-02 13:52:30 -07001838
Dan Williamsa08abd82009-06-03 11:43:59 -07001839 if (unlikely(count == 1))
1840 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1841 else
1842 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001843 if (!last_stripe) {
1844 j++;
1845 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1846 batch_list);
1847 goto again;
1848 }
Dan Williams91c00922007-01-02 13:52:30 -07001849}
1850
Dan Williamsac6b53b2009-07-14 13:40:19 -07001851static void
1852ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1853 struct dma_async_tx_descriptor *tx)
1854{
1855 struct async_submit_ctl submit;
shli@kernel.org59fc6302014-12-15 12:57:03 +11001856 struct page **blocks;
1857 int count, i, j = 0;
1858 struct stripe_head *head_sh = sh;
1859 int last_stripe;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001860 int synflags;
1861 unsigned long txflags;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001862
1863 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1864
Shaohua Li620125f2012-10-11 13:49:05 +11001865 for (i = 0; i < sh->disks; i++) {
1866 if (sh->pd_idx == i || sh->qd_idx == i)
1867 continue;
1868 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1869 break;
1870 }
1871 if (i >= sh->disks) {
1872 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001873 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1874 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1875 ops_complete_reconstruct(sh);
1876 return;
1877 }
1878
shli@kernel.org59fc6302014-12-15 12:57:03 +11001879again:
1880 blocks = to_addr_page(percpu, j);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001881
1882 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1883 synflags = SYNDROME_SRC_WRITTEN;
1884 txflags = ASYNC_TX_ACK | ASYNC_TX_PQ_XOR_DST;
1885 } else {
1886 synflags = SYNDROME_SRC_ALL;
1887 txflags = ASYNC_TX_ACK;
1888 }
1889
1890 count = set_syndrome_sources(blocks, sh, synflags);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001891 last_stripe = !head_sh->batch_head ||
1892 list_first_entry(&sh->batch_list,
1893 struct stripe_head, batch_list) == head_sh;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001894
shli@kernel.org59fc6302014-12-15 12:57:03 +11001895 if (last_stripe) {
1896 atomic_inc(&head_sh->count);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001897 init_async_submit(&submit, txflags, tx, ops_complete_reconstruct,
shli@kernel.org59fc6302014-12-15 12:57:03 +11001898 head_sh, to_addr_conv(sh, percpu, j));
1899 } else
1900 init_async_submit(&submit, 0, tx, NULL, NULL,
1901 to_addr_conv(sh, percpu, j));
Shaohua Li48769692015-05-13 09:30:08 -07001902 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
shli@kernel.org59fc6302014-12-15 12:57:03 +11001903 if (!last_stripe) {
1904 j++;
1905 sh = list_first_entry(&sh->batch_list, struct stripe_head,
1906 batch_list);
1907 goto again;
1908 }
Dan Williams91c00922007-01-02 13:52:30 -07001909}
1910
1911static void ops_complete_check(void *stripe_head_ref)
1912{
1913 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001914
Harvey Harrisone46b2722008-04-28 02:15:50 -07001915 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001916 (unsigned long long)sh->sector);
1917
Dan Williamsecc65c92008-06-28 08:31:57 +10001918 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001919 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07001920 raid5_release_stripe(sh);
Dan Williams91c00922007-01-02 13:52:30 -07001921}
1922
Dan Williamsac6b53b2009-07-14 13:40:19 -07001923static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001924{
Dan Williams91c00922007-01-02 13:52:30 -07001925 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001926 int pd_idx = sh->pd_idx;
1927 int qd_idx = sh->qd_idx;
1928 struct page *xor_dest;
shli@kernel.org46d5b782014-12-15 12:57:02 +11001929 struct page **xor_srcs = to_addr_page(percpu, 0);
Dan Williams91c00922007-01-02 13:52:30 -07001930 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001931 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001932 int count;
1933 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001934
Harvey Harrisone46b2722008-04-28 02:15:50 -07001935 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001936 (unsigned long long)sh->sector);
1937
shli@kernel.org59fc6302014-12-15 12:57:03 +11001938 BUG_ON(sh->batch_head);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001939 count = 0;
1940 xor_dest = sh->dev[pd_idx].page;
1941 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001942 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001943 if (i == pd_idx || i == qd_idx)
1944 continue;
1945 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001946 }
1947
Dan Williamsd6f38f32009-07-14 11:50:52 -07001948 init_async_submit(&submit, 0, NULL, NULL, NULL,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001949 to_addr_conv(sh, percpu, 0));
Dan Williams099f53c2009-04-08 14:28:37 -07001950 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001951 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001952
Dan Williams91c00922007-01-02 13:52:30 -07001953 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001954 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1955 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001956}
1957
Dan Williamsac6b53b2009-07-14 13:40:19 -07001958static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1959{
shli@kernel.org46d5b782014-12-15 12:57:02 +11001960 struct page **srcs = to_addr_page(percpu, 0);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001961 struct async_submit_ctl submit;
1962 int count;
1963
1964 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1965 (unsigned long long)sh->sector, checkp);
1966
shli@kernel.org59fc6302014-12-15 12:57:03 +11001967 BUG_ON(sh->batch_head);
Markus Stockhausen584acdd2014-12-15 12:57:05 +11001968 count = set_syndrome_sources(srcs, sh, SYNDROME_SRC_ALL);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001969 if (!checkp)
1970 srcs[count] = NULL;
1971
1972 atomic_inc(&sh->count);
1973 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
shli@kernel.org46d5b782014-12-15 12:57:02 +11001974 sh, to_addr_conv(sh, percpu, 0));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001975 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1976 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1977}
1978
NeilBrown51acbce2013-02-28 09:08:34 +11001979static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001980{
1981 int overlap_clear = 0, i, disks = sh->disks;
1982 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001983 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001984 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001985 struct raid5_percpu *percpu;
1986 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001987
Dan Williamsd6f38f32009-07-14 11:50:52 -07001988 cpu = get_cpu();
1989 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001990 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001991 ops_run_biofill(sh);
1992 overlap_clear++;
1993 }
1994
Dan Williams7b3a8712008-06-28 08:32:09 +10001995 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001996 if (level < 6)
1997 tx = ops_run_compute5(sh, percpu);
1998 else {
1999 if (sh->ops.target2 < 0 || sh->ops.target < 0)
2000 tx = ops_run_compute6_1(sh, percpu);
2001 else
2002 tx = ops_run_compute6_2(sh, percpu);
2003 }
2004 /* terminate the chain if reconstruct is not set to be run */
2005 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10002006 async_tx_ack(tx);
2007 }
Dan Williams91c00922007-01-02 13:52:30 -07002008
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002009 if (test_bit(STRIPE_OP_PREXOR, &ops_request)) {
2010 if (level < 6)
2011 tx = ops_run_prexor5(sh, percpu, tx);
2012 else
2013 tx = ops_run_prexor6(sh, percpu, tx);
2014 }
Dan Williams91c00922007-01-02 13:52:30 -07002015
Dan Williams600aa102008-06-28 08:32:05 +10002016 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10002017 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07002018 overlap_clear++;
2019 }
2020
Dan Williamsac6b53b2009-07-14 13:40:19 -07002021 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
2022 if (level < 6)
2023 ops_run_reconstruct5(sh, percpu, tx);
2024 else
2025 ops_run_reconstruct6(sh, percpu, tx);
2026 }
Dan Williams91c00922007-01-02 13:52:30 -07002027
Dan Williamsac6b53b2009-07-14 13:40:19 -07002028 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
2029 if (sh->check_state == check_state_run)
2030 ops_run_check_p(sh, percpu);
2031 else if (sh->check_state == check_state_run_q)
2032 ops_run_check_pq(sh, percpu, 0);
2033 else if (sh->check_state == check_state_run_pq)
2034 ops_run_check_pq(sh, percpu, 1);
2035 else
2036 BUG();
2037 }
Dan Williams91c00922007-01-02 13:52:30 -07002038
shli@kernel.org59fc6302014-12-15 12:57:03 +11002039 if (overlap_clear && !sh->batch_head)
Dan Williams91c00922007-01-02 13:52:30 -07002040 for (i = disks; i--; ) {
2041 struct r5dev *dev = &sh->dev[i];
2042 if (test_and_clear_bit(R5_Overlap, &dev->flags))
2043 wake_up(&sh->raid_conf->wait_for_overlap);
2044 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07002045 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07002046}
2047
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002048static struct stripe_head *alloc_stripe(struct kmem_cache *sc, gfp_t gfp,
2049 int disks)
NeilBrownf18c1a32015-05-08 18:19:04 +10002050{
2051 struct stripe_head *sh;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002052 int i;
NeilBrownf18c1a32015-05-08 18:19:04 +10002053
2054 sh = kmem_cache_zalloc(sc, gfp);
2055 if (sh) {
2056 spin_lock_init(&sh->stripe_lock);
2057 spin_lock_init(&sh->batch_lock);
2058 INIT_LIST_HEAD(&sh->batch_list);
2059 INIT_LIST_HEAD(&sh->lru);
Song Liua39f7af2016-11-17 15:24:40 -08002060 INIT_LIST_HEAD(&sh->r5c);
Song Liud7bd3982016-11-23 22:50:39 -08002061 INIT_LIST_HEAD(&sh->log_list);
NeilBrownf18c1a32015-05-08 18:19:04 +10002062 atomic_set(&sh->count, 1);
Song Liua39f7af2016-11-17 15:24:40 -08002063 sh->log_start = MaxSector;
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002064 for (i = 0; i < disks; i++) {
2065 struct r5dev *dev = &sh->dev[i];
2066
Ming Lei3a83f462016-11-22 08:57:21 -07002067 bio_init(&dev->req, &dev->vec, 1);
2068 bio_init(&dev->rreq, &dev->rvec, 1);
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002069 }
NeilBrownf18c1a32015-05-08 18:19:04 +10002070 }
2071 return sh;
2072}
NeilBrown486f0642015-02-25 12:10:35 +11002073static int grow_one_stripe(struct r5conf *conf, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
2075 struct stripe_head *sh;
NeilBrownf18c1a32015-05-08 18:19:04 +10002076
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002077 sh = alloc_stripe(conf->slab_cache, gfp, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -08002078 if (!sh)
2079 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10002080
NeilBrown3f294f42005-11-08 21:39:25 -08002081 sh->raid_conf = conf;
NeilBrown3f294f42005-11-08 21:39:25 -08002082
NeilBrowna9683a72015-02-25 12:02:51 +11002083 if (grow_buffers(sh, gfp)) {
NeilBrowne4e11e32010-06-16 16:45:16 +10002084 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002085 kmem_cache_free(conf->slab_cache, sh);
2086 return 0;
2087 }
NeilBrown486f0642015-02-25 12:10:35 +11002088 sh->hash_lock_index =
2089 conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS;
NeilBrown3f294f42005-11-08 21:39:25 -08002090 /* we just created an active stripe so... */
NeilBrown3f294f42005-11-08 21:39:25 -08002091 atomic_inc(&conf->active_stripes);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002092
Shaohua Li6d036f72015-08-13 14:31:57 -07002093 raid5_release_stripe(sh);
NeilBrown486f0642015-02-25 12:10:35 +11002094 conf->max_nr_stripes++;
NeilBrown3f294f42005-11-08 21:39:25 -08002095 return 1;
2096}
2097
NeilBrownd1688a62011-10-11 16:49:52 +11002098static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08002099{
Christoph Lametere18b8902006-12-06 20:33:20 -08002100 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11002101 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
NeilBrownf4be6b42010-06-01 19:37:25 +10002103 if (conf->mddev->gendisk)
2104 sprintf(conf->cache_name[0],
2105 "raid%d-%s", conf->level, mdname(conf->mddev));
2106 else
2107 sprintf(conf->cache_name[0],
2108 "raid%d-%p", conf->level, conf->mddev);
2109 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
2110
NeilBrownad01c9e2006-03-27 01:18:07 -08002111 conf->active_name = 0;
2112 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002114 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 if (!sc)
2116 return 1;
2117 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002118 conf->pool_size = devs;
NeilBrown486f0642015-02-25 12:10:35 +11002119 while (num--)
2120 if (!grow_one_stripe(conf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 return 1;
NeilBrown486f0642015-02-25 12:10:35 +11002122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return 0;
2124}
NeilBrown29269552006-03-27 01:18:10 -08002125
Dan Williamsd6f38f32009-07-14 11:50:52 -07002126/**
2127 * scribble_len - return the required size of the scribble region
2128 * @num - total number of disks in the array
2129 *
2130 * The size must be enough to contain:
2131 * 1/ a struct page pointer for each device in the array +2
2132 * 2/ room to convert each entry in (1) to its corresponding dma
2133 * (dma_map_page()) or page (page_address()) address.
2134 *
2135 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
2136 * calculate over all devices (not just the data blocks), using zeros in place
2137 * of the P and Q blocks.
2138 */
shli@kernel.org46d5b782014-12-15 12:57:02 +11002139static struct flex_array *scribble_alloc(int num, int cnt, gfp_t flags)
Dan Williamsd6f38f32009-07-14 11:50:52 -07002140{
shli@kernel.org46d5b782014-12-15 12:57:02 +11002141 struct flex_array *ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002142 size_t len;
2143
2144 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
shli@kernel.org46d5b782014-12-15 12:57:02 +11002145 ret = flex_array_alloc(len, cnt, flags);
2146 if (!ret)
2147 return NULL;
2148 /* always prealloc all elements, so no locking is required */
2149 if (flex_array_prealloc(ret, 0, cnt, flags)) {
2150 flex_array_free(ret);
2151 return NULL;
2152 }
2153 return ret;
Dan Williamsd6f38f32009-07-14 11:50:52 -07002154}
2155
NeilBrown738a2732015-05-08 18:19:39 +10002156static int resize_chunks(struct r5conf *conf, int new_disks, int new_sectors)
2157{
2158 unsigned long cpu;
2159 int err = 0;
2160
Shaohua Li27a353c2016-02-24 17:38:28 -08002161 /*
2162 * Never shrink. And mddev_suspend() could deadlock if this is called
2163 * from raid5d. In that case, scribble_disks and scribble_sectors
2164 * should equal to new_disks and new_sectors
2165 */
2166 if (conf->scribble_disks >= new_disks &&
2167 conf->scribble_sectors >= new_sectors)
2168 return 0;
NeilBrown738a2732015-05-08 18:19:39 +10002169 mddev_suspend(conf->mddev);
2170 get_online_cpus();
2171 for_each_present_cpu(cpu) {
2172 struct raid5_percpu *percpu;
2173 struct flex_array *scribble;
2174
2175 percpu = per_cpu_ptr(conf->percpu, cpu);
2176 scribble = scribble_alloc(new_disks,
2177 new_sectors / STRIPE_SECTORS,
2178 GFP_NOIO);
2179
2180 if (scribble) {
2181 flex_array_free(percpu->scribble);
2182 percpu->scribble = scribble;
2183 } else {
2184 err = -ENOMEM;
2185 break;
2186 }
2187 }
2188 put_online_cpus();
2189 mddev_resume(conf->mddev);
Shaohua Li27a353c2016-02-24 17:38:28 -08002190 if (!err) {
2191 conf->scribble_disks = new_disks;
2192 conf->scribble_sectors = new_sectors;
2193 }
NeilBrown738a2732015-05-08 18:19:39 +10002194 return err;
2195}
2196
NeilBrownd1688a62011-10-11 16:49:52 +11002197static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08002198{
2199 /* Make all the stripes able to hold 'newsize' devices.
2200 * New slots in each stripe get 'page' set to a new page.
2201 *
2202 * This happens in stages:
2203 * 1/ create a new kmem_cache and allocate the required number of
2204 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09002205 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08002206 * to the new stripe_heads. This will have the side effect of
2207 * freezing the array as once all stripe_heads have been collected,
2208 * no IO will be possible. Old stripe heads are freed once their
2209 * pages have been transferred over, and the old kmem_cache is
2210 * freed when all stripes are done.
2211 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
2212 * we simple return a failre status - no need to clean anything up.
2213 * 4/ allocate new pages for the new slots in the new stripe_heads.
2214 * If this fails, we don't bother trying the shrink the
2215 * stripe_heads down again, we just leave them as they are.
2216 * As each stripe_head is processed the new one is released into
2217 * active service.
2218 *
2219 * Once step2 is started, we cannot afford to wait for a write,
2220 * so we use GFP_NOIO allocations.
2221 */
2222 struct stripe_head *osh, *nsh;
2223 LIST_HEAD(newstripes);
2224 struct disk_info *ndisks;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002225 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08002226 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08002227 int i;
Shaohua Li566c09c2013-11-14 15:16:17 +11002228 int hash, cnt;
NeilBrownad01c9e2006-03-27 01:18:07 -08002229
2230 if (newsize <= conf->pool_size)
2231 return 0; /* never bother to shrink */
2232
Dan Williamsb5470dc2008-06-27 21:44:04 -07002233 err = md_allow_write(conf->mddev);
2234 if (err)
2235 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002236
NeilBrownad01c9e2006-03-27 01:18:07 -08002237 /* Step 1 */
2238 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
2239 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09002240 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08002241 if (!sc)
2242 return -ENOMEM;
2243
NeilBrown2d5b5692015-07-06 12:49:23 +10002244 /* Need to ensure auto-resizing doesn't interfere */
2245 mutex_lock(&conf->cache_size_mutex);
2246
NeilBrownad01c9e2006-03-27 01:18:07 -08002247 for (i = conf->max_nr_stripes; i; i--) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002248 nsh = alloc_stripe(sc, GFP_KERNEL, newsize);
NeilBrownad01c9e2006-03-27 01:18:07 -08002249 if (!nsh)
2250 break;
2251
NeilBrownad01c9e2006-03-27 01:18:07 -08002252 nsh->raid_conf = conf;
NeilBrownad01c9e2006-03-27 01:18:07 -08002253 list_add(&nsh->lru, &newstripes);
2254 }
2255 if (i) {
2256 /* didn't get enough, give up */
2257 while (!list_empty(&newstripes)) {
2258 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2259 list_del(&nsh->lru);
2260 kmem_cache_free(sc, nsh);
2261 }
2262 kmem_cache_destroy(sc);
NeilBrown2d5b5692015-07-06 12:49:23 +10002263 mutex_unlock(&conf->cache_size_mutex);
NeilBrownad01c9e2006-03-27 01:18:07 -08002264 return -ENOMEM;
2265 }
2266 /* Step 2 - Must use GFP_NOIO now.
2267 * OK, we have enough stripes, start collecting inactive
2268 * stripes and copying them over
2269 */
Shaohua Li566c09c2013-11-14 15:16:17 +11002270 hash = 0;
2271 cnt = 0;
NeilBrownad01c9e2006-03-27 01:18:07 -08002272 list_for_each_entry(nsh, &newstripes, lru) {
Shaohua Li566c09c2013-11-14 15:16:17 +11002273 lock_device_hash_lock(conf, hash);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08002274 wait_event_cmd(conf->wait_for_stripe,
Shaohua Li566c09c2013-11-14 15:16:17 +11002275 !list_empty(conf->inactive_list + hash),
2276 unlock_device_hash_lock(conf, hash),
2277 lock_device_hash_lock(conf, hash));
2278 osh = get_free_stripe(conf, hash);
2279 unlock_device_hash_lock(conf, hash);
NeilBrownf18c1a32015-05-08 18:19:04 +10002280
Shaohua Lid592a992014-05-21 17:57:44 +08002281 for(i=0; i<conf->pool_size; i++) {
NeilBrownad01c9e2006-03-27 01:18:07 -08002282 nsh->dev[i].page = osh->dev[i].page;
Shaohua Lid592a992014-05-21 17:57:44 +08002283 nsh->dev[i].orig_page = osh->dev[i].page;
2284 }
Shaohua Li566c09c2013-11-14 15:16:17 +11002285 nsh->hash_lock_index = hash;
NeilBrownad01c9e2006-03-27 01:18:07 -08002286 kmem_cache_free(conf->slab_cache, osh);
Shaohua Li566c09c2013-11-14 15:16:17 +11002287 cnt++;
2288 if (cnt >= conf->max_nr_stripes / NR_STRIPE_HASH_LOCKS +
2289 !!((conf->max_nr_stripes % NR_STRIPE_HASH_LOCKS) > hash)) {
2290 hash++;
2291 cnt = 0;
2292 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002293 }
2294 kmem_cache_destroy(conf->slab_cache);
2295
2296 /* Step 3.
2297 * At this point, we are holding all the stripes so the array
2298 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07002299 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08002300 */
2301 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
2302 if (ndisks) {
Song Liud7bd3982016-11-23 22:50:39 -08002303 for (i = 0; i < conf->pool_size; i++)
NeilBrownad01c9e2006-03-27 01:18:07 -08002304 ndisks[i] = conf->disks[i];
Song Liud7bd3982016-11-23 22:50:39 -08002305
2306 for (i = conf->pool_size; i < newsize; i++) {
2307 ndisks[i].extra_page = alloc_page(GFP_NOIO);
2308 if (!ndisks[i].extra_page)
2309 err = -ENOMEM;
2310 }
2311
2312 if (err) {
2313 for (i = conf->pool_size; i < newsize; i++)
2314 if (ndisks[i].extra_page)
2315 put_page(ndisks[i].extra_page);
2316 kfree(ndisks);
2317 } else {
2318 kfree(conf->disks);
2319 conf->disks = ndisks;
2320 }
NeilBrownad01c9e2006-03-27 01:18:07 -08002321 } else
2322 err = -ENOMEM;
2323
NeilBrown2d5b5692015-07-06 12:49:23 +10002324 mutex_unlock(&conf->cache_size_mutex);
NeilBrownad01c9e2006-03-27 01:18:07 -08002325 /* Step 4, return new stripes to service */
2326 while(!list_empty(&newstripes)) {
2327 nsh = list_entry(newstripes.next, struct stripe_head, lru);
2328 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07002329
NeilBrownad01c9e2006-03-27 01:18:07 -08002330 for (i=conf->raid_disks; i < newsize; i++)
2331 if (nsh->dev[i].page == NULL) {
2332 struct page *p = alloc_page(GFP_NOIO);
2333 nsh->dev[i].page = p;
Shaohua Lid592a992014-05-21 17:57:44 +08002334 nsh->dev[i].orig_page = p;
NeilBrownad01c9e2006-03-27 01:18:07 -08002335 if (!p)
2336 err = -ENOMEM;
2337 }
Shaohua Li6d036f72015-08-13 14:31:57 -07002338 raid5_release_stripe(nsh);
NeilBrownad01c9e2006-03-27 01:18:07 -08002339 }
2340 /* critical section pass, GFP_NOIO no longer needed */
2341
2342 conf->slab_cache = sc;
2343 conf->active_name = 1-conf->active_name;
NeilBrown6e9eac22015-05-08 18:19:34 +10002344 if (!err)
2345 conf->pool_size = newsize;
NeilBrownad01c9e2006-03-27 01:18:07 -08002346 return err;
2347}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
NeilBrown486f0642015-02-25 12:10:35 +11002349static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350{
2351 struct stripe_head *sh;
NeilBrown49895bc2015-08-03 17:09:57 +10002352 int hash = (conf->max_nr_stripes - 1) & STRIPE_HASH_LOCKS_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Shaohua Li566c09c2013-11-14 15:16:17 +11002354 spin_lock_irq(conf->hash_locks + hash);
2355 sh = get_free_stripe(conf, hash);
2356 spin_unlock_irq(conf->hash_locks + hash);
NeilBrown3f294f42005-11-08 21:39:25 -08002357 if (!sh)
2358 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002359 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10002360 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08002361 kmem_cache_free(conf->slab_cache, sh);
2362 atomic_dec(&conf->active_stripes);
NeilBrown486f0642015-02-25 12:10:35 +11002363 conf->max_nr_stripes--;
NeilBrown3f294f42005-11-08 21:39:25 -08002364 return 1;
2365}
2366
NeilBrownd1688a62011-10-11 16:49:52 +11002367static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08002368{
NeilBrown486f0642015-02-25 12:10:35 +11002369 while (conf->max_nr_stripes &&
2370 drop_one_stripe(conf))
2371 ;
NeilBrown3f294f42005-11-08 21:39:25 -08002372
Julia Lawall644df1a2015-09-13 14:15:10 +02002373 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 conf->slab_cache = NULL;
2375}
2376
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002377static void raid5_end_read_request(struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378{
NeilBrown99c0fb52009-03-31 14:39:38 +11002379 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002380 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002381 int disks = sh->disks, i;
NeilBrownd6950432006-07-10 04:44:20 -07002382 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11002383 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10002384 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
2386 for (i=0 ; i<disks; i++)
2387 if (bi == &sh->dev[i].req)
2388 break;
2389
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002390 pr_debug("end_read_request %llu/%d, count: %d, error %d.\n",
Dan Williams45b42332007-07-09 11:56:43 -07002391 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002392 bi->bi_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002394 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002396 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 }
NeilBrown14a75d32011-12-23 10:17:52 +11002398 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11002399 /* If replacement finished while this request was outstanding,
2400 * 'replacement' might be NULL already.
2401 * In that case it moved down to 'rdev'.
2402 * rdev is not removed until all requests are finished.
2403 */
NeilBrown14a75d32011-12-23 10:17:52 +11002404 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002405 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11002406 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
NeilBrown05616be2012-05-21 09:27:00 +10002408 if (use_new_offset(conf, sh))
2409 s = sh->sector + rdev->new_data_offset;
2410 else
2411 s = sh->sector + rdev->data_offset;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002412 if (!bi->bi_error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08002414 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11002415 /* Note that this cannot happen on a
2416 * replacement device. We just fail those on
2417 * any error
2418 */
NeilBrowncc6167b2016-11-02 14:16:50 +11002419 pr_info_ratelimited(
2420 "md/raid:%s: read error corrected (%lu sectors at %llu on %s)\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002421 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10002422 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002423 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10002424 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08002425 clear_bit(R5_ReadError, &sh->dev[i].flags);
2426 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10002427 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2428 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2429
Song Liu86aa1392017-01-12 17:22:41 -08002430 if (test_bit(R5_InJournal, &sh->dev[i].flags))
2431 /*
2432 * end read for a page in journal, this
2433 * must be preparing for prexor in rmw
2434 */
2435 set_bit(R5_OrigPageUPTDODATE, &sh->dev[i].flags);
2436
NeilBrown14a75d32011-12-23 10:17:52 +11002437 if (atomic_read(&rdev->read_errors))
2438 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11002440 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08002441 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10002442 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07002443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07002445 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11002446 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowncc6167b2016-11-02 14:16:50 +11002447 pr_warn_ratelimited(
2448 "md/raid:%s: read error on replacement device (sector %llu on %s).\n",
NeilBrown14a75d32011-12-23 10:17:52 +11002449 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002450 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11002451 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002452 else if (conf->mddev->degraded >= conf->max_degraded) {
2453 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002454 pr_warn_ratelimited(
2455 "md/raid:%s: read error not correctable (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002456 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002457 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002458 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002459 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08002460 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10002461 set_bad = 1;
NeilBrowncc6167b2016-11-02 14:16:50 +11002462 pr_warn_ratelimited(
2463 "md/raid:%s: read error NOT corrected!! (sector %llu on %s).\n",
Christian Dietrich8bda4702011-07-27 11:00:36 +10002464 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10002465 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10002466 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10002467 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08002468 > conf->max_nr_stripes)
NeilBrowncc6167b2016-11-02 14:16:50 +11002469 pr_warn("md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07002470 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08002471 else
2472 retry = 1;
Bian Yuedfa1f62013-11-14 15:16:17 +11002473 if (set_bad && test_bit(In_sync, &rdev->flags)
2474 && !test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
2475 retry = 1;
NeilBrownba22dcb2005-11-08 21:39:31 -08002476 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10002477 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
2478 set_bit(R5_ReadError, &sh->dev[i].flags);
2479 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
2480 } else
2481 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08002482 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08002483 clear_bit(R5_ReadError, &sh->dev[i].flags);
2484 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10002485 if (!(set_bad
2486 && test_bit(In_sync, &rdev->flags)
2487 && rdev_set_badblocks(
2488 rdev, sh->sector, STRIPE_SECTORS, 0)))
2489 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08002490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 }
NeilBrown14a75d32011-12-23 10:17:52 +11002492 rdev_dec_pending(rdev, conf->mddev);
Shaohua Lic9445552016-09-08 10:43:58 -07002493 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2495 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002496 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497}
2498
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002499static void raid5_end_write_request(struct bio *bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
NeilBrown99c0fb52009-03-31 14:39:38 +11002501 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11002502 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002503 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11002504 struct md_rdev *uninitialized_var(rdev);
NeilBrownb84db562011-07-28 11:39:23 +10002505 sector_t first_bad;
2506 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11002507 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
NeilBrown977df362011-12-23 10:17:53 +11002509 for (i = 0 ; i < disks; i++) {
2510 if (bi == &sh->dev[i].req) {
2511 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 break;
NeilBrown977df362011-12-23 10:17:53 +11002513 }
2514 if (bi == &sh->dev[i].rreq) {
2515 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11002516 if (rdev)
2517 replacement = 1;
2518 else
2519 /* rdev was removed and 'replacement'
2520 * replaced it. rdev is not removed
2521 * until all requests are finished.
2522 */
2523 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11002524 break;
2525 }
2526 }
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002527 pr_debug("end_write_request %llu/%d, count %d, error: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002529 bi->bi_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 if (i == disks) {
Shaohua Li5f9d1fd2016-08-22 21:14:01 -07002531 bio_reset(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02002533 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 }
2535
NeilBrown977df362011-12-23 10:17:53 +11002536 if (replacement) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002537 if (bi->bi_error)
NeilBrown977df362011-12-23 10:17:53 +11002538 md_error(conf->mddev, rdev);
2539 else if (is_badblock(rdev, sh->sector,
2540 STRIPE_SECTORS,
2541 &first_bad, &bad_sectors))
2542 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2543 } else {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002544 if (bi->bi_error) {
NeilBrown9f97e4b2014-01-16 09:35:38 +11002545 set_bit(STRIPE_DEGRADED, &sh->state);
NeilBrown977df362011-12-23 10:17:53 +11002546 set_bit(WriteErrorSeen, &rdev->flags);
2547 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002548 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2549 set_bit(MD_RECOVERY_NEEDED,
2550 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002551 } else if (is_badblock(rdev, sh->sector,
2552 STRIPE_SECTORS,
NeilBrownc0b32972013-04-24 11:42:42 +10002553 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002554 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002555 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2556 /* That was a successful write so make
2557 * sure it looks like we already did
2558 * a re-write.
2559 */
2560 set_bit(R5_ReWrite, &sh->dev[i].flags);
2561 }
NeilBrown977df362011-12-23 10:17:53 +11002562 }
2563 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002565 if (sh->batch_head && bi->bi_error && !replacement)
shli@kernel.org72ac7332014-12-15 12:57:03 +11002566 set_bit(STRIPE_BATCH_ERR, &sh->batch_head->state);
2567
Shaohua Lic9445552016-09-08 10:43:58 -07002568 bio_reset(bi);
NeilBrown977df362011-12-23 10:17:53 +11002569 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2570 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07002572 raid5_release_stripe(sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11002573
2574 if (sh->batch_head && sh != sh->batch_head)
Shaohua Li6d036f72015-08-13 14:31:57 -07002575 raid5_release_stripe(sh->batch_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576}
2577
NeilBrown784052e2009-03-31 15:19:07 +11002578static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579{
2580 struct r5dev *dev = &sh->dev[i];
2581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 dev->flags = 0;
Shaohua Li6d036f72015-08-13 14:31:57 -07002583 dev->sector = raid5_compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584}
2585
Shaohua Li849674e2016-01-20 13:52:20 -08002586static void raid5_error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587{
2588 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002589 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002590 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002591 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
NeilBrown908f4fb2011-12-23 10:17:50 +11002593 spin_lock_irqsave(&conf->device_lock, flags);
2594 clear_bit(In_sync, &rdev->flags);
Song Liu2e38a372017-01-24 10:45:30 -08002595 mddev->degraded = raid5_calc_degraded(conf);
NeilBrown908f4fb2011-12-23 10:17:50 +11002596 spin_unlock_irqrestore(&conf->device_lock, flags);
2597 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2598
NeilBrownde393cd2011-07-28 11:31:48 +10002599 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10002600 set_bit(Faulty, &rdev->flags);
Shaohua Li29530792016-12-08 15:48:19 -08002601 set_mask_bits(&mddev->sb_flags, 0,
2602 BIT(MD_SB_CHANGE_DEVS) | BIT(MD_SB_CHANGE_PENDING));
NeilBrowncc6167b2016-11-02 14:16:50 +11002603 pr_crit("md/raid:%s: Disk failure on %s, disabling device.\n"
2604 "md/raid:%s: Operation continuing on %d devices.\n",
2605 mdname(mddev),
2606 bdevname(rdev->bdev, b),
2607 mdname(mddev),
2608 conf->raid_disks - mddev->degraded);
Song Liu2e38a372017-01-24 10:45:30 -08002609 r5c_update_on_rdev_error(mddev);
NeilBrown16a53ec2006-06-26 00:27:38 -07002610}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612/*
2613 * Input: a 'big' sector number,
2614 * Output: index of the data and parity disk, and the sector # in them.
2615 */
Shaohua Li6d036f72015-08-13 14:31:57 -07002616sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
2617 int previous, int *dd_idx,
2618 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002620 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002621 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002623 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002624 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002626 int algorithm = previous ? conf->prev_algo
2627 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002628 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2629 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002630 int raid_disks = previous ? conf->previous_raid_disks
2631 : conf->raid_disks;
2632 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634 /* First compute the information on this sector */
2635
2636 /*
2637 * Compute the chunk number and the sector offset inside the chunk
2638 */
2639 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2640 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
2642 /*
2643 * Compute the stripe number
2644 */
NeilBrown35f2a592010-04-20 14:13:34 +10002645 stripe = chunk_number;
2646 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002647 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 /*
2649 * Select the parity disk based on the user selected algorithm.
2650 */
NeilBrown84789552011-07-27 11:00:36 +10002651 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002652 switch(conf->level) {
2653 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002654 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002655 break;
2656 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002657 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002659 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002660 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 (*dd_idx)++;
2662 break;
2663 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002664 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002665 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 (*dd_idx)++;
2667 break;
2668 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002669 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002670 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 break;
2672 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002673 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002674 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002676 case ALGORITHM_PARITY_0:
2677 pd_idx = 0;
2678 (*dd_idx)++;
2679 break;
2680 case ALGORITHM_PARITY_N:
2681 pd_idx = data_disks;
2682 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002684 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002685 }
2686 break;
2687 case 6:
2688
NeilBrowne183eae2009-03-31 15:20:22 +11002689 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002690 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002691 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002692 qd_idx = pd_idx + 1;
2693 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002694 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002695 qd_idx = 0;
2696 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002697 (*dd_idx) += 2; /* D D P Q D */
2698 break;
2699 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002700 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002701 qd_idx = pd_idx + 1;
2702 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002703 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002704 qd_idx = 0;
2705 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002706 (*dd_idx) += 2; /* D D P Q D */
2707 break;
2708 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002709 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002710 qd_idx = (pd_idx + 1) % raid_disks;
2711 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002712 break;
2713 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002714 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002715 qd_idx = (pd_idx + 1) % raid_disks;
2716 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002717 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002718
2719 case ALGORITHM_PARITY_0:
2720 pd_idx = 0;
2721 qd_idx = 1;
2722 (*dd_idx) += 2;
2723 break;
2724 case ALGORITHM_PARITY_N:
2725 pd_idx = data_disks;
2726 qd_idx = data_disks + 1;
2727 break;
2728
2729 case ALGORITHM_ROTATING_ZERO_RESTART:
2730 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2731 * of blocks for computing Q is different.
2732 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002733 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002734 qd_idx = pd_idx + 1;
2735 if (pd_idx == raid_disks-1) {
2736 (*dd_idx)++; /* Q D D D P */
2737 qd_idx = 0;
2738 } else if (*dd_idx >= pd_idx)
2739 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002740 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002741 break;
2742
2743 case ALGORITHM_ROTATING_N_RESTART:
2744 /* Same a left_asymmetric, by first stripe is
2745 * D D D P Q rather than
2746 * Q D D D P
2747 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002748 stripe2 += 1;
2749 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002750 qd_idx = pd_idx + 1;
2751 if (pd_idx == raid_disks-1) {
2752 (*dd_idx)++; /* Q D D D P */
2753 qd_idx = 0;
2754 } else if (*dd_idx >= pd_idx)
2755 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002756 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002757 break;
2758
2759 case ALGORITHM_ROTATING_N_CONTINUE:
2760 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002761 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002762 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2763 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002764 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002765 break;
2766
2767 case ALGORITHM_LEFT_ASYMMETRIC_6:
2768 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002769 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002770 if (*dd_idx >= pd_idx)
2771 (*dd_idx)++;
2772 qd_idx = raid_disks - 1;
2773 break;
2774
2775 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002776 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002777 if (*dd_idx >= pd_idx)
2778 (*dd_idx)++;
2779 qd_idx = raid_disks - 1;
2780 break;
2781
2782 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002783 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002784 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2785 qd_idx = raid_disks - 1;
2786 break;
2787
2788 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002789 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002790 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2791 qd_idx = raid_disks - 1;
2792 break;
2793
2794 case ALGORITHM_PARITY_0_6:
2795 pd_idx = 0;
2796 (*dd_idx)++;
2797 qd_idx = raid_disks - 1;
2798 break;
2799
NeilBrown16a53ec2006-06-26 00:27:38 -07002800 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002801 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002802 }
2803 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 }
2805
NeilBrown911d4ee2009-03-31 14:39:38 +11002806 if (sh) {
2807 sh->pd_idx = pd_idx;
2808 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002809 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 /*
2812 * Finally, compute the new sector number
2813 */
2814 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2815 return new_sector;
2816}
2817
Shaohua Li6d036f72015-08-13 14:31:57 -07002818sector_t raid5_compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819{
NeilBrownd1688a62011-10-11 16:49:52 +11002820 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002821 int raid_disks = sh->disks;
2822 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002824 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2825 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002826 int algorithm = previous ? conf->prev_algo
2827 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 sector_t stripe;
2829 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002830 sector_t chunk_number;
2831 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002833 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
2835 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2836 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
NeilBrown16a53ec2006-06-26 00:27:38 -07002838 if (i == sh->pd_idx)
2839 return 0;
2840 switch(conf->level) {
2841 case 4: break;
2842 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002843 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 case ALGORITHM_LEFT_ASYMMETRIC:
2845 case ALGORITHM_RIGHT_ASYMMETRIC:
2846 if (i > sh->pd_idx)
2847 i--;
2848 break;
2849 case ALGORITHM_LEFT_SYMMETRIC:
2850 case ALGORITHM_RIGHT_SYMMETRIC:
2851 if (i < sh->pd_idx)
2852 i += raid_disks;
2853 i -= (sh->pd_idx + 1);
2854 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002855 case ALGORITHM_PARITY_0:
2856 i -= 1;
2857 break;
2858 case ALGORITHM_PARITY_N:
2859 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002861 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002862 }
2863 break;
2864 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002865 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002866 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002867 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002868 case ALGORITHM_LEFT_ASYMMETRIC:
2869 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002870 case ALGORITHM_ROTATING_ZERO_RESTART:
2871 case ALGORITHM_ROTATING_N_RESTART:
2872 if (sh->pd_idx == raid_disks-1)
2873 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002874 else if (i > sh->pd_idx)
2875 i -= 2; /* D D P Q D */
2876 break;
2877 case ALGORITHM_LEFT_SYMMETRIC:
2878 case ALGORITHM_RIGHT_SYMMETRIC:
2879 if (sh->pd_idx == raid_disks-1)
2880 i--; /* Q D D D P */
2881 else {
2882 /* D D P Q D */
2883 if (i < sh->pd_idx)
2884 i += raid_disks;
2885 i -= (sh->pd_idx + 2);
2886 }
2887 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002888 case ALGORITHM_PARITY_0:
2889 i -= 2;
2890 break;
2891 case ALGORITHM_PARITY_N:
2892 break;
2893 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002894 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002895 if (sh->pd_idx == 0)
2896 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002897 else {
2898 /* D D Q P D */
2899 if (i < sh->pd_idx)
2900 i += raid_disks;
2901 i -= (sh->pd_idx + 1);
2902 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002903 break;
2904 case ALGORITHM_LEFT_ASYMMETRIC_6:
2905 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2906 if (i > sh->pd_idx)
2907 i--;
2908 break;
2909 case ALGORITHM_LEFT_SYMMETRIC_6:
2910 case ALGORITHM_RIGHT_SYMMETRIC_6:
2911 if (i < sh->pd_idx)
2912 i += data_disks + 1;
2913 i -= (sh->pd_idx + 1);
2914 break;
2915 case ALGORITHM_PARITY_0_6:
2916 i -= 1;
2917 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002918 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002919 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002920 }
2921 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 }
2923
2924 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002925 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
NeilBrown112bf892009-03-31 14:39:38 +11002927 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002928 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002929 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2930 || sh2.qd_idx != sh->qd_idx) {
NeilBrowncc6167b2016-11-02 14:16:50 +11002931 pr_warn("md/raid:%s: compute_blocknr: map not correct\n",
2932 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 return 0;
2934 }
2935 return r_sector;
2936}
2937
Song Liu07e83362017-01-23 17:12:58 -08002938/*
2939 * There are cases where we want handle_stripe_dirtying() and
2940 * schedule_reconstruction() to delay towrite to some dev of a stripe.
2941 *
2942 * This function checks whether we want to delay the towrite. Specifically,
2943 * we delay the towrite when:
2944 *
2945 * 1. degraded stripe has a non-overwrite to the missing dev, AND this
2946 * stripe has data in journal (for other devices).
2947 *
2948 * In this case, when reading data for the non-overwrite dev, it is
2949 * necessary to handle complex rmw of write back cache (prexor with
2950 * orig_page, and xor with page). To keep read path simple, we would
2951 * like to flush data in journal to RAID disks first, so complex rmw
2952 * is handled in the write patch (handle_stripe_dirtying).
2953 *
Song Liu39b99582017-01-24 14:08:23 -08002954 * 2. when journal space is critical (R5C_LOG_CRITICAL=1)
2955 *
2956 * It is important to be able to flush all stripes in raid5-cache.
2957 * Therefore, we need reserve some space on the journal device for
2958 * these flushes. If flush operation includes pending writes to the
2959 * stripe, we need to reserve (conf->raid_disk + 1) pages per stripe
2960 * for the flush out. If we exclude these pending writes from flush
2961 * operation, we only need (conf->max_degraded + 1) pages per stripe.
2962 * Therefore, excluding pending writes in these cases enables more
2963 * efficient use of the journal device.
2964 *
2965 * Note: To make sure the stripe makes progress, we only delay
2966 * towrite for stripes with data already in journal (injournal > 0).
2967 * When LOG_CRITICAL, stripes with injournal == 0 will be sent to
2968 * no_space_stripes list.
2969 *
Song Liu07e83362017-01-23 17:12:58 -08002970 */
Song Liu39b99582017-01-24 14:08:23 -08002971static inline bool delay_towrite(struct r5conf *conf,
2972 struct r5dev *dev,
2973 struct stripe_head_state *s)
Song Liu07e83362017-01-23 17:12:58 -08002974{
Song Liu39b99582017-01-24 14:08:23 -08002975 /* case 1 above */
2976 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2977 !test_bit(R5_Insync, &dev->flags) && s->injournal)
2978 return true;
2979 /* case 2 above */
2980 if (test_bit(R5C_LOG_CRITICAL, &conf->cache_state) &&
2981 s->injournal > 0)
2982 return true;
2983 return false;
Song Liu07e83362017-01-23 17:12:58 -08002984}
2985
Dan Williams600aa102008-06-28 08:32:05 +10002986static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002987schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002988 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002989{
Markus Stockhausen584acdd2014-12-15 12:57:05 +11002990 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002991 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002992 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002993
Dan Williamse33129d2007-01-02 13:52:30 -07002994 if (rcw) {
Song Liu1e6d6902016-11-17 15:24:39 -08002995 /*
2996 * In some cases, handle_stripe_dirtying initially decided to
2997 * run rmw and allocates extra page for prexor. However, rcw is
2998 * cheaper later on. We need to free the extra page now,
2999 * because we won't be able to do that in ops_complete_prexor().
3000 */
3001 r5c_release_extra_page(sh);
Dan Williamse33129d2007-01-02 13:52:30 -07003002
3003 for (i = disks; i--; ) {
3004 struct r5dev *dev = &sh->dev[i];
3005
Song Liu39b99582017-01-24 14:08:23 -08003006 if (dev->towrite && !delay_towrite(conf, dev, s)) {
Dan Williamse33129d2007-01-02 13:52:30 -07003007 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10003008 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07003009 if (!expand)
3010 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10003011 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08003012 } else if (test_bit(R5_InJournal, &dev->flags)) {
3013 set_bit(R5_LOCKED, &dev->flags);
3014 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07003015 }
3016 }
NeilBrownce7d3632013-03-04 12:37:14 +11003017 /* if we are not expanding this is a proper write request, and
3018 * there will be bios with new data to be drained into the
3019 * stripe cache
3020 */
3021 if (!expand) {
3022 if (!s->locked)
3023 /* False alarm, nothing to do */
3024 return;
3025 sh->reconstruct_state = reconstruct_state_drain_run;
3026 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
3027 } else
3028 sh->reconstruct_state = reconstruct_state_run;
3029
3030 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
3031
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003032 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003033 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003034 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07003035 } else {
3036 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
3037 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003038 BUG_ON(level == 6 &&
3039 (!(test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags) ||
3040 test_bit(R5_Wantcompute, &sh->dev[qd_idx].flags))));
Dan Williamse33129d2007-01-02 13:52:30 -07003041
Dan Williamse33129d2007-01-02 13:52:30 -07003042 for (i = disks; i--; ) {
3043 struct r5dev *dev = &sh->dev[i];
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003044 if (i == pd_idx || i == qd_idx)
Dan Williamse33129d2007-01-02 13:52:30 -07003045 continue;
3046
Dan Williamse33129d2007-01-02 13:52:30 -07003047 if (dev->towrite &&
3048 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10003049 test_bit(R5_Wantcompute, &dev->flags))) {
3050 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07003051 set_bit(R5_LOCKED, &dev->flags);
3052 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10003053 s->locked++;
Song Liu1e6d6902016-11-17 15:24:39 -08003054 } else if (test_bit(R5_InJournal, &dev->flags)) {
3055 set_bit(R5_LOCKED, &dev->flags);
3056 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07003057 }
3058 }
NeilBrownce7d3632013-03-04 12:37:14 +11003059 if (!s->locked)
3060 /* False alarm - nothing to do */
3061 return;
3062 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
3063 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
3064 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
3065 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07003066 }
3067
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003068 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07003069 * are in flight
3070 */
3071 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
3072 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10003073 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07003074
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003075 if (level == 6) {
3076 int qd_idx = sh->qd_idx;
3077 struct r5dev *dev = &sh->dev[qd_idx];
3078
3079 set_bit(R5_LOCKED, &dev->flags);
3080 clear_bit(R5_UPTODATE, &dev->flags);
3081 s->locked++;
3082 }
3083
Dan Williams600aa102008-06-28 08:32:05 +10003084 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07003085 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10003086 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07003087}
NeilBrown16a53ec2006-06-26 00:27:38 -07003088
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089/*
3090 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07003091 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 * The bi_next chain must be in order.
3093 */
shli@kernel.orgda41ba62014-12-15 12:57:03 +11003094static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx,
3095 int forwrite, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
3097 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11003098 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07003099 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
NeilBrowncbe47ec2011-07-26 11:20:35 +10003101 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07003102 (unsigned long long)bi->bi_iter.bi_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 (unsigned long long)sh->sector);
3104
Shaohua Lib17459c2012-07-19 16:01:31 +10003105 /*
3106 * If several bio share a stripe. The bio bi_phys_segments acts as a
3107 * reference count to avoid race. The reference count should already be
3108 * increased before this function is called (for example, in
Shaohua Li849674e2016-01-20 13:52:20 -08003109 * raid5_make_request()), so other bio sharing this stripe will not free the
Shaohua Lib17459c2012-07-19 16:01:31 +10003110 * stripe. If a stripe is owned by one stripe, the stripe lock will
3111 * protect it.
3112 */
3113 spin_lock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003114 /* Don't allow new IO added to stripes in batch list */
3115 if (sh->batch_head)
3116 goto overlap;
NeilBrown72626682005-09-09 16:23:54 -07003117 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003119 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07003120 firstwrite = 1;
3121 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 bip = &sh->dev[dd_idx].toread;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003123 while (*bip && (*bip)->bi_iter.bi_sector < bi->bi_iter.bi_sector) {
3124 if (bio_end_sector(*bip) > bi->bi_iter.bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 goto overlap;
3126 bip = & (*bip)->bi_next;
3127 }
Kent Overstreet4f024f32013-10-11 15:44:27 -07003128 if (*bip && (*bip)->bi_iter.bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 goto overlap;
3130
shli@kernel.orgda41ba62014-12-15 12:57:03 +11003131 if (!forwrite || previous)
3132 clear_bit(STRIPE_BATCH_READY, &sh->state);
3133
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02003134 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 if (*bip)
3136 bi->bi_next = *bip;
3137 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003138 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07003139
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 if (forwrite) {
3141 /* check if page is covered */
3142 sector_t sector = sh->dev[dd_idx].sector;
3143 for (bi=sh->dev[dd_idx].towrite;
3144 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
Kent Overstreet4f024f32013-10-11 15:44:27 -07003145 bi && bi->bi_iter.bi_sector <= sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07003147 if (bio_end_sector(bi) >= sector)
3148 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 }
3150 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
shli@kernel.org7a87f432014-12-15 12:57:03 +11003151 if (!test_and_set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags))
3152 sh->overwrite_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003154
3155 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -07003156 (unsigned long long)(*bip)->bi_iter.bi_sector,
NeilBrowncbe47ec2011-07-26 11:20:35 +10003157 (unsigned long long)sh->sector, dd_idx);
3158
3159 if (conf->mddev->bitmap && firstwrite) {
NeilBrownd0852df52015-05-27 08:43:45 +10003160 /* Cannot hold spinlock over bitmap_startwrite,
3161 * but must ensure this isn't added to a batch until
3162 * we have added to the bitmap and set bm_seq.
3163 * So set STRIPE_BITMAP_PENDING to prevent
3164 * batching.
3165 * If multiple add_stripe_bio() calls race here they
3166 * much all set STRIPE_BITMAP_PENDING. So only the first one
3167 * to complete "bitmap_startwrite" gets to set
3168 * STRIPE_BIT_DELAY. This is important as once a stripe
3169 * is added to a batch, STRIPE_BIT_DELAY cannot be changed
3170 * any more.
3171 */
3172 set_bit(STRIPE_BITMAP_PENDING, &sh->state);
3173 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10003174 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
3175 STRIPE_SECTORS, 0);
NeilBrownd0852df52015-05-27 08:43:45 +10003176 spin_lock_irq(&sh->stripe_lock);
3177 clear_bit(STRIPE_BITMAP_PENDING, &sh->state);
3178 if (!sh->batch_head) {
3179 sh->bm_seq = conf->seq_flush+1;
3180 set_bit(STRIPE_BIT_DELAY, &sh->state);
3181 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10003182 }
NeilBrownd0852df52015-05-27 08:43:45 +10003183 spin_unlock_irq(&sh->stripe_lock);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003184
3185 if (stripe_can_batch(sh))
3186 stripe_add_to_batch_list(conf, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 return 1;
3188
3189 overlap:
3190 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10003191 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 return 0;
3193}
3194
NeilBrownd1688a62011-10-11 16:49:52 +11003195static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08003196
NeilBrownd1688a62011-10-11 16:49:52 +11003197static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003198 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08003199{
NeilBrown784052e2009-03-31 15:19:07 +11003200 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10003201 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11003202 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003203 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11003204 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07003205
NeilBrown112bf892009-03-31 14:39:38 +11003206 raid5_compute_sector(conf,
3207 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08003208 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11003209 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003210 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003211}
3212
Dan Williamsa4456852007-07-09 11:56:43 -07003213static void
NeilBrownd1688a62011-10-11 16:49:52 +11003214handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003215 struct stripe_head_state *s, int disks,
NeilBrown34a6f802015-08-14 12:07:57 +10003216 struct bio_list *return_bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003217{
3218 int i;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003219 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003220 for (i = disks; i--; ) {
3221 struct bio *bi;
3222 int bitmap_end = 0;
3223
3224 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11003225 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07003226 rcu_read_lock();
3227 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownf5b67ae2016-06-02 16:19:53 +10003228 if (rdev && test_bit(In_sync, &rdev->flags) &&
3229 !test_bit(Faulty, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10003230 atomic_inc(&rdev->nr_pending);
3231 else
3232 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003233 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10003234 if (rdev) {
3235 if (!rdev_set_badblocks(
3236 rdev,
3237 sh->sector,
3238 STRIPE_SECTORS, 0))
3239 md_error(conf->mddev, rdev);
3240 rdev_dec_pending(rdev, conf->mddev);
3241 }
Dan Williamsa4456852007-07-09 11:56:43 -07003242 }
Shaohua Lib17459c2012-07-19 16:01:31 +10003243 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003244 /* fail all writes first */
3245 bi = sh->dev[i].towrite;
3246 sh->dev[i].towrite = NULL;
shli@kernel.org7a87f432014-12-15 12:57:03 +11003247 sh->overwrite_disks = 0;
Shaohua Lib17459c2012-07-19 16:01:31 +10003248 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11003249 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003250 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07003251
Shaohua Li0576b1c2015-08-13 14:32:00 -07003252 r5l_stripe_write_finished(sh);
3253
Dan Williamsa4456852007-07-09 11:56:43 -07003254 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3255 wake_up(&conf->wait_for_overlap);
3256
Kent Overstreet4f024f32013-10-11 15:44:27 -07003257 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003258 sh->dev[i].sector + STRIPE_SECTORS) {
3259 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003260
3261 bi->bi_error = -EIO;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003262 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003263 md_write_end(conf->mddev);
NeilBrown34a6f802015-08-14 12:07:57 +10003264 bio_list_add(return_bi, bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003265 }
3266 bi = nextbi;
3267 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003268 if (bitmap_end)
3269 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3270 STRIPE_SECTORS, 0, 0);
3271 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003272 /* and fail all 'written' */
3273 bi = sh->dev[i].written;
3274 sh->dev[i].written = NULL;
Shaohua Lid592a992014-05-21 17:57:44 +08003275 if (test_and_clear_bit(R5_SkipCopy, &sh->dev[i].flags)) {
3276 WARN_ON(test_bit(R5_UPTODATE, &sh->dev[i].flags));
3277 sh->dev[i].page = sh->dev[i].orig_page;
3278 }
3279
Dan Williamsa4456852007-07-09 11:56:43 -07003280 if (bi) bitmap_end = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003281 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003282 sh->dev[i].sector + STRIPE_SECTORS) {
3283 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003284
3285 bi->bi_error = -EIO;
Shaohua Lie7836bd62012-07-19 16:01:31 +10003286 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003287 md_write_end(conf->mddev);
NeilBrown34a6f802015-08-14 12:07:57 +10003288 bio_list_add(return_bi, bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003289 }
3290 bi = bi2;
3291 }
3292
Dan Williamsb5e98d62007-01-02 13:52:31 -07003293 /* fail any reads if this device is non-operational and
3294 * the data has not reached the cache yet.
3295 */
3296 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
Shaohua Li6e74a9c2015-10-08 21:54:08 -07003297 s->failed > conf->max_degraded &&
Dan Williamsb5e98d62007-01-02 13:52:31 -07003298 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
3299 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11003300 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003301 bi = sh->dev[i].toread;
3302 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11003303 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07003304 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
3305 wake_up(&conf->wait_for_overlap);
Shaohua Liebda7802015-09-18 10:20:13 -07003306 if (bi)
3307 s->to_read--;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003308 while (bi && bi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003309 sh->dev[i].sector + STRIPE_SECTORS) {
3310 struct bio *nextbi =
3311 r5_next_bio(bi, sh->dev[i].sector);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02003312
3313 bi->bi_error = -EIO;
NeilBrown34a6f802015-08-14 12:07:57 +10003314 if (!raid5_dec_bi_active_stripes(bi))
3315 bio_list_add(return_bi, bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003316 bi = nextbi;
3317 }
3318 }
Dan Williamsa4456852007-07-09 11:56:43 -07003319 if (bitmap_end)
3320 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3321 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10003322 /* If we were in the middle of a write the parity block might
3323 * still be locked - so just clear all R5_LOCKED flags
3324 */
3325 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003326 }
Shaohua Liebda7802015-09-18 10:20:13 -07003327 s->to_write = 0;
3328 s->written = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003329
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003330 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3331 if (atomic_dec_and_test(&conf->pending_full_writes))
3332 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07003333}
3334
NeilBrown7f0da592011-07-28 11:39:22 +10003335static void
NeilBrownd1688a62011-10-11 16:49:52 +11003336handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10003337 struct stripe_head_state *s)
3338{
3339 int abort = 0;
3340 int i;
3341
shli@kernel.org59fc6302014-12-15 12:57:03 +11003342 BUG_ON(sh->batch_head);
NeilBrown7f0da592011-07-28 11:39:22 +10003343 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003344 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3345 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10003346 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11003347 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10003348 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10003349 * Don't even need to abort as that is handled elsewhere
3350 * if needed, and not always wanted e.g. if there is a known
3351 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11003352 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10003353 * non-sync devices, or abort the recovery
3354 */
NeilBrown18b98372012-04-01 23:48:38 +10003355 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
3356 /* During recovery devices cannot be removed, so
3357 * locking and refcounting of rdevs is not needed
3358 */
NeilBrowne50d3992016-06-02 16:19:52 +10003359 rcu_read_lock();
NeilBrown18b98372012-04-01 23:48:38 +10003360 for (i = 0; i < conf->raid_disks; i++) {
NeilBrowne50d3992016-06-02 16:19:52 +10003361 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrown18b98372012-04-01 23:48:38 +10003362 if (rdev
3363 && !test_bit(Faulty, &rdev->flags)
3364 && !test_bit(In_sync, &rdev->flags)
3365 && !rdev_set_badblocks(rdev, sh->sector,
3366 STRIPE_SECTORS, 0))
3367 abort = 1;
NeilBrowne50d3992016-06-02 16:19:52 +10003368 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown18b98372012-04-01 23:48:38 +10003369 if (rdev
3370 && !test_bit(Faulty, &rdev->flags)
3371 && !test_bit(In_sync, &rdev->flags)
3372 && !rdev_set_badblocks(rdev, sh->sector,
3373 STRIPE_SECTORS, 0))
3374 abort = 1;
3375 }
NeilBrowne50d3992016-06-02 16:19:52 +10003376 rcu_read_unlock();
NeilBrown18b98372012-04-01 23:48:38 +10003377 if (abort)
3378 conf->recovery_disabled =
3379 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10003380 }
NeilBrown18b98372012-04-01 23:48:38 +10003381 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10003382}
3383
NeilBrown9a3e1102011-12-23 10:17:53 +11003384static int want_replace(struct stripe_head *sh, int disk_idx)
3385{
3386 struct md_rdev *rdev;
3387 int rv = 0;
NeilBrown3f232d62016-06-02 16:19:52 +10003388
3389 rcu_read_lock();
3390 rdev = rcu_dereference(sh->raid_conf->disks[disk_idx].replacement);
NeilBrown9a3e1102011-12-23 10:17:53 +11003391 if (rdev
3392 && !test_bit(Faulty, &rdev->flags)
3393 && !test_bit(In_sync, &rdev->flags)
3394 && (rdev->recovery_offset <= sh->sector
3395 || rdev->mddev->recovery_cp <= sh->sector))
3396 rv = 1;
NeilBrown3f232d62016-06-02 16:19:52 +10003397 rcu_read_unlock();
NeilBrown9a3e1102011-12-23 10:17:53 +11003398 return rv;
3399}
3400
NeilBrown2c58f062015-02-02 11:32:23 +11003401static int need_this_block(struct stripe_head *sh, struct stripe_head_state *s,
3402 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07003403{
3404 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10003405 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
3406 &sh->dev[s->failed_num[1]] };
NeilBrownea664c82015-02-02 14:03:28 +11003407 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07003408
NeilBrowna79cfe12015-02-02 11:37:59 +11003409
3410 if (test_bit(R5_LOCKED, &dev->flags) ||
3411 test_bit(R5_UPTODATE, &dev->flags))
3412 /* No point reading this as we already have it or have
3413 * decided to get it.
3414 */
3415 return 0;
3416
3417 if (dev->toread ||
3418 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)))
3419 /* We need this block to directly satisfy a request */
3420 return 1;
3421
3422 if (s->syncing || s->expanding ||
3423 (s->replacing && want_replace(sh, disk_idx)))
3424 /* When syncing, or expanding we read everything.
3425 * When replacing, we need the replaced block.
3426 */
3427 return 1;
3428
3429 if ((s->failed >= 1 && fdev[0]->toread) ||
3430 (s->failed >= 2 && fdev[1]->toread))
3431 /* If we want to read from a failed device, then
3432 * we need to actually read every other device.
3433 */
3434 return 1;
3435
NeilBrowna9d56952015-02-02 11:49:10 +11003436 /* Sometimes neither read-modify-write nor reconstruct-write
3437 * cycles can work. In those cases we read every block we
3438 * can. Then the parity-update is certain to have enough to
3439 * work with.
3440 * This can only be a problem when we need to write something,
3441 * and some device has failed. If either of those tests
3442 * fail we need look no further.
3443 */
3444 if (!s->failed || !s->to_write)
3445 return 0;
3446
3447 if (test_bit(R5_Insync, &dev->flags) &&
3448 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3449 /* Pre-reads at not permitted until after short delay
3450 * to gather multiple requests. However if this
3451 * device is no Insync, the block could only be be computed
3452 * and there is no need to delay that.
3453 */
3454 return 0;
NeilBrownea664c82015-02-02 14:03:28 +11003455
NeilBrown36707bb2015-09-24 15:25:36 +10003456 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrownea664c82015-02-02 14:03:28 +11003457 if (fdev[i]->towrite &&
3458 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
3459 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3460 /* If we have a partial write to a failed
3461 * device, then we will need to reconstruct
3462 * the content of that device, so all other
3463 * devices must be read.
3464 */
3465 return 1;
3466 }
3467
3468 /* If we are forced to do a reconstruct-write, either because
3469 * the current RAID6 implementation only supports that, or
3470 * or because parity cannot be trusted and we are currently
3471 * recovering it, there is extra need to be careful.
3472 * If one of the devices that we would need to read, because
3473 * it is not being overwritten (and maybe not written at all)
3474 * is missing/faulty, then we need to read everything we can.
3475 */
3476 if (sh->raid_conf->level != 6 &&
3477 sh->sector < sh->raid_conf->mddev->recovery_cp)
3478 /* reconstruct-write isn't being forced */
3479 return 0;
NeilBrown36707bb2015-09-24 15:25:36 +10003480 for (i = 0; i < s->failed && i < 2; i++) {
NeilBrown10d82c52015-05-08 18:19:33 +10003481 if (s->failed_num[i] != sh->pd_idx &&
3482 s->failed_num[i] != sh->qd_idx &&
3483 !test_bit(R5_UPTODATE, &fdev[i]->flags) &&
NeilBrownea664c82015-02-02 14:03:28 +11003484 !test_bit(R5_OVERWRITE, &fdev[i]->flags))
3485 return 1;
3486 }
3487
NeilBrown2c58f062015-02-02 11:32:23 +11003488 return 0;
3489}
3490
Song Liuba026842017-01-12 17:22:42 -08003491/* fetch_block - checks the given member device to see if its data needs
3492 * to be read or computed to satisfy a request.
3493 *
3494 * Returns 1 when no more member devices need to be checked, otherwise returns
3495 * 0 to tell the loop in handle_stripe_fill to continue
3496 */
NeilBrown2c58f062015-02-02 11:32:23 +11003497static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
3498 int disk_idx, int disks)
3499{
3500 struct r5dev *dev = &sh->dev[disk_idx];
3501
3502 /* is the data in this block needed, and can we get it? */
3503 if (need_this_block(sh, s, disk_idx, disks)) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003504 /* we would like to get this block, possibly by computing it,
3505 * otherwise read it if the backing disk is insync
3506 */
3507 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
3508 BUG_ON(test_bit(R5_Wantread, &dev->flags));
NeilBrownb0c783b2015-05-08 18:19:32 +10003509 BUG_ON(sh->batch_head);
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003510 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10003511 (s->failed && (disk_idx == s->failed_num[0] ||
3512 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003513 /* have disk failed, and we're requested to fetch it;
3514 * do compute it
3515 */
3516 pr_debug("Computing stripe %llu block %d\n",
3517 (unsigned long long)sh->sector, disk_idx);
3518 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3519 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3520 set_bit(R5_Wantcompute, &dev->flags);
3521 sh->ops.target = disk_idx;
3522 sh->ops.target2 = -1; /* no 2nd target */
3523 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10003524 /* Careful: from this point on 'uptodate' is in the eye
3525 * of raid_run_ops which services 'compute' operations
3526 * before writes. R5_Wantcompute flags a block that will
3527 * be R5_UPTODATE by the time it is needed for a
3528 * subsequent operation.
3529 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003530 s->uptodate++;
3531 return 1;
3532 } else if (s->uptodate == disks-2 && s->failed >= 2) {
3533 /* Computing 2-failure is *very* expensive; only
3534 * do it if failed >= 2
3535 */
3536 int other;
3537 for (other = disks; other--; ) {
3538 if (other == disk_idx)
3539 continue;
3540 if (!test_bit(R5_UPTODATE,
3541 &sh->dev[other].flags))
3542 break;
3543 }
3544 BUG_ON(other < 0);
3545 pr_debug("Computing stripe %llu blocks %d,%d\n",
3546 (unsigned long long)sh->sector,
3547 disk_idx, other);
3548 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3549 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3550 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
3551 set_bit(R5_Wantcompute, &sh->dev[other].flags);
3552 sh->ops.target = disk_idx;
3553 sh->ops.target2 = other;
3554 s->uptodate += 2;
3555 s->req_compute = 1;
3556 return 1;
3557 } else if (test_bit(R5_Insync, &dev->flags)) {
3558 set_bit(R5_LOCKED, &dev->flags);
3559 set_bit(R5_Wantread, &dev->flags);
3560 s->locked++;
3561 pr_debug("Reading block %d (sync=%d)\n",
3562 disk_idx, s->syncing);
3563 }
3564 }
3565
3566 return 0;
3567}
3568
3569/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10003570 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003571 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10003572static void handle_stripe_fill(struct stripe_head *sh,
3573 struct stripe_head_state *s,
3574 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003575{
3576 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003577
3578 /* look for blocks to read/compute, skip this if a compute
3579 * is already in flight, or if the stripe contents are in the
3580 * midst of changing due to a write
3581 */
3582 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Song Liu07e83362017-01-23 17:12:58 -08003583 !sh->reconstruct_state) {
3584
3585 /*
3586 * For degraded stripe with data in journal, do not handle
3587 * read requests yet, instead, flush the stripe to raid
3588 * disks first, this avoids handling complex rmw of write
3589 * back cache (prexor with orig_page, and then xor with
3590 * page) in the read path
3591 */
3592 if (s->injournal && s->failed) {
3593 if (test_bit(STRIPE_R5C_CACHING, &sh->state))
3594 r5c_make_stripe_write_out(sh);
3595 goto out;
3596 }
3597
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003598 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10003599 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07003600 break;
Song Liu07e83362017-01-23 17:12:58 -08003601 }
3602out:
Dan Williamsa4456852007-07-09 11:56:43 -07003603 set_bit(STRIPE_HANDLE, &sh->state);
3604}
3605
NeilBrown787b76f2015-05-21 12:56:41 +10003606static void break_stripe_batch_list(struct stripe_head *head_sh,
3607 unsigned long handle_flags);
Dan Williams1fe797e2008-06-28 09:16:30 +10003608/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07003609 * any written block on an uptodate or failed drive can be returned.
3610 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
3611 * never LOCKED, so we don't need to test 'failed' directly.
3612 */
NeilBrownd1688a62011-10-11 16:49:52 +11003613static void handle_stripe_clean_event(struct r5conf *conf,
NeilBrown34a6f802015-08-14 12:07:57 +10003614 struct stripe_head *sh, int disks, struct bio_list *return_bi)
Dan Williamsa4456852007-07-09 11:56:43 -07003615{
3616 int i;
3617 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003618 int discard_pending = 0;
shli@kernel.org59fc6302014-12-15 12:57:03 +11003619 struct stripe_head *head_sh = sh;
3620 bool do_endio = false;
Dan Williamsa4456852007-07-09 11:56:43 -07003621
3622 for (i = disks; i--; )
3623 if (sh->dev[i].written) {
3624 dev = &sh->dev[i];
3625 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003626 (test_bit(R5_UPTODATE, &dev->flags) ||
Shaohua Lid592a992014-05-21 17:57:44 +08003627 test_bit(R5_Discard, &dev->flags) ||
3628 test_bit(R5_SkipCopy, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003629 /* We can return any write requests */
3630 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003631 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11003632 if (test_and_clear_bit(R5_Discard, &dev->flags))
3633 clear_bit(R5_UPTODATE, &dev->flags);
Shaohua Lid592a992014-05-21 17:57:44 +08003634 if (test_and_clear_bit(R5_SkipCopy, &dev->flags)) {
3635 WARN_ON(test_bit(R5_UPTODATE, &dev->flags));
Shaohua Lid592a992014-05-21 17:57:44 +08003636 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003637 do_endio = true;
3638
3639returnbi:
3640 dev->page = dev->orig_page;
Dan Williamsa4456852007-07-09 11:56:43 -07003641 wbi = dev->written;
3642 dev->written = NULL;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003643 while (wbi && wbi->bi_iter.bi_sector <
Dan Williamsa4456852007-07-09 11:56:43 -07003644 dev->sector + STRIPE_SECTORS) {
3645 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10003646 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003647 md_write_end(conf->mddev);
NeilBrown34a6f802015-08-14 12:07:57 +10003648 bio_list_add(return_bi, wbi);
Dan Williamsa4456852007-07-09 11:56:43 -07003649 }
3650 wbi = wbi2;
3651 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003652 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
3653 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07003654 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10003655 0);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003656 if (head_sh->batch_head) {
3657 sh = list_first_entry(&sh->batch_list,
3658 struct stripe_head,
3659 batch_list);
3660 if (sh != head_sh) {
3661 dev = &sh->dev[i];
3662 goto returnbi;
3663 }
3664 }
3665 sh = head_sh;
3666 dev = &sh->dev[i];
NeilBrownf8dfcff2013-03-12 12:18:06 +11003667 } else if (test_bit(R5_Discard, &dev->flags))
3668 discard_pending = 1;
3669 }
Shaohua Lif6bed0e2015-08-13 14:31:59 -07003670
Shaohua Li0576b1c2015-08-13 14:32:00 -07003671 r5l_stripe_write_finished(sh);
3672
NeilBrownf8dfcff2013-03-12 12:18:06 +11003673 if (!discard_pending &&
3674 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003675 int hash;
NeilBrownf8dfcff2013-03-12 12:18:06 +11003676 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
3677 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
3678 if (sh->qd_idx >= 0) {
3679 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
3680 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
3681 }
3682 /* now that discard is done we can proceed with any sync */
3683 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08003684 /*
3685 * SCSI discard will change some bio fields and the stripe has
3686 * no updated data, so remove it from hash list and the stripe
3687 * will be reinitialized
3688 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11003689unhash:
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003690 hash = sh->hash_lock_index;
3691 spin_lock_irq(conf->hash_locks + hash);
Shaohua Lid47648f2013-10-19 14:51:42 +08003692 remove_hash(sh);
Roman Gushchinb8a9d662015-10-31 10:53:50 +11003693 spin_unlock_irq(conf->hash_locks + hash);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003694 if (head_sh->batch_head) {
3695 sh = list_first_entry(&sh->batch_list,
3696 struct stripe_head, batch_list);
3697 if (sh != head_sh)
3698 goto unhash;
3699 }
shli@kernel.org59fc6302014-12-15 12:57:03 +11003700 sh = head_sh;
3701
NeilBrownf8dfcff2013-03-12 12:18:06 +11003702 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
3703 set_bit(STRIPE_HANDLE, &sh->state);
3704
3705 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003706
3707 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
3708 if (atomic_dec_and_test(&conf->pending_full_writes))
3709 md_wakeup_thread(conf->mddev->thread);
shli@kernel.org59fc6302014-12-15 12:57:03 +11003710
NeilBrown787b76f2015-05-21 12:56:41 +10003711 if (head_sh->batch_head && do_endio)
3712 break_stripe_batch_list(head_sh, STRIPE_EXPAND_SYNC_FLAGS);
Dan Williamsa4456852007-07-09 11:56:43 -07003713}
3714
Song Liu86aa1392017-01-12 17:22:41 -08003715/*
3716 * For RMW in write back cache, we need extra page in prexor to store the
3717 * old data. This page is stored in dev->orig_page.
3718 *
3719 * This function checks whether we have data for prexor. The exact logic
3720 * is:
3721 * R5_UPTODATE && (!R5_InJournal || R5_OrigPageUPTDODATE)
3722 */
3723static inline bool uptodate_for_rmw(struct r5dev *dev)
3724{
3725 return (test_bit(R5_UPTODATE, &dev->flags)) &&
3726 (!test_bit(R5_InJournal, &dev->flags) ||
3727 test_bit(R5_OrigPageUPTDODATE, &dev->flags));
3728}
3729
Song Liud7bd3982016-11-23 22:50:39 -08003730static int handle_stripe_dirtying(struct r5conf *conf,
3731 struct stripe_head *sh,
3732 struct stripe_head_state *s,
3733 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003734{
3735 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11003736 sector_t recovery_cp = conf->mddev->recovery_cp;
3737
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003738 /* Check whether resync is now happening or should start.
Alexander Lyakasa7854482012-10-11 13:50:12 +11003739 * If yes, then the array is dirty (after unclean shutdown or
3740 * initial creation), so parity in some stripes might be inconsistent.
3741 * In this case, we need to always do reconstruct-write, to ensure
3742 * that in case of drive failure or read-error correction, we
3743 * generate correct data from the parity.
3744 */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003745 if (conf->rmw_level == PARITY_DISABLE_RMW ||
NeilBrown26ac1072015-02-18 11:35:14 +11003746 (recovery_cp < MaxSector && sh->sector >= recovery_cp &&
3747 s->failed == 0)) {
Alexander Lyakasa7854482012-10-11 13:50:12 +11003748 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10003749 * look like rcw is cheaper
3750 */
3751 rcw = 1; rmw = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003752 pr_debug("force RCW rmw_level=%u, recovery_cp=%llu sh->sector=%llu\n",
3753 conf->rmw_level, (unsigned long long)recovery_cp,
Alexander Lyakasa7854482012-10-11 13:50:12 +11003754 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10003755 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003756 /* would I have to read this buffer for read_modify_write */
3757 struct r5dev *dev = &sh->dev[i];
Song Liu39b99582017-01-24 14:08:23 -08003758 if (((dev->towrite && !delay_towrite(conf, dev, s)) ||
Song Liu07e83362017-01-23 17:12:58 -08003759 i == sh->pd_idx || i == sh->qd_idx ||
Song Liu1e6d6902016-11-17 15:24:39 -08003760 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003761 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu86aa1392017-01-12 17:22:41 -08003762 !(uptodate_for_rmw(dev) ||
Dan Williamsf38e1212007-01-02 13:52:30 -07003763 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07003764 if (test_bit(R5_Insync, &dev->flags))
3765 rmw++;
3766 else
3767 rmw += 2*disks; /* cannot read it */
3768 }
3769 /* Would I have to read this buffer for reconstruct_write */
Markus Stockhausen584acdd2014-12-15 12:57:05 +11003770 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
3771 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003772 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003773 !(test_bit(R5_UPTODATE, &dev->flags) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003774 test_bit(R5_Wantcompute, &dev->flags))) {
NeilBrown67f45542014-05-28 13:39:22 +10003775 if (test_bit(R5_Insync, &dev->flags))
3776 rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07003777 else
3778 rcw += 2*disks;
3779 }
3780 }
Song Liu1e6d6902016-11-17 15:24:39 -08003781
Song Liu39b99582017-01-24 14:08:23 -08003782 pr_debug("for sector %llu state 0x%lx, rmw=%d rcw=%d\n",
3783 (unsigned long long)sh->sector, sh->state, rmw, rcw);
Dan Williamsa4456852007-07-09 11:56:43 -07003784 set_bit(STRIPE_HANDLE, &sh->state);
Song Liu41257582016-05-23 17:25:06 -07003785 if ((rmw < rcw || (rmw == rcw && conf->rmw_level == PARITY_PREFER_RMW)) && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003786 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003787 if (conf->mddev->queue)
3788 blk_add_trace_msg(conf->mddev->queue,
3789 "raid5 rmw %llu %d",
3790 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07003791 for (i = disks; i--; ) {
3792 struct r5dev *dev = &sh->dev[i];
Song Liu1e6d6902016-11-17 15:24:39 -08003793 if (test_bit(R5_InJournal, &dev->flags) &&
3794 dev->page == dev->orig_page &&
3795 !test_bit(R5_LOCKED, &sh->dev[sh->pd_idx].flags)) {
3796 /* alloc page for prexor */
Song Liud7bd3982016-11-23 22:50:39 -08003797 struct page *p = alloc_page(GFP_NOIO);
Song Liu1e6d6902016-11-17 15:24:39 -08003798
Song Liud7bd3982016-11-23 22:50:39 -08003799 if (p) {
3800 dev->orig_page = p;
3801 continue;
3802 }
3803
3804 /*
3805 * alloc_page() failed, try use
3806 * disk_info->extra_page
3807 */
3808 if (!test_and_set_bit(R5C_EXTRA_PAGE_IN_USE,
3809 &conf->cache_state)) {
3810 r5c_use_extra_page(sh);
3811 break;
3812 }
3813
3814 /* extra_page in use, add to delayed_list */
3815 set_bit(STRIPE_DELAYED, &sh->state);
3816 s->waiting_extra_page = 1;
3817 return -EAGAIN;
Song Liu1e6d6902016-11-17 15:24:39 -08003818 }
Song Liud7bd3982016-11-23 22:50:39 -08003819 }
Song Liu1e6d6902016-11-17 15:24:39 -08003820
Song Liud7bd3982016-11-23 22:50:39 -08003821 for (i = disks; i--; ) {
3822 struct r5dev *dev = &sh->dev[i];
Song Liu39b99582017-01-24 14:08:23 -08003823 if (((dev->towrite && !delay_towrite(conf, dev, s)) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003824 i == sh->pd_idx || i == sh->qd_idx ||
3825 test_bit(R5_InJournal, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003826 !test_bit(R5_LOCKED, &dev->flags) &&
Song Liu86aa1392017-01-12 17:22:41 -08003827 !(uptodate_for_rmw(dev) ||
Song Liu1e6d6902016-11-17 15:24:39 -08003828 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003829 test_bit(R5_Insync, &dev->flags)) {
NeilBrown67f45542014-05-28 13:39:22 +10003830 if (test_bit(STRIPE_PREREAD_ACTIVE,
3831 &sh->state)) {
3832 pr_debug("Read_old block %d for r-m-w\n",
3833 i);
Dan Williamsa4456852007-07-09 11:56:43 -07003834 set_bit(R5_LOCKED, &dev->flags);
3835 set_bit(R5_Wantread, &dev->flags);
3836 s->locked++;
3837 } else {
3838 set_bit(STRIPE_DELAYED, &sh->state);
3839 set_bit(STRIPE_HANDLE, &sh->state);
3840 }
3841 }
3842 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003843 }
Song Liu41257582016-05-23 17:25:06 -07003844 if ((rcw < rmw || (rcw == rmw && conf->rmw_level != PARITY_PREFER_RMW)) && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003845 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003846 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003847 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003848 for (i = disks; i--; ) {
3849 struct r5dev *dev = &sh->dev[i];
3850 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003851 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003852 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003853 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003854 test_bit(R5_Wantcompute, &dev->flags))) {
3855 rcw++;
NeilBrown67f45542014-05-28 13:39:22 +10003856 if (test_bit(R5_Insync, &dev->flags) &&
3857 test_bit(STRIPE_PREREAD_ACTIVE,
3858 &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003859 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003860 "%d for Reconstruct\n", i);
3861 set_bit(R5_LOCKED, &dev->flags);
3862 set_bit(R5_Wantread, &dev->flags);
3863 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003864 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003865 } else {
3866 set_bit(STRIPE_DELAYED, &sh->state);
3867 set_bit(STRIPE_HANDLE, &sh->state);
3868 }
3869 }
3870 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003871 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003872 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3873 (unsigned long long)sh->sector,
3874 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003875 }
NeilBrownb1b02fe2015-02-02 10:44:29 +11003876
3877 if (rcw > disks && rmw > disks &&
3878 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3879 set_bit(STRIPE_DELAYED, &sh->state);
3880
Dan Williamsa4456852007-07-09 11:56:43 -07003881 /* now if nothing is locked, and if we have enough data,
3882 * we can start a write request
3883 */
Dan Williamsf38e1212007-01-02 13:52:30 -07003884 /* since handle_stripe can be called at any time we need to handle the
3885 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07003886 * subsequent call wants to start a write request. raid_run_ops only
3887 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07003888 * simultaneously. If this is not the case then new writes need to be
3889 * held off until the compute completes.
3890 */
Dan Williams976ea8d2008-06-28 08:32:03 +10003891 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
3892 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
Song Liu1e6d6902016-11-17 15:24:39 -08003893 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003894 schedule_reconstruction(sh, s, rcw == 0, 0);
Song Liud7bd3982016-11-23 22:50:39 -08003895 return 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003896}
3897
NeilBrownd1688a62011-10-11 16:49:52 +11003898static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003899 struct stripe_head_state *s, int disks)
3900{
Dan Williamsecc65c92008-06-28 08:31:57 +10003901 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07003902
shli@kernel.org59fc6302014-12-15 12:57:03 +11003903 BUG_ON(sh->batch_head);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003904 set_bit(STRIPE_HANDLE, &sh->state);
3905
Dan Williamsecc65c92008-06-28 08:31:57 +10003906 switch (sh->check_state) {
3907 case check_state_idle:
3908 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07003909 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07003910 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10003911 sh->check_state = check_state_run;
3912 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003913 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003914 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10003915 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07003916 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003917 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10003918 /* fall through */
3919 case check_state_compute_result:
3920 sh->check_state = check_state_idle;
3921 if (!dev)
3922 dev = &sh->dev[sh->pd_idx];
3923
3924 /* check that a write has not made the stripe insync */
3925 if (test_bit(STRIPE_INSYNC, &sh->state))
3926 break;
3927
3928 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07003929 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3930 BUG_ON(s->uptodate != disks);
3931
3932 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10003933 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07003934 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07003935
Dan Williamsa4456852007-07-09 11:56:43 -07003936 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003937 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003938 break;
3939 case check_state_run:
3940 break; /* we will be called again upon completion */
3941 case check_state_check_result:
3942 sh->check_state = check_state_idle;
3943
3944 /* if a failure occurred during the check operation, leave
3945 * STRIPE_INSYNC not set and let the stripe be handled again
3946 */
3947 if (s->failed)
3948 break;
3949
3950 /* handle a successful check operation, if parity is correct
3951 * we are done. Otherwise update the mismatch count and repair
3952 * parity if !MD_RECOVERY_CHECK
3953 */
Dan Williamsad283ea2009-08-29 19:09:26 -07003954 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10003955 /* parity is correct (on disc,
3956 * not in buffer any more)
3957 */
3958 set_bit(STRIPE_INSYNC, &sh->state);
3959 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003960 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10003961 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3962 /* don't try to repair!! */
3963 set_bit(STRIPE_INSYNC, &sh->state);
3964 else {
3965 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003966 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003967 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3968 set_bit(R5_Wantcompute,
3969 &sh->dev[sh->pd_idx].flags);
3970 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003971 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003972 s->uptodate++;
3973 }
3974 }
3975 break;
3976 case check_state_compute_run:
3977 break;
3978 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11003979 pr_err("%s: unknown check_state: %d sector: %llu\n",
Dan Williamsecc65c92008-06-28 08:31:57 +10003980 __func__, sh->check_state,
3981 (unsigned long long) sh->sector);
3982 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003983 }
3984}
3985
NeilBrownd1688a62011-10-11 16:49:52 +11003986static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003987 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003988 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003989{
Dan Williamsa4456852007-07-09 11:56:43 -07003990 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003991 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003992 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003993
shli@kernel.org59fc6302014-12-15 12:57:03 +11003994 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07003995 set_bit(STRIPE_HANDLE, &sh->state);
3996
3997 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003998
Dan Williamsa4456852007-07-09 11:56:43 -07003999 /* Want to check and possibly repair P and Q.
4000 * However there could be one 'failed' device, in which
4001 * case we can only check one of them, possibly using the
4002 * other to generate missing data
4003 */
4004
Dan Williamsd82dfee2009-07-14 13:40:57 -07004005 switch (sh->check_state) {
4006 case check_state_idle:
4007 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10004008 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07004009 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07004010 * makes sense to check P (If anything else were failed,
4011 * we would have used P to recreate it).
4012 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07004013 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07004014 }
NeilBrownf2b3b442011-07-26 11:35:19 +10004015 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07004016 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07004017 * anything, so it makes sense to check it
4018 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07004019 if (sh->check_state == check_state_run)
4020 sh->check_state = check_state_run_pq;
4021 else
4022 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07004023 }
Dan Williams36d1c642009-07-14 11:48:22 -07004024
Dan Williamsd82dfee2009-07-14 13:40:57 -07004025 /* discard potentially stale zero_sum_result */
4026 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07004027
Dan Williamsd82dfee2009-07-14 13:40:57 -07004028 if (sh->check_state == check_state_run) {
4029 /* async_xor_zero_sum destroys the contents of P */
4030 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
4031 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07004032 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004033 if (sh->check_state >= check_state_run &&
4034 sh->check_state <= check_state_run_pq) {
4035 /* async_syndrome_zero_sum preserves P and Q, so
4036 * no need to mark them !uptodate here
4037 */
4038 set_bit(STRIPE_OP_CHECK, &s->ops_request);
4039 break;
4040 }
Dan Williams36d1c642009-07-14 11:48:22 -07004041
Dan Williamsd82dfee2009-07-14 13:40:57 -07004042 /* we have 2-disk failure */
4043 BUG_ON(s->failed != 2);
4044 /* fall through */
4045 case check_state_compute_result:
4046 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07004047
Dan Williamsd82dfee2009-07-14 13:40:57 -07004048 /* check that a write has not made the stripe insync */
4049 if (test_bit(STRIPE_INSYNC, &sh->state))
4050 break;
Dan Williamsa4456852007-07-09 11:56:43 -07004051
4052 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07004053 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07004054 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07004055 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07004056 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10004057 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07004058 s->locked++;
4059 set_bit(R5_LOCKED, &dev->flags);
4060 set_bit(R5_Wantwrite, &dev->flags);
4061 }
4062 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10004063 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07004064 s->locked++;
4065 set_bit(R5_LOCKED, &dev->flags);
4066 set_bit(R5_Wantwrite, &dev->flags);
4067 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004068 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07004069 dev = &sh->dev[pd_idx];
4070 s->locked++;
4071 set_bit(R5_LOCKED, &dev->flags);
4072 set_bit(R5_Wantwrite, &dev->flags);
4073 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07004074 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07004075 dev = &sh->dev[qd_idx];
4076 s->locked++;
4077 set_bit(R5_LOCKED, &dev->flags);
4078 set_bit(R5_Wantwrite, &dev->flags);
4079 }
4080 clear_bit(STRIPE_DEGRADED, &sh->state);
4081
4082 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004083 break;
4084 case check_state_run:
4085 case check_state_run_q:
4086 case check_state_run_pq:
4087 break; /* we will be called again upon completion */
4088 case check_state_check_result:
4089 sh->check_state = check_state_idle;
4090
4091 /* handle a successful check operation, if parity is correct
4092 * we are done. Otherwise update the mismatch count and repair
4093 * parity if !MD_RECOVERY_CHECK
4094 */
4095 if (sh->ops.zero_sum_result == 0) {
4096 /* both parities are correct */
4097 if (!s->failed)
4098 set_bit(STRIPE_INSYNC, &sh->state);
4099 else {
4100 /* in contrast to the raid5 case we can validate
4101 * parity, but still have a failure to write
4102 * back
4103 */
4104 sh->check_state = check_state_compute_result;
4105 /* Returning at this point means that we may go
4106 * off and bring p and/or q uptodate again so
4107 * we make sure to check zero_sum_result again
4108 * to verify if p or q need writeback
4109 */
4110 }
4111 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11004112 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004113 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
4114 /* don't try to repair!! */
4115 set_bit(STRIPE_INSYNC, &sh->state);
4116 else {
4117 int *target = &sh->ops.target;
4118
4119 sh->ops.target = -1;
4120 sh->ops.target2 = -1;
4121 sh->check_state = check_state_compute_run;
4122 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
4123 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
4124 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
4125 set_bit(R5_Wantcompute,
4126 &sh->dev[pd_idx].flags);
4127 *target = pd_idx;
4128 target = &sh->ops.target2;
4129 s->uptodate++;
4130 }
4131 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
4132 set_bit(R5_Wantcompute,
4133 &sh->dev[qd_idx].flags);
4134 *target = qd_idx;
4135 s->uptodate++;
4136 }
4137 }
4138 }
4139 break;
4140 case check_state_compute_run:
4141 break;
4142 default:
NeilBrowncc6167b2016-11-02 14:16:50 +11004143 pr_warn("%s: unknown check_state: %d sector: %llu\n",
4144 __func__, sh->check_state,
4145 (unsigned long long) sh->sector);
Dan Williamsd82dfee2009-07-14 13:40:57 -07004146 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07004147 }
4148}
4149
NeilBrownd1688a62011-10-11 16:49:52 +11004150static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07004151{
4152 int i;
4153
4154 /* We have read all the blocks in this stripe and now we need to
4155 * copy some of them into a target stripe for expand.
4156 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07004157 struct dma_async_tx_descriptor *tx = NULL;
shli@kernel.org59fc6302014-12-15 12:57:03 +11004158 BUG_ON(sh->batch_head);
Dan Williamsa4456852007-07-09 11:56:43 -07004159 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4160 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11004161 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11004162 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07004163 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07004164 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07004165
Shaohua Li6d036f72015-08-13 14:31:57 -07004166 sector_t bn = raid5_compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11004167 sector_t s = raid5_compute_sector(conf, bn, 0,
4168 &dd_idx, NULL);
Shaohua Li6d036f72015-08-13 14:31:57 -07004169 sh2 = raid5_get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07004170 if (sh2 == NULL)
4171 /* so far only the early blocks of this stripe
4172 * have been requested. When later blocks
4173 * get requested, we will try again
4174 */
4175 continue;
4176 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
4177 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
4178 /* must have already done this block */
Shaohua Li6d036f72015-08-13 14:31:57 -07004179 raid5_release_stripe(sh2);
Dan Williamsa4456852007-07-09 11:56:43 -07004180 continue;
4181 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07004182
4183 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07004184 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004185 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07004186 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07004187 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004188
Dan Williamsa4456852007-07-09 11:56:43 -07004189 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
4190 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
4191 for (j = 0; j < conf->raid_disks; j++)
4192 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10004193 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07004194 !test_bit(R5_Expanded, &sh2->dev[j].flags))
4195 break;
4196 if (j == conf->raid_disks) {
4197 set_bit(STRIPE_EXPAND_READY, &sh2->state);
4198 set_bit(STRIPE_HANDLE, &sh2->state);
4199 }
Shaohua Li6d036f72015-08-13 14:31:57 -07004200 raid5_release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07004201
Dan Williamsa4456852007-07-09 11:56:43 -07004202 }
NeilBrowna2e08552007-09-11 15:23:36 -07004203 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11004204 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07004205}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
4207/*
4208 * handle_stripe - do things to a stripe.
4209 *
NeilBrown9a3e1102011-12-23 10:17:53 +11004210 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
4211 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11004213 * return some read requests which now have data
4214 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 * schedule a read on some buffers
4216 * schedule a write of some buffers
4217 * return confirmation of parity correctness
4218 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 */
Dan Williamsa4456852007-07-09 11:56:43 -07004220
NeilBrownacfe7262011-07-27 11:00:36 +10004221static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07004222{
NeilBrownd1688a62011-10-11 16:49:52 +11004223 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08004224 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004225 struct r5dev *dev;
4226 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11004227 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07004228
NeilBrownacfe7262011-07-27 11:00:36 +10004229 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07004230
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004231 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state) && !sh->batch_head;
4232 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state) && !sh->batch_head;
NeilBrownacfe7262011-07-27 11:00:36 +10004233 s->failed_num[0] = -1;
4234 s->failed_num[1] = -1;
Shaohua Li6e74a9c2015-10-08 21:54:08 -07004235 s->log_failed = r5l_log_disk_error(conf);
NeilBrownacfe7262011-07-27 11:00:36 +10004236
4237 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07004238 rcu_read_lock();
4239 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004240 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10004241 sector_t first_bad;
4242 int bad_sectors;
4243 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10004244
NeilBrown16a53ec2006-06-26 00:27:38 -07004245 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07004246
Dan Williams45b42332007-07-09 11:56:43 -07004247 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11004248 i, dev->flags,
4249 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004250 /* maybe we can reply to a read
4251 *
4252 * new wantfill requests are only permitted while
4253 * ops_complete_biofill is guaranteed to be inactive
4254 */
4255 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
4256 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
4257 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07004258
4259 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10004260 if (test_bit(R5_LOCKED, &dev->flags))
4261 s->locked++;
4262 if (test_bit(R5_UPTODATE, &dev->flags))
4263 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004264 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004265 s->compute++;
4266 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07004267 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004268
NeilBrownacfe7262011-07-27 11:00:36 +10004269 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004270 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10004271 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10004272 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004273 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10004274 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004275 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10004276 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004277 }
Dan Williamsa4456852007-07-09 11:56:43 -07004278 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10004279 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11004280 /* Prefer to use the replacement for reads, but only
4281 * if it is recovered enough and has no bad blocks.
4282 */
4283 rdev = rcu_dereference(conf->disks[i].replacement);
4284 if (rdev && !test_bit(Faulty, &rdev->flags) &&
4285 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
4286 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4287 &first_bad, &bad_sectors))
4288 set_bit(R5_ReadRepl, &dev->flags);
4289 else {
NeilBrowne6030cb2015-07-17 13:26:23 +10004290 if (rdev && !test_bit(Faulty, &rdev->flags))
NeilBrown9a3e1102011-12-23 10:17:53 +11004291 set_bit(R5_NeedReplace, &dev->flags);
NeilBrowne6030cb2015-07-17 13:26:23 +10004292 else
4293 clear_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11004294 rdev = rcu_dereference(conf->disks[i].rdev);
4295 clear_bit(R5_ReadRepl, &dev->flags);
4296 }
NeilBrown9283d8c2011-12-08 16:27:57 +11004297 if (rdev && test_bit(Faulty, &rdev->flags))
4298 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10004299 if (rdev) {
4300 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
4301 &first_bad, &bad_sectors);
4302 if (s->blocked_rdev == NULL
4303 && (test_bit(Blocked, &rdev->flags)
4304 || is_bad < 0)) {
4305 if (is_bad < 0)
4306 set_bit(BlockedBadBlocks,
4307 &rdev->flags);
4308 s->blocked_rdev = rdev;
4309 atomic_inc(&rdev->nr_pending);
4310 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004311 }
NeilBrown415e72d2010-06-17 17:25:21 +10004312 clear_bit(R5_Insync, &dev->flags);
4313 if (!rdev)
4314 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10004315 else if (is_bad) {
4316 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10004317 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
4318 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10004319 /* treat as in-sync, but with a read error
4320 * which we can now try to correct
4321 */
4322 set_bit(R5_Insync, &dev->flags);
4323 set_bit(R5_ReadError, &dev->flags);
4324 }
4325 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10004326 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11004327 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10004328 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11004329 set_bit(R5_Insync, &dev->flags);
4330 else if (test_bit(R5_UPTODATE, &dev->flags) &&
4331 test_bit(R5_Expanded, &dev->flags))
4332 /* If we've reshaped into here, we assume it is Insync.
4333 * We will shortly update recovery_offset to make
4334 * it official.
4335 */
4336 set_bit(R5_Insync, &dev->flags);
4337
NeilBrown1cc03eb2014-01-06 13:19:42 +11004338 if (test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004339 /* This flag does not apply to '.replacement'
4340 * only to .rdev, so make sure to check that*/
4341 struct md_rdev *rdev2 = rcu_dereference(
4342 conf->disks[i].rdev);
4343 if (rdev2 == rdev)
4344 clear_bit(R5_Insync, &dev->flags);
4345 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10004346 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004347 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10004348 } else
4349 clear_bit(R5_WriteError, &dev->flags);
4350 }
NeilBrown1cc03eb2014-01-06 13:19:42 +11004351 if (test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11004352 /* This flag does not apply to '.replacement'
4353 * only to .rdev, so make sure to check that*/
4354 struct md_rdev *rdev2 = rcu_dereference(
4355 conf->disks[i].rdev);
4356 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10004357 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11004358 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10004359 } else
4360 clear_bit(R5_MadeGood, &dev->flags);
4361 }
NeilBrown977df362011-12-23 10:17:53 +11004362 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
4363 struct md_rdev *rdev2 = rcu_dereference(
4364 conf->disks[i].replacement);
4365 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
4366 s->handle_bad_blocks = 1;
4367 atomic_inc(&rdev2->nr_pending);
4368 } else
4369 clear_bit(R5_MadeGoodRepl, &dev->flags);
4370 }
NeilBrown415e72d2010-06-17 17:25:21 +10004371 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004372 /* The ReadError flag will just be confusing now */
4373 clear_bit(R5_ReadError, &dev->flags);
4374 clear_bit(R5_ReWrite, &dev->flags);
4375 }
NeilBrown415e72d2010-06-17 17:25:21 +10004376 if (test_bit(R5_ReadError, &dev->flags))
4377 clear_bit(R5_Insync, &dev->flags);
4378 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10004379 if (s->failed < 2)
4380 s->failed_num[s->failed] = i;
4381 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11004382 if (rdev && !test_bit(Faulty, &rdev->flags))
4383 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10004384 }
Song Liu2ded3702016-11-17 15:24:38 -08004385
4386 if (test_bit(R5_InJournal, &dev->flags))
4387 s->injournal++;
Song Liu1e6d6902016-11-17 15:24:39 -08004388 if (test_bit(R5_InJournal, &dev->flags) && dev->written)
4389 s->just_cached++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004390 }
NeilBrown9a3e1102011-12-23 10:17:53 +11004391 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4392 /* If there is a failed device being replaced,
4393 * we must be recovering.
4394 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10004395 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11004396 * else we can only be replacing
4397 * sync and recovery both need to read all devices, and so
4398 * use the same flag.
4399 */
4400 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10004401 sh->sector >= conf->mddev->recovery_cp ||
4402 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11004403 s->syncing = 1;
4404 else
4405 s->replacing = 1;
4406 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004407 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10004408}
NeilBrownf4168852007-02-28 20:11:53 -08004409
shli@kernel.org59fc6302014-12-15 12:57:03 +11004410static int clear_batch_ready(struct stripe_head *sh)
4411{
NeilBrownb15a9db2015-05-22 15:20:04 +10004412 /* Return '1' if this is a member of batch, or
4413 * '0' if it is a lone stripe or a head which can now be
4414 * handled.
4415 */
shli@kernel.org59fc6302014-12-15 12:57:03 +11004416 struct stripe_head *tmp;
4417 if (!test_and_clear_bit(STRIPE_BATCH_READY, &sh->state))
NeilBrownb15a9db2015-05-22 15:20:04 +10004418 return (sh->batch_head && sh->batch_head != sh);
shli@kernel.org59fc6302014-12-15 12:57:03 +11004419 spin_lock(&sh->stripe_lock);
4420 if (!sh->batch_head) {
4421 spin_unlock(&sh->stripe_lock);
4422 return 0;
4423 }
4424
4425 /*
4426 * this stripe could be added to a batch list before we check
4427 * BATCH_READY, skips it
4428 */
4429 if (sh->batch_head != sh) {
4430 spin_unlock(&sh->stripe_lock);
4431 return 1;
4432 }
4433 spin_lock(&sh->batch_lock);
4434 list_for_each_entry(tmp, &sh->batch_list, batch_list)
4435 clear_bit(STRIPE_BATCH_READY, &tmp->state);
4436 spin_unlock(&sh->batch_lock);
4437 spin_unlock(&sh->stripe_lock);
4438
4439 /*
4440 * BATCH_READY is cleared, no new stripes can be added.
4441 * batch_list can be accessed without lock
4442 */
4443 return 0;
4444}
4445
NeilBrown3960ce72015-05-21 12:20:36 +10004446static void break_stripe_batch_list(struct stripe_head *head_sh,
4447 unsigned long handle_flags)
shli@kernel.org72ac7332014-12-15 12:57:03 +11004448{
NeilBrown4e3d62f2015-05-21 11:50:16 +10004449 struct stripe_head *sh, *next;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004450 int i;
NeilBrownfb642b92015-05-21 12:00:47 +10004451 int do_wakeup = 0;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004452
NeilBrownbb270512015-05-08 18:19:40 +10004453 list_for_each_entry_safe(sh, next, &head_sh->batch_list, batch_list) {
4454
shli@kernel.org72ac7332014-12-15 12:57:03 +11004455 list_del_init(&sh->batch_list);
4456
Shaohua Lifb3229d2016-03-09 10:08:38 -08004457 WARN_ONCE(sh->state & ((1 << STRIPE_ACTIVE) |
NeilBrown1b956f72015-05-21 12:40:26 +10004458 (1 << STRIPE_SYNCING) |
4459 (1 << STRIPE_REPLACED) |
NeilBrown1b956f72015-05-21 12:40:26 +10004460 (1 << STRIPE_DELAYED) |
4461 (1 << STRIPE_BIT_DELAY) |
4462 (1 << STRIPE_FULL_WRITE) |
4463 (1 << STRIPE_BIOFILL_RUN) |
4464 (1 << STRIPE_COMPUTE_RUN) |
4465 (1 << STRIPE_OPS_REQ_PENDING) |
4466 (1 << STRIPE_DISCARD) |
4467 (1 << STRIPE_BATCH_READY) |
4468 (1 << STRIPE_BATCH_ERR) |
Shaohua Lifb3229d2016-03-09 10:08:38 -08004469 (1 << STRIPE_BITMAP_PENDING)),
4470 "stripe state: %lx\n", sh->state);
4471 WARN_ONCE(head_sh->state & ((1 << STRIPE_DISCARD) |
4472 (1 << STRIPE_REPLACED)),
4473 "head stripe state: %lx\n", head_sh->state);
NeilBrown1b956f72015-05-21 12:40:26 +10004474
4475 set_mask_bits(&sh->state, ~(STRIPE_EXPAND_SYNC_FLAGS |
NeilBrown550da242016-03-09 12:58:25 +11004476 (1 << STRIPE_PREREAD_ACTIVE) |
NeilBrown1b956f72015-05-21 12:40:26 +10004477 (1 << STRIPE_DEGRADED)),
4478 head_sh->state & (1 << STRIPE_INSYNC));
4479
shli@kernel.org72ac7332014-12-15 12:57:03 +11004480 sh->check_state = head_sh->check_state;
4481 sh->reconstruct_state = head_sh->reconstruct_state;
NeilBrownfb642b92015-05-21 12:00:47 +10004482 for (i = 0; i < sh->disks; i++) {
4483 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
4484 do_wakeup = 1;
shli@kernel.org72ac7332014-12-15 12:57:03 +11004485 sh->dev[i].flags = head_sh->dev[i].flags &
4486 (~((1 << R5_WriteError) | (1 << R5_Overlap)));
NeilBrownfb642b92015-05-21 12:00:47 +10004487 }
shli@kernel.org72ac7332014-12-15 12:57:03 +11004488 spin_lock_irq(&sh->stripe_lock);
4489 sh->batch_head = NULL;
4490 spin_unlock_irq(&sh->stripe_lock);
NeilBrown3960ce72015-05-21 12:20:36 +10004491 if (handle_flags == 0 ||
4492 sh->state & handle_flags)
4493 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07004494 raid5_release_stripe(sh);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004495 }
NeilBrownfb642b92015-05-21 12:00:47 +10004496 spin_lock_irq(&head_sh->stripe_lock);
4497 head_sh->batch_head = NULL;
4498 spin_unlock_irq(&head_sh->stripe_lock);
4499 for (i = 0; i < head_sh->disks; i++)
4500 if (test_and_clear_bit(R5_Overlap, &head_sh->dev[i].flags))
4501 do_wakeup = 1;
NeilBrown3960ce72015-05-21 12:20:36 +10004502 if (head_sh->state & handle_flags)
4503 set_bit(STRIPE_HANDLE, &head_sh->state);
NeilBrownfb642b92015-05-21 12:00:47 +10004504
4505 if (do_wakeup)
4506 wake_up(&head_sh->raid_conf->wait_for_overlap);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004507}
4508
NeilBrowncc940152011-07-26 11:35:35 +10004509static void handle_stripe(struct stripe_head *sh)
4510{
4511 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11004512 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10004513 int i;
NeilBrown84789552011-07-27 11:00:36 +10004514 int prexor;
4515 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10004516 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10004517
4518 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11004519 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10004520 /* already being handled, ensure it gets handled
4521 * again when current action finishes */
4522 set_bit(STRIPE_HANDLE, &sh->state);
4523 return;
4524 }
4525
shli@kernel.org59fc6302014-12-15 12:57:03 +11004526 if (clear_batch_ready(sh) ) {
4527 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
4528 return;
4529 }
4530
NeilBrown4e3d62f2015-05-21 11:50:16 +10004531 if (test_and_clear_bit(STRIPE_BATCH_ERR, &sh->state))
NeilBrown3960ce72015-05-21 12:20:36 +10004532 break_stripe_batch_list(sh, 0);
shli@kernel.org72ac7332014-12-15 12:57:03 +11004533
shli@kernel.orgdabc4ec2014-12-15 12:57:04 +11004534 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state) && !sh->batch_head) {
NeilBrownf8dfcff2013-03-12 12:18:06 +11004535 spin_lock(&sh->stripe_lock);
4536 /* Cannot process 'sync' concurrently with 'discard' */
4537 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
4538 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
4539 set_bit(STRIPE_SYNCING, &sh->state);
4540 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10004541 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004542 }
4543 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10004544 }
4545 clear_bit(STRIPE_DELAYED, &sh->state);
4546
4547 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
4548 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
4549 (unsigned long long)sh->sector, sh->state,
4550 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
4551 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10004552
NeilBrownacfe7262011-07-27 11:00:36 +10004553 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10004554
Shaohua Lib70abcb22015-08-13 14:31:58 -07004555 if (test_bit(STRIPE_LOG_TRAPPED, &sh->state))
4556 goto finish;
4557
NeilBrownbc2607f2011-07-28 11:39:22 +10004558 if (s.handle_bad_blocks) {
4559 set_bit(STRIPE_HANDLE, &sh->state);
4560 goto finish;
4561 }
4562
NeilBrown474af965fe2011-07-27 11:00:36 +10004563 if (unlikely(s.blocked_rdev)) {
4564 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11004565 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10004566 set_bit(STRIPE_HANDLE, &sh->state);
4567 goto finish;
4568 }
4569 /* There is nothing for the blocked_rdev to block */
4570 rdev_dec_pending(s.blocked_rdev, conf->mddev);
4571 s.blocked_rdev = NULL;
4572 }
4573
4574 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
4575 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
4576 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
4577 }
4578
4579 pr_debug("locked=%d uptodate=%d to_read=%d"
4580 " to_write=%d failed=%d failed_num=%d,%d\n",
4581 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
4582 s.failed_num[0], s.failed_num[1]);
4583 /* check if the array has lost more than max_degraded devices and,
4584 * if so, some requests might need to be failed.
4585 */
Shaohua Li6e74a9c2015-10-08 21:54:08 -07004586 if (s.failed > conf->max_degraded || s.log_failed) {
NeilBrown9a3f5302011-11-08 16:22:01 +11004587 sh->check_state = 0;
4588 sh->reconstruct_state = 0;
NeilBrown626f2092015-05-22 14:03:10 +10004589 break_stripe_batch_list(sh, 0);
NeilBrown9a3f5302011-11-08 16:22:01 +11004590 if (s.to_read+s.to_write+s.written)
4591 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11004592 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11004593 handle_failed_sync(conf, sh, &s);
4594 }
NeilBrown474af965fe2011-07-27 11:00:36 +10004595
NeilBrown84789552011-07-27 11:00:36 +10004596 /* Now we check to see if any write operations have recently
4597 * completed
4598 */
4599 prexor = 0;
4600 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
4601 prexor = 1;
4602 if (sh->reconstruct_state == reconstruct_state_drain_result ||
4603 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
4604 sh->reconstruct_state = reconstruct_state_idle;
4605
4606 /* All the 'written' buffers and the parity block are ready to
4607 * be written back to disk
4608 */
Shaohua Li9e4447682012-10-11 13:49:49 +11004609 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
4610 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004611 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11004612 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
4613 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10004614 for (i = disks; i--; ) {
4615 struct r5dev *dev = &sh->dev[i];
4616 if (test_bit(R5_LOCKED, &dev->flags) &&
4617 (i == sh->pd_idx || i == sh->qd_idx ||
Song Liu1e6d6902016-11-17 15:24:39 -08004618 dev->written || test_bit(R5_InJournal,
4619 &dev->flags))) {
NeilBrown84789552011-07-27 11:00:36 +10004620 pr_debug("Writing block %d\n", i);
4621 set_bit(R5_Wantwrite, &dev->flags);
4622 if (prexor)
4623 continue;
NeilBrown9c4bdf62014-08-13 09:57:07 +10004624 if (s.failed > 1)
4625 continue;
NeilBrown84789552011-07-27 11:00:36 +10004626 if (!test_bit(R5_Insync, &dev->flags) ||
4627 ((i == sh->pd_idx || i == sh->qd_idx) &&
4628 s.failed == 0))
4629 set_bit(STRIPE_INSYNC, &sh->state);
4630 }
4631 }
4632 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4633 s.dec_preread_active = 1;
4634 }
4635
NeilBrownef5b7c62012-11-22 09:13:36 +11004636 /*
4637 * might be able to return some write requests if the parity blocks
4638 * are safe, or on a failed drive
4639 */
4640 pdev = &sh->dev[sh->pd_idx];
4641 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
4642 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
4643 qdev = &sh->dev[sh->qd_idx];
4644 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
4645 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
4646 || conf->level < 6;
4647
4648 if (s.written &&
4649 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
4650 && !test_bit(R5_LOCKED, &pdev->flags)
4651 && (test_bit(R5_UPTODATE, &pdev->flags) ||
4652 test_bit(R5_Discard, &pdev->flags))))) &&
4653 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
4654 && !test_bit(R5_LOCKED, &qdev->flags)
4655 && (test_bit(R5_UPTODATE, &qdev->flags) ||
4656 test_bit(R5_Discard, &qdev->flags))))))
4657 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
4658
Song Liu1e6d6902016-11-17 15:24:39 -08004659 if (s.just_cached)
4660 r5c_handle_cached_data_endio(conf, sh, disks, &s.return_bi);
4661 r5l_stripe_write_finished(sh);
4662
NeilBrownef5b7c62012-11-22 09:13:36 +11004663 /* Now we might consider reading some blocks, either to check/generate
4664 * parity, or to satisfy requests
4665 * or to load a block that is being partially written.
4666 */
4667 if (s.to_read || s.non_overwrite
4668 || (conf->level == 6 && s.to_write && s.failed)
4669 || (s.syncing && (s.uptodate + s.compute < disks))
4670 || s.replacing
4671 || s.expanding)
4672 handle_stripe_fill(sh, &s, disks);
4673
Song Liu2ded3702016-11-17 15:24:38 -08004674 /*
4675 * When the stripe finishes full journal write cycle (write to journal
4676 * and raid disk), this is the clean up procedure so it is ready for
4677 * next operation.
4678 */
4679 r5c_finish_stripe_write_out(conf, sh, &s);
4680
4681 /*
4682 * Now to consider new write requests, cache write back and what else,
4683 * if anything should be read. We do not handle new writes when:
NeilBrown84789552011-07-27 11:00:36 +10004684 * 1/ A 'write' operation (copy+xor) is already in flight.
4685 * 2/ A 'check' operation is in flight, as it may clobber the parity
4686 * block.
Song Liu2ded3702016-11-17 15:24:38 -08004687 * 3/ A r5c cache log write is in flight.
NeilBrown84789552011-07-27 11:00:36 +10004688 */
Song Liu2ded3702016-11-17 15:24:38 -08004689
4690 if (!sh->reconstruct_state && !sh->check_state && !sh->log_io) {
4691 if (!r5c_is_writeback(conf->log)) {
4692 if (s.to_write)
4693 handle_stripe_dirtying(conf, sh, &s, disks);
4694 } else { /* write back cache */
4695 int ret = 0;
4696
4697 /* First, try handle writes in caching phase */
4698 if (s.to_write)
4699 ret = r5c_try_caching_write(conf, sh, &s,
4700 disks);
4701 /*
4702 * If caching phase failed: ret == -EAGAIN
4703 * OR
4704 * stripe under reclaim: !caching && injournal
4705 *
4706 * fall back to handle_stripe_dirtying()
4707 */
4708 if (ret == -EAGAIN ||
4709 /* stripe under reclaim: !caching && injournal */
4710 (!test_bit(STRIPE_R5C_CACHING, &sh->state) &&
Song Liud7bd3982016-11-23 22:50:39 -08004711 s.injournal > 0)) {
4712 ret = handle_stripe_dirtying(conf, sh, &s,
4713 disks);
4714 if (ret == -EAGAIN)
4715 goto finish;
4716 }
Song Liu2ded3702016-11-17 15:24:38 -08004717 }
4718 }
NeilBrown84789552011-07-27 11:00:36 +10004719
4720 /* maybe we need to check and possibly fix the parity for this stripe
4721 * Any reads will already have been scheduled, so we just see if enough
4722 * data is available. The parity check is held off while parity
4723 * dependent operations are in flight.
4724 */
4725 if (sh->check_state ||
4726 (s.syncing && s.locked == 0 &&
4727 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
4728 !test_bit(STRIPE_INSYNC, &sh->state))) {
4729 if (conf->level == 6)
4730 handle_parity_checks6(conf, sh, &s, disks);
4731 else
4732 handle_parity_checks5(conf, sh, &s, disks);
4733 }
NeilBrownc5a31002011-07-27 11:00:36 +10004734
NeilBrownf94c0b62013-07-22 12:57:21 +10004735 if ((s.replacing || s.syncing) && s.locked == 0
4736 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
4737 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11004738 /* Write out to replacement devices where possible */
4739 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10004740 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
4741 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11004742 set_bit(R5_WantReplace, &sh->dev[i].flags);
4743 set_bit(R5_LOCKED, &sh->dev[i].flags);
4744 s.locked++;
4745 }
NeilBrownf94c0b62013-07-22 12:57:21 +10004746 if (s.replacing)
4747 set_bit(STRIPE_INSYNC, &sh->state);
4748 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11004749 }
4750 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10004751 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11004752 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10004753 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4754 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004755 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
4756 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10004757 }
4758
4759 /* If the failed drives are just a ReadError, then we might need
4760 * to progress the repair/check process
4761 */
4762 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
4763 for (i = 0; i < s.failed; i++) {
4764 struct r5dev *dev = &sh->dev[s.failed_num[i]];
4765 if (test_bit(R5_ReadError, &dev->flags)
4766 && !test_bit(R5_LOCKED, &dev->flags)
4767 && test_bit(R5_UPTODATE, &dev->flags)
4768 ) {
4769 if (!test_bit(R5_ReWrite, &dev->flags)) {
4770 set_bit(R5_Wantwrite, &dev->flags);
4771 set_bit(R5_ReWrite, &dev->flags);
4772 set_bit(R5_LOCKED, &dev->flags);
4773 s.locked++;
4774 } else {
4775 /* let's read it back */
4776 set_bit(R5_Wantread, &dev->flags);
4777 set_bit(R5_LOCKED, &dev->flags);
4778 s.locked++;
4779 }
4780 }
4781 }
4782
NeilBrown3687c062011-07-27 11:00:36 +10004783 /* Finish reconstruct operations initiated by the expansion process */
4784 if (sh->reconstruct_state == reconstruct_state_result) {
4785 struct stripe_head *sh_src
Shaohua Li6d036f72015-08-13 14:31:57 -07004786 = raid5_get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrown3687c062011-07-27 11:00:36 +10004787 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
4788 /* sh cannot be written until sh_src has been read.
4789 * so arrange for sh to be delayed a little
4790 */
4791 set_bit(STRIPE_DELAYED, &sh->state);
4792 set_bit(STRIPE_HANDLE, &sh->state);
4793 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
4794 &sh_src->state))
4795 atomic_inc(&conf->preread_active_stripes);
Shaohua Li6d036f72015-08-13 14:31:57 -07004796 raid5_release_stripe(sh_src);
NeilBrown3687c062011-07-27 11:00:36 +10004797 goto finish;
4798 }
4799 if (sh_src)
Shaohua Li6d036f72015-08-13 14:31:57 -07004800 raid5_release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07004801
NeilBrown3687c062011-07-27 11:00:36 +10004802 sh->reconstruct_state = reconstruct_state_idle;
4803 clear_bit(STRIPE_EXPANDING, &sh->state);
4804 for (i = conf->raid_disks; i--; ) {
4805 set_bit(R5_Wantwrite, &sh->dev[i].flags);
4806 set_bit(R5_LOCKED, &sh->dev[i].flags);
4807 s.locked++;
4808 }
4809 }
4810
4811 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
4812 !sh->reconstruct_state) {
4813 /* Need to write out all blocks after computing parity */
4814 sh->disks = conf->raid_disks;
4815 stripe_set_idx(sh->sector, conf, 0, sh);
4816 schedule_reconstruction(sh, &s, 1, 1);
4817 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
4818 clear_bit(STRIPE_EXPAND_READY, &sh->state);
4819 atomic_dec(&conf->reshape_stripes);
4820 wake_up(&conf->wait_for_overlap);
4821 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
4822 }
4823
4824 if (s.expanding && s.locked == 0 &&
4825 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
4826 handle_stripe_expansion(conf, sh);
4827
4828finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07004829 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10004830 if (unlikely(s.blocked_rdev)) {
4831 if (conf->mddev->external)
4832 md_wait_for_blocked_rdev(s.blocked_rdev,
4833 conf->mddev);
4834 else
4835 /* Internal metadata will immediately
4836 * be written by raid5d, so we don't
4837 * need to wait here.
4838 */
4839 rdev_dec_pending(s.blocked_rdev,
4840 conf->mddev);
4841 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07004842
NeilBrownbc2607f2011-07-28 11:39:22 +10004843 if (s.handle_bad_blocks)
4844 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11004845 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10004846 struct r5dev *dev = &sh->dev[i];
4847 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
4848 /* We own a safe reference to the rdev */
4849 rdev = conf->disks[i].rdev;
4850 if (!rdev_set_badblocks(rdev, sh->sector,
4851 STRIPE_SECTORS, 0))
4852 md_error(conf->mddev, rdev);
4853 rdev_dec_pending(rdev, conf->mddev);
4854 }
NeilBrownb84db562011-07-28 11:39:23 +10004855 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
4856 rdev = conf->disks[i].rdev;
4857 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004858 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10004859 rdev_dec_pending(rdev, conf->mddev);
4860 }
NeilBrown977df362011-12-23 10:17:53 +11004861 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
4862 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11004863 if (!rdev)
4864 /* rdev have been moved down */
4865 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11004866 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10004867 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11004868 rdev_dec_pending(rdev, conf->mddev);
4869 }
NeilBrownbc2607f2011-07-28 11:39:22 +10004870 }
4871
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07004872 if (s.ops_request)
4873 raid_run_ops(sh, s.ops_request);
4874
Dan Williamsf0e43bc2008-06-28 08:31:55 +10004875 ops_run_io(sh, &s);
4876
NeilBrownc5709ef2011-07-26 11:35:20 +10004877 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11004878 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02004879 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11004880 * have actually been submitted.
4881 */
4882 atomic_dec(&conf->preread_active_stripes);
4883 if (atomic_read(&conf->preread_active_stripes) <
4884 IO_THRESHOLD)
4885 md_wakeup_thread(conf->mddev->thread);
4886 }
4887
NeilBrownc3cce6c2015-08-14 12:47:33 +10004888 if (!bio_list_empty(&s.return_bi)) {
Shaohua Li29530792016-12-08 15:48:19 -08004889 if (test_bit(MD_SB_CHANGE_PENDING, &conf->mddev->sb_flags)) {
NeilBrownc3cce6c2015-08-14 12:47:33 +10004890 spin_lock_irq(&conf->device_lock);
4891 bio_list_merge(&conf->return_bi, &s.return_bi);
4892 spin_unlock_irq(&conf->device_lock);
4893 md_wakeup_thread(conf->mddev->thread);
4894 } else
4895 return_io(&s.return_bi);
4896 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004897
Dan Williams257a4b42011-11-08 16:22:06 +11004898 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07004899}
4900
NeilBrownd1688a62011-10-11 16:49:52 +11004901static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902{
4903 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
4904 while (!list_empty(&conf->delayed_list)) {
4905 struct list_head *l = conf->delayed_list.next;
4906 struct stripe_head *sh;
4907 sh = list_entry(l, struct stripe_head, lru);
4908 list_del_init(l);
4909 clear_bit(STRIPE_DELAYED, &sh->state);
4910 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4911 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004912 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08004913 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 }
NeilBrown482c0832011-04-18 18:25:42 +10004915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916}
4917
Shaohua Li566c09c2013-11-14 15:16:17 +11004918static void activate_bit_delay(struct r5conf *conf,
4919 struct list_head *temp_inactive_list)
NeilBrown72626682005-09-09 16:23:54 -07004920{
4921 /* device_lock is held */
4922 struct list_head head;
4923 list_add(&head, &conf->bitmap_list);
4924 list_del_init(&conf->bitmap_list);
4925 while (!list_empty(&head)) {
4926 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
Shaohua Li566c09c2013-11-14 15:16:17 +11004927 int hash;
NeilBrown72626682005-09-09 16:23:54 -07004928 list_del_init(&sh->lru);
4929 atomic_inc(&sh->count);
Shaohua Li566c09c2013-11-14 15:16:17 +11004930 hash = sh->hash_lock_index;
4931 __release_stripe(conf, sh, &temp_inactive_list[hash]);
NeilBrown72626682005-09-09 16:23:54 -07004932 }
4933}
4934
NeilBrown5c675f82014-12-15 12:56:56 +11004935static int raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07004936{
NeilBrownd1688a62011-10-11 16:49:52 +11004937 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07004938
4939 /* No difference between reads and writes. Just check
4940 * how busy the stripe_cache is
4941 */
NeilBrown3fa841d2009-09-23 18:10:29 +10004942
NeilBrown54233992015-02-26 12:21:04 +11004943 if (test_bit(R5_INACTIVE_BLOCKED, &conf->cache_state))
NeilBrownf022b2f2006-10-03 01:15:56 -07004944 return 1;
Song Liua39f7af2016-11-17 15:24:40 -08004945
4946 /* Also checks whether there is pressure on r5cache log space */
4947 if (test_bit(R5C_LOG_TIGHT, &conf->cache_state))
4948 return 1;
NeilBrownf022b2f2006-10-03 01:15:56 -07004949 if (conf->quiesce)
4950 return 1;
Shaohua Li4bda5562013-11-14 15:16:17 +11004951 if (atomic_read(&conf->empty_inactive_list_nr))
NeilBrownf022b2f2006-10-03 01:15:56 -07004952 return 1;
4953
4954 return 0;
4955}
4956
NeilBrownfd01b882011-10-11 16:47:53 +11004957static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004958{
NeilBrown3cb5edf2015-07-15 17:24:17 +10004959 struct r5conf *conf = mddev->private;
Kent Overstreet4f024f32013-10-11 15:44:27 -07004960 sector_t sector = bio->bi_iter.bi_sector + get_start_sect(bio->bi_bdev);
NeilBrown3cb5edf2015-07-15 17:24:17 +10004961 unsigned int chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004962 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004963
NeilBrown3cb5edf2015-07-15 17:24:17 +10004964 chunk_sectors = min(conf->chunk_sectors, conf->prev_chunk_sectors);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004965 return chunk_sectors >=
4966 ((sector & (chunk_sectors - 1)) + bio_sectors);
4967}
4968
4969/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004970 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
4971 * later sampled by raid5d.
4972 */
NeilBrownd1688a62011-10-11 16:49:52 +11004973static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004974{
4975 unsigned long flags;
4976
4977 spin_lock_irqsave(&conf->device_lock, flags);
4978
4979 bi->bi_next = conf->retry_read_aligned_list;
4980 conf->retry_read_aligned_list = bi;
4981
4982 spin_unlock_irqrestore(&conf->device_lock, flags);
4983 md_wakeup_thread(conf->mddev->thread);
4984}
4985
NeilBrownd1688a62011-10-11 16:49:52 +11004986static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004987{
4988 struct bio *bi;
4989
4990 bi = conf->retry_read_aligned;
4991 if (bi) {
4992 conf->retry_read_aligned = NULL;
4993 return bi;
4994 }
4995 bi = conf->retry_read_aligned_list;
4996 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08004997 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004998 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02004999 /*
5000 * this sets the active strip count to 1 and the processed
5001 * strip count to zero (upper 8 bits)
5002 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10005003 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005004 }
5005
5006 return bi;
5007}
5008
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005009/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005010 * The "raid5_align_endio" should check if the read succeeded and if it
5011 * did, call bio_endio on the original bio (having bio_put the new bio
5012 * first).
5013 * If the read failed..
5014 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005015static void raid5_align_endio(struct bio *bi)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005016{
5017 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11005018 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005019 struct r5conf *conf;
NeilBrown3cb03002011-10-11 16:45:26 +11005020 struct md_rdev *rdev;
Sasha Levin9b81c842015-08-10 19:05:18 -04005021 int error = bi->bi_error;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005022
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005023 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005024
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005025 rdev = (void*)raid_bi->bi_next;
5026 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11005027 mddev = rdev->mddev;
5028 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005029
5030 rdev_dec_pending(rdev, conf->mddev);
5031
Sasha Levin9b81c842015-08-10 19:05:18 -04005032 if (!error) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005033 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
5034 raid_bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005035 bio_endio(raid_bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005036 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10005037 wake_up(&conf->wait_for_quiescent);
NeilBrown6712ecf2007-09-27 12:47:43 +02005038 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005039 }
5040
Dan Williams45b42332007-07-09 11:56:43 -07005041 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005042
5043 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005044}
5045
Ming Lin7ef6b122015-05-06 22:51:24 -07005046static int raid5_read_one_chunk(struct mddev *mddev, struct bio *raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005047{
NeilBrownd1688a62011-10-11 16:49:52 +11005048 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11005049 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005050 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11005051 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11005052 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005053
5054 if (!in_chunk_boundary(mddev, raid_bio)) {
Ming Lin7ef6b122015-05-06 22:51:24 -07005055 pr_debug("%s: non aligned\n", __func__);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005056 return 0;
5057 }
5058 /*
Ming Leid7a10302017-02-14 23:29:03 +08005059 * use bio_clone_fast to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005060 */
Ming Leid7a10302017-02-14 23:29:03 +08005061 align_bi = bio_clone_fast(raid_bio, GFP_NOIO, mddev->bio_set);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005062 if (!align_bi)
5063 return 0;
5064 /*
5065 * set bi_end_io to a new function, and set bi_private to the
5066 * original bio.
5067 */
5068 align_bi->bi_end_io = raid5_align_endio;
5069 align_bi->bi_private = raid_bio;
5070 /*
5071 * compute position
5072 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07005073 align_bi->bi_iter.bi_sector =
5074 raid5_compute_sector(conf, raid_bio->bi_iter.bi_sector,
5075 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005076
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005077 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005078 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11005079 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
5080 if (!rdev || test_bit(Faulty, &rdev->flags) ||
5081 rdev->recovery_offset < end_sector) {
5082 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
5083 if (rdev &&
5084 (test_bit(Faulty, &rdev->flags) ||
5085 !(test_bit(In_sync, &rdev->flags) ||
5086 rdev->recovery_offset >= end_sector)))
5087 rdev = NULL;
5088 }
Song Liu03b047f2017-01-11 13:39:14 -08005089
5090 if (r5c_big_stripe_cached(conf, align_bi->bi_iter.bi_sector)) {
5091 rcu_read_unlock();
5092 bio_put(align_bi);
5093 return 0;
5094 }
5095
NeilBrown671488c2011-12-23 10:17:52 +11005096 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10005097 sector_t first_bad;
5098 int bad_sectors;
5099
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005100 atomic_inc(&rdev->nr_pending);
5101 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005102 raid_bio->bi_next = (void*)rdev;
5103 align_bi->bi_bdev = rdev->bdev;
Jens Axboeb7c44ed2015-07-24 12:37:59 -06005104 bio_clear_flag(align_bi, BIO_SEG_VALID);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005105
Kent Overstreet7140aaf2013-09-25 13:37:01 -07005106 if (is_badblock(rdev, align_bi->bi_iter.bi_sector,
Kent Overstreet4f024f32013-10-11 15:44:27 -07005107 bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10005108 &first_bad, &bad_sectors)) {
Neil Brown387bb172007-02-08 14:20:29 -08005109 bio_put(align_bi);
5110 rdev_dec_pending(rdev, mddev);
5111 return 0;
5112 }
5113
majianpeng6c0544e2012-06-12 08:31:10 +08005114 /* No reshape active, so we can trust rdev->data_offset */
Kent Overstreet4f024f32013-10-11 15:44:27 -07005115 align_bi->bi_iter.bi_sector += rdev->data_offset;
majianpeng6c0544e2012-06-12 08:31:10 +08005116
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005117 spin_lock_irq(&conf->device_lock);
Yuanhan Liub1b46482015-05-08 18:19:06 +10005118 wait_event_lock_irq(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005119 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01005120 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005121 atomic_inc(&conf->active_aligned_reads);
5122 spin_unlock_irq(&conf->device_lock);
5123
Jonathan Brassowe3620a32013-03-07 16:22:01 -06005124 if (mddev->gendisk)
5125 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
5126 align_bi, disk_devt(mddev->gendisk),
Kent Overstreet4f024f32013-10-11 15:44:27 -07005127 raid_bio->bi_iter.bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005128 generic_make_request(align_bi);
5129 return 1;
5130 } else {
5131 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005132 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005133 return 0;
5134 }
5135}
5136
Ming Lin7ef6b122015-05-06 22:51:24 -07005137static struct bio *chunk_aligned_read(struct mddev *mddev, struct bio *raid_bio)
5138{
5139 struct bio *split;
5140
5141 do {
5142 sector_t sector = raid_bio->bi_iter.bi_sector;
5143 unsigned chunk_sects = mddev->chunk_sectors;
5144 unsigned sectors = chunk_sects - (sector & (chunk_sects-1));
5145
5146 if (sectors < bio_sectors(raid_bio)) {
5147 split = bio_split(raid_bio, sectors, GFP_NOIO, fs_bio_set);
5148 bio_chain(split, raid_bio);
5149 } else
5150 split = raid_bio;
5151
5152 if (!raid5_read_one_chunk(mddev, split)) {
5153 if (split != raid_bio)
5154 generic_make_request(raid_bio);
5155 return split;
5156 }
5157 } while (split != raid_bio);
5158
5159 return NULL;
5160}
5161
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005162/* __get_priority_stripe - get the next stripe to process
5163 *
5164 * Full stripe writes are allowed to pass preread active stripes up until
5165 * the bypass_threshold is exceeded. In general the bypass_count
5166 * increments when the handle_list is handled before the hold_list; however, it
5167 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
5168 * stripe with in flight i/o. The bypass_count will be reset when the
5169 * head of the hold_list has changed, i.e. the head was promoted to the
5170 * handle_list.
5171 */
Shaohua Li851c30c2013-08-28 14:30:16 +08005172static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005173{
Shaohua Li851c30c2013-08-28 14:30:16 +08005174 struct stripe_head *sh = NULL, *tmp;
5175 struct list_head *handle_list = NULL;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005176 struct r5worker_group *wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005177
5178 if (conf->worker_cnt_per_group == 0) {
5179 handle_list = &conf->handle_list;
5180 } else if (group != ANY_GROUP) {
5181 handle_list = &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005182 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08005183 } else {
5184 int i;
5185 for (i = 0; i < conf->group_cnt; i++) {
5186 handle_list = &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08005187 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08005188 if (!list_empty(handle_list))
5189 break;
5190 }
5191 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005192
5193 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
5194 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08005195 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005196 list_empty(&conf->hold_list) ? "empty" : "busy",
5197 atomic_read(&conf->pending_full_writes), conf->bypass_count);
5198
Shaohua Li851c30c2013-08-28 14:30:16 +08005199 if (!list_empty(handle_list)) {
5200 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005201
5202 if (list_empty(&conf->hold_list))
5203 conf->bypass_count = 0;
5204 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
5205 if (conf->hold_list.next == conf->last_hold)
5206 conf->bypass_count++;
5207 else {
5208 conf->last_hold = conf->hold_list.next;
5209 conf->bypass_count -= conf->bypass_threshold;
5210 if (conf->bypass_count < 0)
5211 conf->bypass_count = 0;
5212 }
5213 }
5214 } else if (!list_empty(&conf->hold_list) &&
5215 ((conf->bypass_threshold &&
5216 conf->bypass_count > conf->bypass_threshold) ||
5217 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08005218
5219 list_for_each_entry(tmp, &conf->hold_list, lru) {
5220 if (conf->worker_cnt_per_group == 0 ||
5221 group == ANY_GROUP ||
5222 !cpu_online(tmp->cpu) ||
5223 cpu_to_group(tmp->cpu) == group) {
5224 sh = tmp;
5225 break;
5226 }
5227 }
5228
5229 if (sh) {
5230 conf->bypass_count -= conf->bypass_threshold;
5231 if (conf->bypass_count < 0)
5232 conf->bypass_count = 0;
5233 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08005234 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08005235 }
5236
5237 if (!sh)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005238 return NULL;
5239
Shaohua Libfc90cb2013-08-29 15:40:32 +08005240 if (wg) {
5241 wg->stripes_cnt--;
5242 sh->group = NULL;
5243 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005244 list_del_init(&sh->lru);
Shaohua Lic7a6d352014-04-15 09:12:54 +08005245 BUG_ON(atomic_inc_return(&sh->count) != 1);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005246 return sh;
5247}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08005248
Shaohua Li8811b592012-08-02 08:33:00 +10005249struct raid5_plug_cb {
5250 struct blk_plug_cb cb;
5251 struct list_head list;
Shaohua Li566c09c2013-11-14 15:16:17 +11005252 struct list_head temp_inactive_list[NR_STRIPE_HASH_LOCKS];
Shaohua Li8811b592012-08-02 08:33:00 +10005253};
5254
5255static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
5256{
5257 struct raid5_plug_cb *cb = container_of(
5258 blk_cb, struct raid5_plug_cb, cb);
5259 struct stripe_head *sh;
5260 struct mddev *mddev = cb->cb.data;
5261 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11005262 int cnt = 0;
Shaohua Li566c09c2013-11-14 15:16:17 +11005263 int hash;
Shaohua Li8811b592012-08-02 08:33:00 +10005264
5265 if (cb->list.next && !list_empty(&cb->list)) {
5266 spin_lock_irq(&conf->device_lock);
5267 while (!list_empty(&cb->list)) {
5268 sh = list_first_entry(&cb->list, struct stripe_head, lru);
5269 list_del_init(&sh->lru);
5270 /*
5271 * avoid race release_stripe_plug() sees
5272 * STRIPE_ON_UNPLUG_LIST clear but the stripe
5273 * is still in our list
5274 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005275 smp_mb__before_atomic();
Shaohua Li8811b592012-08-02 08:33:00 +10005276 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08005277 /*
5278 * STRIPE_ON_RELEASE_LIST could be set here. In that
5279 * case, the count is always > 1 here
5280 */
Shaohua Li566c09c2013-11-14 15:16:17 +11005281 hash = sh->hash_lock_index;
5282 __release_stripe(conf, sh, &cb->temp_inactive_list[hash]);
NeilBrowna9add5d2012-10-31 11:59:09 +11005283 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10005284 }
5285 spin_unlock_irq(&conf->device_lock);
5286 }
Shaohua Li566c09c2013-11-14 15:16:17 +11005287 release_inactive_stripe_list(conf, cb->temp_inactive_list,
5288 NR_STRIPE_HASH_LOCKS);
Jonathan Brassowe3620a32013-03-07 16:22:01 -06005289 if (mddev->queue)
5290 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10005291 kfree(cb);
5292}
5293
5294static void release_stripe_plug(struct mddev *mddev,
5295 struct stripe_head *sh)
5296{
5297 struct blk_plug_cb *blk_cb = blk_check_plugged(
5298 raid5_unplug, mddev,
5299 sizeof(struct raid5_plug_cb));
5300 struct raid5_plug_cb *cb;
5301
5302 if (!blk_cb) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005303 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005304 return;
5305 }
5306
5307 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
5308
Shaohua Li566c09c2013-11-14 15:16:17 +11005309 if (cb->list.next == NULL) {
5310 int i;
Shaohua Li8811b592012-08-02 08:33:00 +10005311 INIT_LIST_HEAD(&cb->list);
Shaohua Li566c09c2013-11-14 15:16:17 +11005312 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
5313 INIT_LIST_HEAD(cb->temp_inactive_list + i);
5314 }
Shaohua Li8811b592012-08-02 08:33:00 +10005315
5316 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
5317 list_add_tail(&sh->lru, &cb->list);
5318 else
Shaohua Li6d036f72015-08-13 14:31:57 -07005319 raid5_release_stripe(sh);
Shaohua Li8811b592012-08-02 08:33:00 +10005320}
5321
Shaohua Li620125f2012-10-11 13:49:05 +11005322static void make_discard_request(struct mddev *mddev, struct bio *bi)
5323{
5324 struct r5conf *conf = mddev->private;
5325 sector_t logical_sector, last_sector;
5326 struct stripe_head *sh;
5327 int remaining;
5328 int stripe_sectors;
5329
5330 if (mddev->reshape_position != MaxSector)
5331 /* Skip discard while reshape is happening */
5332 return;
5333
Kent Overstreet4f024f32013-10-11 15:44:27 -07005334 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
5335 last_sector = bi->bi_iter.bi_sector + (bi->bi_iter.bi_size>>9);
Shaohua Li620125f2012-10-11 13:49:05 +11005336
5337 bi->bi_next = NULL;
5338 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
5339
5340 stripe_sectors = conf->chunk_sectors *
5341 (conf->raid_disks - conf->max_degraded);
5342 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
5343 stripe_sectors);
5344 sector_div(last_sector, stripe_sectors);
5345
5346 logical_sector *= conf->chunk_sectors;
5347 last_sector *= conf->chunk_sectors;
5348
5349 for (; logical_sector < last_sector;
5350 logical_sector += STRIPE_SECTORS) {
5351 DEFINE_WAIT(w);
5352 int d;
5353 again:
Shaohua Li6d036f72015-08-13 14:31:57 -07005354 sh = raid5_get_active_stripe(conf, logical_sector, 0, 0, 0);
Shaohua Li620125f2012-10-11 13:49:05 +11005355 prepare_to_wait(&conf->wait_for_overlap, &w,
5356 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005357 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
5358 if (test_bit(STRIPE_SYNCING, &sh->state)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005359 raid5_release_stripe(sh);
NeilBrownf8dfcff2013-03-12 12:18:06 +11005360 schedule();
5361 goto again;
5362 }
5363 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11005364 spin_lock_irq(&sh->stripe_lock);
5365 for (d = 0; d < conf->raid_disks; d++) {
5366 if (d == sh->pd_idx || d == sh->qd_idx)
5367 continue;
5368 if (sh->dev[d].towrite || sh->dev[d].toread) {
5369 set_bit(R5_Overlap, &sh->dev[d].flags);
5370 spin_unlock_irq(&sh->stripe_lock);
Shaohua Li6d036f72015-08-13 14:31:57 -07005371 raid5_release_stripe(sh);
Shaohua Li620125f2012-10-11 13:49:05 +11005372 schedule();
5373 goto again;
5374 }
5375 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11005376 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11005377 finish_wait(&conf->wait_for_overlap, &w);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005378 sh->overwrite_disks = 0;
Shaohua Li620125f2012-10-11 13:49:05 +11005379 for (d = 0; d < conf->raid_disks; d++) {
5380 if (d == sh->pd_idx || d == sh->qd_idx)
5381 continue;
5382 sh->dev[d].towrite = bi;
5383 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
5384 raid5_inc_bi_active_stripes(bi);
shli@kernel.org7a87f432014-12-15 12:57:03 +11005385 sh->overwrite_disks++;
Shaohua Li620125f2012-10-11 13:49:05 +11005386 }
5387 spin_unlock_irq(&sh->stripe_lock);
5388 if (conf->mddev->bitmap) {
5389 for (d = 0;
5390 d < conf->raid_disks - conf->max_degraded;
5391 d++)
5392 bitmap_startwrite(mddev->bitmap,
5393 sh->sector,
5394 STRIPE_SECTORS,
5395 0);
5396 sh->bm_seq = conf->seq_flush + 1;
5397 set_bit(STRIPE_BIT_DELAY, &sh->state);
5398 }
5399
5400 set_bit(STRIPE_HANDLE, &sh->state);
5401 clear_bit(STRIPE_DELAYED, &sh->state);
5402 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5403 atomic_inc(&conf->preread_active_stripes);
5404 release_stripe_plug(mddev, sh);
5405 }
5406
5407 remaining = raid5_dec_bi_active_stripes(bi);
5408 if (remaining == 0) {
5409 md_write_end(mddev);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005410 bio_endio(bi);
Shaohua Li620125f2012-10-11 13:49:05 +11005411 }
5412}
5413
Shaohua Li849674e2016-01-20 13:52:20 -08005414static void raid5_make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415{
NeilBrownd1688a62011-10-11 16:49:52 +11005416 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11005417 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418 sector_t new_sector;
5419 sector_t logical_sector, last_sector;
5420 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01005421 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11005422 int remaining;
Shaohua Li27c0f682014-04-09 11:25:47 +08005423 DEFINE_WAIT(w);
5424 bool do_prepare;
Song Liu3bddb7f2016-11-18 16:46:50 -08005425 bool do_flush = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
Jens Axboe1eff9d32016-08-05 15:35:16 -06005427 if (unlikely(bi->bi_opf & REQ_PREFLUSH)) {
Shaohua Li828cbe92015-09-02 13:49:49 -07005428 int ret = r5l_handle_flush_request(conf->log, bi);
5429
5430 if (ret == 0)
5431 return;
5432 if (ret == -ENODEV) {
5433 md_flush_request(mddev, bi);
5434 return;
5435 }
5436 /* ret == -EAGAIN, fallback */
Song Liu3bddb7f2016-11-18 16:46:50 -08005437 /*
5438 * if r5l_handle_flush_request() didn't clear REQ_PREFLUSH,
5439 * we need to flush journal device
5440 */
5441 do_flush = bi->bi_opf & REQ_PREFLUSH;
NeilBrowne5dcdd82005-09-09 16:23:41 -07005442 }
5443
NeilBrown3d310eb2005-06-21 17:17:26 -07005444 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07005445
Eric Mei9ffc8f72015-03-18 23:39:11 -06005446 /*
5447 * If array is degraded, better not do chunk aligned read because
5448 * later we might have to read it again in order to reconstruct
5449 * data on failed drives.
5450 */
5451 if (rw == READ && mddev->degraded == 0 &&
Ming Lin7ef6b122015-05-06 22:51:24 -07005452 mddev->reshape_position == MaxSector) {
5453 bi = chunk_aligned_read(mddev, bi);
5454 if (!bi)
5455 return;
5456 }
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08005457
Mike Christie796a5cf2016-06-05 14:32:07 -05005458 if (unlikely(bio_op(bi) == REQ_OP_DISCARD)) {
Shaohua Li620125f2012-10-11 13:49:05 +11005459 make_discard_request(mddev, bi);
5460 return;
5461 }
5462
Kent Overstreet4f024f32013-10-11 15:44:27 -07005463 logical_sector = bi->bi_iter.bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005464 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465 bi->bi_next = NULL;
5466 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07005467
Shaohua Li27c0f682014-04-09 11:25:47 +08005468 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005470 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10005471 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08005472
Shaohua Li27c0f682014-04-09 11:25:47 +08005473 do_prepare = false;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005474 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10005475 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11005476 previous = 0;
Shaohua Li27c0f682014-04-09 11:25:47 +08005477 if (do_prepare)
5478 prepare_to_wait(&conf->wait_for_overlap, &w,
5479 TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005480 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11005481 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08005482 * 64bit on a 32bit platform, and so it might be
5483 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02005484 * Of course reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08005485 * the lock is dropped, so once we get a reference
5486 * to the stripe that we think it is, we will have
5487 * to check again.
5488 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005489 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005490 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005491 ? logical_sector < conf->reshape_progress
5492 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11005493 previous = 1;
5494 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10005495 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11005496 ? logical_sector < conf->reshape_safe
5497 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08005498 spin_unlock_irq(&conf->device_lock);
5499 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005500 do_prepare = true;
NeilBrownb578d552006-03-27 01:18:12 -08005501 goto retry;
5502 }
5503 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005504 spin_unlock_irq(&conf->device_lock);
5505 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005506
NeilBrown112bf892009-03-31 14:39:38 +11005507 new_sector = raid5_compute_sector(conf, logical_sector,
5508 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11005509 &dd_idx, NULL);
Shaohua Li849674e2016-01-20 13:52:20 -08005510 pr_debug("raid456: raid5_make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10005511 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512 (unsigned long long)logical_sector);
5513
Shaohua Li6d036f72015-08-13 14:31:57 -07005514 sh = raid5_get_active_stripe(conf, new_sector, previous,
Jens Axboe1eff9d32016-08-05 15:35:16 -06005515 (bi->bi_opf & REQ_RAHEAD), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11005517 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005518 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08005519 * stripe, so we must do the range check again.
5520 * Expansion could still move past after this
5521 * test, but as we are holding a reference to
5522 * 'sh', we know that if that happens,
5523 * STRIPE_EXPANDING will get set and the expansion
5524 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005525 */
5526 int must_retry = 0;
5527 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005528 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11005529 ? logical_sector >= conf->reshape_progress
5530 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005531 /* mismatch, need to try again */
5532 must_retry = 1;
5533 spin_unlock_irq(&conf->device_lock);
5534 if (must_retry) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005535 raid5_release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07005536 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005537 do_prepare = true;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005538 goto retry;
5539 }
5540 }
NeilBrownc46501b2013-08-27 15:52:13 +10005541 if (read_seqcount_retry(&conf->gen_lock, seq)) {
5542 /* Might have got the wrong stripe_head
5543 * by accident
5544 */
Shaohua Li6d036f72015-08-13 14:31:57 -07005545 raid5_release_stripe(sh);
NeilBrownc46501b2013-08-27 15:52:13 +10005546 goto retry;
5547 }
NeilBrowne62e58a2009-07-01 13:15:35 +10005548
Namhyung Kimffd96e32011-07-18 17:38:51 +10005549 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10005550 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08005551 logical_sector < mddev->suspend_hi) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005552 raid5_release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10005553 /* As the suspend_* range is controlled by
5554 * userspace, we want an interruptible
5555 * wait.
5556 */
5557 flush_signals(current);
5558 prepare_to_wait(&conf->wait_for_overlap,
5559 &w, TASK_INTERRUPTIBLE);
5560 if (logical_sector >= mddev->suspend_lo &&
Shaohua Li27c0f682014-04-09 11:25:47 +08005561 logical_sector < mddev->suspend_hi) {
NeilBrowne62e58a2009-07-01 13:15:35 +10005562 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005563 do_prepare = true;
5564 }
NeilBrowne464eaf2006-03-27 01:18:14 -08005565 goto retry;
5566 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005567
5568 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
shli@kernel.orgda41ba62014-12-15 12:57:03 +11005569 !add_stripe_bio(sh, bi, dd_idx, rw, previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005570 /* Stripe is busy expanding or
5571 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 * and wait a while
5573 */
NeilBrown482c0832011-04-18 18:25:42 +10005574 md_wakeup_thread(mddev->thread);
Shaohua Li6d036f72015-08-13 14:31:57 -07005575 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576 schedule();
Shaohua Li27c0f682014-04-09 11:25:47 +08005577 do_prepare = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 goto retry;
5579 }
Song Liu3bddb7f2016-11-18 16:46:50 -08005580 if (do_flush) {
5581 set_bit(STRIPE_R5C_PREFLUSH, &sh->state);
5582 /* we only need flush for one stripe */
5583 do_flush = false;
5584 }
5585
NeilBrown6ed30032008-02-06 01:40:00 -08005586 set_bit(STRIPE_HANDLE, &sh->state);
5587 clear_bit(STRIPE_DELAYED, &sh->state);
shli@kernel.org59fc6302014-12-15 12:57:03 +11005588 if ((!sh->batch_head || sh == sh->batch_head) &&
Jens Axboe1eff9d32016-08-05 15:35:16 -06005589 (bi->bi_opf & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11005590 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
5591 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10005592 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593 } else {
5594 /* cannot get stripe for read-ahead, just give-up */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005595 bi->bi_error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596 break;
5597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598 }
Shaohua Li27c0f682014-04-09 11:25:47 +08005599 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown7c13edc2011-04-18 18:25:43 +10005600
Shaohua Lie7836bd62012-07-19 16:01:31 +10005601 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08005602 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603
NeilBrown16a53ec2006-06-26 00:27:38 -07005604 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02005606
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07005607 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
5608 bi, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02005609 bio_endio(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611}
5612
NeilBrownfd01b882011-10-11 16:47:53 +11005613static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11005614
NeilBrownfd01b882011-10-11 16:47:53 +11005615static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616{
NeilBrown52c03292006-06-26 00:27:43 -07005617 /* reshaping is quite different to recovery/resync so it is
5618 * handled quite separately ... here.
5619 *
5620 * On each call to sync_request, we gather one chunk worth of
5621 * destination stripes and flag them as expanding.
5622 * Then we find all the source stripes and request reads.
5623 * As the reads complete, handle_stripe will copy the data
5624 * into the destination stripe and release that stripe.
5625 */
NeilBrownd1688a62011-10-11 16:49:52 +11005626 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08005628 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08005629 int raid_disks = conf->previous_raid_disks;
5630 int data_disks = raid_disks - conf->max_degraded;
5631 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07005632 int i;
5633 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11005634 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11005635 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11005636 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11005637 struct list_head stripes;
NeilBrown92140482015-07-06 12:28:45 +10005638 sector_t retn;
NeilBrown52c03292006-06-26 00:27:43 -07005639
NeilBrownfef9c612009-03-31 15:16:46 +11005640 if (sector_nr == 0) {
5641 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10005642 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005643 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
5644 sector_nr = raid5_size(mddev, 0, 0)
5645 - conf->reshape_progress;
NeilBrown6cbd8142015-07-24 13:30:32 +10005646 } else if (mddev->reshape_backwards &&
5647 conf->reshape_progress == MaxSector) {
5648 /* shouldn't happen, but just in case, finish up.*/
5649 sector_nr = MaxSector;
NeilBrown2c810cd2012-05-21 09:27:00 +10005650 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11005651 conf->reshape_progress > 0)
5652 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005653 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005654 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11005655 mddev->curr_resync_completed = sector_nr;
5656 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11005657 *skipped = 1;
NeilBrown92140482015-07-06 12:28:45 +10005658 retn = sector_nr;
5659 goto finish;
NeilBrownfef9c612009-03-31 15:16:46 +11005660 }
NeilBrown52c03292006-06-26 00:27:43 -07005661 }
5662
NeilBrown7a661382009-03-31 15:21:40 +11005663 /* We need to process a full chunk at a time.
5664 * If old and new chunk sizes differ, we need to process the
5665 * largest of these
5666 */
NeilBrown3cb5edf2015-07-15 17:24:17 +10005667
5668 reshape_sectors = max(conf->chunk_sectors, conf->prev_chunk_sectors);
NeilBrown7a661382009-03-31 15:21:40 +11005669
NeilBrownb5254dd2012-05-21 09:27:01 +10005670 /* We update the metadata at least every 10 seconds, or when
5671 * the data about to be copied would over-write the source of
5672 * the data at the front of the range. i.e. one new_stripe
5673 * along from reshape_progress new_maps to after where
5674 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07005675 */
NeilBrownfef9c612009-03-31 15:16:46 +11005676 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08005677 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11005678 readpos = conf->reshape_progress;
5679 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11005680 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08005681 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10005682 if (mddev->reshape_backwards) {
NeilBrownc74c0d72015-07-15 17:54:15 +10005683 BUG_ON(writepos < reshape_sectors);
5684 writepos -= reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11005685 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11005686 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11005687 } else {
NeilBrown7a661382009-03-31 15:21:40 +11005688 writepos += reshape_sectors;
NeilBrownc74c0d72015-07-15 17:54:15 +10005689 /* readpos and safepos are worst-case calculations.
5690 * A negative number is overly pessimistic, and causes
5691 * obvious problems for unsigned storage. So clip to 0.
5692 */
NeilBrowned37d832009-05-27 21:39:05 +10005693 readpos -= min_t(sector_t, reshape_sectors, readpos);
5694 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11005695 }
NeilBrown52c03292006-06-26 00:27:43 -07005696
NeilBrownb5254dd2012-05-21 09:27:01 +10005697 /* Having calculated the 'writepos' possibly use it
5698 * to set 'stripe_addr' which is where we will write to.
5699 */
5700 if (mddev->reshape_backwards) {
5701 BUG_ON(conf->reshape_progress == 0);
5702 stripe_addr = writepos;
5703 BUG_ON((mddev->dev_sectors &
5704 ~((sector_t)reshape_sectors - 1))
5705 - reshape_sectors - stripe_addr
5706 != sector_nr);
5707 } else {
5708 BUG_ON(writepos != sector_nr + reshape_sectors);
5709 stripe_addr = sector_nr;
5710 }
5711
NeilBrownc8f517c2009-03-31 15:28:40 +11005712 /* 'writepos' is the most advanced device address we might write.
5713 * 'readpos' is the least advanced device address we might read.
5714 * 'safepos' is the least address recorded in the metadata as having
5715 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10005716 * If there is a min_offset_diff, these are adjusted either by
5717 * increasing the safepos/readpos if diff is negative, or
5718 * increasing writepos if diff is positive.
5719 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11005720 * ensure safety in the face of a crash - that must be done by userspace
5721 * making a backup of the data. So in that case there is no particular
5722 * rush to update metadata.
5723 * Otherwise if 'safepos' is behind 'writepos', then we really need to
5724 * update the metadata to advance 'safepos' to match 'readpos' so that
5725 * we can be safe in the event of a crash.
5726 * So we insist on updating metadata if safepos is behind writepos and
5727 * readpos is beyond writepos.
5728 * In any case, update the metadata every 10 seconds.
5729 * Maybe that number should be configurable, but I'm not sure it is
5730 * worth it.... maybe it could be a multiple of safemode_delay???
5731 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005732 if (conf->min_offset_diff < 0) {
5733 safepos += -conf->min_offset_diff;
5734 readpos += -conf->min_offset_diff;
5735 } else
5736 writepos += conf->min_offset_diff;
5737
NeilBrown2c810cd2012-05-21 09:27:00 +10005738 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11005739 ? (safepos > writepos && readpos < writepos)
5740 : (safepos < writepos && readpos > writepos)) ||
5741 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07005742 /* Cannot proceed until we've updated the superblock... */
5743 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005744 atomic_read(&conf->reshape_stripes)==0
5745 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5746 if (atomic_read(&conf->reshape_stripes) != 0)
5747 return 0;
NeilBrownfef9c612009-03-31 15:16:46 +11005748 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005749 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005750 conf->reshape_checkpoint = jiffies;
Shaohua Li29530792016-12-08 15:48:19 -08005751 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrown52c03292006-06-26 00:27:43 -07005752 md_wakeup_thread(mddev->thread);
Shaohua Li29530792016-12-08 15:48:19 -08005753 wait_event(mddev->sb_wait, mddev->sb_flags == 0 ||
NeilBrownc91abf52013-11-19 12:02:01 +11005754 test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5755 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5756 return 0;
NeilBrown52c03292006-06-26 00:27:43 -07005757 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005758 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07005759 spin_unlock_irq(&conf->device_lock);
5760 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005761 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07005762 }
5763
NeilBrownab69ae12009-03-31 15:26:47 +11005764 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11005765 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07005766 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10005767 int skipped_disk = 0;
Shaohua Li6d036f72015-08-13 14:31:57 -07005768 sh = raid5_get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005769 set_bit(STRIPE_EXPANDING, &sh->state);
5770 atomic_inc(&conf->reshape_stripes);
5771 /* If any of this stripe is beyond the end of the old
5772 * array, then we need to zero those blocks
5773 */
5774 for (j=sh->disks; j--;) {
5775 sector_t s;
5776 if (j == sh->pd_idx)
5777 continue;
NeilBrownf4168852007-02-28 20:11:53 -08005778 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11005779 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08005780 continue;
Shaohua Li6d036f72015-08-13 14:31:57 -07005781 s = raid5_compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11005782 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10005783 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07005784 continue;
5785 }
5786 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
5787 set_bit(R5_Expanded, &sh->dev[j].flags);
5788 set_bit(R5_UPTODATE, &sh->dev[j].flags);
5789 }
NeilBrowna9f326e2009-09-23 18:06:41 +10005790 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07005791 set_bit(STRIPE_EXPAND_READY, &sh->state);
5792 set_bit(STRIPE_HANDLE, &sh->state);
5793 }
NeilBrownab69ae12009-03-31 15:26:47 +11005794 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07005795 }
5796 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10005797 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11005798 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005799 else
NeilBrown7a661382009-03-31 15:21:40 +11005800 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07005801 spin_unlock_irq(&conf->device_lock);
5802 /* Ok, those stripe are ready. We can start scheduling
5803 * reads on the source stripes.
5804 * The source stripes are determined by mapping the first and last
5805 * block on the destination stripes.
5806 */
NeilBrown52c03292006-06-26 00:27:43 -07005807 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11005808 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11005809 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07005810 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10005811 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10005812 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11005813 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11005814 if (last_sector >= mddev->dev_sectors)
5815 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07005816 while (first_sector <= last_sector) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005817 sh = raid5_get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07005818 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
5819 set_bit(STRIPE_HANDLE, &sh->state);
Shaohua Li6d036f72015-08-13 14:31:57 -07005820 raid5_release_stripe(sh);
NeilBrown52c03292006-06-26 00:27:43 -07005821 first_sector += STRIPE_SECTORS;
5822 }
NeilBrownab69ae12009-03-31 15:26:47 +11005823 /* Now that the sources are clearly marked, we can release
5824 * the destination stripes
5825 */
5826 while (!list_empty(&stripes)) {
5827 sh = list_entry(stripes.next, struct stripe_head, lru);
5828 list_del_init(&sh->lru);
Shaohua Li6d036f72015-08-13 14:31:57 -07005829 raid5_release_stripe(sh);
NeilBrownab69ae12009-03-31 15:26:47 +11005830 }
NeilBrownc6207272008-02-06 01:39:52 -08005831 /* If this takes us to the resync_max point where we have to pause,
5832 * then we need to write out the superblock.
5833 */
NeilBrown7a661382009-03-31 15:21:40 +11005834 sector_nr += reshape_sectors;
NeilBrown92140482015-07-06 12:28:45 +10005835 retn = reshape_sectors;
5836finish:
NeilBrownc5e19d92015-07-17 12:06:02 +10005837 if (mddev->curr_resync_completed > mddev->resync_max ||
5838 (sector_nr - mddev->curr_resync_completed) * 2
NeilBrownc03f6a12009-04-17 11:06:30 +10005839 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08005840 /* Cannot proceed until we've updated the superblock... */
5841 wait_event(conf->wait_for_overlap,
NeilBrownc91abf52013-11-19 12:02:01 +11005842 atomic_read(&conf->reshape_stripes) == 0
5843 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5844 if (atomic_read(&conf->reshape_stripes) != 0)
5845 goto ret;
NeilBrownfef9c612009-03-31 15:16:46 +11005846 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11005847 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11005848 conf->reshape_checkpoint = jiffies;
Shaohua Li29530792016-12-08 15:48:19 -08005849 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrownc6207272008-02-06 01:39:52 -08005850 md_wakeup_thread(mddev->thread);
5851 wait_event(mddev->sb_wait,
Shaohua Li29530792016-12-08 15:48:19 -08005852 !test_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags)
NeilBrownc91abf52013-11-19 12:02:01 +11005853 || test_bit(MD_RECOVERY_INTR, &mddev->recovery));
5854 if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
5855 goto ret;
NeilBrownc6207272008-02-06 01:39:52 -08005856 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11005857 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08005858 spin_unlock_irq(&conf->device_lock);
5859 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10005860 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08005861 }
NeilBrownc91abf52013-11-19 12:02:01 +11005862ret:
NeilBrown92140482015-07-06 12:28:45 +10005863 return retn;
NeilBrown52c03292006-06-26 00:27:43 -07005864}
5865
Shaohua Li849674e2016-01-20 13:52:20 -08005866static inline sector_t raid5_sync_request(struct mddev *mddev, sector_t sector_nr,
5867 int *skipped)
NeilBrown52c03292006-06-26 00:27:43 -07005868{
NeilBrownd1688a62011-10-11 16:49:52 +11005869 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07005870 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11005871 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11005872 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07005873 int still_degraded = 0;
5874 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875
NeilBrown72626682005-09-09 16:23:54 -07005876 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11005878
NeilBrown29269552006-03-27 01:18:10 -08005879 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
5880 end_reshape(conf);
5881 return 0;
5882 }
NeilBrown72626682005-09-09 16:23:54 -07005883
5884 if (mddev->curr_resync < max_sector) /* aborted */
5885 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
5886 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07005887 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07005888 conf->fullsync = 0;
5889 bitmap_close_sync(mddev->bitmap);
5890
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891 return 0;
5892 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08005893
NeilBrown64bd6602009-08-03 10:59:58 +10005894 /* Allow raid5_quiesce to complete */
5895 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
5896
NeilBrown52c03292006-06-26 00:27:43 -07005897 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
5898 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08005899
NeilBrownc6207272008-02-06 01:39:52 -08005900 /* No need to check resync_max as we never do more than one
5901 * stripe, and as resync_max will always be on a chunk boundary,
5902 * if the check in md_do_sync didn't fire, there is no chance
5903 * of overstepping resync_max here
5904 */
5905
NeilBrown16a53ec2006-06-26 00:27:38 -07005906 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907 * to resync, then assert that we are finished, because there is
5908 * nothing we can do.
5909 */
NeilBrown3285edf2006-06-26 00:27:55 -07005910 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005911 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11005912 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07005913 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914 return rv;
5915 }
majianpeng6f608042013-04-24 11:42:41 +10005916 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
5917 !conf->fullsync &&
5918 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
5919 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07005920 /* we can skip this block, and probably more */
5921 sync_blocks /= STRIPE_SECTORS;
5922 *skipped = 1;
5923 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
5924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10005926 bitmap_cond_end_sync(mddev->bitmap, sector_nr, false);
NeilBrownb47490c2008-02-06 01:39:50 -08005927
Shaohua Li6d036f72015-08-13 14:31:57 -07005928 sh = raid5_get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929 if (sh == NULL) {
Shaohua Li6d036f72015-08-13 14:31:57 -07005930 sh = raid5_get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07005932 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08005934 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005936 /* Need to check if array will still be degraded after recovery/resync
Eric Mei16d9cfa2015-01-06 09:35:02 -08005937 * Note in case of > 1 drive failures it's possible we're rebuilding
5938 * one drive while leaving another faulty drive in array.
NeilBrown16a53ec2006-06-26 00:27:38 -07005939 */
Eric Mei16d9cfa2015-01-06 09:35:02 -08005940 rcu_read_lock();
5941 for (i = 0; i < conf->raid_disks; i++) {
5942 struct md_rdev *rdev = ACCESS_ONCE(conf->disks[i].rdev);
5943
5944 if (rdev == NULL || test_bit(Faulty, &rdev->flags))
NeilBrown16a53ec2006-06-26 00:27:38 -07005945 still_degraded = 1;
Eric Mei16d9cfa2015-01-06 09:35:02 -08005946 }
5947 rcu_read_unlock();
NeilBrown16a53ec2006-06-26 00:27:38 -07005948
5949 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
5950
NeilBrown83206d62011-07-26 11:19:49 +10005951 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Eivind Sarto053f5b62014-06-09 17:06:19 -07005952 set_bit(STRIPE_HANDLE, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953
Shaohua Li6d036f72015-08-13 14:31:57 -07005954 raid5_release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955
5956 return STRIPE_SECTORS;
5957}
5958
NeilBrownd1688a62011-10-11 16:49:52 +11005959static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005960{
5961 /* We may not be able to submit a whole bio at once as there
5962 * may not be enough stripe_heads available.
5963 * We cannot pre-allocate enough stripe_heads as we may need
5964 * more than exist in the cache (if we allow ever large chunks).
5965 * So we do one stripe head at a time and record in
5966 * ->bi_hw_segments how many have been done.
5967 *
5968 * We *know* that this entire raid_bio is in one chunk, so
5969 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
5970 */
5971 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11005972 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005973 sector_t sector, logical_sector, last_sector;
5974 int scnt = 0;
5975 int remaining;
5976 int handled = 0;
5977
Kent Overstreet4f024f32013-10-11 15:44:27 -07005978 logical_sector = raid_bio->bi_iter.bi_sector &
5979 ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11005980 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11005981 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07005982 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005983
5984 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08005985 logical_sector += STRIPE_SECTORS,
5986 sector += STRIPE_SECTORS,
5987 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005988
Shaohua Lie7836bd62012-07-19 16:01:31 +10005989 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005990 /* already done this stripe */
5991 continue;
5992
Shaohua Li6d036f72015-08-13 14:31:57 -07005993 sh = raid5_get_active_stripe(conf, sector, 0, 1, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005994
5995 if (!sh) {
5996 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10005997 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005998 conf->retry_read_aligned = raid_bio;
5999 return handled;
6000 }
6001
shli@kernel.orgda41ba62014-12-15 12:57:03 +11006002 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0, 0)) {
Shaohua Li6d036f72015-08-13 14:31:57 -07006003 raid5_release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10006004 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08006005 conf->retry_read_aligned = raid_bio;
6006 return handled;
6007 }
6008
majianpeng3f9e7c12012-07-31 10:04:21 +10006009 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07006010 handle_stripe(sh);
Shaohua Li6d036f72015-08-13 14:31:57 -07006011 raid5_release_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006012 handled++;
6013 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10006014 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07006015 if (remaining == 0) {
6016 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
6017 raid_bio, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02006018 bio_endio(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07006019 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006020 if (atomic_dec_and_test(&conf->active_aligned_reads))
Yuanhan Liub1b46482015-05-08 18:19:06 +10006021 wake_up(&conf->wait_for_quiescent);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006022 return handled;
6023}
6024
Shaohua Libfc90cb2013-08-29 15:40:32 +08006025static int handle_active_stripes(struct r5conf *conf, int group,
Shaohua Li566c09c2013-11-14 15:16:17 +11006026 struct r5worker *worker,
6027 struct list_head *temp_inactive_list)
Shaohua Li46a06402012-08-02 08:33:15 +10006028{
6029 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
Shaohua Li566c09c2013-11-14 15:16:17 +11006030 int i, batch_size = 0, hash;
6031 bool release_inactive = false;
Shaohua Li46a06402012-08-02 08:33:15 +10006032
6033 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08006034 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10006035 batch[batch_size++] = sh;
6036
Shaohua Li566c09c2013-11-14 15:16:17 +11006037 if (batch_size == 0) {
6038 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6039 if (!list_empty(temp_inactive_list + i))
6040 break;
Shaohua Lia8c34f92015-09-02 13:49:46 -07006041 if (i == NR_STRIPE_HASH_LOCKS) {
6042 spin_unlock_irq(&conf->device_lock);
6043 r5l_flush_stripe_to_raid(conf->log);
6044 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11006045 return batch_size;
Shaohua Lia8c34f92015-09-02 13:49:46 -07006046 }
Shaohua Li566c09c2013-11-14 15:16:17 +11006047 release_inactive = true;
6048 }
Shaohua Li46a06402012-08-02 08:33:15 +10006049 spin_unlock_irq(&conf->device_lock);
6050
Shaohua Li566c09c2013-11-14 15:16:17 +11006051 release_inactive_stripe_list(conf, temp_inactive_list,
6052 NR_STRIPE_HASH_LOCKS);
6053
Shaohua Lia8c34f92015-09-02 13:49:46 -07006054 r5l_flush_stripe_to_raid(conf->log);
Shaohua Li566c09c2013-11-14 15:16:17 +11006055 if (release_inactive) {
6056 spin_lock_irq(&conf->device_lock);
6057 return 0;
6058 }
6059
Shaohua Li46a06402012-08-02 08:33:15 +10006060 for (i = 0; i < batch_size; i++)
6061 handle_stripe(batch[i]);
Shaohua Lif6bed0e2015-08-13 14:31:59 -07006062 r5l_write_stripe_run(conf->log);
Shaohua Li46a06402012-08-02 08:33:15 +10006063
6064 cond_resched();
6065
6066 spin_lock_irq(&conf->device_lock);
Shaohua Li566c09c2013-11-14 15:16:17 +11006067 for (i = 0; i < batch_size; i++) {
6068 hash = batch[i]->hash_lock_index;
6069 __release_stripe(conf, batch[i], &temp_inactive_list[hash]);
6070 }
Shaohua Li46a06402012-08-02 08:33:15 +10006071 return batch_size;
6072}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006073
Shaohua Li851c30c2013-08-28 14:30:16 +08006074static void raid5_do_work(struct work_struct *work)
6075{
6076 struct r5worker *worker = container_of(work, struct r5worker, work);
6077 struct r5worker_group *group = worker->group;
6078 struct r5conf *conf = group->conf;
6079 int group_id = group - conf->worker_groups;
6080 int handled;
6081 struct blk_plug plug;
6082
6083 pr_debug("+++ raid5worker active\n");
6084
6085 blk_start_plug(&plug);
6086 handled = 0;
6087 spin_lock_irq(&conf->device_lock);
6088 while (1) {
6089 int batch_size, released;
6090
Shaohua Li566c09c2013-11-14 15:16:17 +11006091 released = release_stripe_list(conf, worker->temp_inactive_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08006092
Shaohua Li566c09c2013-11-14 15:16:17 +11006093 batch_size = handle_active_stripes(conf, group_id, worker,
6094 worker->temp_inactive_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +08006095 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08006096 if (!batch_size && !released)
6097 break;
6098 handled += batch_size;
6099 }
6100 pr_debug("%d stripes handled\n", handled);
6101
6102 spin_unlock_irq(&conf->device_lock);
6103 blk_finish_plug(&plug);
6104
6105 pr_debug("--- raid5worker inactive\n");
6106}
6107
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108/*
6109 * This is our raid5 kernel thread.
6110 *
6111 * We scan the hash table for stripes which can be handled now.
6112 * During the scan, completed stripes are saved for us by the interrupt
6113 * handler, so that they will not have to wait for our next wakeup.
6114 */
Shaohua Li4ed87312012-10-11 13:34:00 +11006115static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116{
Shaohua Li4ed87312012-10-11 13:34:00 +11006117 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11006118 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006120 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121
Dan Williams45b42332007-07-09 11:56:43 -07006122 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123
6124 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125
NeilBrownc3cce6c2015-08-14 12:47:33 +10006126 if (!bio_list_empty(&conf->return_bi) &&
Shaohua Li29530792016-12-08 15:48:19 -08006127 !test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)) {
NeilBrownc3cce6c2015-08-14 12:47:33 +10006128 struct bio_list tmp = BIO_EMPTY_LIST;
6129 spin_lock_irq(&conf->device_lock);
Shaohua Li29530792016-12-08 15:48:19 -08006130 if (!test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)) {
NeilBrownc3cce6c2015-08-14 12:47:33 +10006131 bio_list_merge(&tmp, &conf->return_bi);
6132 bio_list_init(&conf->return_bi);
6133 }
6134 spin_unlock_irq(&conf->device_lock);
6135 return_io(&tmp);
6136 }
6137
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006138 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 handled = 0;
6140 spin_lock_irq(&conf->device_lock);
6141 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006142 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08006143 int batch_size, released;
6144
Shaohua Li566c09c2013-11-14 15:16:17 +11006145 released = release_stripe_list(conf, conf->temp_inactive_list);
NeilBrownedbe83a2015-02-26 12:47:56 +11006146 if (released)
6147 clear_bit(R5_DID_ALLOC, &conf->cache_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
NeilBrown0021b7b2012-07-31 09:08:14 +02006149 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10006150 !list_empty(&conf->bitmap_list)) {
6151 /* Now is a good time to flush some bitmap updates */
6152 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08006153 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07006154 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08006155 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10006156 conf->seq_write = conf->seq_flush;
Shaohua Li566c09c2013-11-14 15:16:17 +11006157 activate_bit_delay(conf, conf->temp_inactive_list);
NeilBrown72626682005-09-09 16:23:54 -07006158 }
NeilBrown0021b7b2012-07-31 09:08:14 +02006159 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07006160
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006161 while ((bio = remove_bio_from_retry(conf))) {
6162 int ok;
6163 spin_unlock_irq(&conf->device_lock);
6164 ok = retry_aligned_read(conf, bio);
6165 spin_lock_irq(&conf->device_lock);
6166 if (!ok)
6167 break;
6168 handled++;
6169 }
6170
Shaohua Li566c09c2013-11-14 15:16:17 +11006171 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL,
6172 conf->temp_inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08006173 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174 break;
Shaohua Li46a06402012-08-02 08:33:15 +10006175 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176
Shaohua Li29530792016-12-08 15:48:19 -08006177 if (mddev->sb_flags & ~(1 << MD_SB_CHANGE_PENDING)) {
Shaohua Li46a06402012-08-02 08:33:15 +10006178 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10006179 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10006180 spin_lock_irq(&conf->device_lock);
6181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182 }
Dan Williams45b42332007-07-09 11:56:43 -07006183 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184
6185 spin_unlock_irq(&conf->device_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10006186 if (test_and_clear_bit(R5_ALLOC_MORE, &conf->cache_state) &&
6187 mutex_trylock(&conf->cache_size_mutex)) {
NeilBrownedbe83a2015-02-26 12:47:56 +11006188 grow_one_stripe(conf, __GFP_NOWARN);
6189 /* Set flag even if allocation failed. This helps
6190 * slow down allocation requests when mem is short
6191 */
6192 set_bit(R5_DID_ALLOC, &conf->cache_state);
NeilBrown2d5b5692015-07-06 12:49:23 +10006193 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11006194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195
Shaohua Li765d7042017-01-04 09:33:23 -08006196 flush_deferred_bios(conf);
6197
Shaohua Li0576b1c2015-08-13 14:32:00 -07006198 r5l_flush_stripe_to_raid(conf->log);
6199
Dan Williamsc9f21aa2008-07-23 12:05:51 -07006200 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10006201 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202
Dan Williams45b42332007-07-09 11:56:43 -07006203 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204}
6205
NeilBrown3f294f42005-11-08 21:39:25 -08006206static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006207raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006208{
NeilBrown7b1485b2014-12-15 12:56:59 +11006209 struct r5conf *conf;
6210 int ret = 0;
6211 spin_lock(&mddev->lock);
6212 conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006213 if (conf)
NeilBrownedbe83a2015-02-26 12:47:56 +11006214 ret = sprintf(page, "%d\n", conf->min_nr_stripes);
NeilBrown7b1485b2014-12-15 12:56:59 +11006215 spin_unlock(&mddev->lock);
6216 return ret;
NeilBrown3f294f42005-11-08 21:39:25 -08006217}
6218
NeilBrownc41d4ac2010-06-01 19:37:24 +10006219int
NeilBrownfd01b882011-10-11 16:47:53 +11006220raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10006221{
NeilBrownd1688a62011-10-11 16:49:52 +11006222 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10006223 int err;
6224
6225 if (size <= 16 || size > 32768)
6226 return -EINVAL;
NeilBrown486f0642015-02-25 12:10:35 +11006227
NeilBrownedbe83a2015-02-26 12:47:56 +11006228 conf->min_nr_stripes = size;
NeilBrown2d5b5692015-07-06 12:49:23 +10006229 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006230 while (size < conf->max_nr_stripes &&
6231 drop_one_stripe(conf))
6232 ;
NeilBrown2d5b5692015-07-06 12:49:23 +10006233 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006234
NeilBrownedbe83a2015-02-26 12:47:56 +11006235
NeilBrownc41d4ac2010-06-01 19:37:24 +10006236 err = md_allow_write(mddev);
6237 if (err)
6238 return err;
NeilBrown486f0642015-02-25 12:10:35 +11006239
NeilBrown2d5b5692015-07-06 12:49:23 +10006240 mutex_lock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006241 while (size > conf->max_nr_stripes)
6242 if (!grow_one_stripe(conf, GFP_KERNEL))
6243 break;
NeilBrown2d5b5692015-07-06 12:49:23 +10006244 mutex_unlock(&conf->cache_size_mutex);
NeilBrown486f0642015-02-25 12:10:35 +11006245
NeilBrownc41d4ac2010-06-01 19:37:24 +10006246 return 0;
6247}
6248EXPORT_SYMBOL(raid5_set_cache_size);
6249
NeilBrown3f294f42005-11-08 21:39:25 -08006250static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006251raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08006252{
NeilBrown67918752014-12-15 12:57:01 +11006253 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006254 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07006255 int err;
6256
NeilBrown3f294f42005-11-08 21:39:25 -08006257 if (len >= PAGE_SIZE)
6258 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006259 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08006260 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006261 err = mddev_lock(mddev);
Dan Williamsb5470dc2008-06-27 21:44:04 -07006262 if (err)
6263 return err;
NeilBrown67918752014-12-15 12:57:01 +11006264 conf = mddev->private;
6265 if (!conf)
6266 err = -ENODEV;
6267 else
6268 err = raid5_set_cache_size(mddev, new);
6269 mddev_unlock(mddev);
6270
6271 return err ?: len;
NeilBrown3f294f42005-11-08 21:39:25 -08006272}
NeilBrown007583c2005-11-08 21:39:30 -08006273
NeilBrown96de1e62005-11-08 21:39:39 -08006274static struct md_sysfs_entry
6275raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
6276 raid5_show_stripe_cache_size,
6277 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08006278
6279static ssize_t
Markus Stockhausend06f1912014-12-15 12:57:05 +11006280raid5_show_rmw_level(struct mddev *mddev, char *page)
6281{
6282 struct r5conf *conf = mddev->private;
6283 if (conf)
6284 return sprintf(page, "%d\n", conf->rmw_level);
6285 else
6286 return 0;
6287}
6288
6289static ssize_t
6290raid5_store_rmw_level(struct mddev *mddev, const char *page, size_t len)
6291{
6292 struct r5conf *conf = mddev->private;
6293 unsigned long new;
6294
6295 if (!conf)
6296 return -ENODEV;
6297
6298 if (len >= PAGE_SIZE)
6299 return -EINVAL;
6300
6301 if (kstrtoul(page, 10, &new))
6302 return -EINVAL;
6303
6304 if (new != PARITY_DISABLE_RMW && !raid6_call.xor_syndrome)
6305 return -EINVAL;
6306
6307 if (new != PARITY_DISABLE_RMW &&
6308 new != PARITY_ENABLE_RMW &&
6309 new != PARITY_PREFER_RMW)
6310 return -EINVAL;
6311
6312 conf->rmw_level = new;
6313 return len;
6314}
6315
6316static struct md_sysfs_entry
6317raid5_rmw_level = __ATTR(rmw_level, S_IRUGO | S_IWUSR,
6318 raid5_show_rmw_level,
6319 raid5_store_rmw_level);
6320
6321
6322static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006323raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006324{
NeilBrown7b1485b2014-12-15 12:56:59 +11006325 struct r5conf *conf;
6326 int ret = 0;
6327 spin_lock(&mddev->lock);
6328 conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006329 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006330 ret = sprintf(page, "%d\n", conf->bypass_threshold);
6331 spin_unlock(&mddev->lock);
6332 return ret;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006333}
6334
6335static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006336raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006337{
NeilBrown67918752014-12-15 12:57:01 +11006338 struct r5conf *conf;
Dan Williams4ef197d82008-04-28 02:15:54 -07006339 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006340 int err;
6341
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006342 if (len >= PAGE_SIZE)
6343 return -EINVAL;
Jingoo Hanb29bebd2013-06-01 16:15:16 +09006344 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006345 return -EINVAL;
NeilBrown67918752014-12-15 12:57:01 +11006346
6347 err = mddev_lock(mddev);
6348 if (err)
6349 return err;
6350 conf = mddev->private;
6351 if (!conf)
6352 err = -ENODEV;
NeilBrownedbe83a2015-02-26 12:47:56 +11006353 else if (new > conf->min_nr_stripes)
NeilBrown67918752014-12-15 12:57:01 +11006354 err = -EINVAL;
6355 else
6356 conf->bypass_threshold = new;
6357 mddev_unlock(mddev);
6358 return err ?: len;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006359}
6360
6361static struct md_sysfs_entry
6362raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
6363 S_IRUGO | S_IWUSR,
6364 raid5_show_preread_threshold,
6365 raid5_store_preread_threshold);
6366
6367static ssize_t
Shaohua Lid592a992014-05-21 17:57:44 +08006368raid5_show_skip_copy(struct mddev *mddev, char *page)
6369{
NeilBrown7b1485b2014-12-15 12:56:59 +11006370 struct r5conf *conf;
6371 int ret = 0;
6372 spin_lock(&mddev->lock);
6373 conf = mddev->private;
Shaohua Lid592a992014-05-21 17:57:44 +08006374 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006375 ret = sprintf(page, "%d\n", conf->skip_copy);
6376 spin_unlock(&mddev->lock);
6377 return ret;
Shaohua Lid592a992014-05-21 17:57:44 +08006378}
6379
6380static ssize_t
6381raid5_store_skip_copy(struct mddev *mddev, const char *page, size_t len)
6382{
NeilBrown67918752014-12-15 12:57:01 +11006383 struct r5conf *conf;
Shaohua Lid592a992014-05-21 17:57:44 +08006384 unsigned long new;
NeilBrown67918752014-12-15 12:57:01 +11006385 int err;
6386
Shaohua Lid592a992014-05-21 17:57:44 +08006387 if (len >= PAGE_SIZE)
6388 return -EINVAL;
Shaohua Lid592a992014-05-21 17:57:44 +08006389 if (kstrtoul(page, 10, &new))
6390 return -EINVAL;
6391 new = !!new;
Shaohua Lid592a992014-05-21 17:57:44 +08006392
NeilBrown67918752014-12-15 12:57:01 +11006393 err = mddev_lock(mddev);
6394 if (err)
6395 return err;
6396 conf = mddev->private;
6397 if (!conf)
6398 err = -ENODEV;
6399 else if (new != conf->skip_copy) {
6400 mddev_suspend(mddev);
6401 conf->skip_copy = new;
6402 if (new)
Jan Karadc3b17c2017-02-02 15:56:50 +01006403 mddev->queue->backing_dev_info->capabilities |=
NeilBrown67918752014-12-15 12:57:01 +11006404 BDI_CAP_STABLE_WRITES;
6405 else
Jan Karadc3b17c2017-02-02 15:56:50 +01006406 mddev->queue->backing_dev_info->capabilities &=
NeilBrown67918752014-12-15 12:57:01 +11006407 ~BDI_CAP_STABLE_WRITES;
6408 mddev_resume(mddev);
6409 }
6410 mddev_unlock(mddev);
6411 return err ?: len;
Shaohua Lid592a992014-05-21 17:57:44 +08006412}
6413
6414static struct md_sysfs_entry
6415raid5_skip_copy = __ATTR(skip_copy, S_IRUGO | S_IWUSR,
6416 raid5_show_skip_copy,
6417 raid5_store_skip_copy);
6418
Shaohua Lid592a992014-05-21 17:57:44 +08006419static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11006420stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08006421{
NeilBrownd1688a62011-10-11 16:49:52 +11006422 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08006423 if (conf)
6424 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
6425 else
6426 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08006427}
6428
NeilBrown96de1e62005-11-08 21:39:39 -08006429static struct md_sysfs_entry
6430raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08006431
Shaohua Lib7214202013-08-27 17:50:42 +08006432static ssize_t
6433raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
6434{
NeilBrown7b1485b2014-12-15 12:56:59 +11006435 struct r5conf *conf;
6436 int ret = 0;
6437 spin_lock(&mddev->lock);
6438 conf = mddev->private;
Shaohua Lib7214202013-08-27 17:50:42 +08006439 if (conf)
NeilBrown7b1485b2014-12-15 12:56:59 +11006440 ret = sprintf(page, "%d\n", conf->worker_cnt_per_group);
6441 spin_unlock(&mddev->lock);
6442 return ret;
Shaohua Lib7214202013-08-27 17:50:42 +08006443}
6444
majianpeng60aaf932013-11-14 15:16:20 +11006445static int alloc_thread_groups(struct r5conf *conf, int cnt,
6446 int *group_cnt,
6447 int *worker_cnt_per_group,
6448 struct r5worker_group **worker_groups);
Shaohua Lib7214202013-08-27 17:50:42 +08006449static ssize_t
6450raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
6451{
NeilBrown67918752014-12-15 12:57:01 +11006452 struct r5conf *conf;
Shaohua Lib7214202013-08-27 17:50:42 +08006453 unsigned long new;
6454 int err;
majianpeng60aaf932013-11-14 15:16:20 +11006455 struct r5worker_group *new_groups, *old_groups;
6456 int group_cnt, worker_cnt_per_group;
Shaohua Lib7214202013-08-27 17:50:42 +08006457
6458 if (len >= PAGE_SIZE)
6459 return -EINVAL;
Shaohua Lib7214202013-08-27 17:50:42 +08006460 if (kstrtoul(page, 10, &new))
6461 return -EINVAL;
6462
NeilBrown67918752014-12-15 12:57:01 +11006463 err = mddev_lock(mddev);
Shaohua Lib7214202013-08-27 17:50:42 +08006464 if (err)
6465 return err;
NeilBrown67918752014-12-15 12:57:01 +11006466 conf = mddev->private;
6467 if (!conf)
6468 err = -ENODEV;
6469 else if (new != conf->worker_cnt_per_group) {
6470 mddev_suspend(mddev);
6471
6472 old_groups = conf->worker_groups;
6473 if (old_groups)
6474 flush_workqueue(raid5_wq);
6475
6476 err = alloc_thread_groups(conf, new,
6477 &group_cnt, &worker_cnt_per_group,
6478 &new_groups);
6479 if (!err) {
6480 spin_lock_irq(&conf->device_lock);
6481 conf->group_cnt = group_cnt;
6482 conf->worker_cnt_per_group = worker_cnt_per_group;
6483 conf->worker_groups = new_groups;
6484 spin_unlock_irq(&conf->device_lock);
6485
6486 if (old_groups)
6487 kfree(old_groups[0].workers);
6488 kfree(old_groups);
6489 }
6490 mddev_resume(mddev);
6491 }
6492 mddev_unlock(mddev);
6493
6494 return err ?: len;
Shaohua Lib7214202013-08-27 17:50:42 +08006495}
6496
6497static struct md_sysfs_entry
6498raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
6499 raid5_show_group_thread_cnt,
6500 raid5_store_group_thread_cnt);
6501
NeilBrown007583c2005-11-08 21:39:30 -08006502static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08006503 &raid5_stripecache_size.attr,
6504 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07006505 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08006506 &raid5_group_thread_cnt.attr,
Shaohua Lid592a992014-05-21 17:57:44 +08006507 &raid5_skip_copy.attr,
Markus Stockhausend06f1912014-12-15 12:57:05 +11006508 &raid5_rmw_level.attr,
Song Liu2c7da142016-11-17 15:24:41 -08006509 &r5c_journal_mode.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08006510 NULL,
6511};
NeilBrown007583c2005-11-08 21:39:30 -08006512static struct attribute_group raid5_attrs_group = {
6513 .name = NULL,
6514 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08006515};
6516
majianpeng60aaf932013-11-14 15:16:20 +11006517static int alloc_thread_groups(struct r5conf *conf, int cnt,
6518 int *group_cnt,
6519 int *worker_cnt_per_group,
6520 struct r5worker_group **worker_groups)
Shaohua Li851c30c2013-08-28 14:30:16 +08006521{
Shaohua Li566c09c2013-11-14 15:16:17 +11006522 int i, j, k;
Shaohua Li851c30c2013-08-28 14:30:16 +08006523 ssize_t size;
6524 struct r5worker *workers;
6525
majianpeng60aaf932013-11-14 15:16:20 +11006526 *worker_cnt_per_group = cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +08006527 if (cnt == 0) {
majianpeng60aaf932013-11-14 15:16:20 +11006528 *group_cnt = 0;
6529 *worker_groups = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08006530 return 0;
6531 }
majianpeng60aaf932013-11-14 15:16:20 +11006532 *group_cnt = num_possible_nodes();
Shaohua Li851c30c2013-08-28 14:30:16 +08006533 size = sizeof(struct r5worker) * cnt;
majianpeng60aaf932013-11-14 15:16:20 +11006534 workers = kzalloc(size * *group_cnt, GFP_NOIO);
6535 *worker_groups = kzalloc(sizeof(struct r5worker_group) *
6536 *group_cnt, GFP_NOIO);
6537 if (!*worker_groups || !workers) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006538 kfree(workers);
majianpeng60aaf932013-11-14 15:16:20 +11006539 kfree(*worker_groups);
Shaohua Li851c30c2013-08-28 14:30:16 +08006540 return -ENOMEM;
6541 }
6542
majianpeng60aaf932013-11-14 15:16:20 +11006543 for (i = 0; i < *group_cnt; i++) {
Shaohua Li851c30c2013-08-28 14:30:16 +08006544 struct r5worker_group *group;
6545
NeilBrown0c775d52013-11-25 11:12:43 +11006546 group = &(*worker_groups)[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08006547 INIT_LIST_HEAD(&group->handle_list);
6548 group->conf = conf;
6549 group->workers = workers + i * cnt;
6550
6551 for (j = 0; j < cnt; j++) {
Shaohua Li566c09c2013-11-14 15:16:17 +11006552 struct r5worker *worker = group->workers + j;
6553 worker->group = group;
6554 INIT_WORK(&worker->work, raid5_do_work);
6555
6556 for (k = 0; k < NR_STRIPE_HASH_LOCKS; k++)
6557 INIT_LIST_HEAD(worker->temp_inactive_list + k);
Shaohua Li851c30c2013-08-28 14:30:16 +08006558 }
6559 }
6560
6561 return 0;
6562}
6563
6564static void free_thread_groups(struct r5conf *conf)
6565{
6566 if (conf->worker_groups)
6567 kfree(conf->worker_groups[0].workers);
6568 kfree(conf->worker_groups);
6569 conf->worker_groups = NULL;
6570}
6571
Dan Williams80c3a6c2009-03-17 18:10:40 -07006572static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11006573raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07006574{
NeilBrownd1688a62011-10-11 16:49:52 +11006575 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006576
6577 if (!sectors)
6578 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006579 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11006580 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11006581 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006582
NeilBrown3cb5edf2015-07-15 17:24:17 +10006583 sectors &= ~((sector_t)conf->chunk_sectors - 1);
6584 sectors &= ~((sector_t)conf->prev_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07006585 return sectors * (raid_disks - conf->max_degraded);
6586}
6587
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306588static void free_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6589{
6590 safe_put_page(percpu->spare_page);
shli@kernel.org46d5b782014-12-15 12:57:02 +11006591 if (percpu->scribble)
6592 flex_array_free(percpu->scribble);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306593 percpu->spare_page = NULL;
6594 percpu->scribble = NULL;
6595}
6596
6597static int alloc_scratch_buffer(struct r5conf *conf, struct raid5_percpu *percpu)
6598{
6599 if (conf->level == 6 && !percpu->spare_page)
6600 percpu->spare_page = alloc_page(GFP_KERNEL);
6601 if (!percpu->scribble)
shli@kernel.org46d5b782014-12-15 12:57:02 +11006602 percpu->scribble = scribble_alloc(max(conf->raid_disks,
NeilBrown738a2732015-05-08 18:19:39 +10006603 conf->previous_raid_disks),
6604 max(conf->chunk_sectors,
6605 conf->prev_chunk_sectors)
6606 / STRIPE_SECTORS,
6607 GFP_KERNEL);
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306608
6609 if (!percpu->scribble || (conf->level == 6 && !percpu->spare_page)) {
6610 free_scratch_buffer(conf, percpu);
6611 return -ENOMEM;
6612 }
6613
6614 return 0;
6615}
6616
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006617static int raid456_cpu_dead(unsigned int cpu, struct hlist_node *node)
6618{
6619 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
6620
6621 free_scratch_buffer(conf, per_cpu_ptr(conf->percpu, cpu));
6622 return 0;
6623}
6624
NeilBrownd1688a62011-10-11 16:49:52 +11006625static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006626{
Dan Williams36d1c642009-07-14 11:48:22 -07006627 if (!conf->percpu)
6628 return;
6629
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006630 cpuhp_state_remove_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Dan Williams36d1c642009-07-14 11:48:22 -07006631 free_percpu(conf->percpu);
6632}
6633
NeilBrownd1688a62011-10-11 16:49:52 +11006634static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10006635{
Song Liud7bd3982016-11-23 22:50:39 -08006636 int i;
6637
Shaohua Li5c7e81c2015-08-13 14:32:04 -07006638 if (conf->log)
6639 r5l_exit_log(conf->log);
Shaohua Li30c89462016-09-21 09:07:13 -07006640 if (conf->shrinker.nr_deferred)
NeilBrownedbe83a2015-02-26 12:47:56 +11006641 unregister_shrinker(&conf->shrinker);
Shaohua Li5c7e81c2015-08-13 14:32:04 -07006642
Shaohua Li851c30c2013-08-28 14:30:16 +08006643 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10006644 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07006645 raid5_free_percpu(conf);
Song Liud7bd3982016-11-23 22:50:39 -08006646 for (i = 0; i < conf->pool_size; i++)
6647 if (conf->disks[i].extra_page)
6648 put_page(conf->disks[i].extra_page);
Dan Williams95fc17a2009-07-31 12:39:15 +10006649 kfree(conf->disks);
6650 kfree(conf->stripe_hashtbl);
6651 kfree(conf);
6652}
6653
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006654static int raid456_cpu_up_prepare(unsigned int cpu, struct hlist_node *node)
Dan Williams36d1c642009-07-14 11:48:22 -07006655{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006656 struct r5conf *conf = hlist_entry_safe(node, struct r5conf, node);
Dan Williams36d1c642009-07-14 11:48:22 -07006657 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
6658
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006659 if (alloc_scratch_buffer(conf, percpu)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006660 pr_warn("%s: failed memory allocation for cpu%u\n",
6661 __func__, cpu);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006662 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006663 }
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006664 return 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006665}
Dan Williams36d1c642009-07-14 11:48:22 -07006666
NeilBrownd1688a62011-10-11 16:49:52 +11006667static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07006668{
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306669 int err = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07006670
Oleg Nesterov789b5e02014-02-06 03:42:45 +05306671 conf->percpu = alloc_percpu(struct raid5_percpu);
6672 if (!conf->percpu)
Dan Williams36d1c642009-07-14 11:48:22 -07006673 return -ENOMEM;
Dan Williams36d1c642009-07-14 11:48:22 -07006674
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02006675 err = cpuhp_state_add_instance(CPUHP_MD_RAID5_PREPARE, &conf->node);
Shaohua Li27a353c2016-02-24 17:38:28 -08006676 if (!err) {
6677 conf->scribble_disks = max(conf->raid_disks,
6678 conf->previous_raid_disks);
6679 conf->scribble_sectors = max(conf->chunk_sectors,
6680 conf->prev_chunk_sectors);
6681 }
Dan Williams36d1c642009-07-14 11:48:22 -07006682 return err;
6683}
6684
NeilBrownedbe83a2015-02-26 12:47:56 +11006685static unsigned long raid5_cache_scan(struct shrinker *shrink,
6686 struct shrink_control *sc)
6687{
6688 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
NeilBrown2d5b5692015-07-06 12:49:23 +10006689 unsigned long ret = SHRINK_STOP;
6690
6691 if (mutex_trylock(&conf->cache_size_mutex)) {
6692 ret= 0;
NeilBrown49895bc2015-08-03 17:09:57 +10006693 while (ret < sc->nr_to_scan &&
6694 conf->max_nr_stripes > conf->min_nr_stripes) {
NeilBrown2d5b5692015-07-06 12:49:23 +10006695 if (drop_one_stripe(conf) == 0) {
6696 ret = SHRINK_STOP;
6697 break;
6698 }
6699 ret++;
6700 }
6701 mutex_unlock(&conf->cache_size_mutex);
NeilBrownedbe83a2015-02-26 12:47:56 +11006702 }
6703 return ret;
6704}
6705
6706static unsigned long raid5_cache_count(struct shrinker *shrink,
6707 struct shrink_control *sc)
6708{
6709 struct r5conf *conf = container_of(shrink, struct r5conf, shrinker);
6710
6711 if (conf->max_nr_stripes < conf->min_nr_stripes)
6712 /* unlikely, but not impossible */
6713 return 0;
6714 return conf->max_nr_stripes - conf->min_nr_stripes;
6715}
6716
NeilBrownd1688a62011-10-11 16:49:52 +11006717static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718{
NeilBrownd1688a62011-10-11 16:49:52 +11006719 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006720 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11006721 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10006723 char pers_name[6];
Shaohua Li566c09c2013-11-14 15:16:17 +11006724 int i;
majianpeng60aaf932013-11-14 15:16:20 +11006725 int group_cnt, worker_cnt_per_group;
6726 struct r5worker_group *new_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727
NeilBrown91adb562009-03-31 14:39:39 +11006728 if (mddev->new_level != 5
6729 && mddev->new_level != 4
6730 && mddev->new_level != 6) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006731 pr_warn("md/raid:%s: raid level not set to 4/5/6 (%d)\n",
6732 mdname(mddev), mddev->new_level);
NeilBrown91adb562009-03-31 14:39:39 +11006733 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734 }
NeilBrown91adb562009-03-31 14:39:39 +11006735 if ((mddev->new_level == 5
6736 && !algorithm_valid_raid5(mddev->new_layout)) ||
6737 (mddev->new_level == 6
6738 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006739 pr_warn("md/raid:%s: layout %d not supported\n",
6740 mdname(mddev), mddev->new_layout);
NeilBrown91adb562009-03-31 14:39:39 +11006741 return ERR_PTR(-EIO);
6742 }
6743 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006744 pr_warn("md/raid:%s: not enough configured devices (%d, minimum 4)\n",
6745 mdname(mddev), mddev->raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006746 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11006747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748
Andre Noll664e7c42009-06-18 08:45:27 +10006749 if (!mddev->new_chunk_sectors ||
6750 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
6751 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006752 pr_warn("md/raid:%s: invalid chunk size %d\n",
6753 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11006754 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11006755 }
6756
NeilBrownd1688a62011-10-11 16:49:52 +11006757 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11006758 if (conf == NULL)
6759 goto abort;
Shaohua Li851c30c2013-08-28 14:30:16 +08006760 /* Don't enable multi-threading by default*/
majianpeng60aaf932013-11-14 15:16:20 +11006761 if (!alloc_thread_groups(conf, 0, &group_cnt, &worker_cnt_per_group,
6762 &new_group)) {
6763 conf->group_cnt = group_cnt;
6764 conf->worker_cnt_per_group = worker_cnt_per_group;
6765 conf->worker_groups = new_group;
6766 } else
Shaohua Li851c30c2013-08-28 14:30:16 +08006767 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11006768 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006769 seqcount_init(&conf->gen_lock);
NeilBrown2d5b5692015-07-06 12:49:23 +10006770 mutex_init(&conf->cache_size_mutex);
Yuanhan Liub1b46482015-05-08 18:19:06 +10006771 init_waitqueue_head(&conf->wait_for_quiescent);
Shaohua Li6ab2a4b2016-02-25 16:24:42 -08006772 init_waitqueue_head(&conf->wait_for_stripe);
Dan Williamsf5efd452009-10-16 15:55:38 +11006773 init_waitqueue_head(&conf->wait_for_overlap);
6774 INIT_LIST_HEAD(&conf->handle_list);
6775 INIT_LIST_HEAD(&conf->hold_list);
6776 INIT_LIST_HEAD(&conf->delayed_list);
6777 INIT_LIST_HEAD(&conf->bitmap_list);
NeilBrownc3cce6c2015-08-14 12:47:33 +10006778 bio_list_init(&conf->return_bi);
Shaohua Li773ca822013-08-27 17:50:39 +08006779 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11006780 atomic_set(&conf->active_stripes, 0);
6781 atomic_set(&conf->preread_active_stripes, 0);
6782 atomic_set(&conf->active_aligned_reads, 0);
Shaohua Li765d7042017-01-04 09:33:23 -08006783 bio_list_init(&conf->pending_bios);
6784 spin_lock_init(&conf->pending_bios_lock);
6785 conf->batch_bio_dispatch = true;
6786 rdev_for_each(rdev, mddev) {
6787 if (test_bit(Journal, &rdev->flags))
6788 continue;
6789 if (blk_queue_nonrot(bdev_get_queue(rdev->bdev))) {
6790 conf->batch_bio_dispatch = false;
6791 break;
6792 }
6793 }
6794
Dan Williamsf5efd452009-10-16 15:55:38 +11006795 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11006796 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11006797
6798 conf->raid_disks = mddev->raid_disks;
6799 if (mddev->reshape_position == MaxSector)
6800 conf->previous_raid_disks = mddev->raid_disks;
6801 else
6802 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006803 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
NeilBrown91adb562009-03-31 14:39:39 +11006804
NeilBrown5e5e3e72009-10-16 16:35:30 +11006805 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11006806 GFP_KERNEL);
Song Liud7bd3982016-11-23 22:50:39 -08006807
NeilBrown91adb562009-03-31 14:39:39 +11006808 if (!conf->disks)
6809 goto abort;
6810
Song Liud7bd3982016-11-23 22:50:39 -08006811 for (i = 0; i < max_disks; i++) {
6812 conf->disks[i].extra_page = alloc_page(GFP_KERNEL);
6813 if (!conf->disks[i].extra_page)
6814 goto abort;
6815 }
6816
NeilBrown91adb562009-03-31 14:39:39 +11006817 conf->mddev = mddev;
6818
6819 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
6820 goto abort;
6821
Shaohua Li566c09c2013-11-14 15:16:17 +11006822 /* We init hash_locks[0] separately to that it can be used
6823 * as the reference lock in the spin_lock_nest_lock() call
6824 * in lock_all_device_hash_locks_irq in order to convince
6825 * lockdep that we know what we are doing.
6826 */
6827 spin_lock_init(conf->hash_locks);
6828 for (i = 1; i < NR_STRIPE_HASH_LOCKS; i++)
6829 spin_lock_init(conf->hash_locks + i);
6830
6831 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6832 INIT_LIST_HEAD(conf->inactive_list + i);
6833
6834 for (i = 0; i < NR_STRIPE_HASH_LOCKS; i++)
6835 INIT_LIST_HEAD(conf->temp_inactive_list + i);
6836
Song Liu1e6d6902016-11-17 15:24:39 -08006837 atomic_set(&conf->r5c_cached_full_stripes, 0);
6838 INIT_LIST_HEAD(&conf->r5c_full_stripe_list);
6839 atomic_set(&conf->r5c_cached_partial_stripes, 0);
6840 INIT_LIST_HEAD(&conf->r5c_partial_stripe_list);
Shaohua Lie33fbb92017-02-10 16:18:09 -08006841 atomic_set(&conf->r5c_flushing_full_stripes, 0);
6842 atomic_set(&conf->r5c_flushing_partial_stripes, 0);
Song Liu1e6d6902016-11-17 15:24:39 -08006843
Dan Williams36d1c642009-07-14 11:48:22 -07006844 conf->level = mddev->new_level;
shli@kernel.org46d5b782014-12-15 12:57:02 +11006845 conf->chunk_sectors = mddev->new_chunk_sectors;
Dan Williams36d1c642009-07-14 11:48:22 -07006846 if (raid5_alloc_percpu(conf) != 0)
6847 goto abort;
6848
NeilBrown0c55e022010-05-03 14:09:02 +10006849 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006850
NeilBrowndafb20f2012-03-19 12:46:39 +11006851 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11006852 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11006853 if (raid_disk >= max_disks
Shaohua Lif2076e72015-10-08 21:54:12 -07006854 || raid_disk < 0 || test_bit(Journal, &rdev->flags))
NeilBrown91adb562009-03-31 14:39:39 +11006855 continue;
6856 disk = conf->disks + raid_disk;
6857
NeilBrown17045f52011-12-23 10:17:53 +11006858 if (test_bit(Replacement, &rdev->flags)) {
6859 if (disk->replacement)
6860 goto abort;
6861 disk->replacement = rdev;
6862 } else {
6863 if (disk->rdev)
6864 goto abort;
6865 disk->rdev = rdev;
6866 }
NeilBrown91adb562009-03-31 14:39:39 +11006867
6868 if (test_bit(In_sync, &rdev->flags)) {
6869 char b[BDEVNAME_SIZE];
NeilBrowncc6167b2016-11-02 14:16:50 +11006870 pr_info("md/raid:%s: device %s operational as raid disk %d\n",
6871 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05006872 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11006873 /* Cannot rely on bitmap to complete recovery */
6874 conf->fullsync = 1;
6875 }
6876
NeilBrown91adb562009-03-31 14:39:39 +11006877 conf->level = mddev->new_level;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006878 if (conf->level == 6) {
NeilBrown91adb562009-03-31 14:39:39 +11006879 conf->max_degraded = 2;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006880 if (raid6_call.xor_syndrome)
6881 conf->rmw_level = PARITY_ENABLE_RMW;
6882 else
6883 conf->rmw_level = PARITY_DISABLE_RMW;
6884 } else {
NeilBrown91adb562009-03-31 14:39:39 +11006885 conf->max_degraded = 1;
Markus Stockhausen584acdd2014-12-15 12:57:05 +11006886 conf->rmw_level = PARITY_ENABLE_RMW;
6887 }
NeilBrown91adb562009-03-31 14:39:39 +11006888 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11006889 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11006890 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10006891 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11006892 conf->prev_algo = mddev->layout;
NeilBrown5cac6bc2015-07-17 12:17:50 +10006893 } else {
6894 conf->prev_chunk_sectors = conf->chunk_sectors;
6895 conf->prev_algo = conf->algorithm;
NeilBrowne183eae2009-03-31 15:20:22 +11006896 }
NeilBrown91adb562009-03-31 14:39:39 +11006897
NeilBrownedbe83a2015-02-26 12:47:56 +11006898 conf->min_nr_stripes = NR_STRIPES;
Shaohua Liad5b0f72016-08-30 10:29:33 -07006899 if (mddev->reshape_position != MaxSector) {
6900 int stripes = max_t(int,
6901 ((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4,
6902 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4);
6903 conf->min_nr_stripes = max(NR_STRIPES, stripes);
6904 if (conf->min_nr_stripes != NR_STRIPES)
NeilBrowncc6167b2016-11-02 14:16:50 +11006905 pr_info("md/raid:%s: force stripe size %d for reshape\n",
Shaohua Liad5b0f72016-08-30 10:29:33 -07006906 mdname(mddev), conf->min_nr_stripes);
6907 }
NeilBrownedbe83a2015-02-26 12:47:56 +11006908 memory = conf->min_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11006909 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
Shaohua Li4bda5562013-11-14 15:16:17 +11006910 atomic_set(&conf->empty_inactive_list_nr, NR_STRIPE_HASH_LOCKS);
NeilBrownedbe83a2015-02-26 12:47:56 +11006911 if (grow_stripes(conf, conf->min_nr_stripes)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006912 pr_warn("md/raid:%s: couldn't allocate %dkB for buffers\n",
6913 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11006914 goto abort;
6915 } else
NeilBrowncc6167b2016-11-02 14:16:50 +11006916 pr_debug("md/raid:%s: allocated %dkB\n", mdname(mddev), memory);
NeilBrownedbe83a2015-02-26 12:47:56 +11006917 /*
6918 * Losing a stripe head costs more than the time to refill it,
6919 * it reduces the queue depth and so can hurt throughput.
6920 * So set it rather large, scaled by number of devices.
6921 */
6922 conf->shrinker.seeks = DEFAULT_SEEKS * conf->raid_disks * 4;
6923 conf->shrinker.scan_objects = raid5_cache_scan;
6924 conf->shrinker.count_objects = raid5_cache_count;
6925 conf->shrinker.batch = 128;
6926 conf->shrinker.flags = 0;
Chao Yu6a0f53f2016-09-20 10:33:57 +08006927 if (register_shrinker(&conf->shrinker)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006928 pr_warn("md/raid:%s: couldn't register shrinker.\n",
6929 mdname(mddev));
Chao Yu6a0f53f2016-09-20 10:33:57 +08006930 goto abort;
6931 }
NeilBrown91adb562009-03-31 14:39:39 +11006932
NeilBrown02326052012-07-03 15:56:52 +10006933 sprintf(pers_name, "raid%d", mddev->new_level);
6934 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11006935 if (!conf->thread) {
NeilBrowncc6167b2016-11-02 14:16:50 +11006936 pr_warn("md/raid:%s: couldn't allocate thread.\n",
6937 mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11006938 goto abort;
6939 }
6940
6941 return conf;
6942
6943 abort:
6944 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10006945 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11006946 return ERR_PTR(-EIO);
6947 } else
6948 return ERR_PTR(-ENOMEM);
6949}
6950
NeilBrownc148ffd2009-11-13 17:47:00 +11006951static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
6952{
6953 switch (algo) {
6954 case ALGORITHM_PARITY_0:
6955 if (raid_disk < max_degraded)
6956 return 1;
6957 break;
6958 case ALGORITHM_PARITY_N:
6959 if (raid_disk >= raid_disks - max_degraded)
6960 return 1;
6961 break;
6962 case ALGORITHM_PARITY_0_6:
NeilBrownf72ffdd2014-09-30 14:23:59 +10006963 if (raid_disk == 0 ||
NeilBrownc148ffd2009-11-13 17:47:00 +11006964 raid_disk == raid_disks - 1)
6965 return 1;
6966 break;
6967 case ALGORITHM_LEFT_ASYMMETRIC_6:
6968 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6969 case ALGORITHM_LEFT_SYMMETRIC_6:
6970 case ALGORITHM_RIGHT_SYMMETRIC_6:
6971 if (raid_disk == raid_disks - 1)
6972 return 1;
6973 }
6974 return 0;
6975}
6976
Shaohua Li849674e2016-01-20 13:52:20 -08006977static int raid5_run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11006978{
NeilBrownd1688a62011-10-11 16:49:52 +11006979 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10006980 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11006981 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11006982 struct md_rdev *rdev;
Shaohua Li713cf5a2015-08-13 14:32:03 -07006983 struct md_rdev *journal_dev = NULL;
NeilBrownc148ffd2009-11-13 17:47:00 +11006984 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11006985 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10006986 long long min_offset_diff = 0;
6987 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11006988
Andre Noll8c6ac862009-06-18 08:48:06 +10006989 if (mddev->recovery_cp != MaxSector)
NeilBrowncc6167b2016-11-02 14:16:50 +11006990 pr_notice("md/raid:%s: not clean -- starting background reconstruction\n",
6991 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10006992
6993 rdev_for_each(rdev, mddev) {
6994 long long diff;
Shaohua Li713cf5a2015-08-13 14:32:03 -07006995
Shaohua Lif2076e72015-10-08 21:54:12 -07006996 if (test_bit(Journal, &rdev->flags)) {
Shaohua Li713cf5a2015-08-13 14:32:03 -07006997 journal_dev = rdev;
Shaohua Lif2076e72015-10-08 21:54:12 -07006998 continue;
6999 }
NeilBrownb5254dd2012-05-21 09:27:01 +10007000 if (rdev->raid_disk < 0)
7001 continue;
7002 diff = (rdev->new_data_offset - rdev->data_offset);
7003 if (first) {
7004 min_offset_diff = diff;
7005 first = 0;
7006 } else if (mddev->reshape_backwards &&
7007 diff < min_offset_diff)
7008 min_offset_diff = diff;
7009 else if (!mddev->reshape_backwards &&
7010 diff > min_offset_diff)
7011 min_offset_diff = diff;
7012 }
7013
NeilBrownf6705572006-03-27 01:18:11 -08007014 if (mddev->reshape_position != MaxSector) {
7015 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10007016 * Difficulties arise if the stripe we would write to
7017 * next is at or after the stripe we would read from next.
7018 * For a reshape that changes the number of devices, this
7019 * is only possible for a very short time, and mdadm makes
7020 * sure that time appears to have past before assembling
7021 * the array. So we fail if that time hasn't passed.
7022 * For a reshape that keeps the number of devices the same
7023 * mdadm must be monitoring the reshape can keeping the
7024 * critical areas read-only and backed up. It will start
7025 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08007026 */
7027 sector_t here_new, here_old;
7028 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11007029 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrown05256d92015-07-15 17:36:21 +10007030 int chunk_sectors;
7031 int new_data_disks;
NeilBrownf6705572006-03-27 01:18:11 -08007032
Shaohua Li713cf5a2015-08-13 14:32:03 -07007033 if (journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007034 pr_warn("md/raid:%s: don't support reshape with journal - aborting.\n",
7035 mdname(mddev));
Shaohua Li713cf5a2015-08-13 14:32:03 -07007036 return -EINVAL;
7037 }
7038
NeilBrown88ce4932009-03-31 15:24:23 +11007039 if (mddev->new_level != mddev->level) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007040 pr_warn("md/raid:%s: unsupported reshape required - aborting.\n",
7041 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007042 return -EINVAL;
7043 }
NeilBrownf6705572006-03-27 01:18:11 -08007044 old_disks = mddev->raid_disks - mddev->delta_disks;
7045 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08007046 * further up in new geometry must map after here in old
7047 * geometry.
NeilBrown05256d92015-07-15 17:36:21 +10007048 * If the chunk sizes are different, then as we perform reshape
7049 * in units of the largest of the two, reshape_position needs
7050 * be a multiple of the largest chunk size times new data disks.
NeilBrownf6705572006-03-27 01:18:11 -08007051 */
7052 here_new = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10007053 chunk_sectors = max(mddev->chunk_sectors, mddev->new_chunk_sectors);
7054 new_data_disks = mddev->raid_disks - max_degraded;
7055 if (sector_div(here_new, chunk_sectors * new_data_disks)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007056 pr_warn("md/raid:%s: reshape_position not on a stripe boundary\n",
7057 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007058 return -EINVAL;
7059 }
NeilBrown05256d92015-07-15 17:36:21 +10007060 reshape_offset = here_new * chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08007061 /* here_new is the stripe we will write to */
7062 here_old = mddev->reshape_position;
NeilBrown05256d92015-07-15 17:36:21 +10007063 sector_div(here_old, chunk_sectors * (old_disks-max_degraded));
NeilBrownf4168852007-02-28 20:11:53 -08007064 /* here_old is the first stripe that we might need to read
7065 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10007066 if (mddev->delta_disks == 0) {
7067 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10007068 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10007069 * and taking constant backups.
7070 * mdadm always starts a situation like this in
7071 * readonly mode so it can take control before
7072 * allowing any writes. So just check for that.
7073 */
NeilBrownb5254dd2012-05-21 09:27:01 +10007074 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
7075 abs(min_offset_diff) >= mddev->new_chunk_sectors)
7076 /* not really in-place - so OK */;
7077 else if (mddev->ro == 0) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007078 pr_warn("md/raid:%s: in-place reshape must be started in read-only mode - aborting\n",
7079 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10007080 return -EINVAL;
7081 }
NeilBrown2c810cd2012-05-21 09:27:00 +10007082 } else if (mddev->reshape_backwards
NeilBrown05256d92015-07-15 17:36:21 +10007083 ? (here_new * chunk_sectors + min_offset_diff <=
7084 here_old * chunk_sectors)
7085 : (here_new * chunk_sectors >=
7086 here_old * chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08007087 /* Reading from the same stripe as writing to - bad */
NeilBrowncc6167b2016-11-02 14:16:50 +11007088 pr_warn("md/raid:%s: reshape_position too early for auto-recovery - aborting.\n",
7089 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007090 return -EINVAL;
7091 }
NeilBrowncc6167b2016-11-02 14:16:50 +11007092 pr_debug("md/raid:%s: reshape will continue\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08007093 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08007094 } else {
NeilBrown91adb562009-03-31 14:39:39 +11007095 BUG_ON(mddev->level != mddev->new_level);
7096 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10007097 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11007098 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08007099 }
7100
NeilBrown245f46c2009-03-31 14:39:39 +11007101 if (mddev->private == NULL)
7102 conf = setup_conf(mddev);
7103 else
7104 conf = mddev->private;
7105
NeilBrown91adb562009-03-31 14:39:39 +11007106 if (IS_ERR(conf))
7107 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08007108
Song Liu486b0f72016-08-19 15:34:01 -07007109 if (test_bit(MD_HAS_JOURNAL, &mddev->flags)) {
7110 if (!journal_dev) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007111 pr_warn("md/raid:%s: journal disk is missing, force array readonly\n",
7112 mdname(mddev));
Song Liu486b0f72016-08-19 15:34:01 -07007113 mddev->ro = 1;
7114 set_disk_ro(mddev->gendisk, 1);
7115 } else if (mddev->recovery_cp == MaxSector)
7116 set_bit(MD_JOURNAL_CLEAN, &mddev->flags);
Shaohua Li7dde2ad2015-10-08 21:54:10 -07007117 }
7118
NeilBrownb5254dd2012-05-21 09:27:01 +10007119 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11007120 mddev->thread = conf->thread;
7121 conf->thread = NULL;
7122 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123
NeilBrown17045f52011-12-23 10:17:53 +11007124 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
7125 i++) {
7126 rdev = conf->disks[i].rdev;
7127 if (!rdev && conf->disks[i].replacement) {
7128 /* The replacement is all we have yet */
7129 rdev = conf->disks[i].replacement;
7130 conf->disks[i].replacement = NULL;
7131 clear_bit(Replacement, &rdev->flags);
7132 conf->disks[i].rdev = rdev;
7133 }
7134 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11007135 continue;
NeilBrown17045f52011-12-23 10:17:53 +11007136 if (conf->disks[i].replacement &&
7137 conf->reshape_progress != MaxSector) {
7138 /* replacements and reshape simply do not mix. */
NeilBrowncc6167b2016-11-02 14:16:50 +11007139 pr_warn("md: cannot handle concurrent replacement and reshape.\n");
NeilBrown17045f52011-12-23 10:17:53 +11007140 goto abort;
7141 }
NeilBrown2f115882010-06-17 17:41:03 +10007142 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11007143 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10007144 continue;
7145 }
NeilBrownc148ffd2009-11-13 17:47:00 +11007146 /* This disc is not fully in-sync. However if it
7147 * just stored parity (beyond the recovery_offset),
7148 * when we don't need to be concerned about the
7149 * array being dirty.
7150 * When reshape goes 'backwards', we never have
7151 * partially completed devices, so we only need
7152 * to worry about reshape going forwards.
7153 */
7154 /* Hack because v0.91 doesn't store recovery_offset properly. */
7155 if (mddev->major_version == 0 &&
7156 mddev->minor_version > 90)
7157 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007158
NeilBrownc148ffd2009-11-13 17:47:00 +11007159 if (rdev->recovery_offset < reshape_offset) {
7160 /* We need to check old and new layout */
7161 if (!only_parity(rdev->raid_disk,
7162 conf->algorithm,
7163 conf->raid_disks,
7164 conf->max_degraded))
7165 continue;
7166 }
7167 if (!only_parity(rdev->raid_disk,
7168 conf->prev_algo,
7169 conf->previous_raid_disks,
7170 conf->max_degraded))
7171 continue;
7172 dirty_parity_disks++;
7173 }
NeilBrown91adb562009-03-31 14:39:39 +11007174
NeilBrown17045f52011-12-23 10:17:53 +11007175 /*
7176 * 0 for a fully functional array, 1 or 2 for a degraded array.
7177 */
Song Liu2e38a372017-01-24 10:45:30 -08007178 mddev->degraded = raid5_calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007179
NeilBrown674806d2010-06-16 17:17:53 +10007180 if (has_failed(conf)) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007181 pr_crit("md/raid:%s: not enough operational devices (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07007182 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007183 goto abort;
7184 }
7185
NeilBrown91adb562009-03-31 14:39:39 +11007186 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10007187 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11007188 mddev->resync_max_sectors = mddev->dev_sectors;
7189
NeilBrownc148ffd2009-11-13 17:47:00 +11007190 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07007191 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007192 if (mddev->ok_start_degraded)
NeilBrowncc6167b2016-11-02 14:16:50 +11007193 pr_crit("md/raid:%s: starting dirty degraded array - data corruption possible.\n",
7194 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007195 else {
NeilBrowncc6167b2016-11-02 14:16:50 +11007196 pr_crit("md/raid:%s: cannot start dirty degraded array.\n",
7197 mdname(mddev));
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08007198 goto abort;
7199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200 }
7201
NeilBrowncc6167b2016-11-02 14:16:50 +11007202 pr_info("md/raid:%s: raid level %d active with %d out of %d devices, algorithm %d\n",
7203 mdname(mddev), conf->level,
7204 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
7205 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206
7207 print_raid5_conf(conf);
7208
NeilBrownfef9c612009-03-31 15:16:46 +11007209 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11007210 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08007211 atomic_set(&conf->reshape_stripes, 0);
7212 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7213 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
7214 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7215 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7216 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007217 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08007218 }
7219
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10007221 if (mddev->to_remove == &raid5_attrs_group)
7222 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10007223 else if (mddev->kobj.sd &&
7224 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrowncc6167b2016-11-02 14:16:50 +11007225 pr_warn("raid5: failed to create sysfs attributes for %s\n",
7226 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10007227 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7228
7229 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007230 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11007231 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10007232 /* read-ahead size must cover two whole stripes, which
7233 * is 2 * (datadisks) * chunksize where 'n' is the
7234 * number of raid devices
7235 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236 int data_disks = conf->previous_raid_disks - conf->max_degraded;
7237 int stripe = data_disks *
7238 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
Jan Karadc3b17c2017-02-02 15:56:50 +01007239 if (mddev->queue->backing_dev_info->ra_pages < 2 * stripe)
7240 mddev->queue->backing_dev_info->ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10007241
NeilBrown9f7c2222010-07-26 12:04:13 +10007242 chunk_size = mddev->chunk_sectors << 9;
7243 blk_queue_io_min(mddev->queue, chunk_size);
7244 blk_queue_io_opt(mddev->queue, chunk_size *
7245 (conf->raid_disks - conf->max_degraded));
Kent Overstreetc78afc62013-07-11 22:39:53 -07007246 mddev->queue->limits.raid_partial_stripes_expensive = 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007247 /*
7248 * We can only discard a whole stripe. It doesn't make sense to
7249 * discard data disk but write parity disk
7250 */
7251 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11007252 /* Round up to power of 2, as discard handling
7253 * currently assumes that */
7254 while ((stripe-1) & stripe)
7255 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11007256 mddev->queue->limits.discard_alignment = stripe;
7257 mddev->queue->limits.discard_granularity = stripe;
Konstantin Khlebnikove8d7c332016-11-27 19:32:32 +03007258
7259 /*
7260 * We use 16-bit counter of active stripes in bi_phys_segments
7261 * (minus one for over-loaded initialization)
7262 */
7263 blk_queue_max_hw_sectors(mddev->queue, 0xfffe * STRIPE_SECTORS);
7264 blk_queue_max_discard_sectors(mddev->queue,
7265 0xfffe * STRIPE_SECTORS);
7266
Shaohua Li620125f2012-10-11 13:49:05 +11007267 /*
7268 * unaligned part of discard request will be ignored, so can't
NeilBrown8e0e99b2014-10-02 13:45:00 +10007269 * guarantee discard_zeroes_data
Shaohua Li620125f2012-10-11 13:49:05 +11007270 */
7271 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10007272
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07007273 blk_queue_max_write_same_sectors(mddev->queue, 0);
7274
NeilBrown05616be2012-05-21 09:27:00 +10007275 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10007276 disk_stack_limits(mddev->gendisk, rdev->bdev,
7277 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10007278 disk_stack_limits(mddev->gendisk, rdev->bdev,
7279 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11007280 /*
7281 * discard_zeroes_data is required, otherwise data
7282 * could be lost. Consider a scenario: discard a stripe
7283 * (the stripe could be inconsistent if
7284 * discard_zeroes_data is 0); write one disk of the
7285 * stripe (the stripe could be inconsistent again
7286 * depending on which disks are used to calculate
7287 * parity); the disk is broken; The stripe data of this
7288 * disk is lost.
7289 */
7290 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
7291 !bdev_get_queue(rdev->bdev)->
7292 limits.discard_zeroes_data)
7293 discard_supported = false;
NeilBrown8e0e99b2014-10-02 13:45:00 +10007294 /* Unfortunately, discard_zeroes_data is not currently
7295 * a guarantee - just a hint. So we only allow DISCARD
7296 * if the sysadmin has confirmed that only safe devices
7297 * are in use by setting a module parameter.
7298 */
7299 if (!devices_handle_discard_safely) {
7300 if (discard_supported) {
7301 pr_info("md/raid456: discard support disabled due to uncertainty.\n");
7302 pr_info("Set raid456.devices_handle_discard_safely=Y to override.\n");
7303 }
7304 discard_supported = false;
7305 }
NeilBrown05616be2012-05-21 09:27:00 +10007306 }
Shaohua Li620125f2012-10-11 13:49:05 +11007307
7308 if (discard_supported &&
Jes Sorensene7597e62016-02-16 16:44:24 -05007309 mddev->queue->limits.max_discard_sectors >= (stripe >> 9) &&
7310 mddev->queue->limits.discard_granularity >= stripe)
Shaohua Li620125f2012-10-11 13:49:05 +11007311 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
7312 mddev->queue);
7313 else
7314 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
7315 mddev->queue);
Shaohua Li1dffddd2016-09-08 10:49:06 -07007316
7317 blk_queue_max_hw_sectors(mddev->queue, UINT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318 }
7319
Shaohua Li5c7e81c2015-08-13 14:32:04 -07007320 if (journal_dev) {
7321 char b[BDEVNAME_SIZE];
7322
NeilBrowncc6167b2016-11-02 14:16:50 +11007323 pr_debug("md/raid:%s: using device %s as journal\n",
7324 mdname(mddev), bdevname(journal_dev->bdev, b));
Song Liu5aabf7c2016-11-17 15:24:44 -08007325 if (r5l_init_log(conf, journal_dev))
7326 goto abort;
Shaohua Li5c7e81c2015-08-13 14:32:04 -07007327 }
7328
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329 return 0;
7330abort:
NeilBrown01f96c02011-09-21 15:30:20 +10007331 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11007332 print_raid5_conf(conf);
7333 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334 mddev->private = NULL;
NeilBrowncc6167b2016-11-02 14:16:50 +11007335 pr_warn("md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336 return -EIO;
7337}
7338
NeilBrownafa0f552014-12-15 12:56:58 +11007339static void raid5_free(struct mddev *mddev, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340{
NeilBrownafa0f552014-12-15 12:56:58 +11007341 struct r5conf *conf = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342
Dan Williams95fc17a2009-07-31 12:39:15 +10007343 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10007344 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345}
7346
Shaohua Li849674e2016-01-20 13:52:20 -08007347static void raid5_status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348{
NeilBrownd1688a62011-10-11 16:49:52 +11007349 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350 int i;
7351
Andre Noll9d8f0362009-06-18 08:45:01 +10007352 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
NeilBrown3cb5edf2015-07-15 17:24:17 +10007353 conf->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07007354 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
NeilBrown5fd13352016-06-02 16:19:52 +10007355 rcu_read_lock();
7356 for (i = 0; i < conf->raid_disks; i++) {
7357 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
7358 seq_printf (seq, "%s", rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
7359 }
7360 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007361 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362}
7363
NeilBrownd1688a62011-10-11 16:49:52 +11007364static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365{
7366 int i;
7367 struct disk_info *tmp;
7368
NeilBrowncc6167b2016-11-02 14:16:50 +11007369 pr_debug("RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370 if (!conf) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007371 pr_debug("(conf==NULL)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372 return;
7373 }
NeilBrowncc6167b2016-11-02 14:16:50 +11007374 pr_debug(" --- level:%d rd:%d wd:%d\n", conf->level,
NeilBrown0c55e022010-05-03 14:09:02 +10007375 conf->raid_disks,
7376 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377
7378 for (i = 0; i < conf->raid_disks; i++) {
7379 char b[BDEVNAME_SIZE];
7380 tmp = conf->disks + i;
7381 if (tmp->rdev)
NeilBrowncc6167b2016-11-02 14:16:50 +11007382 pr_debug(" disk %d, o:%d, dev:%s\n",
NeilBrown0c55e022010-05-03 14:09:02 +10007383 i, !test_bit(Faulty, &tmp->rdev->flags),
7384 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385 }
7386}
7387
NeilBrownfd01b882011-10-11 16:47:53 +11007388static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007389{
7390 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11007391 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10007393 int count = 0;
7394 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007395
7396 for (i = 0; i < conf->raid_disks; i++) {
7397 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11007398 if (tmp->replacement
7399 && tmp->replacement->recovery_offset == MaxSector
7400 && !test_bit(Faulty, &tmp->replacement->flags)
7401 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
7402 /* Replacement has just become active. */
7403 if (!tmp->rdev
7404 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
7405 count++;
7406 if (tmp->rdev) {
7407 /* Replaced device not technically faulty,
7408 * but we need to be sure it gets removed
7409 * and never re-added.
7410 */
7411 set_bit(Faulty, &tmp->rdev->flags);
7412 sysfs_notify_dirent_safe(
7413 tmp->rdev->sysfs_state);
7414 }
7415 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
7416 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10007417 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08007418 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07007419 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10007420 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11007421 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007422 }
7423 }
NeilBrown6b965622010-08-18 11:56:59 +10007424 spin_lock_irqsave(&conf->device_lock, flags);
Song Liu2e38a372017-01-24 10:45:30 -08007425 mddev->degraded = raid5_calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007426 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007427 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10007428 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429}
7430
NeilBrownb8321b62011-12-23 10:17:51 +11007431static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007432{
NeilBrownd1688a62011-10-11 16:49:52 +11007433 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11007435 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11007436 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437 struct disk_info *p = conf->disks + number;
7438
7439 print_raid5_conf(conf);
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007440 if (test_bit(Journal, &rdev->flags) && conf->log) {
7441 struct r5l_log *log;
Shaohua Lic2bb6242015-10-08 21:54:07 -07007442 /*
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007443 * we can't wait pending write here, as this is called in
7444 * raid5d, wait will deadlock.
Shaohua Lic2bb6242015-10-08 21:54:07 -07007445 */
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007446 if (atomic_read(&mddev->writes_pending))
7447 return -EBUSY;
7448 log = conf->log;
7449 conf->log = NULL;
7450 synchronize_rcu();
7451 r5l_exit_log(log);
7452 return 0;
Shaohua Lic2bb6242015-10-08 21:54:07 -07007453 }
NeilBrown657e3e42011-12-23 10:17:52 +11007454 if (rdev == p->rdev)
7455 rdevp = &p->rdev;
7456 else if (rdev == p->replacement)
7457 rdevp = &p->replacement;
7458 else
7459 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11007460
NeilBrown657e3e42011-12-23 10:17:52 +11007461 if (number >= conf->raid_disks &&
7462 conf->reshape_progress == MaxSector)
7463 clear_bit(In_sync, &rdev->flags);
7464
7465 if (test_bit(In_sync, &rdev->flags) ||
7466 atomic_read(&rdev->nr_pending)) {
7467 err = -EBUSY;
7468 goto abort;
7469 }
7470 /* Only remove non-faulty devices if recovery
7471 * isn't possible.
7472 */
7473 if (!test_bit(Faulty, &rdev->flags) &&
7474 mddev->recovery_disabled != conf->recovery_disabled &&
7475 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11007476 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11007477 number < conf->raid_disks) {
7478 err = -EBUSY;
7479 goto abort;
7480 }
7481 *rdevp = NULL;
NeilBrownd787be42016-06-02 16:19:53 +10007482 if (!test_bit(RemoveSynchronized, &rdev->flags)) {
7483 synchronize_rcu();
7484 if (atomic_read(&rdev->nr_pending)) {
7485 /* lost the race, try later */
7486 err = -EBUSY;
7487 *rdevp = rdev;
7488 }
7489 }
7490 if (p->replacement) {
NeilBrowndd054fc2011-12-23 10:17:53 +11007491 /* We must have just cleared 'rdev' */
7492 p->rdev = p->replacement;
7493 clear_bit(Replacement, &p->replacement->flags);
7494 smp_mb(); /* Make sure other CPUs may see both as identical
7495 * but will never see neither - if they are careful
7496 */
7497 p->replacement = NULL;
7498 clear_bit(WantReplacement, &rdev->flags);
7499 } else
7500 /* We might have just removed the Replacement as faulty-
7501 * clear the bit just in case
7502 */
7503 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007504abort:
7505
7506 print_raid5_conf(conf);
7507 return err;
7508}
7509
NeilBrownfd01b882011-10-11 16:47:53 +11007510static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511{
NeilBrownd1688a62011-10-11 16:49:52 +11007512 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10007513 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007514 int disk;
7515 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10007516 int first = 0;
7517 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007519 if (test_bit(Journal, &rdev->flags)) {
7520 char b[BDEVNAME_SIZE];
7521 if (conf->log)
7522 return -EBUSY;
7523
7524 rdev->raid_disk = 0;
7525 /*
7526 * The array is in readonly mode if journal is missing, so no
7527 * write requests running. We should be safe
7528 */
7529 r5l_init_log(conf, rdev);
NeilBrowncc6167b2016-11-02 14:16:50 +11007530 pr_debug("md/raid:%s: using device %s as journal\n",
7531 mdname(mddev), bdevname(rdev->bdev, b));
Shaohua Lif6b6ec52015-12-21 10:51:02 +11007532 return 0;
7533 }
NeilBrown7f0da592011-07-28 11:39:22 +10007534 if (mddev->recovery_disabled == conf->recovery_disabled)
7535 return -EBUSY;
7536
NeilBrowndc10c642012-03-19 12:46:37 +11007537 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10007539 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540
Neil Brown6c2fce22008-06-28 08:31:31 +10007541 if (rdev->raid_disk >= 0)
7542 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007543
7544 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07007545 * find the disk ... but prefer rdev->saved_raid_disk
7546 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547 */
NeilBrown16a53ec2006-06-26 00:27:38 -07007548 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10007549 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07007550 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10007551 first = rdev->saved_raid_disk;
7552
7553 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11007554 p = conf->disks + disk;
7555 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08007556 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10007558 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07007559 if (rdev->saved_raid_disk != disk)
7560 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08007561 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10007562 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007563 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007564 }
7565 for (disk = first; disk <= last; disk++) {
7566 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11007567 if (test_bit(WantReplacement, &p->rdev->flags) &&
7568 p->replacement == NULL) {
7569 clear_bit(In_sync, &rdev->flags);
7570 set_bit(Replacement, &rdev->flags);
7571 rdev->raid_disk = disk;
7572 err = 0;
7573 conf->fullsync = 1;
7574 rcu_assign_pointer(p->replacement, rdev);
7575 break;
7576 }
7577 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10007578out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007579 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10007580 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007581}
7582
NeilBrownfd01b882011-10-11 16:47:53 +11007583static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584{
7585 /* no resync is happening, and there is enough space
7586 * on all devices, so we can resize.
7587 * We need to make sure resync covers any new space.
7588 * If the array is shrinking we should possibly wait until
7589 * any io in the removed space completes, but it hardly seems
7590 * worth it.
7591 */
NeilBrowna4a61252012-05-22 13:55:27 +10007592 sector_t newsize;
NeilBrown3cb5edf2015-07-15 17:24:17 +10007593 struct r5conf *conf = mddev->private;
7594
Shaohua Li713cf5a2015-08-13 14:32:03 -07007595 if (conf->log)
7596 return -EINVAL;
NeilBrown3cb5edf2015-07-15 17:24:17 +10007597 sectors &= ~((sector_t)conf->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10007598 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
7599 if (mddev->external_size &&
7600 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11007601 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10007602 if (mddev->bitmap) {
7603 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
7604 if (ret)
7605 return ret;
7606 }
7607 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10007608 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10007609 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10007610 if (sectors > mddev->dev_sectors &&
7611 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11007612 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
7614 }
Andre Noll58c0fed2009-03-31 14:33:13 +11007615 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07007616 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617 return 0;
7618}
7619
NeilBrownfd01b882011-10-11 16:47:53 +11007620static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10007621{
7622 /* Can only proceed if there are plenty of stripe_heads.
7623 * We need a minimum of one full stripe,, and for sensible progress
7624 * it is best to have about 4 times that.
7625 * If we require 4 times, then the default 256 4K stripe_heads will
7626 * allow for chunk sizes up to 256K, which is probably OK.
7627 * If the chunk size is greater, user-space should request more
7628 * stripe_heads first.
7629 */
NeilBrownd1688a62011-10-11 16:49:52 +11007630 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10007631 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007632 > conf->min_nr_stripes ||
NeilBrown01ee22b2009-06-18 08:47:20 +10007633 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
NeilBrownedbe83a2015-02-26 12:47:56 +11007634 > conf->min_nr_stripes) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007635 pr_warn("md/raid:%s: reshape: not enough stripes. Needed %lu\n",
7636 mdname(mddev),
7637 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
7638 / STRIPE_SIZE)*4);
NeilBrown01ee22b2009-06-18 08:47:20 +10007639 return 0;
7640 }
7641 return 1;
7642}
7643
NeilBrownfd01b882011-10-11 16:47:53 +11007644static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08007645{
NeilBrownd1688a62011-10-11 16:49:52 +11007646 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08007647
Shaohua Li713cf5a2015-08-13 14:32:03 -07007648 if (conf->log)
7649 return -EINVAL;
NeilBrown88ce4932009-03-31 15:24:23 +11007650 if (mddev->delta_disks == 0 &&
7651 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10007652 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10007653 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10007654 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11007655 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10007656 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11007657 /* We might be able to shrink, but the devices must
7658 * be made bigger first.
7659 * For raid6, 4 is the minimum size.
7660 * Otherwise 2 is the minimum
7661 */
7662 int min = 2;
7663 if (mddev->level == 6)
7664 min = 4;
7665 if (mddev->raid_disks + mddev->delta_disks < min)
7666 return -EINVAL;
7667 }
NeilBrown29269552006-03-27 01:18:10 -08007668
NeilBrown01ee22b2009-06-18 08:47:20 +10007669 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08007670 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08007671
NeilBrown738a2732015-05-08 18:19:39 +10007672 if (mddev->new_chunk_sectors > mddev->chunk_sectors ||
7673 mddev->delta_disks > 0)
7674 if (resize_chunks(conf,
7675 conf->previous_raid_disks
7676 + max(0, mddev->delta_disks),
7677 max(mddev->new_chunk_sectors,
7678 mddev->chunk_sectors)
7679 ) < 0)
7680 return -ENOMEM;
NeilBrowne56108d62012-10-11 14:24:13 +11007681 return resize_stripes(conf, (conf->previous_raid_disks
7682 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08007683}
7684
NeilBrownfd01b882011-10-11 16:47:53 +11007685static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08007686{
NeilBrownd1688a62011-10-11 16:49:52 +11007687 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11007688 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08007689 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07007690 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08007691
NeilBrownf4168852007-02-28 20:11:53 -08007692 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08007693 return -EBUSY;
7694
NeilBrown01ee22b2009-06-18 08:47:20 +10007695 if (!check_stripe_cache(mddev))
7696 return -ENOSPC;
7697
NeilBrown30b67642012-05-22 13:55:28 +10007698 if (has_failed(conf))
7699 return -EINVAL;
7700
NeilBrownc6563a82012-05-21 09:27:00 +10007701 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11007702 if (!test_bit(In_sync, &rdev->flags)
7703 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08007704 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10007705 }
NeilBrown63c70c42006-03-27 01:18:13 -08007706
NeilBrownf4168852007-02-28 20:11:53 -08007707 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08007708 /* Not enough devices even to make a degraded array
7709 * of that size
7710 */
7711 return -EINVAL;
7712
NeilBrownec32a2b2009-03-31 15:17:38 +11007713 /* Refuse to reduce size of the array. Any reductions in
7714 * array size must be through explicit setting of array_size
7715 * attribute.
7716 */
7717 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
7718 < mddev->array_sectors) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007719 pr_warn("md/raid:%s: array size must be reduced before number of disks\n",
7720 mdname(mddev));
NeilBrownec32a2b2009-03-31 15:17:38 +11007721 return -EINVAL;
7722 }
7723
NeilBrownf6705572006-03-27 01:18:11 -08007724 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08007725 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10007726 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007727 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08007728 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007729 conf->prev_chunk_sectors = conf->chunk_sectors;
7730 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11007731 conf->prev_algo = conf->algorithm;
7732 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10007733 conf->generation++;
7734 /* Code that selects data_offset needs to see the generation update
7735 * if reshape_progress has been set - so a memory barrier needed.
7736 */
7737 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10007738 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11007739 conf->reshape_progress = raid5_size(mddev, 0, 0);
7740 else
7741 conf->reshape_progress = 0;
7742 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10007743 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007744 spin_unlock_irq(&conf->device_lock);
7745
NeilBrown4d77e3b2013-08-27 15:57:47 +10007746 /* Now make sure any requests that proceeded on the assumption
7747 * the reshape wasn't running - like Discard or Read - have
7748 * completed.
7749 */
7750 mddev_suspend(mddev);
7751 mddev_resume(mddev);
7752
NeilBrown29269552006-03-27 01:18:10 -08007753 /* Add some new drives, as many as will fit.
7754 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10007755 * Don't add devices if we are reducing the number of
7756 * devices in the array. This is because it is not possible
7757 * to correctly record the "partially reconstructed" state of
7758 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08007759 */
NeilBrown87a8dec2011-01-31 11:57:43 +11007760 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11007761 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11007762 if (rdev->raid_disk < 0 &&
7763 !test_bit(Faulty, &rdev->flags)) {
7764 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11007765 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11007766 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11007767 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11007768 else
NeilBrown87a8dec2011-01-31 11:57:43 +11007769 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10007770
7771 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11007772 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11007773 }
NeilBrown87a8dec2011-01-31 11:57:43 +11007774 } else if (rdev->raid_disk >= conf->previous_raid_disks
7775 && !test_bit(Faulty, &rdev->flags)) {
7776 /* This is a spare that was manually added */
7777 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11007778 }
NeilBrown29269552006-03-27 01:18:10 -08007779
NeilBrown87a8dec2011-01-31 11:57:43 +11007780 /* When a reshape changes the number of devices,
7781 * ->degraded is measured against the larger of the
7782 * pre and post number of devices.
7783 */
NeilBrownec32a2b2009-03-31 15:17:38 +11007784 spin_lock_irqsave(&conf->device_lock, flags);
Song Liu2e38a372017-01-24 10:45:30 -08007785 mddev->degraded = raid5_calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11007786 spin_unlock_irqrestore(&conf->device_lock, flags);
7787 }
NeilBrown63c70c42006-03-27 01:18:13 -08007788 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10007789 mddev->reshape_position = conf->reshape_progress;
Shaohua Li29530792016-12-08 15:48:19 -08007790 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrownf6705572006-03-27 01:18:11 -08007791
NeilBrown29269552006-03-27 01:18:10 -08007792 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
7793 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
NeilBrownea358cd2015-06-12 20:05:04 +10007794 clear_bit(MD_RECOVERY_DONE, &mddev->recovery);
NeilBrown29269552006-03-27 01:18:10 -08007795 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
7796 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
7797 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10007798 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08007799 if (!mddev->sync_thread) {
7800 mddev->recovery = 0;
7801 spin_lock_irq(&conf->device_lock);
NeilBrownba8805b2013-11-14 15:16:15 +11007802 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007803 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownba8805b2013-11-14 15:16:15 +11007804 mddev->new_chunk_sectors =
7805 conf->chunk_sectors = conf->prev_chunk_sectors;
7806 mddev->new_layout = conf->algorithm = conf->prev_algo;
NeilBrown05616be2012-05-21 09:27:00 +10007807 rdev_for_each(rdev, mddev)
7808 rdev->new_data_offset = rdev->data_offset;
7809 smp_wmb();
NeilBrownba8805b2013-11-14 15:16:15 +11007810 conf->generation --;
NeilBrownfef9c612009-03-31 15:16:46 +11007811 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11007812 mddev->reshape_position = MaxSector;
NeilBrownba8805b2013-11-14 15:16:15 +11007813 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08007814 spin_unlock_irq(&conf->device_lock);
7815 return -EAGAIN;
7816 }
NeilBrownc8f517c2009-03-31 15:28:40 +11007817 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08007818 md_wakeup_thread(mddev->sync_thread);
7819 md_new_event(mddev);
7820 return 0;
7821}
NeilBrown29269552006-03-27 01:18:10 -08007822
NeilBrownec32a2b2009-03-31 15:17:38 +11007823/* This is called from the reshape thread and should make any
7824 * changes needed in 'conf'
7825 */
NeilBrownd1688a62011-10-11 16:49:52 +11007826static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08007827{
NeilBrown29269552006-03-27 01:18:10 -08007828
NeilBrownf6705572006-03-27 01:18:11 -08007829 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10007830 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07007831
NeilBrownf6705572006-03-27 01:18:11 -08007832 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11007833 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10007834 rdev_for_each(rdev, conf->mddev)
7835 rdev->data_offset = rdev->new_data_offset;
7836 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11007837 conf->reshape_progress = MaxSector;
NeilBrown6cbd8142015-07-24 13:30:32 +10007838 conf->mddev->reshape_position = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08007839 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11007840 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07007841
7842 /* read-ahead size must cover two whole stripes, which is
7843 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
7844 */
NeilBrown4a5add42010-06-01 19:37:28 +10007845 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11007846 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007847 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11007848 / PAGE_SIZE);
Jan Karadc3b17c2017-02-02 15:56:50 +01007849 if (conf->mddev->queue->backing_dev_info->ra_pages < 2 * stripe)
7850 conf->mddev->queue->backing_dev_info->ra_pages = 2 * stripe;
NeilBrown16a53ec2006-06-26 00:27:38 -07007851 }
NeilBrown29269552006-03-27 01:18:10 -08007852 }
NeilBrown29269552006-03-27 01:18:10 -08007853}
7854
NeilBrownec32a2b2009-03-31 15:17:38 +11007855/* This is called from the raid5d thread with mddev_lock held.
7856 * It makes config changes to the device.
7857 */
NeilBrownfd01b882011-10-11 16:47:53 +11007858static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11007859{
NeilBrownd1688a62011-10-11 16:49:52 +11007860 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11007861
7862 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
7863
NeilBrownec32a2b2009-03-31 15:17:38 +11007864 if (mddev->delta_disks > 0) {
7865 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
Heinz Mauelshagenfe67d192016-05-03 22:15:31 +02007866 if (mddev->queue) {
7867 set_capacity(mddev->gendisk, mddev->array_sectors);
7868 revalidate_disk(mddev->gendisk);
7869 }
NeilBrownec32a2b2009-03-31 15:17:38 +11007870 } else {
7871 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11007872 spin_lock_irq(&conf->device_lock);
Song Liu2e38a372017-01-24 10:45:30 -08007873 mddev->degraded = raid5_calc_degraded(conf);
NeilBrown908f4fb2011-12-23 10:17:50 +11007874 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11007875 for (d = conf->raid_disks ;
7876 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10007877 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11007878 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10007879 if (rdev)
7880 clear_bit(In_sync, &rdev->flags);
7881 rdev = conf->disks[d].replacement;
7882 if (rdev)
7883 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10007884 }
NeilBrowncea9c222009-03-31 15:15:05 +11007885 }
NeilBrown88ce4932009-03-31 15:24:23 +11007886 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10007887 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11007888 mddev->reshape_position = MaxSector;
7889 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10007890 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11007891 }
7892}
7893
NeilBrownfd01b882011-10-11 16:47:53 +11007894static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07007895{
NeilBrownd1688a62011-10-11 16:49:52 +11007896 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07007897
7898 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08007899 case 2: /* resume for a suspend */
7900 wake_up(&conf->wait_for_overlap);
7901 break;
7902
NeilBrown72626682005-09-09 16:23:54 -07007903 case 1: /* stop all writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007904 lock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007905 /* '2' tells resync/reshape to pause so that all
7906 * active stripes can drain
7907 */
Song Liua39f7af2016-11-17 15:24:40 -08007908 r5c_flush_cache(conf, INT_MAX);
NeilBrown64bd6602009-08-03 10:59:58 +10007909 conf->quiesce = 2;
Yuanhan Liub1b46482015-05-08 18:19:06 +10007910 wait_event_cmd(conf->wait_for_quiescent,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08007911 atomic_read(&conf->active_stripes) == 0 &&
7912 atomic_read(&conf->active_aligned_reads) == 0,
Shaohua Li566c09c2013-11-14 15:16:17 +11007913 unlock_all_device_hash_locks_irq(conf),
7914 lock_all_device_hash_locks_irq(conf));
NeilBrown64bd6602009-08-03 10:59:58 +10007915 conf->quiesce = 1;
Shaohua Li566c09c2013-11-14 15:16:17 +11007916 unlock_all_device_hash_locks_irq(conf);
NeilBrown64bd6602009-08-03 10:59:58 +10007917 /* allow reshape to continue */
7918 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07007919 break;
7920
7921 case 0: /* re-enable writes */
Shaohua Li566c09c2013-11-14 15:16:17 +11007922 lock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007923 conf->quiesce = 0;
Yuanhan Liub1b46482015-05-08 18:19:06 +10007924 wake_up(&conf->wait_for_quiescent);
NeilBrowne464eaf2006-03-27 01:18:14 -08007925 wake_up(&conf->wait_for_overlap);
Shaohua Li566c09c2013-11-14 15:16:17 +11007926 unlock_all_device_hash_locks_irq(conf);
NeilBrown72626682005-09-09 16:23:54 -07007927 break;
7928 }
Shaohua Lie6c033f2015-10-04 09:20:12 -07007929 r5l_quiesce(conf->log, state);
NeilBrown72626682005-09-09 16:23:54 -07007930}
NeilBrownb15c2e52006-01-06 00:20:16 -08007931
NeilBrownfd01b882011-10-11 16:47:53 +11007932static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11007933{
NeilBrowne373ab12011-10-11 16:48:59 +11007934 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07007935 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11007936
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007937 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11007938 if (raid0_conf->nr_strip_zones > 1) {
NeilBrowncc6167b2016-11-02 14:16:50 +11007939 pr_warn("md/raid:%s: cannot takeover raid0 with more than one zone.\n",
7940 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007941 return ERR_PTR(-EINVAL);
7942 }
7943
NeilBrowne373ab12011-10-11 16:48:59 +11007944 sectors = raid0_conf->strip_zone[0].zone_end;
7945 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10007946 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07007947 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11007948 mddev->new_layout = ALGORITHM_PARITY_N;
7949 mddev->new_chunk_sectors = mddev->chunk_sectors;
7950 mddev->raid_disks += 1;
7951 mddev->delta_disks = 1;
7952 /* make sure it will be not marked as dirty */
7953 mddev->recovery_cp = MaxSector;
7954
7955 return setup_conf(mddev);
7956}
7957
NeilBrownfd01b882011-10-11 16:47:53 +11007958static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11007959{
7960 int chunksect;
Shaohua Li6995f0b2016-12-08 15:48:17 -08007961 void *ret;
NeilBrownd562b0c2009-03-31 14:39:39 +11007962
7963 if (mddev->raid_disks != 2 ||
7964 mddev->degraded > 1)
7965 return ERR_PTR(-EINVAL);
7966
7967 /* Should check if there are write-behind devices? */
7968
7969 chunksect = 64*2; /* 64K by default */
7970
7971 /* The array must be an exact multiple of chunksize */
7972 while (chunksect && (mddev->array_sectors & (chunksect-1)))
7973 chunksect >>= 1;
7974
7975 if ((chunksect<<9) < STRIPE_SIZE)
7976 /* array size does not allow a suitable chunk size */
7977 return ERR_PTR(-EINVAL);
7978
7979 mddev->new_level = 5;
7980 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10007981 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11007982
Shaohua Li6995f0b2016-12-08 15:48:17 -08007983 ret = setup_conf(mddev);
Jes Sorensen32cd7cb2017-01-06 19:31:35 -05007984 if (!IS_ERR(ret))
Shaohua Li394ed8e2017-01-04 16:10:19 -08007985 mddev_clear_unsupported_flags(mddev,
7986 UNSUPPORTED_MDDEV_FLAGS);
Shaohua Li6995f0b2016-12-08 15:48:17 -08007987 return ret;
NeilBrownd562b0c2009-03-31 14:39:39 +11007988}
7989
NeilBrownfd01b882011-10-11 16:47:53 +11007990static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11007991{
7992 int new_layout;
7993
7994 switch (mddev->layout) {
7995 case ALGORITHM_LEFT_ASYMMETRIC_6:
7996 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
7997 break;
7998 case ALGORITHM_RIGHT_ASYMMETRIC_6:
7999 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
8000 break;
8001 case ALGORITHM_LEFT_SYMMETRIC_6:
8002 new_layout = ALGORITHM_LEFT_SYMMETRIC;
8003 break;
8004 case ALGORITHM_RIGHT_SYMMETRIC_6:
8005 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
8006 break;
8007 case ALGORITHM_PARITY_0_6:
8008 new_layout = ALGORITHM_PARITY_0;
8009 break;
8010 case ALGORITHM_PARITY_N:
8011 new_layout = ALGORITHM_PARITY_N;
8012 break;
8013 default:
8014 return ERR_PTR(-EINVAL);
8015 }
8016 mddev->new_level = 5;
8017 mddev->new_layout = new_layout;
8018 mddev->delta_disks = -1;
8019 mddev->raid_disks -= 1;
8020 return setup_conf(mddev);
8021}
8022
NeilBrownfd01b882011-10-11 16:47:53 +11008023static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11008024{
NeilBrown88ce4932009-03-31 15:24:23 +11008025 /* For a 2-drive array, the layout and chunk size can be changed
8026 * immediately as not restriping is needed.
8027 * For larger arrays we record the new value - after validation
8028 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11008029 */
NeilBrownd1688a62011-10-11 16:49:52 +11008030 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10008031 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11008032
NeilBrown597a7112009-06-18 08:47:42 +10008033 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11008034 return -EINVAL;
8035 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10008036 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11008037 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008038 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11008039 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008040 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11008041 /* not factor of array size */
8042 return -EINVAL;
8043 }
8044
8045 /* They look valid */
8046
NeilBrown88ce4932009-03-31 15:24:23 +11008047 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10008048 /* can make the change immediately */
8049 if (mddev->new_layout >= 0) {
8050 conf->algorithm = mddev->new_layout;
8051 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11008052 }
8053 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10008054 conf->chunk_sectors = new_chunk ;
8055 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11008056 }
Shaohua Li29530792016-12-08 15:48:19 -08008057 set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);
NeilBrown88ce4932009-03-31 15:24:23 +11008058 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11008059 }
NeilBrown50ac1682009-06-18 08:47:55 +10008060 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11008061}
8062
NeilBrownfd01b882011-10-11 16:47:53 +11008063static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11008064{
NeilBrown597a7112009-06-18 08:47:42 +10008065 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10008066
NeilBrown597a7112009-06-18 08:47:42 +10008067 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11008068 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11008069 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10008070 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11008071 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008072 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11008073 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10008074 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11008075 /* not factor of array size */
8076 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11008077 }
NeilBrown88ce4932009-03-31 15:24:23 +11008078
8079 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10008080 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11008081}
8082
NeilBrownfd01b882011-10-11 16:47:53 +11008083static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11008084{
8085 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008086 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11008087 * raid1 - if there are two drives. We need to know the chunk size
8088 * raid4 - trivial - just use a raid4 layout.
8089 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11008090 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008091 if (mddev->level == 0)
8092 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11008093 if (mddev->level == 1)
8094 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11008095 if (mddev->level == 4) {
8096 mddev->new_layout = ALGORITHM_PARITY_N;
8097 mddev->new_level = 5;
8098 return setup_conf(mddev);
8099 }
NeilBrownfc9739c2009-03-31 14:57:20 +11008100 if (mddev->level == 6)
8101 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11008102
8103 return ERR_PTR(-EINVAL);
8104}
8105
NeilBrownfd01b882011-10-11 16:47:53 +11008106static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11008107{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008108 /* raid4 can take over:
8109 * raid0 - if there is only one strip zone
8110 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11008111 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07008112 if (mddev->level == 0)
8113 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11008114 if (mddev->level == 5 &&
8115 mddev->layout == ALGORITHM_PARITY_N) {
8116 mddev->new_layout = 0;
8117 mddev->new_level = 4;
8118 return setup_conf(mddev);
8119 }
8120 return ERR_PTR(-EINVAL);
8121}
NeilBrownd562b0c2009-03-31 14:39:39 +11008122
NeilBrown84fc4b52011-10-11 16:49:58 +11008123static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11008124
NeilBrownfd01b882011-10-11 16:47:53 +11008125static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11008126{
8127 /* Currently can only take over a raid5. We map the
8128 * personality to an equivalent raid6 personality
8129 * with the Q block at the end.
8130 */
8131 int new_layout;
8132
8133 if (mddev->pers != &raid5_personality)
8134 return ERR_PTR(-EINVAL);
8135 if (mddev->degraded > 1)
8136 return ERR_PTR(-EINVAL);
8137 if (mddev->raid_disks > 253)
8138 return ERR_PTR(-EINVAL);
8139 if (mddev->raid_disks < 3)
8140 return ERR_PTR(-EINVAL);
8141
8142 switch (mddev->layout) {
8143 case ALGORITHM_LEFT_ASYMMETRIC:
8144 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
8145 break;
8146 case ALGORITHM_RIGHT_ASYMMETRIC:
8147 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
8148 break;
8149 case ALGORITHM_LEFT_SYMMETRIC:
8150 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
8151 break;
8152 case ALGORITHM_RIGHT_SYMMETRIC:
8153 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
8154 break;
8155 case ALGORITHM_PARITY_0:
8156 new_layout = ALGORITHM_PARITY_0_6;
8157 break;
8158 case ALGORITHM_PARITY_N:
8159 new_layout = ALGORITHM_PARITY_N;
8160 break;
8161 default:
8162 return ERR_PTR(-EINVAL);
8163 }
8164 mddev->new_level = 6;
8165 mddev->new_layout = new_layout;
8166 mddev->delta_disks = 1;
8167 mddev->raid_disks += 1;
8168 return setup_conf(mddev);
8169}
8170
NeilBrown84fc4b52011-10-11 16:49:58 +11008171static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07008172{
8173 .name = "raid6",
8174 .level = 6,
8175 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008176 .make_request = raid5_make_request,
8177 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11008178 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008179 .status = raid5_status,
8180 .error_handler = raid5_error,
NeilBrown16a53ec2006-06-26 00:27:38 -07008181 .hot_add_disk = raid5_add_disk,
8182 .hot_remove_disk= raid5_remove_disk,
8183 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008184 .sync_request = raid5_sync_request,
NeilBrown16a53ec2006-06-26 00:27:38 -07008185 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008186 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10008187 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08008188 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008189 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07008190 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11008191 .takeover = raid6_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008192 .congested = raid5_congested,
NeilBrown16a53ec2006-06-26 00:27:38 -07008193};
NeilBrown84fc4b52011-10-11 16:49:58 +11008194static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07008195{
8196 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08008197 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008198 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008199 .make_request = raid5_make_request,
8200 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11008201 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008202 .status = raid5_status,
8203 .error_handler = raid5_error,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008204 .hot_add_disk = raid5_add_disk,
8205 .hot_remove_disk= raid5_remove_disk,
8206 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008207 .sync_request = raid5_sync_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008209 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08008210 .check_reshape = raid5_check_reshape,
8211 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008212 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07008213 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11008214 .takeover = raid5_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008215 .congested = raid5_congested,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216};
8217
NeilBrown84fc4b52011-10-11 16:49:58 +11008218static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219{
NeilBrown2604b702006-01-06 00:20:36 -08008220 .name = "raid4",
8221 .level = 4,
8222 .owner = THIS_MODULE,
Shaohua Li849674e2016-01-20 13:52:20 -08008223 .make_request = raid5_make_request,
8224 .run = raid5_run,
NeilBrownafa0f552014-12-15 12:56:58 +11008225 .free = raid5_free,
Shaohua Li849674e2016-01-20 13:52:20 -08008226 .status = raid5_status,
8227 .error_handler = raid5_error,
NeilBrown2604b702006-01-06 00:20:36 -08008228 .hot_add_disk = raid5_add_disk,
8229 .hot_remove_disk= raid5_remove_disk,
8230 .spare_active = raid5_spare_active,
Shaohua Li849674e2016-01-20 13:52:20 -08008231 .sync_request = raid5_sync_request,
NeilBrown2604b702006-01-06 00:20:36 -08008232 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07008233 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08008234 .check_reshape = raid5_check_reshape,
8235 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11008236 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08008237 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11008238 .takeover = raid4_takeover,
NeilBrown5c675f82014-12-15 12:56:56 +11008239 .congested = raid5_congested,
NeilBrown2604b702006-01-06 00:20:36 -08008240};
8241
8242static int __init raid5_init(void)
8243{
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008244 int ret;
8245
Shaohua Li851c30c2013-08-28 14:30:16 +08008246 raid5_wq = alloc_workqueue("raid5wq",
8247 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
8248 if (!raid5_wq)
8249 return -ENOMEM;
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008250
8251 ret = cpuhp_setup_state_multi(CPUHP_MD_RAID5_PREPARE,
8252 "md/raid5:prepare",
8253 raid456_cpu_up_prepare,
8254 raid456_cpu_dead);
8255 if (ret) {
8256 destroy_workqueue(raid5_wq);
8257 return ret;
8258 }
NeilBrown16a53ec2006-06-26 00:27:38 -07008259 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008260 register_md_personality(&raid5_personality);
8261 register_md_personality(&raid4_personality);
8262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263}
8264
NeilBrown2604b702006-01-06 00:20:36 -08008265static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266{
NeilBrown16a53ec2006-06-26 00:27:38 -07008267 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08008268 unregister_md_personality(&raid5_personality);
8269 unregister_md_personality(&raid4_personality);
Sebastian Andrzej Siewior29c6d1b2016-08-18 14:57:24 +02008270 cpuhp_remove_multi_state(CPUHP_MD_RAID5_PREPARE);
Shaohua Li851c30c2013-08-28 14:30:16 +08008271 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008272}
8273
8274module_init(raid5_init);
8275module_exit(raid5_exit);
8276MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11008277MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08008279MODULE_ALIAS("md-raid5");
8280MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08008281MODULE_ALIAS("md-level-5");
8282MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07008283MODULE_ALIAS("md-personality-8"); /* RAID6 */
8284MODULE_ALIAS("md-raid6");
8285MODULE_ALIAS("md-level-6");
8286
8287/* This used to be two separate modules, they were: */
8288MODULE_ALIAS("raid5");
8289MODULE_ALIAS("raid6");